/* Webnetics Logo Color Theme Variables */
:root {
    /* Primary Brand Colors from Logo */
    --primary-blue: #00BFFF;
    --primary-blue-dark: #0080FF;
    --primary-purple: #6A5ACD;
    --primary-pink: #FF69B4;
    --primary-pink-dark: #FF1493;
    --primary-orange: #FF8C00;
    --primary-orange-dark: #FF4500;
    
    /* Brand Gradients */
    --gradient-blue: linear-gradient(135deg, #00BFFF 0%, #0080FF 50%, #6A5ACD 100%);
    --gradient-pink: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #8A2BE2 100%);
    --gradient-orange: linear-gradient(135deg, #FF8C00 0%, #FF4500 50%, #FF69B4 100%);
    --gradient-primary: linear-gradient(135deg, #00BFFF 0%, #FF69B4 50%, #FF8C00 100%);
    
    /* Neutral Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: rgba(0, 191, 255, 0.1);
    
    /* Shadow Colors */
    --shadow-blue: rgba(0, 191, 255, 0.15);
    --shadow-pink: rgba(255, 105, 180, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Brands Section - Growth Partner Of Leading Brands */
.brands-section {
    padding: 60px 0;
    background: #ffffff;
}

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

.brands-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.brands-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.brands-slider {
    overflow: hidden;
    position: relative;
    height: 120px;
    margin: 0 auto;
}

.brands-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 30s linear infinite;
}

.brand-logo {
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brand-logo img {
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
  
}

.brand-logo:hover img {
   filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8));
    }
}

/* Brands Section - Growth Partner Of Leading Brands */
.brands-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #adb6e9 100%);
}

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

.brands-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.brands-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.brands-slider {
    overflow: hidden;
    position: relative;
    height: 120px;
    margin: 0 auto;
}

.brands-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 30s linear infinite;
}

.brand-logo {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #948d8d;
    border-radius: 8px;
    margin: 0 10px;
}

.brand-logo img {
    max-width: 160px;
    max-height: 80px;
     filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo:hover img {
  filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Responsive Brands Section */
@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }
    
    .brands-section .section-header h2 {
        font-size: 2rem;
    }
    
    .brands-section .section-header p {
        font-size: 1rem;
    }
    
    .brands-slider {
        height: 100px;
    }
    
    .brands-track {
        width: calc(200px * 16);
    }
    
    .brand-logo {
        min-width: 200px;
        padding: 15px;
        background-color: #000000;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin: 0 8px;
    }
    
    .brand-logo img {
        max-width: 150px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 30px 0;
    }
    
    .brands-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .brands-section .section-header p {
        font-size: 0.9rem;
    }
    
    .brands-slider {
        height: 80px;
    }
    
    .brands-track {
        width: calc(150px * 16);
        animation-duration: 20s;
    }
    
    .brand-logo {
        min-width: 150px;
        padding: 10px;
        background-color: #000000;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin: 0 6px;
    }
    
    .brand-logo img {
        max-width: 120px;
        max-height: 50px;
    }
}

/* Header and Navigation Styles */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 0;
    font-size: clamp(12px, 1.5vw, 14px);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.locations {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.locations span {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(11px, 1.3vw, 13px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--primary-orange);
    opacity: 1;
    transform: scale(1.1);
}

.navbar {
    padding: clamp(15px, 3vw, 20px) 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-blue);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(20px, 4vw, 30px);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-image {
    height: clamp(35px, 5vw, 50px);
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px var(--shadow-blue));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: nowrap;
    overflow: visible;
    justify-content: space-between;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(8px, 1.5vw, 15px);
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: clamp(8px, 1.2vw, 12px) clamp(12px, 1.8vw, 16px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: clamp(5px, 0.8vw, 8px);
    font-size: clamp(13px, 1.4vw, 15px);
    min-height: 40px;
    white-space: nowrap;
    background: transparent;
    border: 2px solid transparent;
}

.nav-links a:hover {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-blue);
}

.nav-links a.active {
    background: var(--gradient-pink);
    color: white;
    box-shadow: 0 6px 20px var(--shadow-pink);
}

/* Orbiting Circles Styles */
.orbiting-circles-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: url('../assets/98-982311_bg-marketing-digital-png.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
    min-height: clamp(500px, 60vh, 800px);
}

.orbiting-circles-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.orbiting-demo {
    width: 100%;
    background: transparent;
    border-radius: 24px;
    overflow: visible;
    padding: clamp(20px, 4vw, 60px);
    box-shadow: none;
    min-height: clamp(400px, 50vh, 600px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Mobile Layout */
.mobile-layout {
    display: block;
}

.stats-top, .stats-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: clamp(30px, 6vw, 40px);
}

.stats-bottom {
    margin-bottom: 0;
}

.stat-item {
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 16px;
   
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number .plus {
    color: var(--primary-orange);
    font-size: 0.7em;
}

.stat-label {
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Orbiting Circles Container */
.orbiting-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: clamp(30px, 6vw, 40px) 0;
    padding: clamp(10px, 2vw, 20px);
}

.orbiting-wrapper {
    position: relative;
    width: clamp(280px, 50vw, 400px);
    height: clamp(280px, 50vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Content */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: white;
    padding: 20px;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid #0066ff;
}

.center-earth {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* Orbiting Icons */
.orbit {
    position: absolute;
    border: 3px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    animation: rotate 25s linear infinite;
}

.orbit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #0066ff;
    animation: counter-rotate 25s linear infinite;
    overflow: hidden;
}

.orbit-icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
}

.orbit-icon i {
    font-size: 24px;
    color: #0066ff;
}

.orbit-icon.green {
    border-color: #10b981;
}

.orbit-icon.green img {
    filter: hue-rotate(90deg) saturate(1.2);
}

.orbit-icon.green i {
    color: #10b981;
}

.orbit-icon.black {
    border-color: #000000;
}

.orbit-icon.black img {
    filter: grayscale(0.8) contrast(1.2);
}

.orbit-icon.black i {
    color: #000000;
}

/* Different orbit sizes and positions */
.orbit-1 {
    width: 260px;
    height: 260px;
    top: 70px;
    left: 70px;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    top: 40px;
    left: 40px;
    animation-duration: 30s;
    animation-direction: reverse;
    border-color: rgba(16, 185, 129, 0.3);
}

.orbit-3 {
    width: 380px;
    height: 380px;
    top: 10px;
    left: 10px;
    animation-duration: 35s;
    border-color: rgba(0, 0, 0, 0.3);
}

/* Icon positioning on orbits */
.orbit-1 .orbit-icon:nth-child(1) { top: -30px; left: calc(50% - 30px); }
.orbit-1 .orbit-icon:nth-child(2) { top: calc(50% - 30px); right: -30px; }
.orbit-1 .orbit-icon:nth-child(3) { bottom: -30px; left: calc(50% - 30px); }
.orbit-1 .orbit-icon:nth-child(4) { top: calc(50% - 30px); left: -30px; }

.orbit-2 .orbit-icon:nth-child(1) { top: -30px; right: calc(25% - 30px); }
.orbit-2 .orbit-icon:nth-child(2) { right: -30px; top: calc(25% - 30px); }
.orbit-2 .orbit-icon:nth-child(3) { bottom: -30px; right: calc(25% - 30px); }
.orbit-2 .orbit-icon:nth-child(4) { left: -30px; bottom: calc(25% - 30px); }
.orbit-2 .orbit-icon:nth-child(5) { top: -30px; left: calc(25% - 30px); }

.orbit-3 .orbit-icon:nth-child(1) { top: -30px; left: calc(50% - 30px); }
.orbit-3 .orbit-icon:nth-child(2) { top: calc(20% - 30px); right: -30px; }
.orbit-3 .orbit-icon:nth-child(3) { top: calc(80% - 30px); right: -30px; }
.orbit-3 .orbit-icon:nth-child(4) { bottom: -30px; left: calc(50% - 30px); }
.orbit-3 .orbit-icon:nth-child(5) { top: calc(80% - 30px); left: -30px; }
.orbit-3 .orbit-icon:nth-child(6) { top: calc(20% - 30px); left: -30px; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Desktop Layout */
.desktop-layout {
    display: none;
}

/* Our Services Section */
.our-services {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

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

.services-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 8px;
}

.services-indicator .line {
    height: 2px;
    background: var(--primary-orange);
}

.services-indicator .line-1 { width: 48px; }
.services-indicator .line-2 { width: 12px; }
.services-indicator .line-3 { width: 24px; }

.services-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-blue);
    transform: scale(1.1);
}

.service-icon span {
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon span {
    transform: scale(1.1);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

/* Desktop responsive adjustments */
@media (min-width: 1024px) {
    .mobile-layout {
        display: none;
    }
    
    .desktop-layout {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
                margin-top: -266px;
        height: 500px;
    }
    
    .desktop-stat {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .desktop-stat .stat-item {
        margin: 0;
    }
    
    .desktop-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .orbiting-wrapper {
        width: 500px;
        height: 500px;
    }
    
    .center-content {
        width: 180px;
        height: 180px;
        padding: 25px;
    }
    
    .center-earth {
        width: 140px;
        height: 140px;
    }
    
    .orbit-1 {
        width: 320px;
        height: 320px;
        top: 90px;
        left: 90px;
    }
    
    .orbit-2 {
        width: 400px;
        height: 400px;
        top: 50px;
        left: 50px;
    }
    
    .orbit-3 {
        width: 480px;
        height: 480px;
        top: 10px;
        left: 10px;
    }
    
    .orbit-icon {
        width: 70px;
        height: 70px;
    }
    
    .orbit-icon img {
        width: 40px;
        height: 40px;
    }
    
    .orbit-icon i {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* Tablet responsive */
@media (max-width: 768px) {
    .orbiting-circles-section {
        padding: clamp(50px, 7vw, 80px) 0;
        min-height: clamp(400px, 50vh, 500px);
    }
    
    .orbiting-demo {
        padding: clamp(20px, 4vw, 40px);
        min-height: clamp(350px, 45vh, 450px);
    }
    
    .orbiting-wrapper {
        width: clamp(250px, 45vw, 320px);
        height: clamp(250px, 45vw, 320px);
    }
    
    .center-content {
        width: clamp(100px, 18vw, 130px);
        height: clamp(100px, 18vw, 130px);
        padding: clamp(15px, 3vw, 20px);
    }
    
    .center-earth {
        width: clamp(70px, 14vw, 90px);
        height: clamp(70px, 14vw, 90px);
    }
    
    .orbit-1 {
        width: clamp(160px, 32vw, 200px);
        height: clamp(160px, 32vw, 200px);
        top: clamp(45px, 8vw, 60px);
        left: clamp(45px, 8vw, 60px);
    }
    
    .orbit-2 {
        width: clamp(200px, 38vw, 250px);
        height: clamp(200px, 38vw, 250px);
        top: clamp(25px, 5vw, 35px);
        left: clamp(25px, 5vw, 35px);
    }
    
    .orbit-3 {
        width: clamp(240px, 42vw, 300px);
        height: clamp(240px, 42vw, 300px);
        top: clamp(10px, 2vw, 15px);
        left: clamp(10px, 2vw, 15px);
    }
    
    .orbit-icon {
        width: clamp(40px, 8vw, 50px);
        height: clamp(40px, 8vw, 50px);
    }
    
    .orbit-icon img {
        width: clamp(22px, 4.5vw, 28px);
        height: clamp(22px, 4.5vw, 28px);
    }
    
    .stats-top, .stats-bottom {
        grid-template-columns: 1fr 1fr;
        gap: clamp(12px, 2.5vw, 18px);
        margin-bottom: clamp(25px, 5vw, 35px);
    }
    
    .orbiting-container {
        margin: clamp(20px, 4vw, 30px) 0;
        padding: clamp(8px, 1.5vw, 15px);
    }
}

/* Large Mobile */
@media (max-width: 600px) {
    .orbiting-circles-section {
        padding: clamp(45px, 6vw, 70px) 0;
        min-height: clamp(380px, 48vh, 480px);
    }
    
    .orbiting-demo {
        padding: clamp(18px, 3.5vw, 30px);
        min-height: clamp(330px, 42vh, 420px);
    }
    
    .orbiting-wrapper {
        width: clamp(220px, 42vw, 280px);
        height: clamp(220px, 42vw, 280px);
    }
    
    .stats-top, .stats-bottom {
        grid-template-columns: 1fr 1fr;
        gap: clamp(10px, 2vw, 15px);
        margin-bottom: clamp(18px, 3.5vw, 25px);
    }
    
    .orbiting-container {
        margin: clamp(15px, 3vw, 25px) 0;
        padding: clamp(5px, 1vw, 10px);
    }
    
    .mobile-layout {
        display: block !important;
    }
    
    .desktop-layout {
        display: none !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .orbiting-circles-section {
        padding: clamp(35px, 5vw, 50px) 0;
        min-height: clamp(320px, 42vh, 400px);
    }
    
    .orbiting-demo {
        padding: clamp(12px, 2.5vw, 20px);
        min-height: clamp(280px, 38vh, 350px);
    }
    
    .orbiting-wrapper {
        width: clamp(180px, 40vw, 220px);
        height: clamp(180px, 40vw, 220px);
    }
    
    .center-content {
        width: clamp(70px, 14vw, 90px) !important;
        height: clamp(70px, 14vw, 90px) !important;
        padding: clamp(8px, 1.5vw, 12px) !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 20 !important;
        background: white !important;
        border: 2px solid #0066ff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    .center-earth {
        width: clamp(50px, 10vw, 65px) !important;
        height: clamp(50px, 10vw, 65px) !important;
        display: block !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }
    
    .orbit-1 {
        width: clamp(120px, 28vw, 150px);
        height: clamp(120px, 28vw, 150px);
        top: clamp(30px, 6vw, 35px);
        left: clamp(30px, 6vw, 35px);
    }
    
    .orbit-2 {
        width: clamp(140px, 32vw, 170px);
        height: clamp(140px, 32vw, 170px);
        top: clamp(20px, 4vw, 25px);
        left: clamp(20px, 4vw, 25px);
    }
    
    .orbit-3 {
        width: clamp(160px, 36vw, 190px);
        height: clamp(160px, 36vw, 190px);
        top: clamp(10px, 2vw, 15px);
        left: clamp(10px, 2vw, 15px);
    }
    
    .orbit-icon {
        width: clamp(30px, 6vw, 38px);
        height: clamp(30px, 6vw, 38px);
    }
    
    .orbit-icon img {
        width: clamp(16px, 3.5vw, 22px);
        height: clamp(16px, 3.5vw, 22px);
    }
    
    .stat-number {
        font-size: clamp(16px, 2.8vw, 20px);
    }
    
    .stat-label {
        font-size: clamp(8px, 1vw, 10px);
    }
}

.nav-links a i {
    font-size: clamp(12px, 1.2vw, 14px);
    width: 16px;
    text-align: center;
}

.auth-buttons {
    display: flex;
    gap: clamp(8px, 1.2vw, 12px);
    flex-shrink: 0;
    align-items: center;
    margin-left: auto;
}

.auth-buttons .btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2.5vw, 20px);
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.auth-buttons .btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.auth-buttons .btn-outline:hover {
    background: var(--gradient-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-blue);
}

.auth-buttons .btn-primary {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-blue);
}

.auth-buttons .btn-primary:hover {
    background: var(--gradient-pink);
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-pink);
}

.auth-buttons .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.6), rgba(255, 105, 180, 0.6));
    color: white;
    border-color: rgba(255, 140, 0, 0.6);
    backdrop-filter: blur(10px);
}

.auth-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(255, 105, 180, 0.8));
    border-color: rgba(255, 140, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 2.5vw, 1.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.6;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    p {
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.4;
    }
    
    p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
}

.highlight {
    color: #4338ca;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4338ca, #7c3aed);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: clamp(13px, 1.5vw, 14px);
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    word-wrap: break-word;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.7), rgba(255, 105, 180, 0.7));
    color: white;
    border-color: rgba(255, 140, 0, 0.7);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(255, 105, 180, 0.8));
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-lg {
    padding: clamp(14px, 2.5vw, 16px) clamp(24px, 5vw, 32px);
    font-size: clamp(14px, 2vw, 16px);
    min-height: 48px;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 46px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 48px;
    }
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.top-bar {
    background: #1f2937;
    color: white;
    padding: 8px 0;
    font-size: clamp(12px, 1.5vw, 14px);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.locations {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.locations span {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(11px, 1.3vw, 13px);
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-content {
        justify-content: center;
        gap: 15px;
        text-align: center;
        flex-wrap: nowrap;
    }
    
    .locations {
        order: 1;
    }
    
    .social-links {
        order: 2;
        gap: 10px;
    }
    
    .locations span {
        font-size: clamp(9px, 1.1vw, 11px);
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: inherit;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

.navbar {
    padding: clamp(12px, 2.5vw, 18px) 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-image {
    height: clamp(40px, 6vw, 56px);
    width: auto;
    transition: all 0.3s ease;
}

.logo img {
    height: clamp(32px, 5vw, 40px);
    width: auto;
}

.logo-text {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: #4338ca;
    white-space: nowrap;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
    flex-wrap: nowrap;
    overflow: visible;
    justify-content: space-between;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(6px, 1.2vw, 12px);
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.auth-buttons {
    display: flex;
    gap: clamp(6px, 1vw, 10px);
    flex-shrink: 0;
    align-items: center;
    margin-left: auto;
}

.auth-buttons .btn {
    padding: clamp(5px, 1.2vw, 7px) clamp(8px, 1.5vw, 10px);
    font-size: clamp(10px, 1.1vw, 12px);
    white-space: nowrap;
    min-width: auto;
}

/* Enhanced Navigation with Icons */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: clamp(6px, 1vw, 8px) clamp(8px, 1.2vw, 10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.6vw, 6px);
    font-size: clamp(12px, 1.3vw, 14px);
    min-height: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
}

.nav-links a:hover {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(255, 105, 180, 0.05));
    color: var(--primary-blue);
    border-color: rgba(0, 191, 255, 0.2);
    transform: translateY(-1px);
}

.nav-links a.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.nav-links a i {
    font-size: clamp(10px, 1.1vw, 12px);
    width: 14px;
    text-align: center;
}

/* Compact navigation for smaller desktop screens */
@media (max-width: 1200px) {
    .nav-menu {
        gap: clamp(6px, 1.2vw, 12px);
    }
    
    .nav-links {
        gap: clamp(4px, 0.8vw, 8px);
    }
    
    .nav-links a {
        font-size: clamp(11px, 1.2vw, 13px);
        padding: clamp(5px, 0.8vw, 7px) clamp(6px, 1vw, 8px);
        gap: clamp(3px, 0.5vw, 4px);
    }
    
    .auth-buttons .btn {
        font-size: clamp(10px, 1.1vw, 12px);
        padding: clamp(4px, 0.8vw, 6px) clamp(6px, 1vw, 8px);
    }
    
    .nav-links a i {
        font-size: clamp(9px, 1vw, 11px);
    }
    
    .logo-text {
        font-size: clamp(16px, 2.5vw, 20px);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: clamp(4px, 1vw, 8px);
    }
    
    .nav-links {
        gap: clamp(3px, 0.6vw, 6px);
    }
    
    .nav-links a {
        font-size: clamp(10px, 1.1vw, 12px);
        padding: clamp(4px, 0.6vw, 6px) clamp(5px, 0.8vw, 7px);
        gap: clamp(2px, 0.4vw, 3px);
    }
    
    .auth-buttons .btn {
        font-size: clamp(9px, 1vw, 11px);
        padding: clamp(3px, 0.6vw, 5px) clamp(4px, 0.8vw, 6px);
    }
    
    .nav-links a i {
        font-size: clamp(8px, 0.9vw, 10px);
    }
    
    .auth-buttons .btn i {
        font-size: clamp(8px, 0.9vw, 10px);
    }
    
    .logo-text {
        font-size: clamp(14px, 2.2vw, 18px);
    }
    
    .locations span {
        font-size: clamp(10px, 1.2vw, 12px);
    }
}

/* Enhanced Dropdown Animations */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 2px 8px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: var(--primary-blue);
    transform: translateX(5px);
    border-radius: 8px;
}

.dropdown-menu a i {
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
}

/* Enhanced Auth Buttons */
.auth-buttons .btn {
    margin: 0 4px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.auth-buttons .btn:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.05);
}

/* Clean Modern Hero Section */
.hero-clean {
    min-height: 100vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: -105px;
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.spider-particle {
    position: absolute;
    background-color: #0066ff;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.spider-particle:hover {
    transform: scale(2);
    background-color: #00ccff;
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.6);
}

.particles-container:hover {
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.hero-clean-container {
    max-width: clamp(1200px, 90vw, 1400px);
    margin: 70px auto;
    padding: clamp(40px, 6vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 8vw, 80px);
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    width: 95%;
}

/* Left Content Styles */
.hero-content-left {
    position: relative;
}

.hero-main-text {
    padding: 0;
}

/* Right Video Styles */
.hero-video-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-clean-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.title-leading {
    display: block;
    color: #333;
    margin-bottom: 2px;
}

.title-global {
    color: #7CB342;
    display: block;
    margin-top: -37px;
}

.title-affiliate {
    color: #333;
    display: inline;
    margin-left: 1px;
    margin-right: 1px;
}

.title-marketing {
    display: block;
    color: #333;
    margin-top: 1px;
}

.hero-clean-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: #666;
    max-width: 500px;
    margin: 0 0 30px 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 8px 15px;
        font-size: 11px;
        flex: 1;
        min-width: 0;
    }
    
    .hero-clean-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }
    
    .hero-clean-description {
        font-size: 12px !important;
    }
}

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

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #ff9a56, #ffad7a);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 154, 86, 0.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 154, 86, 0.35);
    background: linear-gradient(135deg, #ff8c42, #ff9f66);
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.hero-buttons .btn i {
    font-size: 18px;
}

/* Video Top Position Styles */
.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.hero-video-container:hover {
    transform: scale(1.02);
}

.hero-video {
      width: 100%;
    height: auto;
    display: block;
    background: transparent;
    object-fit: cover;
    aspect-ratio: 1226 / 882;
    border: none;
    border-radius: 0;
}

/* Responsive Design for Clean Hero */
@media (max-width: 1024px) {
    .hero-clean-container {
        padding: 40px 30px;
        gap: 50px;
        max-width: 1200px;
    }
    
    .hero-video-container {
        max-width: 380px;
    }
    
    .hero-clean-title {
        font-size: clamp(2.2rem, 4vw, 2.8rem);
    }
    
    .hero-clean-description {
        font-size: clamp(15px, 2.2vw, 17px);
    }
}

@media (max-width: 768px) {
    .hero-clean-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
        margin: 60px auto;
        max-width: 95%;
    }
    
    .hero-video-right {
        order: -1;
    }
    
    .hero-video-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-clean-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-clean-description {
        max-width: 100%;
        font-size: clamp(14px, 2.5vw, 16px);
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-clean {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-clean-container {
        padding: 15px 15px;
        gap: 20px;
        margin: 40px auto;
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        max-width: 90%;
        width: 90%;
    }
    
    .hero-video-right {
        order: -1;
        margin-bottom: 15px;
    }
    
    .hero-video-container {
        max-width: clamp(240px, 70vw, 280px);
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-clean-title {
        font-size: clamp(1.6rem, 4.5vw, 2rem) !important;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-clean-description {
        font-size: clamp(12px, 2vw, 14px) !important;
        max-width: 100%;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 12px;
        justify-content: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 10px 15px;
        font-size: 11px;
        width: 100%;
        max-width: 280px;
        min-width: 0;
        margin: 0 auto;
    }
    
    .particles-container {
        height: 100vh;
    }
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Modern Hero Section Styles */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(80px, 10vh, 120px) 0 clamp(40px, 5vh, 60px);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 60px) clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 90vh;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.clean-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #24265D 0%, 
        #F68712 50%,
        #F58634 100%);
    opacity: 0.9;
}

.subtle-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%234338ca"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
}

/* Hero Main Content */
.hero-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-content {
    max-width: 100%;
    padding-right: clamp(20px, 3vw, 40px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    color: white;
    margin-bottom: clamp(20px, 3vw, 30px);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    color: white;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    margin-bottom: 0.2em;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink), var(--primary-orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(25px, 3.5vw, 35px);
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.highlight-text {
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    margin-bottom: clamp(30px, 4vw, 40px);
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: clamp(11px, 1.3vw, 13px);
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.feature-badge i {
    color: var(--primary-blue);
    font-size: 12px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    margin-bottom: clamp(40px, 5vw, 50px);
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: clamp(15px, 2.5vw, 20px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: clamp(80px, 15vw, 120px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink), var(--primary-orange));
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 0;
}

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

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-suffix {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: clamp(10px, 1.2vw, 12px);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    display: block;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.btn-xl {
    padding: clamp(14px, 2.5vw, 18px) clamp(28px, 4vw, 36px);
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-glow {
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
}

.btn-outline-glow {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.btn-outline-glow:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

/* Hero Visual Content */
.hero-visual-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: clamp(15px, 2vw, 30px);
}

.visual-grid {
    display: grid;
    gap: clamp(12px, 2vw, 18px);
    grid-template-rows: 2.5fr 1fr;
    height: clamp(450px, 55vh, 650px);
    width: 100%;
}

.main-visual-card {
    position: relative;
    border-radius: clamp(16px, 2vw, 24px);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.secondary-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1.2vw, 12px);
}

.visual-card {
    position: relative;
    border-radius: clamp(12px, 1.5vw, 16px);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hover-lift:hover .card-glow {
    opacity: 1;
}

.hover-lift:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(36, 38, 93, 0.3);
    z-index: 10;
    position: relative;
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.main-placeholder {
    background: var(--gradient-primary);
    color: white;
}

.placeholder-image:not(.main-placeholder) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--primary-blue);
}

.placeholder-content {
    text-align: center;
    padding: 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hover-lift:hover .placeholder-content {
    transform: scale(1.05);
}

.placeholder-content i {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.placeholder-content h4 {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.placeholder-content h5 {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.placeholder-content p {
    font-size: clamp(12px, 1.5vw, 14px);
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Simple Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.06), rgba(255, 105, 180, 0.04));
    border-radius: 50%;
    opacity: 0.5;
    animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.floating-shape.shape-1 {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    top: 15%;
    right: 15%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.06), rgba(255, 105, 180, 0.03));
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: clamp(45px, 6vw, 60px);
    height: clamp(45px, 6vw, 60px);
    top: 65%;
    right: 8%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.06), rgba(255, 105, 180, 0.03));
    animation-delay: -2s;
}

.floating-shape.shape-3 {
    width: clamp(30px, 4vw, 40px);
    height: clamp(30px, 4vw, 40px);
    bottom: 20%;
    right: 25%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.06), rgba(255, 140, 0, 0.03));
    animation-delay: -4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 3vh, 30px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.scroll-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.05);
}

.scroll-indicator span {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: clamp(30px, 5vw, 60px);
    }
    
    .secondary-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(30px, 5vw, 50px);
        text-align: center;
        padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
    }
    
    .hero-main-content {
        order: 2;
    }
    
    .hero-visual-content {
        order: 1;
        padding-left: 0;
    }
    
    .visual-grid {
        height: clamp(350px, 45vh, 450px);
        margin-bottom: 20px;
    }
    
    .hero-text-content {
        padding-right: 0;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: clamp(50px, 7vh, 80px) 0 clamp(25px, 3vh, 40px);
    }
    
    .hero-container {
        min-height: 85vh;
        gap: clamp(25px, 4vw, 40px);
    }
    
    .hero-stats {
        justify-content: center;
        gap: clamp(12px, 2.5vw, 20px);
    }
    
    .stat-card {
        min-width: clamp(70px, 12vw, 100px);
        padding: clamp(12px, 2vw, 16px);
    }
    
    .hero-buttons {
        justify-content: center;
        gap: clamp(12px, 2.5vw, 16px);
    }
    
    .secondary-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(6px, 1vw, 10px);
    }
    
    .visual-grid {
        height: clamp(320px, 42vh, 420px);
    }
}

@media (max-width: 600px) {
    .hero-features {
        justify-content: center;
    }
    
    .visual-grid {
        height: clamp(300px, 40vh, 400px);
    }
    
    .secondary-visual-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-xl {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-card {
        min-width: clamp(60px, 10vw, 80px);
        padding: clamp(10px, 2vw, 15px);
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .feature-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Additional Smooth Animations */
.animate__fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Performance Optimizations */
.hero-visual-content,
.hero-main-content {
    will-change: transform;
}

.visual-card,
.stat-card,
.floating-icon {
    will-change: transform;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hover-lift:hover {
        transform: none;
    }
    
    .scroll-icon:hover {
        transform: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
}

/* Loading State */
.hero {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero.loading {
    opacity: 0;
}

/* Enhanced Performance */
.hero-container,
.visual-card,
.stat-card {
    will-change: auto;
}

/* Ensure no layout shifts on load */
.placeholder-image {
    min-height: 200px;
}

.main-placeholder {
    min-height: 300px;
}

@media (max-width: 768px) {
    .placeholder-image {
        min-height: 150px;
    }
    
    .main-placeholder {
        min-height: 200px;
    }
}

.hero-features {
    display: flex;
    gap: 25px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: #60a5fa;
    font-size: 16px;
}

.hero-metrics {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-item i {
    color: #60a5fa;
    font-size: 20px;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero {
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4338ca, #7c3aed);
    width: 0;
    transition: width 0.3s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Vision Section */
.vision {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(255, 105, 180, 0.05));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 50%;
    animation-delay: -15s;
}

.vision-content {
    position: relative;
    z-index: 2;
}

.vision-description {
    max-width: 800px;
    margin: 0 auto;
}

.vision-main {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
    text-align: center;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pillar {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.pillar:hover::before {
    transform: scaleX(1);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.pillar h4 {
    margin-bottom: 15px;
    color: #1f2937;
    font-size: 1.25rem;
}

.pillar p {
    color: #6b7280;
    line-height: 1.6;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%234338ca" stop-opacity="0.1"/><stop offset="100%" stop-color="%237c3aed" stop-opacity="0.05"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: bounce 2s infinite;
}

/* Section Styles */
section {
    padding: clamp(40px, 8vw, 80px) 0;
    position: relative;
}

/* Responsive Section Padding */
@media (max-width: 768px) {
    section {
        padding: clamp(30px, 6vw, 60px) 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: clamp(20px, 5vw, 40px) 0;
    }
}

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

.section-label {
    display: inline-block;
    color: #4338ca;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

/* Vision Section */
.vision {
    background: #f8fafc;
}

/* Verticals Section */
.verticals {
    background: white;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vertical-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.vertical-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.vertical-card h4 {
    margin-bottom: 15px;
    color: #333;
}

.vertical-card p {
    color: #666;
    line-height: 1.6;
}

/* Statistics Section */
.statistics {
    background: white; /* Changed from gradient to white */
    color: #333; /* Changed from white to dark text */
}

.statistics .section-header h2,
.statistics .section-header p {
    color: #333; /* Changed from white to dark text */
}

/* Custom colors for PERFORMANCE section */
.statistics .section-header .section-label {
    color: #0066ff !important; /* Blue color for "PERFORMANCE" */
}

.statistics .section-header h2 {
    color: #000000 !important; /* Black color for "Numbers Matter" */
}

.statistics .section-header p {
    color: #000000 !important; /* Black color for description */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 20px 15px;
    background: #f8fafc; /* Light background instead of transparent */
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb; /* Light border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Light shadow */
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0066ff; /* Blue color for numbers */
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #333; /* Dark color for labels */
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive design for statistics */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .stat-card {
        min-width: 140px;
        max-width: 280px;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
        max-width: 300px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

/* Team Section */
.team {
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h4 {
    color: #333;
    margin-bottom: 8px;
}

.member-info p {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 2px;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-section ul {
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    margin-top: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Navigation Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--primary-blue);
}

/* Hero Slider Styles */
.hero-slider {
    height: 100vh;
    width: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: white;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(67, 56, 202, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
}

/* Background Slider for Verticals */
.verticals {
    position: relative;
    overflow: hidden;
}

.verticals-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-slider {
    height: 100%;
    width: 100%;
}

.bg-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.verticals .container {
    position: relative;
    z-index: 2;
}

.verticals .section-header h2,
.verticals .section-header h3,
.verticals .section-header p {
    color: white;
}

/* Custom colors for specific verticals section text */
.verticals .section-header h2 {
    color: #000000 !important; /* Black color for "Impacting the Transformation of Digitisation" */
}

.verticals .section-header h3 {
    color: #0066ff !important; /* Blue color for "Our Top Verticals" */
}

.verticals .section-header .section-subtitle {
    color: #0066ff !important; /* Blue color for "We Generate Millions In These Verticals" */
}

.verticals .section-header p:last-of-type {
    color: #000000 !important; /* Black color for "We are always working towards offering meaningful marketing through:" */
}

/* Partners Section */
.partners-section {
    background: #f8fafc;
    padding: 80px 0;
}

.partners-slider {
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.partner-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

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

.partner-overlay h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.partner-count {
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.partner-count::after {
    content: '+ clicks';
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Team Slider */
.team-slider {
    margin-top: 40px;
}

.team-slider .swiper-slide {
    height: auto;
}

.team-slider .swiper-pagination-bullet {
    background: #4338ca;
    opacity: 0.3;
}

.team-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.team-slider .swiper-button-next,
.team-slider .swiper-button-prev {
    color: #4338ca;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-top: -22px;
}

.team-slider .swiper-button-next:after,
.team-slider .swiper-button-prev:after {
    font-size: 18px;
}

/* Footer Enhancements */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #4338ca;
}

.footer-address {
    margin-top: 20px;
}

.footer-address h4 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 18px;
}

.address-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #4338ca;
}

.address-block strong {
    color: #60a5fa;
}

.copyscape {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.footer-contact-form h4 {
    margin-top: 0;
    color: #60a5fa;
}

.footer-contact-form .form-group {
    margin-bottom: 15px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
    border-radius: 6px;
    box-sizing: border-box;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    border-color: #4338ca;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.footer-contact-form .form-group {
    margin-bottom: 15px;
}

.footer-contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social h4 {
    color: #60a5fa;
    margin-bottom: 15px;
}

.footer-social .social-links {
    display: flex;
    gap: 10px;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(67, 56, 202, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.footer-social .social-links a:hover {
    background: #4338ca;
    transform: translateY(-3px);
}

/* Mobile Menu Animations */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-menu.active {
    transform: translateX(0);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Animations */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(67, 56, 202, 0.5), 0 0 40px rgba(67, 56, 202, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(124, 58, 237, 0.7), 0 0 50px rgba(124, 58, 237, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 100px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-wrapper ul {
    list-style: none;
    padding-left: 0;
}

.content-wrapper ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 25px;
}

.content-wrapper ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4338ca;
    font-weight: bold;
}

/* Page-specific Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 56, 202, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4338ca, #7c3aed);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 56, 202, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.signup-form-section,
.advertiser-form-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.signup-form-section h2,
.advertiser-form-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
}

.affiliate-signup-form,
.advertiser-form {
    max-width: 600px;
    margin: 0 auto;
}

.affiliate-signup-form .form-group,
.advertiser-form .form-group {
    margin-bottom: 25px;
}

.affiliate-signup-form input,
.affiliate-signup-form select,
.affiliate-signup-form textarea,
.advertiser-form input,
.advertiser-form select,
.advertiser-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.affiliate-signup-form input:focus,
.affiliate-signup-form select:focus,
.affiliate-signup-form textarea:focus,
.advertiser-form input:focus,
.advertiser-form select:focus,
.advertiser-form textarea:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
    transform: translateY(-2px);
}

/* Advertiser Page Styles */
.advertiser-features {
    margin: 60px 0;
}

.feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.1rem;
    color: #374151;
}

.feature-list i {
    color: #10b981;
    font-size: 16px;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-showcase {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 56, 202, 0.1);
    transition: all 0.3s ease;
}

.stat-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(67, 56, 202, 0.15);
}

.stat-showcase .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4338ca;
    margin-bottom: 10px;
    display: block;
}

.stat-showcase .stat-label {
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Responsive Design */
/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 18px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 20px;
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 10px;
        border-radius: 6px;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .auth-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }
    
    .partners-slider .swiper-slide {
        width: 280px;
    }
    
    .team-slider .swiper-slide {
        width: 250px;
    }
    
    .vision-pillars {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pillar {
        padding: 30px 25px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-contact-form {
        padding: 20px;
    }
}

/* Mobile Medium */
@media (max-width: 575px) {
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-slider {
        height: 90vh;
    }
    
    .hero-slide {
        height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 46px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .vertical-card {
        padding: 25px 20px;
    }
    
    .vertical-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 7.5px);
    }
    
    .footer-content {
        gap: 25px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .orbiting-circles-section {
        padding: clamp(40px, 6vw, 60px) 0;
        min-height: clamp(550px, 65vh, 650px);
    }
    
    .orbiting-demo {
        padding: clamp(15px, 3vw, 25px);
        min-height: clamp(500px, 60vh, 600px);
    }
    
    .orbiting-wrapper {
        width: clamp(200px, 45vw, 260px);
        height: clamp(200px, 45vw, 260px);
        position: relative;
    }
    
    .center-content {
        width: clamp(80px, 15vw, 110px) !important;
        height: clamp(80px, 15vw, 110px) !important;
        padding: clamp(10px, 2vw, 15px) !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 15 !important;
        background: white !important;
        border: 3px solid #0066ff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    .center-earth {
        width: clamp(60px, 12vw, 80px) !important;
        height: clamp(60px, 12vw, 80px) !important;
        display: block !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }
    
    .orbit-1 {
        width: clamp(140px, 30vw, 180px);
        height: clamp(140px, 30vw, 180px);
        top: clamp(30px, 7.5vw, 40px);
        left: clamp(30px, 7.5vw, 40px);
    }
    
    .orbit-2 {
        width: clamp(170px, 35vw, 210px);
        height: clamp(170px, 35vw, 210px);
        top: clamp(15px, 5vw, 25px);
        left: clamp(15px, 5vw, 25px);
    }
    
    .orbit-3 {
        width: clamp(200px, 40vw, 240px);
        height: clamp(200px, 40vw, 240px);
        top: clamp(0px, 2.5vw, 10px);
        left: clamp(0px, 2.5vw, 10px);
    }
    
    .orbit-icon {
        width: clamp(35px, 7vw, 45px);
        height: clamp(35px, 7vw, 45px);
    }
    
    .orbit-icon img {
        width: clamp(20px, 4vw, 25px);
        height: clamp(20px, 4vw, 25px);
    }
    
    .stats-top, .stats-bottom {
        grid-template-columns: 1fr;
        gap: clamp(8px, 1.5vw, 12px);
        margin-bottom: clamp(15px, 3vw, 20px);
    }
    
    .orbiting-container {
        margin: clamp(12px, 2.5vw, 18px) 0;
        padding: clamp(3px, 0.8vw, 8px);
    }
    
    .stat-item {
        padding: clamp(12px, 2.5vw, 18px);
    }
    
    .stat-number {
        font-size: clamp(18px, 3vw, 24px);
    }
    
    .stat-label {
        font-size: clamp(9px, 1.2vw, 11px);
    }
}

/* Mobile Small */
@media (max-width: 479px) {
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: 70px;
    }
    
    .hero-slider {
        height: 85vh;
    }
    
    .hero-slide {
        height: 85vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .btn-lg {
        padding: 12px 22px;
        font-size: 14px;
        min-height: 46px;
    }
    
    .vertical-card {
        padding: 20px 15px;
    }
    
    .vertical-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Mobile Extra Small */
@media (max-width: 374px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .vertical-card {
        padding: 18px 12px;
    }
    
    .vertical-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .footer-contact-form {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .vertical-card {
        padding: 30px 20px;
    }
    
    .vertical-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Loading and Transition Effects */
.fade-in {
    animation: fadeInUp 0.6s ease;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 56, 202, 0.3);
}

/* Additional Responsive Utilities */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* Mobile-first responsive utilities */
@media (max-width: 575px) {
    .d-sm-none {
        display: none !important;
    }
    
    .d-sm-block {
        display: block !important;
    }
    
    .text-sm-center {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .d-md-none {
        display: none !important;
    }
    
    .d-md-block {
        display: block !important;
    }
    
    .text-md-center {
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    .d-lg-none {
        display: none !important;
    }
    
    .d-lg-block {
        display: block !important;
    }
    
    .text-lg-center {
        text-align: center !important;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .header,
    .footer,
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
}

/* Additional Page Styles */

/* Story Cards for Humans of VC */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-author {
    font-style: italic;
    color: #4338ca;
    font-weight: 500;
    margin-top: 15px;
    display: block;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: #4338ca;
    margin-bottom: 20px;
}

/* Testimonials Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4338ca;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: #4338ca;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.read-more:hover {
    color: #7c3aed;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination-btn {
    padding: 10px 15px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #4338ca;
    color: white;
    border-color: #4338ca;
}

.newsletter-signup {
    text-align: center;
    background: #f8fafc;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 60px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4338ca;
}

/* Career Styles */
.job-listings {
    margin: 40px 0;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

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

.job-type {
    background: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.skill-tag {
    background: #e0e7ff;
    color: #4338ca;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4338ca;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.contact-hr {
    text-align: center;
    background: #f8fafc;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 60px;
}

/* Case Studies Styles */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
}

.case-study-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4338ca;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.case-study-content {
    padding: 30px;
}

.case-study-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.case-study-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.case-study-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4338ca;
    line-height: 1;
}

.case-study-stats .stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tag {
    background: #e0e7ff;
    color: #4338ca;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.industry-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 2rem;
    color: #4338ca;
    margin-bottom: 15px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4338ca;
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label {
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: #4338ca;
    border-color: white;
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #4338ca;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(67, 56, 202, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 20px;
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .auth-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links a {
        padding: 15px 12px;
        justify-content: flex-start;
        border-radius: 8px;
        margin: 5px 0;
        width: 100%;
        min-height: 44px;
    }
    
    .nav-links a:hover {
        transform: none;
        background: rgba(67, 56, 202, 0.15);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 10px;
        border-radius: 6px;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    /* Mobile adjustments for new pages */
    .story-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-study-stats {
        justify-content: center;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Login Page Styles */
.login-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: calc(100vh - 200px);
}

.login-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.login-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 56, 202, 0.1);
}

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

.login-header h2 {
    color: #1f2937;
    margin-bottom: 10px;
}

.login-header p {
    color: #6b7280;
    font-size: 16px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.login-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.login-form input:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
    transform: translateY(-2px);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #4338ca;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.forgot-password {
    color: #4338ca;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.login-divider span {
    background: white;
    padding: 0 20px;
    color: #6b7280;
    font-size: 14px;
    position: relative;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-social {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-google:hover {
    border-color: #ea4335;
    color: #ea4335;
    background: rgba(234, 67, 53, 0.05);
}

.btn-linkedin:hover {
    border-color: #0077b5;
    color: #0077b5;
    background: rgba(0, 119, 181, 0.05);
}

.signup-options {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.signup-options h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.signup-options p {
    color: #6b7280;
    margin-bottom: 25px;
}

.signup-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.signup-buttons .btn {
    flex: 1;
    min-width: 200px;
}

.signup-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.benefit-item i {
    color: #4338ca;
    font-size: 16px;
}

.login-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.login-sidebar .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-sidebar .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.login-sidebar .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stats-showcase {
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stats-showcase h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.stats-showcase .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.stats-showcase .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.stats-showcase .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.help-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.help-section h4 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.help-section p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Mobile Responsive for Login */
@media (max-width: 992px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .login-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 60px 0;
    }
    
    .login-container {
        padding: 30px 20px;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .signup-buttons {
        flex-direction: column;
    }
    
    .signup-buttons .btn {
        min-width: auto;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .signup-benefits {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 25px 15px;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .signup-benefits {
        gap: 12px;
    }
    
    .benefit-item {
        font-size: 13px;
    }
}

/* Signup Page Styles */
.signup-section {
    padding: clamp(60px, 8vw, 80px) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: calc(100vh - 120px);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(30px, 5vw, 50px);
    align-items: start;
}

.signup-container {
    background: white;
    padding: clamp(30px, 4vw, 40px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 56, 202, 0.1);
}

.signup-header {
    text-align: center;
    margin-bottom: clamp(25px, 3vw, 35px);
}

.signup-header h2 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.signup-header p {
    color: #6b7280;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.5vw, 20px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(15px, 2vw, 20px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: clamp(13px, 1.5vw, 14px);
}

.form-group input,
.form-group select {
    padding: clamp(10px, 1.5vw, 12px);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: clamp(13px, 1.5vw, 14px);
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4338ca;
    background: white;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: clamp(13px, 1.5vw, 14px);
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4338ca;
    border-color: #4338ca;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.signup-footer {
    text-align: center;
    margin-top: clamp(20px, 3vw, 30px);
    padding-top: clamp(20px, 3vw, 30px);
    border-top: 1px solid #e5e7eb;
}

.signup-footer p {
    margin-bottom: 8px;
    color: #6b7280;
    font-size: clamp(13px, 1.5vw, 14px);
}

.signup-footer a {
    color: #4338ca;
    text-decoration: none;
    font-weight: 500;
}

.signup-footer a:hover {
    text-decoration: underline;
}

/* Signup Benefits Sidebar */
.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 25px);
}

.signup-benefits h3 {
    color: #1f2937;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 15px;
    text-align: center;
}

.benefit-card {
    background: white;
    padding: clamp(20px, 3vw, 25px);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 56, 202, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(67, 56, 202, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-content h4 {
    color: #1f2937;
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 8px;
}

.benefit-content p {
    color: #6b7280;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    line-height: 1.5;
}

/* Affiliate-specific styles */
.earnings-potential {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: clamp(20px, 3vw, 25px);
    border-radius: 12px;
    color: white;
    text-align: center;
}

.earnings-potential h4 {
    margin-bottom: 15px;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.earnings-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.tier-level {
    font-weight: 500;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
}

.tier-amount {
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
}

.testimonial-mini {
    background: white;
    padding: clamp(15px, 2.5vw, 20px);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-mini blockquote {
    font-style: italic;
    color: #374151;
    margin-bottom: 10px;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    line-height: 1.5;
}

.testimonial-mini cite {
    color: #4338ca;
    font-weight: 500;
    font-size: clamp(0.8rem, 1.3vw, 0.875rem);
}

/* Responsive Design for Signup */
@media (max-width: 992px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(25px, 4vw, 35px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: clamp(12px, 2vw, 15px);
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .signup-section {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    .signup-container {
        padding: clamp(20px, 3vw, 25px);
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .signup-benefits {
        gap: clamp(15px, 2.5vw, 20px);
    }
    
    .benefit-card {
        padding: clamp(15px, 2.5vw, 20px);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ========================================
   RESPONSIVE DESIGN FOR INDEX.PHP SECTIONS
   ======================================== */

/* Vision Section Responsive */
@media (max-width: 1024px) {
    .vision {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    
    .vision-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(25px, 4vw, 35px);
    }
    
    .pillar {
        padding: clamp(25px, 4vw, 35px);
    }
    
    .vision-content h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .vision {
        padding: clamp(50px, 7vw, 70px) 0;
    }
    
    .vision-pillars {
        grid-template-columns: 1fr;
        gap: clamp(20px, 3vw, 25px);
        margin-top: clamp(30px, 5vw, 40px);
    }
    
    .pillar {
        padding: clamp(20px, 3vw, 25px);
        text-align: center;
    }
    
    .pillar-icon {
        width: clamp(60px, 12vw, 80px);
        height: clamp(60px, 12vw, 80px);
        font-size: clamp(24px, 5vw, 32px);
        margin: 0 auto clamp(15px, 2vw, 20px);
    }
    
    .vision-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.3;
    }
    
    .vision-description {
        text-align: center;
    }
    
    .floating-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .vision {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    .vision-content .section-header {
        margin-bottom: clamp(25px, 4vw, 35px);
    }
    
    .vision-content h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: clamp(15px, 2vw, 20px);
    }
    
    .vision-main {
        font-size: clamp(13px, 2.5vw, 15px);
        line-height: 1.6;
    }
    
    .pillar h4 {
        font-size: clamp(16px, 3vw, 18px);
        margin-bottom: clamp(8px, 1.5vw, 12px);
    }
    
    .pillar p {
        font-size: clamp(12px, 2.2vw, 14px);
        line-height: 1.5;
    }
}

/* Verticals Section Responsive */
@media (max-width: 1024px) {
    .verticals {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    
    .verticals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(25px, 4vw, 35px);
    }
    
    .vertical-card {
        padding: clamp(25px, 4vw, 30px);
    }
    
    .verticals h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .verticals {
        padding: clamp(50px, 7vw, 70px) 0;
    }
    
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 3vw, 25px);
    }
    
    .vertical-card {
        padding: clamp(20px, 3vw, 25px);
        text-align: center;
    }
    
    .vertical-icon {
        width: clamp(60px, 12vw, 80px);
        height: clamp(60px, 12vw, 80px);
        font-size: clamp(24px, 5vw, 32px);
        margin: 0 auto clamp(15px, 2vw, 20px);
    }
    
    .verticals h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.3;
    }
    
    .verticals h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }
    
    .section-subtitle {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}

@media (max-width: 480px) {
    .verticals {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    .verticals-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 2.5vw, 20px);
    }
    
    .vertical-card {
        padding: clamp(15px, 2.5vw, 20px);
    }
    
    .vertical-card h4 {
        font-size: clamp(16px, 3vw, 18px);
        margin-bottom: clamp(8px, 1.5vw, 12px);
    }
    
    .vertical-card p {
        font-size: clamp(12px, 2.2vw, 14px);
        line-height: 1.5;
    }
    
    .verticals h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: clamp(15px, 2vw, 20px);
    }
    
    .verticals h3 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }
    
    .bg-slider {
        display: none;
    }
}

/* Statistics Section Responsive */
@media (max-width: 1024px) {
    .statistics {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(25px, 4vw, 35px);
    }
    
    .stat-card {
        padding: clamp(25px, 4vw, 30px);
    }
    
    .statistics h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .statistics {
        padding: clamp(50px, 7vw, 70px) 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 3vw, 25px);
    }
    
    .stat-card {
        padding: clamp(20px, 3vw, 25px);
        text-align: center;
    }
    
    .stat-number {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .stat-label {
        font-size: clamp(12px, 2.2vw, 14px);
    }
    
    .statistics h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .statistics {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 2.5vw, 20px);
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: clamp(15px, 2.5vw, 20px);
    }
    
    .stat-number {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
        margin-bottom: clamp(5px, 1vw, 8px);
    }
    
    .stat-label {
        font-size: clamp(11px, 2vw, 13px);
        line-height: 1.4;
    }
    
    .statistics h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: clamp(15px, 2vw, 20px);
    }
    
    .statistics .section-header p {
        font-size: clamp(13px, 2.5vw, 15px);
    }
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    
    .contact-content {
        gap: clamp(40px, 6vw, 60px);
    }
    
    .contact-form {
        padding: clamp(30px, 5vw, 40px);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: clamp(50px, 7vw, 70px) 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: clamp(30px, 5vw, 40px);
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: clamp(15px, 2vw, 20px);
    }
    
    .contact-details {
        justify-content: center;
        gap: clamp(20px, 3vw, 25px);
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-form {
        padding: clamp(25px, 4vw, 30px);
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    .contact-content {
        gap: clamp(25px, 4vw, 30px);
    }
    
    .contact-info h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: clamp(12px, 2vw, 15px);
    }
    
    .contact-info p {
        font-size: clamp(13px, 2.5vw, 15px);
        margin-bottom: clamp(20px, 3vw, 25px);
    }
    
    .contact-details {
        flex-direction: column;
        gap: clamp(15px, 2.5vw, 20px);
    }
    
    .contact-item {
        font-size: clamp(12px, 2.2vw, 14px);
    }
    
    .contact-item i {
        font-size: clamp(16px, 3vw, 18px);
    }
    
    .contact-form {
        padding: clamp(20px, 3vw, 25px);
        width: 95%;
        margin: 0 auto;
    }
    
    .form-row {
        flex-direction: column;
        gap: clamp(12px, 2vw, 15px);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(12px, 2.5vw, 15px);
        font-size: clamp(13px, 2.2vw, 14px);
    }
    
    .btn-full {
        padding: clamp(14px, 2.5vw, 16px);
        font-size: clamp(13px, 2.2vw, 14px);
    }
}

/* General Page Container Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0 clamp(15px, 3vw, 20px);
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: clamp(30px, 5vw, 40px);
        text-align: center;
    }
    
    .section-label {
        font-size: clamp(10px, 2vw, 12px);
        margin-bottom: clamp(8px, 1.5vw, 12px);
    }
    
    .animate__animated {
        animation-duration: 0.8s;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .vision,
    .verticals,
    .statistics,
    .contact {
        padding: clamp(30px, 5vw, 50px) 0;
    }
    
    .pillar,
    .vertical-card,
    .stat-card {
        padding: clamp(12px, 2vw, 18px);
    }
    
    .contact-form {
        padding: clamp(15px, 2.5vw, 20px);
        width: 98%;
    }
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section h4::after {
        width: 30px;
    }
    
    .footer-contact-form {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }
}