/* =========================================
   MAIN STYLES.CSS - FULL WORKING CODE
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom Color Variables */
:root {
    --primary-color: #272668;
    --primary-light: #3d3c7f;
    --primary-dark: #1a1950;
    --accent-color: #4a49a0;
    --cta-color: #272668;
    --cta-hover: #3d3c7f;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark-bg: #0a0e27;
    --card-bg: rgba(255, 255, 255, 0.08);
    --accent-blue: #4facfe;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-teal: #14b8a6;
    --accent-orange: #f59e0b;
    --accent-indigo: #3b82f6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 40px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover { transform: scale(1.05); }

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* SCROLLSPY ACTIVE STATE FOR DESKTOP */
.nav-links a.active-link {
    color: var(--text-primary);
    font-weight: 600;
}
.nav-links a.active-link::after { width: 100%; }

.nav-cta {
    background: var(--cta-color) !important;
    color: var(--text-primary) !important;
    padding: 12px 28px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(39, 38, 104, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--cta-hover) !important;
    box-shadow: 0 15px 35px rgba(39, 38, 104, 0.3);
}

.nav-links a.active-link.nav-cta::after { display: none; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 9999;
    padding: 8px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-6px, 7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-6px, -7px); }

/* =========================================
   MOBILE NAVIGATION
   ========================================= */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100dvh;
    bottom: 0;
    background: #000000;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 998;
    padding: 100px 30px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active { right: 0; }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 999;
}

.mobile-nav-links a:hover {
    color: #4facfe;
    padding-left: 10px;
}

.mobile-nav-links a i {
    color: #4facfe;
    width: 24px;
}

.mobile-nav-cta {
    background: var(--cta-color) !important;
    color: var(--text-primary) !important;
    padding: 16px 28px !important;
    border-radius: 30px;
    text-align: center;
    margin-top: 25px;
    border: none !important;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(39, 38, 104, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
    background: var(--cta-hover) !important;
    transform: translateY(-2px);
}



/* =========================================
   FIX: MOBILE NAV LOGO SIZE
   ========================================= */

/* Logo Targeting: Jab mobile nav khulega toh uske andar jo bhi logo hoga, wo chhota ho jayega */
.mobile-nav .logo img,
.mobile-nav img {
    height: 50px !important;       /* Logo ki height 50px fix kar di */
    width: auto !important;        /* Ratio maintain rahega */
    max-width: 80% !important;     /* Width 80% se zyada nahi hogi */
    max-height: 60px !important;
    display: block;
    margin: 0 auto 30px auto;       /* Top: Auto, Bottom: 30px gap (Se neeche links shmat honge) */
    object-fit: contain;
}

/* Agar logo ka text bhi hai toh use bhi chhota karein */
.mobile-nav .logo {
    display: block;
    margin-bottom: 40px; /* Links se upar gap badhaya taaki logo saaf dikhe */
    text-align: center;
}








/* =========================================
   OVERLAY
   ========================================= */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-toggle { pointer-events: auto; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding-top: 80px;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    background: rgba(39, 38, 104, 0.1);
    border: 1px solid rgba(39, 38, 104, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.float-1 { width: 120px; height: 120px; top: 15%; left: 10%; transform: rotate(45deg); }
.float-2 { width: 80px; height: 80px; top: 25%; right: 15%; transform: rotate(-30deg); }
.float-3 { width: 150px; height: 150px; bottom: 20%; left: 20%; transform: rotate(15deg); }
.float-4 { width: 100px; height: 100px; bottom: 15%; right: 10%; transform: rotate(-45deg); }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-left { display: flex; flex-direction: column; }

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-primary);
    overflow: hidden;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(39, 38, 104, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 10px 25px rgba(39, 38, 104, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(39, 38, 104, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-right { display: flex; justify-content: center; align-items: center; position: relative; }

.modern-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 90vw;
    max-height: 90vw;
}

.central-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(39, 38, 104, 0.1);
    border: 2px solid rgba(39, 38, 104, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
    aspect-ratio: 1 / 1;
}

.central-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    aspect-ratio: 1 / 1;
    min-width: 0;
    min-height: 0;
}

.orbit-1 { width: 300px; height: 300px; animation: rotate 20s linear infinite; }
.orbit-2 { width: 400px; height: 400px; animation: rotate 30s linear infinite reverse; }
.orbit-3 { width: 500px; height: 500px; animation: rotate 40s linear infinite; }

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    left: 50%;
    transform-origin: center center;
    aspect-ratio: 1 / 1;
}

.orbit-1 .orbit-item-1 { top: -25px; transform: translateX(-50%); }
.orbit-1 .orbit-item-2 { bottom: -25px; transform: translateX(-50%); }
.orbit-2 .orbit-item-3 { top: 50%; left: -25px; transform: translateY(-50%); }
.orbit-2 .orbit-item-4 { top: 50%; right: -25px; left: auto; transform: translateY(-50%); }
.orbit-3 .orbit-item-1 { top: -25px; transform: translateX(-50%); }
.orbit-3 .orbit-item-2 { bottom: -25px; transform: translateX(-50%); }

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 60px;
}

.about-cta {
    padding: 16px 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.about-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.services-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header { text-align: center; margin-bottom: 30px; }

.services-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.search-container {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.12);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-gradient);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.12);
}

.service-card:active { transform: translateY(-2px) scale(1.01); }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon { font-size: 28px; color: var(--icon-color); }

.service-badge {
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--badge-bg);
    color: var(--badge-color);
    font-size: 12px;
    font-weight: 600;
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.service-stats { display: flex; gap: 20px; }

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-item i { color: var(--icon-color); }

.service-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--icon-bg);
    border: none;
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-action:hover {
    transform: rotate(45deg);
    background: var(--icon-color);
    color: white;
}

/* Service Card Colors */
.service-card:nth-child(1) { --card-gradient: linear-gradient(90deg, #4facfe, #00f2fe); --icon-bg: rgba(79, 172, 254, 0.2); --icon-color: #4facfe; --badge-bg: rgba(79, 172, 254, 0.2); --badge-color: #4facfe; }
.service-card:nth-child(2) { --card-gradient: linear-gradient(90deg, #a855f7, #7c3aed); --icon-bg: rgba(168, 85, 247, 0.2); --icon-color: #a855f7; --badge-bg: rgba(168, 85, 247, 0.2); --badge-color: #a855f7; }
.service-card:nth-child(3) { --card-gradient: linear-gradient(90deg, #ec4899, #f43f5e); --icon-bg: rgba(236, 72, 153, 0.2); --icon-color: #ec4899; --badge-bg: rgba(236, 72, 153, 0.2); --badge-color: #ec4899; }
.service-card:nth-child(4) { --card-gradient: linear-gradient(90deg, #14b8a6, #10b981); --icon-bg: rgba(20, 184, 166, 0.2); --icon-color: #14b8a6; --badge-bg: rgba(20, 184, 166, 0.2); --badge-color: #14b8a6; }
.service-card:nth-child(5) { --card-gradient: linear-gradient(90deg, #f59e0b, #f97316); --icon-bg: rgba(245, 158, 11, 0.2); --icon-color: #f59e0b; --badge-bg: rgba(245, 158, 11, 0.2); --badge-color: #f59e0b; }
.service-card:nth-child(6) { --card-gradient: linear-gradient(90deg, #3b82f6, #6366f1); --icon-bg: rgba(59, 130, 246, 0.2); --icon-color: #3b82f6; --badge-bg: rgba(59, 130, 246, 0.2); --badge-color: #3b82f6; }
.service-card:nth-child(7) { --card-gradient: linear-gradient(90deg, #f97316, #ef4444); --icon-bg: rgba(249, 115, 22, 0.2); --icon-color: #f97316; --badge-bg: rgba(249, 115, 22, 0.2); --badge-color: #f97316; }
.service-card:nth-child(8) { --card-gradient: linear-gradient(90deg, #8b5cf6, #7c3aed); --icon-bg: rgba(139, 92, 246, 0.2); --icon-color: #8b5cf6; --badge-bg: rgba(139, 92, 246, 0.2); --badge-color: #8b5cf6; }
.service-card:nth-child(9) { --card-gradient: linear-gradient(90deg, #10b981, #059669); --icon-bg: rgba(16, 185, 129, 0.2); --icon-color: #10b981; --badge-bg: rgba(16, 185, 129, 0.2); --badge-color: #10b981; }

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.why-choose-header { text-align: center; margin-bottom: 60px; }

.why-choose-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--feature-gradient);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    font-size: 36px;
    color: var(--icon-color);
    position: relative;
    z-index: 2;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--icon-bg);
    z-index: 1;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card:nth-child(1) { --feature-gradient: linear-gradient(90deg, #4facfe, #00f2fe); --icon-bg: rgba(79, 172, 254, 0.2); --icon-color: #4facfe; }
.feature-card:nth-child(2) { --feature-gradient: linear-gradient(90deg, #a855f7, #7c3aed); --icon-bg: rgba(168, 85, 247, 0.2); --icon-color: #a855f7; }
.feature-card:nth-child(3) { --feature-gradient: linear-gradient(90deg, #ec4899, #f43f5e); --icon-bg: rgba(236, 72, 153, 0.2); --icon-color: #ec4899; }
.feature-card:nth-child(4) { --feature-gradient: linear-gradient(90deg, #14b8a6, #10b981); --icon-bg: rgba(20, 184, 166, 0.2); --icon-color: #14b8a6; }

/* Team Section */
/* =========================================
   TEAM SECTION (UPDATED WITH PERFECT LOGIC)
   ========================================= */
.team-section {
    padding: 80px 20px 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
    width: 100%;
    background: #0a0a0a;
    overflow: hidden;
    z-index: 1;
}

.team-section-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    max-width: 800px;
    z-index: 20;
    position: relative;
    padding-top: 20px;
}

.team-section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Container */
.team-slider-viewport {
    width: 100%;
    max-width: 1000px;
    overflow: hidden; 
    position: relative;
    padding: 50px 0; 
    opacity: 1;
    margin: 0 auto;
    z-index: 5;
}

.team-slider-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transform: translateX(0); 
    cursor: grab;
    min-width: min-content; 
}

.team-slider-track:active {
    cursor: grabbing;
}

/* Card Styles */
.team-card {
    min-width: 300px;
    width: 320px; 
    max-width: 350px;
    flex: 0 0 auto;
    background-color: #1a1d24;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 0 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    border: 1px solid transparent;
}

/* Active State Desktop */
.team-card.active {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    border: 1px solid #6366f1;
    z-index: 10;
}

.card-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: #000; 
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center; 
    transform-origin: center;
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: #1a1d24;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: 'Space Grotesk', sans-serif;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.member-position {
    font-size: 0.85rem; 
    color: #6366f1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.member-intro {
    font-size: 0.95rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4757; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #ff4757;
    color: #fff;
}

/* Navigation Buttons */
.team-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 1100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 20;
}

.team-nav-btn {
    pointer-events: auto;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-nav-btn:hover {
    background: #6366f1;
    transform: scale(1.1);
}

/* Background Glows (Optional, adds aesthetics) */
.team-section .bg-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablets */
@media (max-width: 900px) {
    .team-card {
        width: 45vw;
        max-width: 320px;
    }
}

/* Mobile Phones - CENTERED BOXES & EDGE BUTTONS */
@media (max-width: 768px) {
    .team-section {
        padding: 40px 0 100px; /* Remove side padding */
    }

    .team-section-title { 
        font-size: 1.6rem; 
        margin-bottom: 15px;
    }

    .team-section-subtitle {
        font-size: 0.9rem;
    }

    /* Reduce viewport padding */
    .team-slider-viewport {
        padding: 30px 0; 
    }

    /* BOX SIZING */
    .team-card {
        width: 85vw; /* Card takes 85% width */
        max-width: 360px; 
        min-width: 280px;
        margin: 0; /* Remove margins */
        border-radius: 15px;
        height: auto;
    }

    .team-slider-track {
        gap: 15px; /* Gap between cards */
    }

    .card-image-wrapper {
        height: 230px; 
    }

    .card-content {
        padding: 20px;
    }

    .team-card.active {
        transform: none !important; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.1);
    }

    /* TYPOGRAPHY */
    .member-name { font-size: 1.2rem; }
    .member-position { font-size: 0.7rem; margin-bottom: 10px; }
    .member-intro {
        font-size: 0.85rem;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* NAVIGATION BUTTONS FIX (Main Fix) */
    .team-slider-nav {
        /* Reset positioning for full width control */
        left: 0; 
        transform: none;
        width: 100%; /* Full screen width */
        max-width: 100%;
        padding: 0 10px; /* Buttons 10px from screen edge */
        top: 40%; /* Adjust vertical alignment slightly to look good with card height */
        z-index: 30; /* Ensure buttons are on top of cards */
    }

    .team-nav-btn {
        width: 40px;
        height: 40px;
        background: rgba(0,0,0,0.6); /* Dark semi-transparent */
        border: 1px solid rgba(255,255,255,0.2);
        backdrop-filter: blur(4px); /* Blurry background */
    }
    
    .team-nav-btn:hover {
        background: rgba(99, 102, 241, 0.9);
        transform: scale(1.1);
    }

    .social-btn {
        width: 32px;
        height: 32px;
    }
}
    
/* Extra Small Phones */
@media (max-width: 350px) {
    .team-card {
        width: 90vw; /* Wider on tiny screens */
    }
    .card-image-wrapper {
        height: 200px;
    }
}



/* =========================================
   PORTFOLIO SECTION (UPDATED FOR 3:1 BANNER)
   ========================================= */
.portfolio-section {
    padding: 60px 0 100px;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.portfolio-header { text-align: center; margin-bottom: 40px; }

.portfolio-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-tab:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
    color: var(--text-primary);
    font-weight: 600;
    background: var(--primary-gradient);
    border-color: transparent;
}

.portfolio-slider {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.project-card {
    width: 100%;
    flex-shrink: 0;
    padding: 0 5px;
    background: transparent;
}

/* --- THE KEY CHANGE: NO CROP & 3:1 RATIO --- */
.project-image-container {
    width: 100%;
    margin-bottom: 15px;
}

.project-image {
    /* Set aspect ratio to 3:1 to match 738x240 image */
    aspect-ratio: 3 / 1; 
    
    width: 100%;
    background: #0f1115;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.project-image img {
    width: 100%;
    height: 100%;
    
    /* 'contain' ensures the full image fits without crop */
    object-fit: contain; 
    
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.02);
}

.project-content {
    padding: 10px 5px;
    text-align: center;
}

.project-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-description {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
}

.project-cta {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s ease;
}

.project-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--primary-gradient);
    width: 24px;
    border-radius: 4px;
}

.lower-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Cards in Lower Section */
.lightbox-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.lightbox-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lightbox-preview {
    height: clamp(160px, 22vw, 200px);
    position: relative;
    overflow: hidden;
}

.lightbox-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lightbox-card:hover .lightbox-preview img { transform: scale(1.05); }

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-card:hover .lightbox-overlay { opacity: 1; }

.lightbox-icon {
    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: clamp(16px, 3vw, 24px);
}

.lightbox-content { padding: clamp(15px, 3vw, 25px); }

.lightbox-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.lightbox-description {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    line-height: 1.5;
}

.video-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-preview {
    height: clamp(160px, 22vw, 200px);
    position: relative;
    overflow: hidden;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-preview img { transform: scale(1.05); }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: clamp(50px, 7vw, 80px);
    height: clamp(50px, 7vw, 80px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: clamp(20px, 3vw, 30px);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-content { padding: clamp(15px, 3vw, 25px); }

.video-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.video-description {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =========================================
   PORTFOLIO - STATS CARD (FIXED ALIGNMENT)
   ========================================= */
.stats-card {
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 25px;
}

.stats-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

/* INDIVIDUAL ITEMS FIX */
.stats-card .stat-item, 
.stats-card .item { 
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* ICON STYLING */
.stats-card .stat-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.stats-card .stat-icon i { font-size: 24px; }

/* COLORS FIX */
/* 1. BLUE ITEM (Traffic) */
.stats-card .stat-blue .stat-icon { 
    background-color: rgba(79, 172, 254, 0.2) !important; 
    border-color: #4facfe !important; 
}
.stats-card .stat-blue .stat-icon i { color: #4facfe !important; }

/* 2. GREEN ITEM (ROI) - YE WO HAI JAHAN PROBLEM THI */
.stats-card .item.stat-green .stat-icon { 
    background-color: rgba(16, 185, 129, 0.2) !important; 
    border-color: #10b981 !important; 
}
.stats-card .item.stat-green .stat-icon i { color: #10b981 !important; }

/* 3. ORANGE ITEM (Leads) */
.stats-card .stat-orange .stat-icon { 
    background-color: rgba(245, 158, 11, 0.2) !important; 
    border-color: #f59e0b !important; 
}
.stats-card .stat-orange .stat-icon i { color: #f59e0b !important; }

/* TEXT STYLING */
.stats-card .stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.stats-card .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
}

.stats-card .stat-label {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
}

/* =========================================
   TESTIMONIALS SECTION - FULL CSS FIX
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.testimonials-header { text-align: center; margin-bottom: 60px; }

.testimonials-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding: 0 10px;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 450px;
    
    transform: translateY(50px);
    opacity: 0;
}

.testimonial-card.active {
    transform: translateY(0) !important;
    opacity: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 150px;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    z-index: 1;
    position: relative;
}

.star {
    color: #fbbf24;
    font-size: 22px;
    transition: all 0.3s ease;
}

.star.empty { color: rgba(255, 255, 255, 0.2); }

.testimonial-card:hover .star { transform: scale(1.2) rotate(15deg); }

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
    flex-grow: 1;
    z-index: 1;
    position: relative;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    width: 100%;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.author-info { flex-grow: 1; }

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-position {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.author-company {
    font-size: 14px;
    color: var(--accent-blue);
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.nav-arrow:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: var(--accent-blue);
    transform: scale(1.1);
    color: var(--accent-blue);
}

.testimonial-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-dot.active {
    background: var(--primary-gradient);
    width: 40px;
    border-radius: 6px;
    transform: scale(1.1);
}

/* Modal Styles */
/* =========================================
   MODERN MODAL STYLES (GSAP READY)
   ========================================= */
.modal {
    display: none; /* JS se 'flex' hoga */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Darker Background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0; /* JS se control hoga */
}

.modal.show {
    display: flex;
    opacity: 1;
}

/* Modal Box - The Card */
.modal-content {
    background: linear-gradient(145deg, #1e1e24, #151518); /* Solid Dark Gradient */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle Border */
    border-radius: 24px;
    
    /* Responsive Width */
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    
    /* Scroll Handling */
    overflow-y: auto;
    position: relative;
    
    /* Shadow & Layout */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        border-radius: 20px;
        max-height: 85vh;
        margin: 10px 0; /* Thoda top/bottom space */
    }
}

/* --- HEADER SECTION --- */
.modal-header {
    padding: 30px 30px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.modal-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.modal-subtitle {
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- BODY SECTION --- */
.modal-body {
    padding: 30px;
    flex-grow: 1;
}

.modal-description {
    font-size: 16px;
    color: #d4d4d8;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Feature List Styling */
.modal-features h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1); /* Indigo tint */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8; /* Light Indigo */
    font-size: 18px;
}

.feature-text {
    color: #e4e4e7;
    font-weight: 500;
    font-size: 15px;
}

/* --- FOOTER SECTION --- */
.modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end; /* Button right side */
    background: rgba(0, 0, 0, 0.2);
}

/* Button Styling */
.modal-btn {
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scrollbar Styling for Modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: #151518;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 3px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}







.feature-list { list-style: none; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    margin-bottom: 12px;
    background: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover { background: rgba(255, 255, 255, 0.12); transform: translateX(5px); }

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--feature-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--feature-icon-color);
    font-size: 16px;
}

.feature-text { flex: 1; font-size: 14px; font-weight: 500; }

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center; /* <--- Yeh button center mein layega */
}

.modal-btn {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-btn-primary {
    background: var(--modal-btn-bg);
    color: white;
}

.modal-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.modal-btn-secondary {
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #0b0d10;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
    color: #ffffff;
}

.contact-section .bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseBg 8s infinite alternate;
    pointer-events: none;
}

@keyframes pulseBg {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

/* SPLIT WRAPPER */
.contact-split-wrapper {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column; /* Mobile Default */
    gap: 60px;
    position: relative;
    z-index: 10;
    align-items: center; /* Mobile Center */
}

/* LEFT SIDE */
.contact-branding-column {
    width: 100%;
    text-align: center; /* Mobile: Center Text */
    display: flex;
    flex-direction: column;
    align-items: center; /* Mobile: Center Items */
    order: 1; /* Ensure content is first on mobile */
}

/* Logo Styling */
.contact-brand-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 1);
    border-radius: 24px; /* Modern Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    position: relative;
}

.contact-brand-logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Modern Heading */
.brand-heading {
    font-size: clamp(2.2rem, 6vw, 3.5rem); /* Big Heading */
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    
    /* Premium Text Gradient */
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

/* Modern Subtext */
.brand-subtext {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

/* Modern Trust Points */
.trust-points-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 500px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Center on Mobile */
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    color: #10b981; /* Bright Green */
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

.trust-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.5px;
}

/* RIGHT SIDE: FORM */
.contact-form-column {
    width: 100%;
    order: 2; /* Form comes second on mobile */
}

.contact-form-card {
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 30px; /* More rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.contact-input-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-input, .contact-select, .contact-textarea {
    width: 100%;
    background-color: rgba(19, 21, 26, 0.9);
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 16px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
    border-color: #6366f1;
    background-color: rgba(19, 21, 26, 1);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.contact-select-wrapper { position: relative; }
.contact-select-wrapper::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.contact-textarea { resize: none; min-height: 110px; }

.contact-label {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: transparent;
}

.contact-input:focus ~ .contact-label,
.contact-select:focus ~ .contact-label,
.contact-textarea:focus ~ .contact-label,
.contact-input:not(:placeholder-shown) ~ .contact-label,
.contact-textarea:not(:placeholder-shown) ~ .contact-label,
.contact-select:valid ~ .contact-label {
    top: -10px;
    left: 14px;
    font-size: 0.75rem;
    color: #6366f1;
    background-color: #1a1d24; /* Dark bg behind label */
    padding: 0 5px;
    font-weight: 600;
    border-radius: 4px;
}

.contact-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
    filter: brightness(1.1);
}

/* =========================================
   DESKTOP RESPONSIVE (Split Layout)
   ========================================= */
@media (min-width: 992px) {
    
    .contact-split-wrapper {
        flex-direction: row; /* Side by Side */
        align-items: center;
        justify-content: space-between;
    }

    /* Left Column */
    .contact-branding-column {
        flex: 0 0 48%; /* 48% Width */
        text-align: left; /* Desktop: Left Align */
        align-items: flex-start;
        padding-right: 50px;
    }

    /* Center Content on Desktop? Uncomment next line if you want centered text on Desktop too */
    /* .contact-branding-column { text-align: center; align-items: center; } */

    .contact-brand-icon-wrapper {
        margin: 0 0 30px 0; /* Logo left side */
    }
    
    /* Text sizes bigger on desktop */
    .brand-heading {
        font-size: 3.5rem; 
        margin-bottom: 30px;
    }

    .brand-subtext {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }

    .trust-points-container {
        align-items: flex-start; /* Left align list */
        max-width: 100%;
    }
    
    .trust-item {
        justify-content: flex-start;
    }

    /* Right Column */
    .contact-form-column {
        flex: 0 0 48%;
    }
}

/* Lightbox & Video Modals */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active { display: flex; }

.lightbox-modal .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    padding: 0;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active { display: flex; }

.video-container {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-frame {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-close:hover { background: rgba(255,255,255,0.3); }

/* Modern Footer */
.modern-footer {
    background: #080808;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand { padding-right: 20px; }

.footer-brand .logo { margin-bottom: 20px; display: inline-block; }
.footer-brand .logo img { height: 40px; filter: brightness(0) invert(1); }

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-col h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    gap: 15px;
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.footer-links a:hover i { opacity: 1; }

.footer-contact-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-info i { color: var(--accent-purple); width: 20px; }

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer-newsletter { margin-top: 25px; }

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
}

.newsletter-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.newsletter-btn:hover { filter: brightness(1.2); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright { color: var(--text-secondary); font-size: 0.9rem; }

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: #fff; }

/* Preloader CSS */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.logo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    animation: logoZoom 1.5s ease-in-out infinite alternate;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.5);
    animation: pulseRing 2s infinite;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulseRing 2s infinite 0.5s;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes logoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content { gap: 60px; }
    .modern-visual { width: 450px; height: 450px; }
    .central-circle { width: 180px; height: 180px; }
    .orbit-1 { width: 280px; height: 280px; }
    .orbit-2 { width: 360px; height: 360px; }
    .orbit-3 { width: 440px; height: 440px; }
    .orbit-item { width: 45px; height: 45px; font-size: 18px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .testimonial-slide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-right { order: -1; }
    .modern-visual { width: 400px; height: 400px; }
    .central-circle { width: 150px; height: 150px; }
    .orbit-1 { width: 250px; height: 250px; }
    .orbit-2 { width: 350px; height: 350px; }
    .orbit-3 { width: 450px; height: 450px; }
    .orbit-item { width: 40px; height: 40px; font-size: 16px; }
    .hero-buttons { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; }
    .testimonial-slide { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 20px 25px; }
    .menu-toggle { display: flex; }
    .nav-links { display: none; }
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 20px;
    }
    .hero-content { padding: 0 25px; gap: 40px; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-description { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .modern-visual { width: 300px; height: 300px; }
    .central-circle { width: 120px; height: 120px; }
    .orbit-1 { width: 200px; height: 200px; }
    .orbit-2 { width: 250px; height: 250px; }
    .orbit-3 { width: 300px; height: 300px; }
    .orbit-item { width: 35px; height: 35px; font-size: 14px; }
    .floating-element { opacity: 0.05; }
    .central-circle { opacity: 0.7; }
    .orbit { opacity: 0.5; }
    .orbit-item { opacity: 0.7; }
    .about-section { padding: 60px 0; }
    .about-container { padding: 0 25px; }
    .about-content { margin-bottom: 50px; }
    .about-description { margin-bottom: 40px; }
    .services-section { padding: 20px 0; }
    .services-container { padding: 0 25px; gap: 16px; }
    .services-header { margin-bottom: 20px; }
    .search-container { margin: 0 auto 20px; }
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        height: auto !important;
        overflow: visible !important;
    }
    .service-card { height: auto !important; min-height: 250px !important; overflow: visible !important; padding: 20px; }
    .service-title { font-size: 20px; }
    .service-description { font-size: 14px; margin-bottom: 15px; }
    .service-icon-wrapper { width: 50px; height: 50px; margin-bottom: 15px; }
    .service-icon { font-size: 24px; }
    .service-stats { gap: 10px; }
    .service-action { width: 35px; height: 35px; }
    .why-choose-section { padding: 60px 0; }
    .why-choose-container { padding: 0 25px; }
    .why-choose-header { margin-bottom: 40px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .feature-card { padding: 30px 20px; }
    .feature-icon-wrapper { width: 60px; height: 60px; margin-bottom: 20px; }
    .feature-icon { font-size: 28px; }
    .feature-title { font-size: 20px; }
    .feature-description { font-size: 14px; }
    .portfolio-section { padding: 40px 0 60px; }
    .portfolio-container { padding: 0 15px; }
    .portfolio-header { margin-bottom: 30px; }
    .filter-tabs { margin-bottom: 25px; }
    .slider-arrow.prev { left: 5px; }
    .slider-arrow.next { right: 5px; }
    .lower-section { grid-template-columns: 1fr; margin-top: 30px; }
    .floating-element { opacity: 0.05; }
    .geometric-pattern { opacity: 0.05; }
    .geo-line { opacity: 0.05; }
    .testimonials-section { padding: 60px 0; }
    .testimonials-container { padding: 0 25px; }
    .testimonials-header { margin-bottom: 40px; }
    .testimonial-card { padding: 30px 25px; }
    .testimonial-text { font-size: 16px; }
    .author-avatar { width: 60px; height: 60px; }
    .author-name { font-size: 18px; }
    .author-position { font-size: 14px; }
    .author-company { font-size: 13px; }
    .testimonial-controls { gap: 20px; margin-top: 30px; }
    .nav-arrow { width: 40px; height: 40px; font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { padding-right: 0; }
}

@media (max-width: 480px) {
    nav { padding: 15px 20px; }
    .logo img { height: 35px; }
    .hero { padding: 100px 0 40px; height: auto; min-height: 100vh; }
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: clamp(2rem, 12vw, 3.5rem); }
    .hero-description { font-size: 1rem; margin-bottom: 30px; }
    .btn { padding: 14px 28px; font-size: 15px; }
    .modern-visual { width: 250px; height: 250px; }
    .central-circle { width: 100px; height: 100px; }
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 220px; height: 220px; }
    .orbit-3 { width: 260px; height: 260px; }
    .orbit-item { width: 30px; height: 30px; font-size: 12px; }
    .floating-element { opacity: 0.02; }
    .central-circle { opacity: 0.6; }
    .orbit { opacity: 0.4; }
    .orbit-item { opacity: 0.6; }
    .about-section { padding: 40px 0; }
    .about-container { padding: 0 20px; }
    .about-content { margin-bottom: 40px; }
    .about-description { margin-bottom: 30px; }
    .about-cta { padding: 14px 30px; font-size: 16px; }
    .stat-card { padding: 30px 20px; }
    .services-section { padding: 40px 0; }
    .services-container { padding: 0 20px; }
    .services-header { margin-bottom: 15px; }
    .search-container { margin: 0 auto 15px; }
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        height: auto !important;
        overflow: visible !important;
    }
    .service-card { height: auto !important; min-height: 220px !important; overflow: visible !important; padding: 15px; }
    .service-title { font-size: 18px; }
    .service-description { font-size: 13px; margin-bottom: 12px; }
    .service-icon-wrapper { width: 45px; height: 45px; margin-bottom: 12px; }
    .service-icon { font-size: 20px; }
    .service-stats { gap: 8px; }
    .service-action { width: 30px; height: 30px; }
    .why-choose-section { padding: 40px 0; }
    .why-choose-container { padding: 0 20px; }
    .why-choose-header { margin-bottom: 30px; }
    .features-grid { grid-template-columns: 1fr; gap: 15px; }
    .feature-card { padding: 25px 15px; }
    .feature-icon-wrapper { width: 50px; height: 50px; margin-bottom: 15px; }
    .feature-icon { font-size: 24px; }
    .feature-title { font-size: 18px; }
    .feature-description { font-size: 13px; }
    .portfolio-section { padding: 30px 0 40px; }
    .portfolio-container { padding: 0 10px; }
    .portfolio-header { margin-bottom: 25px; }
    .filter-tabs { margin-bottom: 20px; }
    .filter-tab { padding: 8px 15px; font-size: 14px; }
    .project-content { padding: 15px; }
    .testimonials-section { padding: 40px 0; }
    .testimonials-container { padding: 0 20px; }
    .testimonials-header { margin-bottom: 30px; }
    .testimonial-card { padding: 25px 20px; }
    .testimonial-text { font-size: 15px; }
    .author-avatar { width: 50px; height: 50px; }
    .author-name { font-size: 16px; }
    .author-position { font-size: 13px; }
    .author-company { font-size: 12px; }
    .testimonial-controls { gap: 15px; margin-top: 25px; }
    .nav-arrow { width: 35px; height: 35px; font-size: 14px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 380px) {
    .hero-content { padding: 0 15px; }
    .modern-visual { width: 220px; height: 220px; }
    .central-circle { width: 90px; height: 90px; }
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 190px; height: 190px; }
    .orbit-3 { width: 220px; height: 220px; }
    .orbit-item { width: 28px; height: 28px; font-size: 11px; }
    .about-section { padding: 30px 0; }
    .about-container { padding: 0 15px; }
    .about-content { margin-bottom: 30px; }
    .about-description { margin-bottom: 25px; }
    .about-cta { padding: 12px 25px; font-size: 15px; }
    .stat-card { padding: 25px 15px; }
    .services-section { padding: 30px 0; }
    .services-container { padding: 0 15px; }
    .services-header { margin-bottom: 10px; }
    .search-container { margin: 0 auto 12px; }
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        height: auto !important;
        overflow: visible !important;
    }
    .service-card { height: auto !important; min-height: 200px !important; overflow: visible !important; padding: 12px; }
    .service-title { font-size: 16px; }
    .service-description { font-size: 12px; margin-bottom: 10px; }
    .service-icon-wrapper { width: 40px; height: 40px; margin-bottom: 10px; }
    .service-icon { font-size: 18px; }
    .service-stats { gap: 6px; }
    .service-action { width: 28px; height: 28px; }
    .why-choose-section { padding: 30px 0; }
    .why-choose-container { padding: 0 15px; }
    .why-choose-header { margin-bottom: 25px; }
    .features-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card { padding: 20px 15px; }
    .feature-icon-wrapper { width: 45px; height: 45px; margin-bottom: 12px; }
    .feature-icon { font-size: 22px; }
    .feature-title { font-size: 16px; }
    .feature-description { font-size: 12px; }
    .testimonials-section { padding: 30px 0; }
    .testimonials-container { padding: 0 15px; }
    .testimonials-header { margin-bottom: 25px; }
    .testimonial-card { padding: 20px 15px; }
    .testimonial-text { font-size: 14px; }
    .author-avatar { width: 45px; height: 45px; }
    .author-name { font-size: 15px; }
    .author-position { font-size: 12px; }
    .author-company { font-size: 11px; }
    .testimonial-controls { gap: 12px; margin-top: 20px; }
    .nav-arrow { width: 30px; height: 30px; font-size: 12px; }
    .whatsapp-float { width: 45px; height: 45px; font-size: 22px; bottom: 15px; right: 15px; }
}






/* =========================================
   FIX: CREATIVE CAMPAIGN GALLERY (REMOVE OVERLAY & ZOOM)
   ========================================= */

/* 1. Overlay aur Icon ko hide kar diya (Dark layer disappear ho jayega) */
.lightbox-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* 2. Image hover par Zoom/Scale effect hata diya */
.lightbox-card:hover .lightbox-preview img {
    transform: none !important;
}

/* 3. Card ko hover par upar uthne se (Lift) roka - Static rakhne ke liye */
.lightbox-card:hover {
    transform: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important; /* Normal shadow rakhna */
    border-color: rgba(255, 255, 255, 0.1) !important; /* Normal border */
}



/* =========================================
   UPDATED PROJECT DESCRIPTION STYLES
   ========================================= */
.project-description {
    /* Font Sizing & Colors */
    font-size: clamp(14px, 1.5vw, 16px); /* Thoda adjust kiya taaki badi screen par bada na lage */
    color: var(--text-secondary);
    line-height: 1.6; /* Better readability */
    margin-bottom: 20px; /* Thoda space badhaya button se upar */
    
    /* Alignment */
    text-align: left; /* Text ko left align kiya professional look ke liye */
    width: 100%;      /* Poori width use kare */

    /* Modern Line Clamping (Ellipsis) */
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* Sirf 3 lines dikhayega */
    -webkit-box-orient: vertical;
    overflow: hidden;         /* Baaki text hide hoga */
    text-overflow: ellipsis;  /* End mein '...' aayega */
    
    /* Transition for smooth hover effects (if any) */
    transition: color 0.3s ease;
}

/* Optional: Hover par color change (Interactive feel) */
.project-card:hover .project-description {
    color: #d1d5db; /* Thoda light color on hover */
}




