@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* ==================== MINIMAL PURPLE & GOLD THEME ==================== */
:root {
    /* Main Theme - Purple */
    --primary: #667eea;
    --primary-light: #8b9df5;
    --primary-dark: #5568d3;

    /* Accent - Gold/Orange blend */
    --accent: #ffb74d;
    --accent-light: #ffc570;
    --accent-dark: #ff9800;
    --gold: #ffd700;

    /* Backgrounds - Translucent for video visibility */
    --bg-dark: rgba(15, 15, 25, 0.75);
    --bg-card: rgba(25, 25, 40, 0.85);
    --bg-hover: rgba(35, 35, 50, 0.9);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: Poppins, sans-serif;
    transition: 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
}

body {
    background: #000000 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Smooth Page Animations - Unique & Dynamic */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.content-section {
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    animation: slideInFromLeft 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-content h1 {
    animation: slideInFromLeft 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-content p {
    animation: slideInFromLeft 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .cta-button {
    animation: zoomIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.service-card {
    animation: rotateIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-fill-mode: both;
}

.service-card:hover {
    animation: float 2s ease-in-out infinite;
}

.client-logo {
    animation: zoomIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-fill-mode: both;
}

.stat-box {
    animation: fadeInUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-fill-mode: both;
}

.section-title {
    animation: slideInFromRight 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.section-subtitle {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Stagger animation for grid items */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.client-logo:nth-child(1) { animation-delay: 0.1s; }
.client-logo:nth-child(2) { animation-delay: 0.15s; }
.client-logo:nth-child(3) { animation-delay: 0.2s; }
.client-logo:nth-child(4) { animation-delay: 0.25s; }
.client-logo:nth-child(5) { animation-delay: 0.3s; }
.client-logo:nth-child(6) { animation-delay: 0.35s; }
.client-logo:nth-child(7) { animation-delay: 0.4s; }
.client-logo:nth-child(8) { animation-delay: 0.45s; }

.stat-box:nth-child(1) { animation-delay: 0.2s; }
.stat-box:nth-child(2) { animation-delay: 0.3s; }
.stat-box:nth-child(3) { animation-delay: 0.4s; }

main {
    width: 100%;
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 12px;
    color: #1a1a1a !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 183, 77, 0.3);
    letter-spacing: 0.3px;
    line-height: 1;
    min-height: 48px;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(255, 183, 77, 0.5);
    color: #1a1a1a !important;
}

/* Content Sections */
.content-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

/* Glass Effect - Minimal translucent with gold accents */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 183, 77, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.glass:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 183, 77, 0.25);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Clients Section */
.clients-container {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
}

.client-logo {
    width: 250px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.client-logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%) brightness(1) invert(0);
    opacity: 1;
    transition: all 0.3s ease;
}

header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    width: 100%;
    min-height: 100px;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 7%;
}

header .logo {
    text-decoration: none;
}

header .logo h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s ease;
}

header .logo:hover h2 {
    color: rgba(255, 215, 0, 0.95);
}

header nav ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

header nav ul li a:hover {
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-2px);
}

header nav ul li a.nav-cta {
    background: linear-gradient(135deg, #ffb74d, #ffd700);
    color: #1a1a1a !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

header nav ul li a.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 183, 77, 0.4);
}

header nav ul li a.active {
    color: #ffb74d;
    border-bottom: 2px solid #ffb74d;
    padding-bottom: 4px;
}

header nav ul li a.nav-cta.active {
    border-bottom: none !important;
    padding: 10px 24px !important;
    color: #1a1a1a !important;
    background: linear-gradient(135deg, #ffb74d, #ffd700) !important;
}


/* footer */

footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 400px;
    padding: 60px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footerContent {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Brand Section */
footer .footerBrand {
    text-align: center;
}

footer .footerBrand h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

footer .footerBrand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

/* Links Section */
footer .footerLinks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
}

footer .linkColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer .linkColumn h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

footer .linkColumn ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

footer .linkColumn ul li {
    list-style: none;
}

footer .linkColumn a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .linkColumn a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Bottom Section */
footer .footerBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
}

footer .footerBottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}
