:root {
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --dark-bg: #000000;
    --darker-bg: #111111;
    --text-color: #ffffff;
    --text-secondary: #999999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.logo-container {
    margin-bottom: 100px;
    animation: fadeIn 1s ease-out;
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.main-logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.main-logo:hover {
    transform: scale(1.05);
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 120px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.brand:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.brand:nth-child(1) { animation-delay: 0.2s; }
.brand:nth-child(2) { animation-delay: 0.4s; }
.brand:nth-child(3) { animation-delay: 0.6s; }

.brand-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.brand h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.brand:hover h3::after {
    width: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px;
    }

    .logo-container {
        margin-bottom: 60px;
    }

    .main-logo {
        width: 200px;
    }

    .brands-container {
        gap: 40px;
    }

    .brand {
        padding: 20px;
    }

    .brand-logo {
        width: 120px;
        height: 120px;
    }

    .brand h3 {
        font-size: 1.1rem;
    }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../beyazlogo (2).png') center/contain no-repeat;
    opacity: 0.1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: var(--darker-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin: 20px 0;
    }

    .social-links {
        margin-top: 20px;
    }
}

/* Showcase Section */
.showcase-container {
    margin-top: 80px;
    position: relative;
}

.showcase-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.showcase-text h2 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 0.8s ease forwards;
}

.showcase-text h2:nth-child(1) { animation-delay: 0.3s; }
.showcase-text h2:nth-child(2) { animation-delay: 0.6s; }
.showcase-text h2:nth-child(3) { animation-delay: 0.9s; }

.showcase-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}
.showcase-imagez {
    flex: 1;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform: translateY(50px);
    opacity: 0;
    animation: imageReveal 1s ease forwards;
background-position: top right;
}
.showcase-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform: translateY(50px);
    opacity: 0;
    animation: imageReveal 1s ease forwards;
}

.showcase-image:nth-child(1) { animation-delay: 0.2s; }
.showcase-image:nth-child(2) { animation-delay: 0.4s; }
.showcase-image:nth-child(3) { animation-delay: 0.6s; }

.showcase-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}
.showcase-imagez:nth-child(1) { animation-delay: 0.2s; }
.showcase-imagez:nth-child(2) { animation-delay: 0.4s; }
.showcase-imagez:nth-child(3) { animation-delay: 0.6s; }

.showcase-imagez img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-imagez:hover img {
    transform: scale(1.05);
}
.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.showcase-imagez:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}
.showcase-image:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update media queries */
@media (max-width: 1200px) {
    .showcase-text h2 {
        font-size: 4rem;
    }

    .showcase-image {
        max-width: 300px;
    }

    .showcase-image img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .showcase-text h2 {
        font-size: 3rem;
    }

    .showcase-images {
        flex-direction: column;
        align-items: center;
    }

    .showcase-image {
        max-width: 100%;
    }

    .showcase-image img {
        height: 350px;
    }

    .image-overlay {
        bottom: 20px;
        left: 20px;
        font-size: 1rem;
    }
} 