/* --- IWA CONTACT FORM REFINEMENT TO MATCH CRM --- */
.iwa-page #contact .contact-form {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.iwa-page #contact .contact-form h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}
.iwa-page #contact .form-group {
    margin-bottom: 1.5rem;
}
.iwa-page #contact .form-group input,
.iwa-page #contact .form-group textarea {
    width: 100%;
    padding: 1.1rem 1.2rem;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}
.iwa-page #contact .form-group input:focus,
.iwa-page #contact .form-group textarea:focus {
    outline: none;
    border-color: #33b4ff;
    background: rgba(255,255,255,0.15);
}
.iwa-page #contact .form-group input::placeholder,
.iwa-page #contact .form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
.iwa-page #contact .form-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(51,180,255,0.10);
}
.iwa-page #contact .form-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #1a90d9, #33b4ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(51,180,255,0.18);
}
.iwa-page #contact .form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
/* --- IWA CONTACT INFO BLOCK LIKE CRM --- */
.iwa-page #contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.iwa-page #contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1px;
}
.iwa-page #contact .contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.iwa-page #contact .contact-details h4 {
    color: #33b4ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.iwa-page #contact .contact-details p {
    color: #ccc;
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.5;
}
/* --- IWA CONTACT SECTION TWO-COLUMN LAYOUT LIKE CRM --- */
.iwa-page #contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}
.iwa-page #contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.iwa-page #contact .contact-form {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    border: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 900px) {
    .iwa-page #contact .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Remove hover effect for IWA Applications in Government cards */
/* .iwa-page #iwa-use-cases .use-case-card:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
} */
/* --- IWA PAGE LAYOUT GRID FIXES TO MATCH CRM --- */
.iwa-page #iwa-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.iwa-page #iwa-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.iwa-page #iwa-use-cases .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.iwa-page #iwa-examples .examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.iwa-page #iwa-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- IWA BENEFITS LEFT ALIGNMENT --- */
.iwa-page #iwa-benefits .benefits-content h2 {
    text-align: left;
}
.iwa-page #iwa-benefits .benefits-list {
    text-align: left;
}
/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --gradient: linear-gradient(45deg, #33b4ff, #fc00bd, #463e79, #686de0);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Subtle global polish without layout shifts */
html { scroll-behavior: smooth; }
body, input, textarea, button { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
*:focus-visible { outline: 2px solid #33b4ff; outline-offset: 2px; }
button:disabled, .btn-primary[disabled], .btn-secondary[disabled], .form-submit[disabled] { opacity: 0.7; cursor: not-allowed; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==================== LAYOUT NORMALIZATION ==================== */
/* Consistent section paddings and container widths across pages */
section { position: relative; }
.container, .hero-container, .services-container, .why-choose-container, .intro-container, .audience-container, .industries-container, .overview-container, .mission-container, .why-partner-container, .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* Standardize header spacing and typography */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-title, .section-title { margin: 0 0 1rem; line-height: 1.2; }
.section-header .section-description, .section-description { margin: 0 auto; max-width: 720px; }

/* Tighten mobile spacing */
@media (max-width: 768px) {
    .section-header { margin-bottom: 2.5rem; }
}

/* Responsive media and anchored section offset (for fixed navbar) */
img, video { max-width: 100%; height: auto; display: block; }
section[id] { scroll-margin-top: 96px; }

/* Consistent focus ring for interactive cards/links */
.service-card:focus-within, .benefit-card:focus-within, .agency-badge:focus-within,
.card a:focus-visible, .service-card a:focus-visible, .benefit-card a:focus-visible,
.btn-primary:focus-visible, .btn-secondary:focus-visible, .cta-button:focus-visible {
    outline: 2px solid #33b4ff; outline-offset: 3px;
}

/* Keyframe Animations */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

/* Background Effects */
.bg-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: var(--gradient);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: 0;
}

.bg-effect-1 {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 80%);
}

.bg-effect-2 {
    clip-path: polygon(15% 0, 100% 20%, 100% 100%, 0 100%);
}

/* ==================== NAVBAR STYLES ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(107, 188, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* Logo Styling */
.logo {
    
    z-index: 1002;
}

/* Glowing effect for transparent PNG logo */
.logoimg {
    width: 150px; /* Adjust as needed */
    height: auto;
    filter:
        drop-shadow(0 0 36px #ffffff)
        drop-shadow(0 0 32px #ffffff);
    transition: filter 0.3s;
}

/* Optional: Stronger glow on hover */
.logoimg:hover {
    filter:
        drop-shadow(0 0 24px #fffb07)
        drop-shadow(0 0 12px rgb(187, 255, 0));
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links > li > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

/* Make dropdown toggles visually consistent with nav links */
.nav-links > li > .dropdown-toggle {
    color: white;
    background: none;
    border: none;
    font: inherit;
    padding: 0.5rem 0;
    position: relative;
}
.nav-links > li > .dropdown-toggle:hover { color: #000000; }
.nav-links > li > .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #353535, #613dff);
    transition: width 0.3s ease;
}
.nav-links > li > .dropdown-toggle:hover::after { width: 100%; }

.nav-links > li > a:hover {
    color: #000000;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #000000, #313131);
    transition: width 0.3s ease;
}

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

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(23, 0, 53, 0.95); /* match navbar bg */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    list-style: none;
    margin-top: 8px;
}

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

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.dropdown-item + .dropdown-item { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.dropdown-item:hover { background: rgba(51, 180, 255, 0.08); color: #33b4ff; padding-left: 1.75rem; }

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #33b4ff, #1a90d9) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
}

.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4) !important;
    color: white !important;
}

.cta-button::after {
    display: none !important;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
    width: 35px;
    height: 35px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Show mobile toggle on smaller screens */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex !important; /* Force display with !important */
        position: fixed; /* Make it fixed for better visibility */
        top: 20px;
        right: 20px;
        background: rgba(26, 26, 46, 0.9);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Hide regular nav links on mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Hamburger animation when active */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Style mobile menu items */
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        color: white;
        text-decoration: none;
        transition: background 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(51, 180, 255, 0.1);
    }
    
    /* Mobile dropdown styling */
    .dropdown-menu {
        position: static;
        background: rgba(51, 180, 255, 0.1);
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-toggle::after {
        content: none;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

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

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

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    height: calc(80vh + 80px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==========================================================
     Page-specific styles imported from v3 (scoped to sections)
     - Products: IWA, CRM
     - Services: Education, Government
     Scoping with IDs/section classes avoids global regressions.
     ========================================================== */

    /* Services hero (Edu, Gov) */
    .services-hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 120px 5% 80px; overflow: hidden; }
    .services-hero .hero-container { max-width: 1400px; margin: 0 auto; width: 100%; z-index: 2; position: relative; }
    .services-hero .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: 70vh; }
    .services-hero .hero-text { display: flex; flex-direction: column; gap: 2rem; animation: fadeInLeft 1s ease-out; }
    .services-hero .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(51,180,255,0.1); border: 1px solid rgba(51,180,255,0.3); padding: 8px 16px; border-radius: 50px; color: #33b4ff; font-size: 0.9rem; font-weight: 500; width: fit-content; backdrop-filter: blur(10px); }
    .services-hero .hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.2; color: white; margin: 0; }
    .services-hero .gradient-text { background: linear-gradient(135deg, #33b4ff, #fc00bd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s ease-in-out infinite; }
    .services-hero .hero-description { font-size: 1.2rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }
    .services-hero .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .services-hero .btn-primary, .services-hero .btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; border: 2px solid transparent; }
    .services-hero .btn-primary { background: linear-gradient(135deg, #33b4ff, #1a90d9); color: white; }
    .services-hero .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(51, 180, 255, 0.4); }
    .services-hero .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
    .services-hero .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #33b4ff; color: #33b4ff; }

    @media (max-width: 768px) {
        .services-hero { padding: 100px 4% 60px; }
        .services-hero .hero-content { grid-template-columns: 1fr; gap: 40px; }
        .services-hero .hero-title { font-size: 2.5rem; }
        .services-hero .hero-description { font-size: 1.1rem; }
        .services-hero .hero-buttons { flex-direction: row !important; gap: 1rem !important; justify-content: start !important; align-items: center !important; flex-wrap: wrap !important; }
        .services-hero .btn-primary, .services-hero .btn-secondary { flex: 1 !important; min-width: 140px !important; max-width: 200px !important; justify-content: center !important; padding: 1rem 1.5rem !important; font-size: 0.85rem !important; }
    }

    @media (max-width: 480px) {
        .services-hero .hero-title { font-size: 2rem; }
        .services-hero .hero-description { font-size: 1rem; }
    }

/* ==================== PRODUCTS: IWA ==================== */
#iwa-hero {
        min-height: 100vh;
        padding: 120px 5% 80px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 30, 0.9));
}

#iwa-hero .hero-container {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
}

#iwa-hero .hero-content { display: flex; flex-direction: column; gap: 1.5rem; animation: fadeInUp 1s ease-out; }
#iwa-hero .hero-badge { display: inline-block; align-self: flex-start; padding: 0.8rem 1.5rem; background: linear-gradient(135deg, rgba(51, 180, 255, 0.15), rgba(51, 180, 255, 0.05)); border: 1px solid rgba(51, 180, 255, 0.4); border-radius: 30px; backdrop-filter: blur(10px); }
#iwa-hero .badge-text { color: #33b4ff; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
#iwa-hero .hero-title { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1; color: white; letter-spacing: -1px; }
#iwa-hero .highlight { background: linear-gradient(135deg, #33b4ff, #1a90d9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#iwa-hero .hero-description { font-size: 1.3rem; line-height: 1.7; color: rgba(255, 255, 255, 0.85); font-weight: 400; max-width: 90%; }
#iwa-hero .hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
#iwa-hero .btn-primary, #iwa-hero .btn-secondary { padding: 1.2rem 2.5rem; font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; gap: 0.5rem; }
#iwa-hero .btn-primary { background: linear-gradient(135deg, #33b4ff, #1a90d9); color: white; border: none; box-shadow: 0 8px 20px rgba(51, 180, 255, 0.3); }
#iwa-hero .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(51, 180, 255, 0.4); }
#iwa-hero .btn-secondary { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.4); backdrop-filter: blur(10px); }
#iwa-hero .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #33b4ff; color: #33b4ff; transform: translateY(-2px); }

#iwa-hero .hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.iwa-dashboard-preview { background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 4rem 3rem; text-align: center; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; max-width: 450px; position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.iwa-dashboard-preview:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); border-color: rgba(51, 180, 255, 0.3); }
.iwa-dashboard-preview i { font-size: 5rem; background: linear-gradient(135deg, #33b4ff, #1a90d9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1.5rem; display: block; animation: pulse 2s infinite; }
.iwa-dashboard-preview span { color: white; font-size: 1.4rem; font-weight: 700; }

/* IWA Sections */
#iwa-overview, #iwa-features, #iwa-benefits, #iwa-use-cases, #iwa-examples, #iwa-pricing { position: relative; overflow: hidden; z-index: 1; padding: 80px 5%; }
#iwa-overview .section-header, #iwa-features .section-header, #iwa-benefits .section-header, #iwa-use-cases .section-header, #iwa-examples .section-header, #iwa-pricing .section-header { text-align: center; margin-bottom: 4rem; }
#iwa-overview .section-header h2, #iwa-features .section-header h2, #iwa-benefits .section-header h2, #iwa-use-cases .section-header h2, #iwa-examples .section-header h2, #iwa-pricing .section-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; color: white; }
#iwa-overview .section-header p, #iwa-features .section-header p, #iwa-benefits .section-header p, #iwa-use-cases .section-header p, #iwa-examples .section-header p, #iwa-pricing .section-header p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.7); max-width: 600px; margin: 0 auto; }

#iwa-overview .overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
#iwa-overview .overview-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 15px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
#iwa-overview .overview-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
#iwa-overview .overview-icon { width: 80px; height: 80px; background: rgba(51, 180, 255, 0.1); border: 2px solid rgba(51, 180, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
#iwa-overview .overview-icon i { font-size: 2rem; color: #33b4ff; }

#iwa-features .features-grid, #iwa-use-cases .use-cases-grid, #iwa-examples .examples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
#iwa-features .feature-card, #iwa-use-cases .use-case-card, #iwa-examples .example-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 15px; padding: 2rem; transition: all 0.3s ease; }
#iwa-features .feature-card:hover, #iwa-use-cases .use-case-card:hover, #iwa-examples .example-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }

#iwa-benefits .benefits-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
#iwa-benefits .benefits-content h2 { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 2rem; }
#iwa-benefits .benefits-list { display: flex; flex-direction: column; gap: 1.5rem; }
#iwa-benefits .benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
#iwa-benefits .benefit-icon { width: 50px; height: 50px; background: rgba(51, 180, 255, 0.1); border: 2px solid rgba(51, 180, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#iwa-benefits .benefit-icon i { color: #33b4ff; font-size: 1.2rem; }

#iwa-pricing .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
#iwa-pricing .pricing-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 15px; padding: 2rem; text-align: center; transition: all 0.3s ease; position: relative; }
#iwa-pricing .pricing-card.featured { border-color: #33b4ff; transform: scale(1.05); }
#iwa-pricing .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
#iwa-pricing .pricing-card.featured:hover { transform: translateY(-5px) scale(1.05); }
#iwa-pricing .pricing-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #33b4ff, #1a90d9); color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }

@media (max-width: 768px) {
    #iwa-hero .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    #iwa-hero .hero-badge { align-self: center; }
    #iwa-hero .hero-buttons { justify-content: center; }
}

/* ==================== PRODUCTS: CRM ==================== */
#crm-hero { min-height: 100vh; padding: 120px 5% 80px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(20,20,30,0.9)); }
#crm-hero .hero-container { max-width: 1400px; width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
#crm-hero .hero-content { display: flex; flex-direction: column; gap: 1.5rem; animation: fadeInUp 1s ease-out; }
#crm-hero .hero-badge { display: inline-block; align-self: flex-start; padding: 0.8rem 1.5rem; background: linear-gradient(135deg, rgba(51, 180, 255, 0.15), rgba(51, 180, 255, 0.05)); border: 1px solid rgba(51, 180, 255, 0.4); border-radius: 30px; backdrop-filter: blur(10px); margin: 0; }
#crm-hero .hero-title { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1; color: white; letter-spacing: -1px; margin: 0; }
#crm-hero .hero-description { font-size: 1.3rem; line-height: 1.7; color: rgba(255,255,255,0.85); font-weight: 400; margin: 0; }
#crm-hero .hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
#crm-hero .btn-primary, #crm-hero .btn-secondary { padding: 1.2rem 2.5rem; font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; gap: 0.5rem; }
#crm-hero .btn-primary { background: linear-gradient(135deg, #33b4ff, #1a90d9); color: white; border: none; box-shadow: 0 8px 20px rgba(51, 180, 255, 0.3); }
#crm-hero .btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(10px); }

@media (max-width: 768px) {
    #crm-hero .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    #crm-hero .hero-badge { align-self: center; }
    #crm-hero .hero-buttons { justify-content: center; }
}

#crm-overview { padding: 80px 5%; background: rgba(255, 255, 255, 0.02); }
#crm-overview .overview-container { max-width: 1400px; margin: 0 auto; }
#crm-overview .section-header { text-align: center; margin-bottom: 4rem; }
#crm-overview .section-header h2 { font-size: clamp(2.2rem, 3vw, 3rem); font-weight: 700; margin-bottom: 1rem; color: white; }
#crm-overview .section-header p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); max-width: 600px; margin: 0 auto; }
#crm-overview .overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
#crm-overview .overview-item { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 0; padding: 2rem; text-align: center; transition: all 0.3s ease; }

#crm-features { padding: 80px 5%; position: relative; overflow: hidden; }
#crm-features .features-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
#crm-features .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
#crm-features .feature-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 0; padding: 2rem; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; text-align: center; }

#crm-benefits { padding: 80px 5%; background: rgba(255, 255, 255, 0.02); }
#crm-benefits .benefits-container { max-width: 1400px; margin: 0 auto; }
#crm-benefits .benefits-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
#crm-benefits .benefits-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

#crm-use-cases { padding: 80px 5%; position: relative; overflow: hidden; }
#crm-use-cases .use-cases-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
#crm-use-cases .use-cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
#crm-use-cases .use-case-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 0; padding: 2rem; text-align: center; transition: all 0.3s ease; }

/* CRM Use Cases Section Enhanced Styling */
.crm-page #crm-use-cases {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02));
    position: relative;
}

.crm-page #crm-use-cases .use-cases-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crm-page #crm-use-cases .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #crm-use-cases .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #crm-use-cases .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.crm-page #crm-use-cases .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1400px;
    margin: 0 auto;
}

.crm-page #crm-use-cases .use-case-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crm-page #crm-use-cases .use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.crm-page #crm-use-cases .use-case-card:hover::before {
    transform: scaleX(1);
}

.crm-page #crm-use-cases .use-case-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.crm-page #crm-use-cases .use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.crm-page #crm-use-cases .use-case-card:hover .use-case-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.crm-page #crm-use-cases .use-case-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.crm-page #crm-use-cases .use-case-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

#crm-pricing { padding: 80px 5%; background: rgba(255, 255, 255, 0.02); }
#crm-pricing .pricing-container { max-width: 1200px; margin: 0 auto; }
#crm-pricing .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
#crm-pricing .pricing-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 0; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; }

/* Business Applications (CRM) */
#crm-applications { position: relative; overflow: hidden; z-index: 1; padding: 80px 5%; }
#crm-applications .applications-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
#crm-applications .applications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
#crm-applications .application-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; }

/* CRM Applications Section Enhanced Styling */
.crm-page #crm-applications {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
    position: relative;
}

.crm-page #crm-applications .applications-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crm-page #crm-applications .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #crm-applications .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #crm-applications .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.crm-page #crm-applications .applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1200px;
    margin: 0 auto;
}

.crm-page #crm-applications .application-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crm-page #crm-applications .application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.crm-page #crm-applications .application-card:hover::before {
    transform: scaleX(1);
}

.crm-page #crm-applications .application-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.crm-page #crm-applications .application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.crm-page #crm-applications .application-card:hover .application-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.crm-page #crm-applications .application-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.crm-page #crm-applications .application-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.crm-page #crm-applications .application-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.crm-page #crm-applications .feature-tag {
    background: rgba(51, 180, 255, 0.1);
    border: 1px solid rgba(51, 180, 255, 0.3);
    color: #33b4ff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.crm-page #crm-applications .application-card:hover .feature-tag {
    background: rgba(51, 180, 255, 0.15);
    border-color: rgba(51, 180, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #crm-overview .overview-grid, #crm-features .features-grid, #crm-use-cases .use-cases-grid, #crm-pricing .pricing-grid { grid-template-columns: 1fr; }
    #crm-benefits .benefits-split { grid-template-columns: 1fr; gap: 2rem; }
    
    .crm-page #crm-applications {
        padding: 80px 5% 60px;
    }
    
    .crm-page #crm-applications .applications-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .crm-page #crm-applications .section-header h2 {
        font-size: 2rem;
    }
    
    .crm-page #crm-applications .application-card {
        padding: 2rem 1.5rem;
    }
    
    .crm-page #crm-use-cases {
        padding: 80px 5% 60px;
    }
    
    .crm-page #crm-use-cases .use-cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .crm-page #crm-use-cases .section-header h2 {
        font-size: 2rem;
    }
    
    .crm-page #crm-use-cases .use-case-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .crm-page #crm-applications .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .crm-page #crm-use-cases .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .crm-page #crm-use-cases .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    #crm-hero, #crm-overview, #crm-features, #crm-benefits, #crm-use-cases, #crm-pricing, #crm-applications { padding: 60px 5% 40px; }
}

/* ==================== SERVICES: EDUCATION ==================== */
/* Subjects */
.subjects-section { padding: 100px 5% 80px; position: relative; z-index: 1; background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02)); }
.subjects-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.subjects-section .section-header { text-align: center; margin-bottom: 4rem; animation: fadeInUp 1s ease-out; }
.subjects-section .section-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem; background: linear-gradient(135deg, #33b4ff, #08004e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.subjects-section .section-description { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.subjects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; animation: fadeInUp 1s ease-out 0.3s both; }
.subject-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem 2rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; justify-content: space-between; }
.subject-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #33b4ff, #000c4e); transform: scaleX(0); transition: transform 0.3s ease; }
.subject-card:hover::before { transform: scaleX(1); }
.subject-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); border-color: rgba(51, 180, 255, 0.3); box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15); }
.subject-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #33b4ff, #1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: white; margin: 0 auto 2rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3); }
.subject-card:hover .subject-icon { transform: scale(1.1); box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); }
.subject-title { font-size: 1.4rem; font-weight: 600; color: white; margin-bottom: 0.5rem; line-height: 1.3; transition: color 0.3s ease; }
.subject-card:hover .subject-title { color: #33b4ff; }
.subject-level { font-size: 1rem; color: #33b4ff; font-weight: 500; margin-bottom: 1.5rem; padding: 0.5rem 1rem; background: rgba(51, 180, 255, 0.1); border-radius: 20px; border: 1px solid rgba(51, 180, 255, 0.2); display: inline-block; }
.subject-details { list-style: none; padding: 0; margin: 0; text-align: left; flex-grow: 1; }
.subject-details li { padding: 0.8rem 0; color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; line-height: 1.5; border-bottom: 1px solid rgba(255, 255, 255, 0.1); position: relative; padding-left: 2rem; transition: all 0.3s ease; }
.subject-details li:last-child { border-bottom: none; }
.subject-details li:before { content: '\2713'; position: absolute; left: 0; color: #33b4ff; font-weight: bold; font-size: 1.1rem; }
.subjects-cta { text-align: center; margin-top: 2rem; animation: fadeInUp 1s ease-out 0.6s both; }
.cta-text { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); margin: 0; font-weight: 500; }
.subject-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #33b4ff, #1a90d9); color: white; border: none; padding: 1rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; margin-top: 1.5rem; width: 100%; box-shadow: 0 5px 15px rgba(51, 180, 255, 0.3); }
.subject-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(51, 180, 255, 0.5); background: linear-gradient(135deg, #1a90d9, #33b4ff); }

@media (max-width: 768px) {
    .subjects-section { padding: 80px 4% 60px; }
    .subjects-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
    .subjects-section .section-title { font-size: 2rem; }
    .subject-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .subject-card { padding: 1.8rem 1.2rem; }
    .subjects-section .section-title { font-size: 1.8rem; }
}

/* Why Choose (Edu) */
.why-choose-section { padding: 100px 5% 80px; position: relative; z-index: 1; background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02)); }
.why-choose-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.why-choose-section .section-header { text-align: center; margin-bottom: 4rem; animation: fadeInUp 1s ease-out; }
.why-choose-section .section-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem; background: linear-gradient(135deg, #33b4ff, #fc00bd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-choose-section .section-description { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.why-choose-section .benefits-grid { display: flex; flex-direction: column; gap: 2rem; animation: fadeInUp 1s ease-out 0.3s both; }
.why-choose-section .benefits-row { display: grid; gap: 2rem; }
.why-choose-section .row-1 { grid-template-columns: repeat(3, 1fr); }
.why-choose-section .row-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.why-choose-section .benefit-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.why-choose-section .benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #33b4ff, #fc00bd); transform: scaleX(0); transition: transform 0.3s ease; }
.why-choose-section .benefit-card:hover::before { transform: scaleX(1); }
.why-choose-section .benefit-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); border-color: rgba(51, 180, 255, 0.3); box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15); }
.why-choose-section .benefit-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #33b4ff, #1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: white; margin: 0 auto 2rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3); }
.why-choose-section .benefit-card:hover .benefit-icon { transform: scale(1.1); box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); }
.why-choose-section .benefit-title { font-size: 1.4rem; font-weight: 600; color: white; margin-bottom: 1.5rem; line-height: 1.3; transition: color 0.3s ease; }
.why-choose-section .benefit-card:hover .benefit-title { color: #33b4ff; }
.why-choose-section .benefit-description { font-size: 1rem; color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin: 0; transition: color 0.3s ease; flex-grow: 1; }

@media (max-width: 768px) {
    .why-choose-section { padding: 80px 4% 60px; }
    .why-choose-section .benefits-row { display: flex; flex-direction: column; gap: 1.5rem; }
    .why-choose-section .row-1, .why-choose-section .row-2 { grid-template-columns: none; max-width: 100%; }
}

/* ==================== SERVICES: GOVERNMENT ==================== */
.services-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.services-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.services-section .section-header { text-align: center; margin-bottom: 4rem; animation: fadeInUp 1s ease-out; }
.services-section .section-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem; background: linear-gradient(135deg, #33b4ff, #fc00bd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.services-section .section-description { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); max-width: 600px; margin: 0 auto; line-height: 1.6; }
/* Home page services grid - force 2 columns */
#services .services-grid { 
    display: grid !important; 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 2rem !important; 
    animation: fadeInUp 1s ease-out 0.3s both; 
    max-width: 100% !important;
}

#services .service-card {
    width: 100% !important;
    max-width: none !important;
}

.services-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 2rem; animation: fadeInUp 1s ease-out 0.3s both; }
.service-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #33b4ff, #fc00bd); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); border-color: rgba(51, 180, 255, 0.3); box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15); }
.card-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #33b4ff, #1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: white; margin: 0 auto 2rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3); }
.service-card:hover .card-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); }
.card-title { font-size: 1.4rem; font-weight: 600; color: white; margin-bottom: 1.5rem; line-height: 1.3; transition: color 0.3s ease; }
.service-card:hover .card-title { color: #33b4ff; }
.card-description { font-size: 1rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin: 0; transition: color 0.3s ease; }
.service-card:hover .card-description { color: rgba(255, 255, 255, 0.9); }

/* Trust section (Gov) */
.trust-section { padding: 100px 5% 80px; position: relative; z-index: 1; background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02)); }
.trust-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.trust-section .section-header { text-align: center; margin-bottom: 4rem; animation: fadeInUp 1s ease-out; }
.trust-section .section-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem; background: linear-gradient(135deg, #33b4ff, #3936e4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-section .section-description { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.trust-section .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 5rem; animation: fadeInUp 1s ease-out 0.3s both; }
.trust-section .benefit-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.trust-section .benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #33b4ff, #3962eb); transform: scaleX(0); transition: transform 0.3s ease; }
.trust-section .benefit-card:hover::before { transform: scaleX(1); }
.trust-section .benefit-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); border-color: rgba(51, 180, 255, 0.3); box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15); }
.trust-section .benefit-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #33b4ff, #1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin: 0 auto 1.5rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3); }
.trust-section .benefit-title { font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 1rem; line-height: 1.3; transition: color 0.3s ease; }
.trust-section .benefit-card:hover .benefit-title { color: #33b4ff; }
.trust-section .benefit-description { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 1.5; margin: 0; transition: color 0.3s ease; }
.agencies-section { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 3rem; animation: fadeInUp 1s ease-out 0.6s both; }
.agencies-title { text-align: center; font-size: 1.8rem; font-weight: 600; color: white; margin-bottom: 2.5rem; position: relative; }
.agencies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.agency-badge { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.agency-badge::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #33b4ff, #5350ff); transform: scaleX(0); transition: transform 0.3s ease; }
.agency-badge:hover::before { transform: scaleX(1); }
.agency-badge:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); border-color: rgba(51, 180, 255, 0.3); box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15); }
.agency-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #33b4ff, #1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin: 0 auto 1.5rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3); }
.agency-title { font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 1rem; line-height: 1.3; transition: color 0.3s ease; }
.agency-badge:hover .agency-title { color: #33b4ff; }
.agency-subtitle { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 1.5; margin: 0; transition: color 0.3s ease; }

@media (max-width: 768px) and (min-width: 481px) {
    .services-section { padding: 80px 4% 60px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .trust-section { padding: 80px 4% 60px; }
}

@media (max-width: 480px) {
    .services-section { padding: 80px 4% 60px; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
    .trust-section { padding: 80px 4% 60px; }
}

@media (max-width: 480px) {
    .services-grid, .trust-section .benefits-grid, .agencies-grid { grid-template-columns: 1fr; }
}

.hero-text {
    max-width: 700px;
    text-align: left;
    animation: fadeInUp 1s ease-out;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    background: var(--gradient);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 8s linear infinite;
}

.hero-description {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 50px !important; /* Changed from 0 to 50px for rounded style */
    font-weight: 600; /* Changed from 500 to 600 */
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border: none; /* Remove border */
    background: linear-gradient(135deg, #33b4ff, #1a90d9); /* Add gradient background */
    color: white; /* Ensure text is white */
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3); /* Add shadow */
}

.hero-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc); /* Darker gradient on hover */
    color: white;
    border: none; /* Keep no border on hover */
    transform: translateY(-3px); /* Increased lift effect */
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); /* Enhanced shadow */
}

/* Video Section */
.hero-video-section {
    height: 50vh;
    position: relative;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.3),
        rgba(20, 20, 20, 0.2)
    );
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    display: none !important;
}

/* ==================== GENERAL SECTIONS ==================== */
#section {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-content {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
    color: white;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 80px 1rem 2rem;
        backdrop-filter: blur(10px);
        overflow-y: auto;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

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

    .nav-links li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation delays */
    .nav-links li:nth-child(1) a { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) a { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) a { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) a { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) a { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) a { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) a { transition-delay: 0.7s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
    }

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

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
    }

    /* Mobile Dropdown */
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
        cursor: pointer;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-arrow {
        position: absolute;
        right: 1rem;
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
        margin: 0.5rem 0 0 0;
        padding: 0;
        min-width: auto;
        width: 95%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(8px);
        transform: translateY(-10px);
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 1rem 0;
    transform: translateY(0)
    }
    
    .dropdown:nth-child(4).active .dropdown-menu {
        max-height: 600px;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        padding: 0.8rem 1.5rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.9);
        min-height: 48px;
    }

    .dropdown.active .dropdown-item {
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown.active .dropdown-item:nth-child(1) { transition-delay: 0.1s; }
    .dropdown.active .dropdown-item:nth-child(2) { transition-delay: 0.2s; }
    .dropdown.active .dropdown-item:nth-child(3) { transition-delay: 0.3s; }
    .dropdown.active .dropdown-item:nth-child(4) { transition-delay: 0.4s; }
    .dropdown.active .dropdown-item:nth-child(5) { transition-delay: 0.5s; }
    .dropdown.active .dropdown-item:nth-child(6) { transition-delay: 0.6s; }
    
    .dropdown-item:hover {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.1);
        border-left: none;
        color: white;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item::before {
        display: none;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
        z-index: 999;
    }

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

    /* Mobile Hero */
    .hero-section {
        height: calc(100vh + 70px);
        padding-top: 70px;
    }
    
    .hero-content {
        height: 60vh;
        padding: 0 5%;
        justify-content: flex-start;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        margin-bottom: 1.2rem;
        text-align: left;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 2rem;
        line-height: 1.6;
        text-align: left;
        margin-left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        justify-content: flex-start;
    }
    
    .hero-button {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-video-section {
        height: 40vh;
    }
    
    .cta-button {
        margin-left: 0;
        margin-top: 1rem;
        width: 90%;
        text-align: center;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        border-bottom: none !important;
    }

    /* Mobile Sections */
    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        justify-content: flex-start;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 3.2vw, 2.5rem);
        text-align: left;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 1.4vw, 1.05rem);
        text-align: left;
        margin-left: 0;
        line-height: 1.7;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
}


/* ==================== ABOUT SECTION ==================== */
#about {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Image */
.about-image {
    width: 100%;
    height: 60vh;
    position: relative;
    margin: 2rem 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Rectangular corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Right Side - Content */
.about-content {
    padding: 2rem 0;
    text-align: left;
}

.about-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* On mobile: text on top, image below */
    .about-content {
        order: 1;
        padding: 1rem 0;
        text-align: left;
    }

    .about-image {
        order: 2;
        height: 50vh;
        margin: 1rem 0;
    }

    .about-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-container {
        gap: 3rem;
    }

    .about-image {
        height: 55vh;
    }

    .about-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .about-description {
        font-size: 1.05rem;
    }
}


/* ==================== SERVICES SECTION ==================== */
#services {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    background-size: 300%;
    animation: gradient 8s linear infinite;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem; /* Increased from 1.5rem for better icon visibility */
    font-weight: 400; /* Changed from 600 for Font Awesome icons */
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    flex-grow: 1;
}

.service-button {
    background: linear-gradient(135deg, #33b4ff, #1a90d9); /* Add gradient */
    color: white;
    border: none; /* Remove border */
    padding: 0.7rem 1.5rem;
    border-radius: 50px; /* Make rounded */
    font-size: 0.9rem;
    font-weight: 600; /* Increase font weight */
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3); /* Add shadow */
}

.service-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc); /* Darker gradient */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); /* Enhanced shadow */
}

/* Tablet Responsive - 2x2 Grid */
@media (max-width: 900px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .service-card {
        min-height: 280px;
        padding: 2rem;
    }

    .services-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .services-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile Responsive - Stacked Vertically */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-height: 250px;
        padding: 1.5rem;
        text-align: left;
    }

    .service-icon {
        margin: 0 0 1rem 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem; 
    }

    .service-title {
        font-size: 1.2rem;
        text-align: left;
    }

    .service-description {
        text-align: left;
        font-size: 0.9rem;
    }

    .service-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        transition: all 0.3s ease;
    }

    .service-button:hover {
        transform: translateY(-2px); /* Slightly less lift on mobile */
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .services-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .services-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ==================== INDUSTRIES SECTION ==================== */
#industries {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.industries-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.industries-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Center-align the bottom row (items 5 and 6) in the 3-column grid */
#industries .industries-grid .industry-card:nth-child(5) { grid-column: 2; }
#industries .industries-grid .industry-card:nth-child(6) { grid-column: 3; }

.industry-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    background-size: 300%;
    animation: gradient 8s linear infinite;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.industry-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    flex-grow: 1;
}

.industry-button {
    background: linear-gradient(135deg, #33b4ff, #1a90d9); /* Add gradient */
    color: white;
    border: none; /* Remove border */
    padding: 0.7rem 1.5rem;
    border-radius: 50px; /* Make rounded */
    font-size: 0.9rem;
    font-weight: 600; /* Increase font weight */
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3); /* Add shadow */
}

.industry-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc); /* Darker gradient */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); /* Enhanced shadow */
}
.industry-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

/* Tablet Responsive - 2x3 Grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2.5rem;
    }
    /* Reset explicit columns at tablet to allow auto flow */
    #industries .industries-grid .industry-card:nth-child(5),
    #industries .industries-grid .industry-card:nth-child(6) { grid-column: auto; }

    .industry-card {
        min-height: 260px;
        padding: 2rem;
    }

    .industries-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .industries-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile Responsive - Stacked Vertically */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Reset explicit columns on mobile */
    #industries .industries-grid .industry-card:nth-child(5),
    #industries .industries-grid .industry-card:nth-child(6) { grid-column: auto; }

    .industry-card {
        min-height: 250px;
        padding: 1.5rem;
        text-align: left;
    }

    .industry-icon {
        margin: 0 0 1rem 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .industry-title {
        font-size: 1.2rem;
        text-align: left;
    }

    .industry-description {
        text-align: left;
        font-size: 0.9rem;
    }

    .industry-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        transition: all 0.3s ease;
    }

    .industry-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .industries-header {
        margin-bottom: 2.5rem;
    }

    .industries-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .industries-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ==================== STATISTICS SECTION ==================== */
#statistics {
    min-height: 80vh;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.95));
}

.statistics-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.statistics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.statistics-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.statistics-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    background: var(--gradient);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 8s linear infinite;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tablet Responsive - 2x2 Grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    .statistics-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }
}

/* Mobile Responsive - 2x2 Grid */
@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .statistics-header {
        margin-bottom: 2.5rem;
    }

    .statistics-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .statistics-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}


/* ==================== PRODUCTS SECTION ==================== */
#products {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.products-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.products-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-header {
    margin-bottom: 2rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    background-size: 300%;
    animation: gradient 8s linear infinite;
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    font-weight: 400;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.product-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.product-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* Space between checkmark and text */
}

.product-features li::before {
    content: '✓';
    position: static; /* Remove absolute positioning */
    color: #33b4ff;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0; /* Prevent checkmark from shrinking */
}
.product-target {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    text-align: left;
    font-style: italic;
}
.product-button {
    background: linear-gradient(135deg, #33b4ff, #1a90d9); /* Add gradient */
    color: white;
    border: none; /* Remove border */
    padding: 1rem 2rem;
    border-radius: 50px; /* Make rounded */
    font-size: 1rem;
    font-weight: 600; /* Increase font weight */
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3); /* Add shadow */
}

.product-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc); /* Darker gradient */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5); /* Enhanced shadow */
}

/* ==================== HERO SECTION - FIXED ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Increased padding for safety */
    margin-top: 0; /* Remove any margin */
}

.hero-content {
    padding-top: 30px; /* Extra padding for content */
    height: auto; /* Remove fixed height */
    min-height: 50vh; /* Min height instead of fixed */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 90px; /* Slightly less on mobile */
    }
    
    .hero-content {
        padding-top: 20px;
        min-height: 60vh;
    }
}

/* Small screens need extra padding */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px; /* More on small screens */
    }
}

/* ==================== CLIENTS SECTION ==================== */
#clients {
    min-height: 60vh;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.clients-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
}

.clients-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.clients-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Logo Slider Animation */
@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-250px * 6)); /* 6 unique logos */
    }
}

/* Logo Slider Styling */
.slider {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 960px;
}

/* Gradient fade effects on sides */
.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
    content: "";
    height: 120px;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 25s linear infinite;
    display: flex;
    width: calc(250px * 12); /* 6 logos × 2 for seamless loop */
}

.slide {
    height: 120px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.slide img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .slider {
        height: 100px;
        max-width: 800px;
    }

    .slider::before,
    .slider::after {
        height: 100px;
        width: 120px;
    }

    .slide {
        height: 100px;
        width: 200px;
        padding: 15px;
    }

    .slide img {
        max-width: 150px;
        max-height: 70px;
    }

    .slide-track {
        animation: scroll 20s linear infinite;
        width: calc(200px * 12);
    }

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

    .clients-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .clients-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #clients {
        min-height: 50vh;
        padding: 60px 5%;
    }

    .slider {
        height: 80px;
        max-width: 100%;
    }

    .slider::before,
    .slider::after {
        height: 80px;
        width: 80px;
    }

    .slide {
        height: 80px;
        width: 150px;
        padding: 10px;
    }

    .slide img {
        max-width: 120px;
        max-height: 60px;
    }

    .slide-track {
        animation: scroll 15s linear infinite;
        width: calc(150px * 12);
    }

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

    .clients-header {
        margin-bottom: 2.5rem;
    }

    .clients-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .clients-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ==================== TESTIMONIALS SECTION ==================== */
#testimonials {
    min-height: 70vh;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Swiper Testimonials Styling */
.testimonialsSwiper {
    width: 100%;
    height: 400px;
    padding-bottom: 50px; /* Space for pagination */
}

.testimonialsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Client Photo */
.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(51, 180, 255, 0.3);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* Client Info */
.client-info {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.client-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

.client-company {
    font-size: 0.85rem;
    color: #33b4ff;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Testimonial Quote */
.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: #33b4ff;
    position: absolute;
    top: -0.5rem;
    left: -0.2rem;
    font-family: serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-quote::after {
    content: '"';
    font-size: 2rem;
    color: #33b4ff;
    position: absolute;
    bottom: -0.8rem;
    right: 0;
    font-family: serif;
    line-height: 1;
    opacity: 0.6;
}

/* Swiper Pagination Styling */
.testimonialsSwiper .swiper-pagination {
    bottom: 10px;
}

.testimonialsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    background: #33b4ff;
    border-color: #33b4ff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .testimonialsSwiper {
        height: 380px;
    }

    .testimonial-card {
        padding: 1.8rem 1.3rem;
    }

    .client-photo {
        width: 70px;
        height: 70px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .testimonials-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .testimonials-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .testimonialsSwiper {
        height: 350px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .client-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .client-info {
        margin-bottom: 1rem;
    }

    .testimonial-quote {
        font-size: 0.85rem;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-title {
        font-size: 0.85rem;
    }

    .client-company {
        font-size: 0.8rem;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    .testimonials-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ==================== CONTACT SECTION ==================== */
#contact {
    min-height: 90vh;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    /* Default: vertical flow; specific layouts are handled below */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Contact unified header (matches v3) */
#contact .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

#contact .section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem 0;
}

#contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Two-column content wrapper used on most pages */
.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-content { grid-template-columns: 1fr; }
}

/* Left Side - Contact Form */
.contact-form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #33b4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(51, 180, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border: none;
    border-radius: 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3);
}

.button-loader {
    display: none;
}

.submit-button.loading .button-text {
    display: none;
}

.submit-button.loading .button-loader {
    display: inline-block;
}

/* Form Messages */
.form-messages {
    margin-top: 1rem;
}

.success-message,
.error-message-general {
    padding: 1rem;
    border-radius: 0;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

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

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
    font-family: 'Poppins', sans-serif;
}

/* ==================== OVERSEAS MANPOWER SERVICES PAGE ==================== */
/* Override for 3-card layout in "What We Offer" section - Higher specificity */
#hero.services-hero ~ #introduction.intro-section ~ #services.services-section .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    animation: fadeInUp 1s ease-out 0.3s both !important;
}

#hero.services-hero ~ #introduction.intro-section ~ #services.services-section .service-card {
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 1200px) {
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Override for "What Sets Us Apart" section - 3+2 layout */
#hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefits-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
}

#hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefits-row {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
}

#hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .row-1 {
    /* Currently has 2 cards, need to move 1 from row-2 */
}

#hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .row-2 {
    max-width: 800px !important;
    margin: 0 auto !important;
    /* Currently has 3 cards, will have 2 after restructure */
}

#hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefit-card {
    width: 320px !important;
    max-width: 320px !important;
    flex-shrink: 0 !important;
}

@media (max-width: 1200px) {
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefit-card {
        width: 300px !important;
        max-width: 300px !important;
    }
}

@media (max-width: 1024px) {
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefits-row {
        flex-wrap: wrap !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefit-card {
        width: 350px !important;
        max-width: 350px !important;
    }
}

@media (max-width: 768px) {
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefits-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    #hero.services-hero ~ #introduction.intro-section ~ #services.services-section ~ #why-choose-us.why-choose-section .benefit-card {
        width: 100% !important;
        max-width: 500px !important;
    }
}

/* ==================== IT SERVICES PAGE (scoped overrides) ==================== */
/* Scope using sibling relation from #introduction (present on /services/it) */
#introduction ~ #services .services-container { max-width: 1600px !important; }

#introduction ~ #services .services-grid { display: flex !important; flex-direction: column !important; gap: 3rem !important; }
#introduction ~ #services .services-row { display: flex !important; justify-content: center !important; gap: 2rem !important; }

#introduction ~ #services .service-card { 
    width: 320px !important;
    max-width: 320px !important;
    height: 100% !important;
    min-height: 450px !important;
    padding: 3rem 2.5rem !important;
    flex-shrink: 0 !important;
}

#introduction ~ #services .service-card .card-title {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
}

#introduction ~ #services .service-card .service-details li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    padding: 0.8rem 0 !important;
}

#introduction ~ #services .service-details { list-style: none; padding: 0; margin: 0; }
#introduction ~ #services .service-details li { padding: 0.8rem 0; color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; line-height: 1.5; border-bottom: 1px solid rgba(255, 255, 255, 0.1); position: relative; padding-left: 2rem; transition: all 0.3s ease; }
#introduction ~ #services .service-details li:last-child { border-bottom: none; }
#introduction ~ #services .service-details li:before { content: '▸'; position: absolute; left: 0; color: #33b4ff; font-weight: bold; font-size: 1.1rem; }
#introduction ~ #services .service-details li:hover { color: #33b4ff; padding-left: 2.5rem; }

#introduction ~ #why-choose-us.why-choose-section .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

#introduction ~ #contact .contact-form { background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1); }
#introduction ~ #contact .form-group { margin-bottom: 20px; }
#introduction ~ #contact .form-group input,
#introduction ~ #contact .form-group textarea { width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; color: white; font-size: 14px; transition: all 0.3s ease; box-sizing: border-box; }
#introduction ~ #contact .form-group input:focus,
#introduction ~ #contact .form-group textarea:focus { outline: none; border-color: #33b4ff; background: rgba(255, 255, 255, 0.15); }
#introduction ~ #contact .form-group input::placeholder,
#introduction ~ #contact .form-group textarea::placeholder { color: #aaa; }
#introduction ~ #contact .form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, #33b4ff, #1a90d9); color: white; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
#introduction ~ #contact .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4); }

@media (max-width: 1400px) {
    #introduction ~ #services .service-card { 
        width: 300px !important;
        max-width: 300px !important;
        min-height: 420px !important;
    }
}

@media (max-width: 1200px) {
    #introduction ~ #services .service-card { 
        width: 280px !important;
        max-width: 280px !important;
        min-height: 400px !important;
    }
    #introduction ~ #services .services-row { gap: 1.5rem !important; }
}

@media (max-width: 1024px) {
    #introduction ~ #services .services-row { 
        flex-wrap: wrap !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }
    #introduction ~ #services .service-card { 
        width: 350px !important;
        max-width: 350px !important;
        min-height: 380px !important;
    }
}

@media (max-width: 768px) {
    #introduction ~ #services .services-container { max-width: 100% !important; padding: 0 4% !important; }
    #introduction ~ #services .services-grid { gap: 2rem !important; }
    #introduction ~ #services .services-row { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; align-items: center !important; }
    #introduction ~ #services .service-card { 
        width: 100% !important;
        max-width: 500px !important;
        min-height: 320px !important; 
        padding: 2.5rem 2rem !important; 
    }
    #introduction ~ #why-choose-us.why-choose-section .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
}

@media (max-width: 480px) {
    #introduction ~ #services .services-grid { gap: 1.5rem !important; }
    #introduction ~ #services .services-row { gap: 1.2rem !important; }
    #introduction ~ #services .service-card { 
        width: 100% !important;
        max-width: 100% !important;
        min-height: 280px !important; 
        padding: 2rem 1.5rem !important; 
    }
    #introduction ~ #why-choose-us.why-choose-section .benefits-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* Right Side - Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(51, 180, 255, 0.1);
    border: 1px solid rgba(51, 180, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #33b4ff;
    font-size: 1rem;
}

.contact-text h4 {
    margin: 0 0 0.3rem 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Media */
.social-media {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.social-media h4 {
    margin: 0 0 1rem 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: #33b4ff;
    border-color: #33b4ff;
    color: white;
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: var(--border);
    border-radius: 0;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

/* ==================== OFFICE SECTION ==================== */
#office {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.office-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.office-header {
    text-align: center;
    margin-bottom: 3rem;
}

.office-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.office-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Office Tabs Styling */
.office-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.office-tab {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.office-tab:hover {
    background: rgba(51, 180, 255, 0.1);
    color: #33b4ff;
}

.office-tab.active {
    color: #33b4ff;
    border-bottom-color: #33b4ff;
    background: rgba(51, 180, 255, 0.05);
}

.office-tab i {
    font-size: 16px;
}

/* Office Information Container */
.office-info-container {
    position: relative;
    min-height: 320px;
}

.office-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.office-info.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Map Container Styling */
.map-container {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.office-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.office-map.active {
    opacity: 1;
    visibility: visible;
}

/* Footer Multi-Location Styling */
.footer-contact .multi-location {
    flex-direction: column;
    align-items: flex-start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
}

.location-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-item:last-child {
    border-bottom: none;
}

.location-item strong {
    color: #33b4ff;
    font-size: 14px;
}

.location-item span {
    color: #ccc;
    font-size: 13px;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column:first-child {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    /* Center the contact information section */
    .footer-contact {
        text-align: center;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    /* Center individual contact items */
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    /* Center all footer sections on mobile */
    .footer-links {
        text-align: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .footer-cta {
        text-align: center;
    }
    .multi-location{
        display: flex;
        flex-direction: column;
        align-items: center ;
    }

}

@media (max-width: 480px) {
    #footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
}

/* ==================== FIXED CERTIFICATION BADGES ==================== */
.fixed-badges {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.badge-item {
    pointer-events: auto;
}

.badge-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid rgba(51, 180, 255, 0.3);
    background: rgb(250, 250, 250);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.badge-image:hover {
    transform: scale(1.15);
    border-color: #cacaca;
    box-shadow: 0 8px 25px rgba(51, 64, 71, 0.4);
    background: rgb(218, 222, 224);
}

.badge-item:first-child .badge-image {
    border-radius: 0;
    /* You can also make it slightly rectangular if needed */
    width: 120px; 
    height: 75px;
}
.badge-item:nth-child(2) .badge-image {
    border-radius: 50%;
}

@media (max-width: 768px) {
    .fixed-badges {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .badge-image {
        width: 60px;
        height: 60px;
        border-width: 1.5px;
    }
    
    .badge-image:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .fixed-badges {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .badge-image {
        width: 50px;
        height: 50px;
        border-width: 1px;
    }
}

/* Ensure badges don't interfere with back-to-top button */
.back-to-top {
    margin-right: 200px;
}

@media (max-width: 768px) {
    .back-to-top {
        margin-right: 140px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        margin-right: 120px;
    }
}

/* ==================== CONTACT SECTION MOBILE FIX ==================== */

/* Contact Container - Mobile First Approach */
.contact-container.with-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column; /* Mobile first - stack vertically */
    gap: 1rem;
}

/* Form Section - Ensure it comes first on mobile */
.contact-container.with-split .contact-form-section {
    order: 1; /* Form appears first on mobile */
    width: 100%;
}

/* Info Section - Appears second on mobile */
.contact-container.with-split .contact-info-section {
    order: 2; /* Info appears second on mobile */
    width: 100%;
}


@media (min-width: 992px) {
    /* Home uses a split container; other pages keep header above content */
    .contact-container.with-split {
        flex-direction: row !important; /* Side by side on desktop */
        gap: 4rem !important;
        align-items: flex-start !important;
    }
    
    /* 50/50 Split */
    .contact-container.with-split .contact-form-section {
        flex: 1 !important; /* Take up 50% of width */
        max-width: 50% !important;
    }
    
    .contact-container.with-split .contact-info-section {
        flex: 1 !important; /* Take up 50% of width */
        max-width: 50% !important;
    }
    
    /* Ensure both sections have equal height starting point */
    .contact-container.with-split .contact-form-section,
    .contact-container.with-split .contact-info-section {
        min-height: auto !important;
    }
    
    /* Form section styling for desktop */
    .contact-container.with-split .contact-form {
        background: rgba(255, 255, 255, 0.05);
        padding: 2.5rem;
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    /* Contact info section styling for desktop */
    .contact-container.with-split .contact-info {
        background: rgba(255, 255, 255, 0.03);
        padding: 2.5rem;
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 2rem;
    }
    
    /* Map container for desktop */
    .contact-container.with-split .map-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}


/* Mobile Specific Styles */
@media (max-width: 768px) {
    .contact-container.with-split {
        flex-direction: column !important;
        padding: 1rem;
        gap: 2rem;
    }
    
    .contact-container.with-split .contact-form-section {
        order: 1 !important; /* Force form to top */
        width: 100% !important;
        margin-bottom: 2rem;
    }
    
    .contact-container.with-split .contact-info-section {
        order: 2 !important; /* Force info to bottom */
        width: 100% !important;
    }
    
    /* Form styling for mobile */
    .contact-container.with-split .contact-form {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    /* Form fields mobile optimization */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .submit-button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    /* Contact info mobile styling */
    .contact-info {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: white;
    }
    
    /* Office Info Container */
    .office-info-container {
        margin-top: 1rem;
    }
    
    .office-info {
        display: none;
    }
    
    .office-info.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Contact Details */
    .contact-details {
        padding: 1rem 0;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .contact-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #33b4ff, #fc00bd);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }
    
    .contact-icon i {
        color: white;
        font-size: 1rem;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
        color: #33b4ff;
        margin-bottom: 0.3rem;
        font-weight: 600;
    }
    
    .contact-text p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.4;
        margin: 0;
    }
}

/* ==================== OFFICE TABS MOBILE FIX ==================== */

/* Office Tabs Container */
.office-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Individual Office Tab */
.office-tab {
    flex: 1; /* Equal width for both tabs */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 70px;
}

.office-tab i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.office-tab span {
    font-size: 0.85rem;
    text-align: center;
}

/* Active Tab Styling */
.office-tab.active {
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 180, 255, 0.3);
}

.office-tab:hover:not(.active) {
    background: rgba(51, 180, 255, 0.1);
    color: #33b4ff;
}

/* Mobile Specific Styling */
@media (max-width: 768px) {
    .office-tabs {
        display: flex !important;
        flex-direction: row !important;
        gap: 0;
        width: 100%;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .office-tab {
        flex: 1 !important; /* Force equal width */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem 0.5rem !important;
        min-height: 60px !important;
        font-size: 0.8rem !important;
        text-align: center !important;
    }
    
    .office-tab i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .office-tab span {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
    
    /* Ensure active styling works on mobile */
    .office-tab.active {
        background: linear-gradient(135deg, #33b4ff, #fc00bd) !important;
        color: white !important;
        transform: none !important; /* Remove transform on mobile */
        box-shadow: 0 3px 10px rgba(51, 180, 255, 0.4) !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .office-tab {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .office-tab span {
        display: none;
    }
    
    .office-tab i {
        font-size: 18px;
    }
    
    .location-item strong {
        font-size: 13px;
    }
    
    .location-item span {
        font-size: 12px;
    }
}

/* Contact Info Section Mobile */
@media (max-width: 768px) {
    .contact-info-section {
        order: 2 !important;
        width: 100% !important;
        margin-top: 2rem;
    }
    
    .contact-info {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: white;
    }
    
    /* Office Info Container */
    .office-info-container {
        margin-top: 1rem;
    }
    
    .office-info {
        display: none;
        position: static;
        width: 100%;
        opacity: 1; /* Always visible when active */
        visibility: visible;
        transform: none;
    }
    
    .office-info.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    /* Map container mobile fixes */
    .map-container {
        margin-top: 1.5rem;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        height: 250px; /* Fixed height for mobile */
    }
    
    .office-map {
        height: 250px;
        width: 100%;
        position: static; /* Change from absolute to static */
        opacity: 1;
        visibility: visible;
    }
    
    .office-map.active {
        display: block;
    }
}

/* ==================== FOOTER - 5 COLUMN LAYOUT ==================== */
#footer {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(15, 15, 15, 0.95));
    backdrop-filter: blur(10px);
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; /* 5 columns - first wider */
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Company Info Column - First Column */
.footer-column:first-child {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 8s linear infinite;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

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

.social-link:hover {
    background: #33b4ff;
    border-color: #33b4ff;
    color: white;
    transform: translateY(-2px);
}

/* Other Columns - Services, Industries, Products, Contact */
.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: #33b4ff;
    padding-left: 0.5rem;
}

/* Contact Info in Footer - Last Column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
}

.contact-item i {
    color: #33b4ff;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    width: 14px;
    flex-shrink: 0;
}

/* Newsletter/CTA - You can put this in any column */
.footer-cta {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.footer-cta h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-cta-button {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(51, 180, 255, 0.3);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4);
}

/* Tablet Responsive - 3 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr; /* 3 columns on tablet */
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* Mobile Responsive - Single column */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column:first-child {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    /* Center the contact information section */
    .footer-contact {
        text-align: center;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    /* Center individual contact items */
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    /* Center all footer sections on mobile */
    .footer-links {
        text-align: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .footer-cta {
        text-align: center;
    }
    .multi-location{
        display: flex;
        flex-direction: column;
        align-items: center ;
    }

}

@media (max-width: 480px) {
    #footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    

}

/* ==========================================================
     Additional v3 parity styles (scoped where possible)
     - Services: IT (intro, use-cases, button variants)
     - Services: Overseas Manpower (audience, industries)
     - Industries: Civil (why-partner wrapper)
     These extend existing blocks above to complete parity.
     ========================================================== */

/* Services: IT – Intro section (from v3/services/it) */
.intro-section { padding: 100px 5% 80px; position: relative; z-index: 1; background: linear-gradient(135deg, rgba(51,180,255,0.02), rgba(252,0,189,0.02)); }
.intro-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.intro-content { text-align: center; animation: fadeInUp 1s ease-out; }
.intro-title { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 2rem; background: linear-gradient(135deg,#33b4ff,#fc00bd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.3; }
.intro-description { font-size: 1.2rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.intro-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 2rem; margin-bottom: 3rem; animation: fadeInUp 1s ease-out 0.3s both; }
.intro-stat-item { background: rgba(255,255,255,0.05); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.intro-stat-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg,#33b4ff,#000264); transform: scaleX(0); transition: transform 0.3s ease; }
.intro-stat-item:hover::before { transform: scaleX(1); }
.intro-stat-item:hover { transform: translateY(-8px); background: rgba(255,255,255,0.08); border-color: rgba(51,180,255,0.3); box-shadow: 0 20px 50px rgba(51,180,255,0.15); }
.stat-icon { width: 60px; height: 60px; background: linear-gradient(135deg,#33b4ff,#1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; margin: 0 auto 1rem; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(51,180,255,0.3); }
.intro-stat-item:hover .stat-icon { transform: scale(1.1); box-shadow: 0 12px 35px rgba(51,180,255,0.5); }
.intro-stat-item .stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: #33b4ff; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.intro-stat-item:hover .stat-number { color: #fc00bd; }
.intro-stat-item .stat-label { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 500; transition: color 0.3s ease; }
.intro-cta { animation: fadeInUp 1s ease-out 0.6s both; }
.intro-btn { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: #33b4ff; border: 2px solid rgba(51,180,255,0.3); padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; backdrop-filter: blur(10px); position: relative; overflow: hidden; }
.intro-btn:hover { border-color: #33b4ff; color: white; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(51,180,255,0.2); }

@media (max-width: 768px) {
    .intro-section { padding: 80px 4% 60px; }
    .intro-title { font-size: 2rem; }
    .intro-description { font-size: 1.1rem; margin-bottom: 2.5rem; }
    .intro-stats { grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1.5rem; }
    .intro-stat-item { padding: 1.5rem 1rem; }
    .stat-icon { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* Services: IT – Use Cases */
.use-cases-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.use-cases-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.use-cases-section .section-header { text-align: center; margin-bottom: 4rem; }
.use-cases-section .section-title { font-size: 2.5rem; font-weight: 700; color: white; background: linear-gradient(135deg,#33b4ff,#fc00bd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.use-cases-grid { display: flex; flex-direction: column; gap: 2rem; }
.use-cases-grid .top-row, .use-cases-grid .bottom-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; }
.use-case-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.3s ease; text-align: left; }
.use-case-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(51,180,255,0.3); box-shadow: 0 20px 50px rgba(51,180,255,0.15); }
.use-case-icon { width: 60px; height: 60px; background: linear-gradient(135deg,#33b4ff,#1a90d9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-bottom: 1rem; box-shadow: 0 8px 25px rgba(51,180,255,0.3); }
.use-case-title { font-size: 1.3rem; font-weight: 600; color: white; margin: 0 0 0.5rem; }
.use-case-description { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0 0 1rem; }
.use-case-connection { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.connection-tag { display: inline-flex; align-items: center; gap: 6px; padding: 0.4rem 0.8rem; border-radius: 999px; background: rgba(51,180,255,0.12); border: 1px solid rgba(51,180,255,0.3); color: #33b4ff; font-size: 0.85rem; text-decoration: none; }
.featured-use-case { border: 2px solid rgba(51,180,255,0.3); background: rgba(51,180,255,0.05); }
.featured-use-case .featured-badge { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg,#33b4ff,#1a90d9); color: white; padding: 0.4rem 0.8rem; border-radius: 12px; font-size: 0.8rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 5px 15px rgba(51,180,255,0.3); }

@media (max-width: 768px) {
    .use-cases-section { padding: 80px 4% 60px; }
    .use-cases-grid .top-row, .use-cases-grid .bottom-row { grid-template-columns: 1fr; }
}

/* Services: IT – button variants (from v3/Industries/IT) */
.consulting-btn { background: linear-gradient(135deg,#33b4ff,#1a90d9); }
.development-btn { background: linear-gradient(135deg,#1a90d9,#0066cc); }
.cloud-btn { background: linear-gradient(135deg,#0066cc,#004499); }
.testing-btn { background: linear-gradient(135deg,#004499,#003366); }
.security-btn { background: linear-gradient(135deg,#003366,#002244); }
.crm-btn { background: linear-gradient(135deg,#fc00bd,#e600a8); }
.iwa-btn { background: linear-gradient(135deg,#e600a8,#cc0099); }
.dual-cta { display: flex; gap: 1rem; flex-direction: column; }
.dual-cta .service-btn { width: 100%; }

/* Services: Overseas Manpower – Audience and Industries sections */
.audience-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.audience-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.audience-section .section-header { text-align: center; margin-bottom: 3rem; }
.audience-section .section-title { font-size: 2.5rem; font-weight: 700; color: white; background: linear-gradient(135deg,#33b4ff,#0043fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.audience-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.audience-header { display: flex; align-items: center; gap: 1rem; }
.audience-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,#33b4ff,#1a90d9); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; box-shadow: 0 8px 25px rgba(51,180,255,0.3); }
.audience-title { font-size: 1.4rem; font-weight: 700; color: white; margin: 0; }
.audience-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin: 0; }
.audience-description { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0; }
.services-list { margin-top: 0.5rem; }
.services-heading { font-size: 1rem; color: rgba(255,255,255,0.9); margin: 0 0 0.5rem; }
.service-items { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.5rem; padding: 0; margin: 0; }
.service-items li { display: flex; gap: 0.6rem; align-items: flex-start; color: rgba(255,255,255,0.8); }
.audience-cta { margin-top: auto; }
.audience-btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.9rem 1.5rem; border-radius: 999px; color: white; text-decoration: none; background: linear-gradient(135deg,#33b4ff,#1a90d9); box-shadow: 0 8px 25px rgba(51,180,255,0.3); }
.employers-btn { background: linear-gradient(135deg,#33b4ff,#1a90d9); }
.seekers-btn { background: linear-gradient(135deg,#1a90d9,#147abc); }

.industries-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.industries-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.industries-section .section-header { text-align: center; margin-bottom: 3rem; }
.industries-section .section-title { font-size: 2.3rem; font-weight: 700; color: white; background: linear-gradient(135deg,#33b4ff,#3936e4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2rem; }
.industry-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.industry-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(51,180,255,0.3); box-shadow: 0 20px 50px rgba(51,180,255,0.15); }
.industry-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg,#33b4ff,#1a90d9); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; margin: 0 auto 1rem; }
.industry-title { font-size: 1.2rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.industry-description { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
    .audience-split { grid-template-columns: 1fr; }
}

/* Industries: Civil – wrapper for the “Why Partner” section */
.why-partner-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.why-partner-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }

/* ==================== ABOUT PAGE (scoped) ==================== */
.overview-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.overview-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.overview-section .section-header { text-align: center; margin-bottom: 3rem; }
.overview-section .mission-statement { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 900px; margin: 0 auto; }
.overview-section .services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 2rem; }
.overview-section .service-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.overview-section .service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(51,180,255,0.3); box-shadow: 0 20px 50px rgba(51,180,255,0.15); }
.overview-section .service-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg,#33b4ff,#1a90d9); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; margin: 0 auto 1rem; }
.overview-section .service-title { font-size: 1.2rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.overview-section .service-description { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.overview-section .service-link {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3);
}
.overview-section .service-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1a90d9, #147abc);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.45);
}

/* Tighten gap between About hero and Company Overview (About only) */
#hero.services-hero + #company-overview.overview-section {
    padding-top: 24px;
    margin-top: -48px;
}

@media (max-width: 768px) {
    #hero.services-hero + #company-overview.overview-section {
        padding-top: 16px;
        margin-top: -32px;
    }
}

.mission-section { padding: 100px 5% 80px; position: relative; z-index: 1; }
.mission-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.mission-statement-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; margin: 1.5rem auto 0; max-width: 900px; display: flex; gap: 1rem; align-items: flex-start; }
.mission-statement-card .quote-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#33b4ff,#1a90d9); display: flex; align-items: center; justify-content: center; color: white; flex: 0 0 40px; }
.mission-text { margin: 0; color: rgba(255,255,255,0.85); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.value-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(51,180,255,0.3); box-shadow: 0 20px 50px rgba(51,180,255,0.15); }
.value-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,#33b4ff,#1a90d9); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; margin: 0 auto 0.8rem; }
.value-title { font-size: 1.1rem; font-weight: 700; color: white; margin: 0 0 0.3rem; }
.value-description { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }

.why-choose-grid { display: flex; flex-direction: column; gap: 2rem; }
.why-choose-grid .top-row, .why-choose-grid .bottom-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; justify-items: stretch; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.why-card .why-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,#33b4ff,#1a90d9); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; margin: 0 auto 0.8rem; }
.why-card .why-title { font-size: 1.2rem; font-weight: 700; color: white; margin: 0 0 0.5rem; }
.why-card .why-description { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }

@media (max-width: 768px) {
    .overview-section { padding: 80px 4% 60px; }
    .mission-section { padding: 80px 4% 60px; }
}

/* ==================== OVERSEAS MANPOWER SERVICE PAGE ==================== */
/* Hero Stats (specific to overseas manpower) */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex: 1;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(51, 180, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #33b4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Service Features Lists (overseas manpower specific) */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #33b4ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-features li:hover {
    color: #33b4ff;
    padding-left: 2.5rem;
}

/* Benefits Grid - 2+3 Layout (overseas manpower specific) */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.benefits-row {
    display: grid;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.row-1 {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    max-width: 800px;
    margin: 0 auto;
}

.row-2 {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

/* Audience Split Layout (overseas manpower specific) */
.audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.audience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #0058fc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.audience-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.audience-header {
    text-align: center;
    margin-bottom: 2rem;
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.audience-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.audience-card:hover .audience-title {
    color: #33b4ff;
}

.audience-subtitle {
    font-size: 1rem;
    color: #33b4ff;
    font-weight: 500;
    margin: 0;
}

.audience-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.audience-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.audience-card:hover .audience-description {
    color: rgba(255, 255, 255, 0.9);
}

.services-list {
    margin-bottom: 1rem;
}

.services-heading {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.audience-card:hover .services-heading {
    color: #33b4ff;
}

.service-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-items li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-items li:last-child {
    border-bottom: none;
}

.service-items li:hover {
    padding-left: 0.5rem;
    background: rgba(51, 180, 255, 0.05);
    border-radius: 8px;
}

.service-items li i {
    color: #33b4ff;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-items li span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-items li:hover span {
    color: white;
}

.audience-cta {
    text-align: center;
}

.audience-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.3);
    width: 100%;
    justify-content: center;
}

.audience-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.employers-btn {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
}

.seekers-btn {
    background: linear-gradient(135deg, #1a90d9, #33b4ff);
}

/* Mobile responsive for overseas manpower specific sections */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
    }

    .benefits-row {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .row-1, .row-2 {
        grid-template-columns: none;
        max-width: 100%;
    }

    .benefit-card {
        max-width: 400px;
        width: 100%;
    }

    .audience-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audience-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .service-items li span {
        font-size: 0.9rem;
    }

    .audience-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==================== ENHANCED ABOUT PAGE STYLES FROM V3 ==================== */

/* Background Effects for About Page */
.overview-section::before,
.mission-section::before,
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.03;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 80%);
}

.mission-section::before {
    clip-path: polygon(15% 0, 100% 20%, 100% 100%, 0 100%);
}

.why-choose-section::before {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 90%);
}

/* Floating Shapes Animation */
.overview-section::after,
.mission-section::after,
.why-choose-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(51, 180, 255, 0.1), rgba(252, 0, 189, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.mission-section::after {
    top: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation-delay: -2s;
}

.why-choose-section::after {
    top: 30%;
    right: 5%;
    width: 180px;
    height: 180px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Override existing overview section with v3 design */
.overview-section {
    padding: 100px 5% 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.02));
}

.overview-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.overview-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-section .mission-statement {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.overview-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.overview-section .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.overview-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.overview-section .service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.overview-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.overview-section .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.overview-section .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.overview-section .service-card:hover .service-title {
    color: #33b4ff;
}

.overview-section .service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.overview-section .service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.overview-section .service-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(51, 180, 255, 0.3);
}

.overview-section .service-link:hover {
    background: linear-gradient(135deg, #1a90d9, #33b4ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4);
}

/* Mission Section */
.mission-section {
    padding: 100px 5% 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(252, 0, 189, 0.02), rgba(51, 180, 255, 0.02));
}

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

.mission-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.mission-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-statement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.4);
}

.mission-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: #33b4ff;
}

.value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.value-card:hover .value-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 5% 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(252, 0, 189, 0.02), rgba(51, 180, 255, 0.03));
}

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

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.why-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-card:hover .why-title {
    color: #33b4ff;
}

.why-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.why-card:hover .why-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Responsive Design for About Page */
@media (max-width: 1024px) {
    .top-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-row {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-section,
    .mission-section,
    .why-choose-section {
        padding: 80px 4% 60px;
    }
    
    .overview-section .services-grid,
    .values-grid,
    .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-section .section-title,
    .mission-section .section-title,
    .why-choose-section .section-title {
        font-size: 2rem;
    }
    
    .overview-section .mission-statement {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .mission-statement-card {
        padding: 2.5rem 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .overview-section .service-card,
    .value-card,
    .why-card {
        padding: 2rem 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .overview-section .service-icon,
    .value-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    #hero.services-hero + #company-overview.overview-section {
        padding-top: 48px;
        margin-top: -24px;
    }
}

@media (max-width: 480px) {
    .overview-section .service-card,
    .value-card,
    .why-card {
        padding: 1.8rem 1.2rem;
    }
    
    .overview-section .service-icon,
    .value-icon,
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .overview-section .section-title,
    .mission-section .section-title,
    .why-choose-section .section-title {
        font-size: 1.8rem;
    }
    
    .overview-section .mission-statement {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .mission-statement-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -12px;
    }
}

/* Overseas Manpower Audience Header Vertical Stacking */
#audience-services.audience-section .audience-card .audience-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
}

#audience-services.audience-section .audience-card .audience-icon {
    width: 80px !important;
    height: 80px !important;
    font-size: 2.5rem !important;
}

#audience-services.audience-section .audience-card .audience-title {
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    font-size: 1.5rem !important;
}

#audience-services.audience-section .audience-card .audience-subtitle {
    text-align: center !important;
    opacity: 0.9 !important;
    line-height: 1.4 !important;
}

/* Overseas Manpower Industries Grid 3+2 Layout */
#industries.industries-section .industries-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    justify-content: center !important;
}

#industries.industries-section .industries-grid .industry-card {
    flex: 0 1 calc(33.333% - 1.33rem) !important;
    max-width: 350px !important;
    min-width: 280px !important;
}

/* First 3 cards take up full width */
#industries.industries-section .industries-grid .industry-card:nth-child(1),
#industries.industries-section .industries-grid .industry-card:nth-child(2),
#industries.industries-section .industries-grid .industry-card:nth-child(3) {
    flex: 0 1 calc(33.333% - 1.33rem) !important;
}

/* Last 2 cards centered together */
#industries.industries-section .industries-grid .industry-card:nth-child(4),
#industries.industries-section .industries-grid .industry-card:nth-child(5) {
    flex: 0 1 calc(33.333% - 1.33rem) !important;
    max-width: 350px !important;
}

/* Responsive adjustments for Industries */
@media (max-width: 1024px) {
    #industries.industries-section .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    #industries.industries-section .industries-grid .industry-card:nth-child(4),
    #industries.industries-section .industries-grid .industry-card:nth-child(5) {
        grid-column: span 1 !important;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    #industries.industries-section .industries-grid {
        grid-template-columns: 1fr !important;
    }
    
    #industries.industries-section .industries-grid .industry-card:nth-child(4),
    #industries.industries-section .industries-grid .industry-card:nth-child(5) {
        grid-column: auto !important;
        margin: 0 !important;
    }
}

/* ==================== CIVIL PAGE STYLING ==================== */

/* Civil Page Hero Section */
.civil-page #hero.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.05), rgba(252, 0, 189, 0.05));
}

.civil-page #hero.services-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
}

.civil-page #hero.services-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.civil-page #hero.services-hero .hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

.civil-page #hero.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 180, 255, 0.1);
    border: 1px solid rgba(51, 180, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #33b4ff;
    width: fit-content;
}

.civil-page #hero.services-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.civil-page #hero.services-hero .gradient-text {
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.civil-page #hero.services-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.civil-page #hero.services-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.civil-page #hero.services-hero .btn-primary {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.civil-page #hero.services-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(51, 180, 255, 0.4);
}

.civil-page #hero.services-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.civil-page #hero.services-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(51, 180, 255, 0.5);
}

/* Civil Page Services Section */
.civil-page #services.services-section {
    padding: 100px 5% 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02));
}

.civil-page #services.services-section .services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.civil-page #services.services-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.civil-page #services.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.civil-page #services.services-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Civil Services Grid - 3 Cards Layout */
.civil-page #services.services-section .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.civil-page #services.services-section .services-grid .service-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    max-width: 380px;
    min-width: 320px;
}

.civil-page #services.services-section .services-grid .service-card:nth-child(3) {
    flex: 0 0 calc(33.333% - 1.33rem);
    max-width: 380px;
}

.civil-page #services.services-section .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.civil-page #services.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.civil-page #services.services-section .service-card:hover::before {
    transform: scaleX(1);
}

.civil-page #services.services-section .service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.civil-page #services.services-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.civil-page #services.services-section .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.civil-page #services.services-section .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.civil-page #services.services-section .service-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.civil-page #services.services-section .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.civil-page #services.services-section .service-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.civil-page #services.services-section .service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #33b4ff;
    font-weight: bold;
}

.civil-page #services.services-section .service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.civil-page #services.services-section .service-btn {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.civil-page #services.services-section .service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4);
}

.civil-page #services.services-section .manpower-btn {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
}

.civil-page #services.services-section .technology-btn {
    background: linear-gradient(135deg, #1a90d9, #fc00bd);
}

.civil-page #services.services-section .security-btn {
    background: linear-gradient(135deg, #fc00bd, #33b4ff);
}

/* Civil Page Responsive Design */
@media (max-width: 1200px) {
    .civil-page #hero.services-hero .hero-content {
        gap: 40px;
    }
    
    .civil-page #hero.services-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .civil-page #hero.services-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .civil-page #hero.services-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .civil-page #services.services-section .services-grid .service-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: none;
    }
    
    .civil-page #services.services-section .services-grid .service-card:nth-child(3) {
        flex: 0 0 100%;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .civil-page #services.services-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .civil-page #hero.services-hero {
        padding: 100px 5% 60px;
    }
    
    .civil-page #hero.services-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .civil-page #hero.services-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .civil-page #hero.services-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .civil-page #hero.services-hero .btn-primary,
    .civil-page #hero.services-hero .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .civil-page #services.services-section {
        padding: 80px 5% 60px;
    }
    
    .civil-page #services.services-section .services-grid .service-card,
    .civil-page #services.services-section .services-grid .service-card:nth-child(3) {
        flex: 1 1 100%;
        max-width: none;
        margin: 0;
    }
    
    .civil-page #services.services-section .section-title {
        font-size: 1.8rem;
    }
    
    .civil-page #services.services-section .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Civil Page Why Partner Section */
.civil-page #why-partner.why-partner-section {
    padding: 100px 5% 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
}

.civil-page #why-partner.why-partner-section .why-partner-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.civil-page #why-partner.why-partner-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.civil-page #why-partner.why-partner-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.civil-page #why-partner.why-partner-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.civil-page #why-partner.why-partner-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.civil-page #why-partner.why-partner-section .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.civil-page #why-partner.why-partner-section .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.civil-page #why-partner.why-partner-section .benefit-card:hover::before {
    transform: scaleX(1);
}

.civil-page #why-partner.why-partner-section .benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.civil-page #why-partner.why-partner-section .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.civil-page #why-partner.why-partner-section .benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.civil-page #why-partner.why-partner-section .benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.civil-page #why-partner.why-partner-section .benefit-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

/* Civil Page Contact Section */
.civil-page #contact {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.05), rgba(252, 0, 189, 0.05));
    position: relative;
}

.civil-page #contact .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.civil-page #contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.civil-page #contact .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.civil-page #contact .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.civil-page #contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.civil-page #contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.civil-page #contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.civil-page #contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    transform: translateY(-3px);
}

.civil-page #contact .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.civil-page #contact .contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.civil-page #contact .contact-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.civil-page #contact .contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.civil-page #contact .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.civil-page #contact .form-group {
    margin-bottom: 1.5rem;
}

.civil-page #contact .form-group input,
.civil-page #contact .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.civil-page #contact .form-group input::placeholder,
.civil-page #contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.civil-page #contact .form-group input:focus,
.civil-page #contact .form-group textarea:focus {
    outline: none;
    border-color: #33b4ff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(51, 180, 255, 0.1);
}

.civil-page #contact .form-submit {
    width: 100%;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.civil-page #contact .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(51, 180, 255, 0.4);
}

/* Civil Page Mobile Responsive for Additional Sections */
@media (max-width: 1024px) {
    .civil-page #why-partner.why-partner-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .civil-page #contact .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .civil-page #why-partner.why-partner-section {
        padding: 80px 5% 60px;
    }
    
    .civil-page #why-partner.why-partner-section .section-title {
        font-size: 2rem;
    }
    
    .civil-page #why-partner.why-partner-section .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .civil-page #contact {
        padding: 80px 5% 60px;
    }
    
    .civil-page #contact .section-header h2 {
        font-size: 2rem;
    }
    
    .civil-page #contact .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* ==================== CRM PAGE COMPREHENSIVE STYLING ==================== */

/* CRM Page Hero Section - Enhanced */
.crm-page #crm-hero.services-hero {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.05), rgba(252, 0, 189, 0.05));
}

.crm-page #crm-hero .hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.crm-page #crm-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #crm-hero .hero-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    background: rgba(51, 180, 255, 0.1);
    border: 1px solid rgba(51, 180, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin: 0;
    color: #33b4ff;
    font-weight: 500;
}

.crm-page #crm-hero .hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    margin: 0;
}

.crm-page #crm-hero .highlight {
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #crm-hero .hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
}

.crm-page #crm-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.crm-page #crm-hero .btn-primary,
.crm-page #crm-hero .btn-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.crm-page #crm-hero .btn-primary {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(51, 180, 255, 0.3);
}

.crm-page #crm-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(51, 180, 255, 0.4);
}

.crm-page #crm-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.crm-page #crm-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(51, 180, 255, 0.5);
}

/* CRM Overview Section */
.crm-page #crm-overview {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02));
    position: relative;
}

.crm-page #crm-overview .overview-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crm-page #crm-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #crm-overview .section-header h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #crm-overview .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.crm-page #crm-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.crm-page #crm-overview .overview-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crm-page #crm-overview .overview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.crm-page #crm-overview .overview-item:hover::before {
    transform: scaleX(1);
}

.crm-page #crm-overview .overview-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.crm-page #crm-overview .overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.crm-page #crm-overview .overview-item:hover .overview-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.crm-page #crm-overview .overview-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.crm-page #crm-overview .overview-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CRM Features Section */
.crm-page #crm-features {
    padding: 100px 5% 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
}

.crm-page #crm-features .features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crm-page #crm-features .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #crm-features .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #crm-features .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.crm-page #crm-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1200px;
    margin: 0 auto;
}

.crm-page #crm-features .feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crm-page #crm-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.crm-page #crm-features .feature-card:hover::before {
    transform: scaleX(1);
}

.crm-page #crm-features .feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.crm-page #crm-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.crm-page #crm-features .feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.crm-page #crm-features .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.crm-page #crm-features .feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

/* CRM Pricing Section - Enhanced */
.crm-page #crm-pricing {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.05), rgba(252, 0, 189, 0.05));
    position: relative;
}

.crm-page #crm-pricing .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crm-page #crm-pricing .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #crm-pricing .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #crm-pricing .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.crm-page #crm-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.crm-page #crm-pricing .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crm-page #crm-pricing .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.crm-page #crm-pricing .pricing-card:hover::before {
    transform: scaleX(1);
}

.crm-page #crm-pricing .pricing-card.featured {
    border-color: #33b4ff;
    transform: scale(1.05);
    background: rgba(51, 180, 255, 0.08);
}

.crm-page #crm-pricing .pricing-card.featured::before {
    transform: scaleX(1);
}

.crm-page #crm-pricing .pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(51, 180, 255, 0.4);
}

.crm-page #crm-pricing .pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.crm-page #crm-pricing .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.crm-page #crm-pricing .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.crm-page #crm-pricing .price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.crm-page #crm-pricing .currency {
    font-size: 1.2rem;
    color: #33b4ff;
    font-weight: 600;
}

.crm-page #crm-pricing .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #33b4ff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.crm-page #crm-pricing .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
}

.crm-page #crm-pricing .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.crm-page #crm-pricing .pricing-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.crm-page #crm-pricing .pricing-features i {
    color: #33b4ff;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* ==================== IWA PAGE COMPREHENSIVE STYLING ==================== */

/* IWA Page Hero Section - Enhanced */
.iwa-page #iwa-hero.services-hero {
    min-height: 100vh;
    padding: 120px 5% 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.05), rgba(252, 0, 189, 0.05));
}

.iwa-page #iwa-hero .hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    align-items: flex-start;
}

.iwa-page #iwa-hero .hero-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    background: rgba(51, 180, 255, 0.1);
    border: 1px solid rgba(51, 180, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin: 0;
    color: #33b4ff;
    font-weight: 500;
}

.iwa-page #iwa-hero .hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    margin: 0;
}

.iwa-page #iwa-hero .highlight {
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iwa-page #iwa-hero .hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
}

.iwa-page #iwa-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.iwa-page #iwa-hero .btn-primary,
.iwa-page #iwa-hero .btn-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.iwa-page #iwa-hero .btn-primary {
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(51, 180, 255, 0.3);
}

.iwa-page #iwa-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(51, 180, 255, 0.4);
}

.iwa-page #iwa-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.iwa-page #iwa-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #33b4ff;
    color: #33b4ff;
    transform: translateY(-2px);
}

/* IWA Overview Section */
.iwa-page #iwa-overview {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02));
    position: relative;
}

.iwa-page #iwa-overview .overview-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.iwa-page #iwa-overview .section-header h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.iwa-page #iwa-overview .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iwa-page #iwa-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1000px;
    margin: 0 auto;
}

.iwa-page #iwa-overview .overview-item {
.iwa-page #iwa-overview .overview-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.iwa-page #iwa-overview .overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.iwa-page #iwa-overview .overview-icon {
    width: 80px;
    height: 80px;
    background: rgba(51, 180, 255, 0.1);
    border: 2px solid rgba(51, 180, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.iwa-page #iwa-overview .overview-icon i {
    font-size: 2rem;
    color: #33b4ff;
}

.iwa-page #iwa-overview .overview-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.iwa-page #iwa-overview .overview-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* IWA Features Section */
.iwa-page #iwa-features {
    padding: 100px 5% 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
}

.iwa-page #iwa-features .features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-features .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.iwa-page #iwa-features .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.iwa-page #iwa-features .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iwa-page #iwa-features .features-grid {
    display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
        animation: fadeInUp 1s ease-out 0.3s both;
        max-width: 1200px;
        margin: 0 auto;
        align-items: stretch;
}

.iwa-page #iwa-features .feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iwa-page #iwa-features .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.iwa-page #iwa-features .feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(51, 180, 255, 0.5);
}

.iwa-page #iwa-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 180, 255, 0.3);
}

.iwa-page #iwa-features .feature-icon i {
    font-size: 2.2rem;
    color: white;
}

.iwa-page #iwa-features .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.iwa-page #iwa-features .feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

/* IWA Use Cases Section */
.iwa-page #iwa-use-cases {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02));
    position: relative;
}

.iwa-page #iwa-use-cases .use-cases-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-use-cases .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.iwa-page #iwa-use-cases .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.iwa-page #iwa-use-cases .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iwa-page #iwa-use-cases .use-cases-grid {
    display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
        animation: fadeInUp 1s ease-out 0.3s both;
        max-width: 1200px;
        margin: 0 auto;
}

    background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
}

/* .iwa-page #iwa-use-cases .use-case-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);


    width: 60px;
        height: 64px;
        background: linear-gradient(135deg, #33b4ff, #1a90d9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.2rem auto;
        box-shadow: 0 8px 25px rgba(51,180,255,0.18);
        transition: all 0.3s;
} */

.iwa-page #iwa-use-cases .use-case-icon i {
    color: #fff;
    font-size: 1.7rem;
}

.iwa-page #iwa-use-cases .use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.iwa-page #iwa-use-cases .use-case-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

/* IWA Benefits Section */
.iwa-page #iwa-benefits {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
    position: relative;
}

.iwa-page #iwa-benefits .benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-benefits .benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iwa-page #iwa-benefits .benefits-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;

    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iwa-page #iwa-benefits .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.iwa-page #iwa-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iwa-page #iwa-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    transform: translateX(5px);
}

.iwa-page #iwa-benefits .benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(51, 180, 255, 0.1);
    border: 2px solid rgba(51, 180, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.iwa-page #iwa-benefits .benefit-icon i {
    color: #33b4ff;
    font-size: 1.2rem;
}

.iwa-page #iwa-benefits .benefit-text h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.iwa-page #iwa-benefits .benefit-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.iwa-page #iwa-benefits .benefits-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.iwa-page #iwa-benefits .stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.iwa-page #iwa-benefits .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    transform: translateY(-5px);
}

.iwa-page #iwa-benefits .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #33b4ff;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.iwa-page #iwa-benefits .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* IWA Examples Section */
.iwa-page #iwa-examples {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.02), rgba(252, 0, 189, 0.02));
    position: relative;
}

.iwa-page #iwa-examples .examples-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-examples .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.iwa-page #iwa-examples .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.iwa-page #iwa-examples .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iwa-page #iwa-examples .examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1200px;
    margin: 0 auto;
}

.iwa-page #iwa-examples .example-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    /* text-align: center; */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iwa-page #iwa-examples .example-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.iwa-page #iwa-examples .example-icon {
    width: 60px;
    height: 60px;
    background: rgba(51, 180, 255, 0.1);
    border: 2px solid rgba(51, 180, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.iwa-page #iwa-examples .example-icon i {
    font-size: 1.5rem;
    color: #33b4ff;
}

.iwa-page #iwa-examples .example-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.iwa-page #iwa-examples .example-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

/* IWA Pricing Section - Enhanced */
.iwa-page #iwa-pricing {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.05), rgba(252, 0, 189, 0.05));
    position: relative;
}

.iwa-page #iwa-pricing .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #iwa-pricing .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.iwa-page #iwa-pricing .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.iwa-page #iwa-pricing .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iwa-page #iwa-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.iwa-page #iwa-pricing .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iwa-page #iwa-pricing .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.iwa-page #iwa-pricing .pricing-card:hover::before {
    transform: scaleX(1);
}

.iwa-page #iwa-pricing .pricing-card.featured {
    border-color: #33b4ff;
    transform: scale(1.05);
    background: rgba(51, 180, 255, 0.08);
}

.iwa-page #iwa-pricing .pricing-card.featured::before {
    transform: scaleX(1);
}

.iwa-page #iwa-pricing .pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(51, 180, 255, 0.4);
}

.iwa-page #iwa-pricing .pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(51, 180, 255, 0.3);
    box-shadow: 0 20px 50px rgba(51, 180, 255, 0.15);
}

.iwa-page #iwa-pricing .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.iwa-page #iwa-pricing .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.iwa-page #iwa-pricing .price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.iwa-page #iwa-pricing .currency {
    font-size: 1.2rem;
    color: #33b4ff;
    font-weight: 600;
}

.iwa-page #iwa-pricing .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #33b4ff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.iwa-page #iwa-pricing .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
}

.iwa-page #iwa-pricing .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.iwa-page #iwa-pricing .pricing-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.iwa-page #iwa-pricing .pricing-features i {
    color: #33b4ff;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.iwa-page #iwa-pricing .pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 8px;
    margin-top: auto;
}

.iwa-page #iwa-pricing .pricing-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4);
}

/* IWA Contact Section */
.iwa-page #contact {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
    position: relative;
}

.iwa-page #contact .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iwa-page #contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.iwa-page #contact .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.iwa-page #contact .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iwa-page #contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.iwa-page #contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.iwa-page #contact .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.iwa-page #contact .contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.iwa-page #contact .contact-details h4 {
    color: #33b4ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.iwa-page #contact .contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;

    line-height: 1.6;
}

.iwa-page #contact .contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.iwa-page #contact .contact-form h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.iwa-page #contact .form-group {
    margin-bottom: 1.5rem;
}

.iwa-page #contact .form-group input,
.iwa-page #contact .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.iwa-page #contact .form-group input:focus,
.iwa-page #contact .form-group textarea:focus {
    outline: none;
    border-color: #33b4ff;
    background: rgba(255, 255, 255, 0.12);
}

.iwa-page #contact .form-group input::placeholder,
.iwa-page #contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.iwa-page #contact .form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.iwa-page #contact .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(51, 180, 255, 0.3);
}

.iwa-page #contact .form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* IWA Page Responsive Design */
@media (max-width: 1200px) {
    .iwa-page #iwa-hero .hero-container {
        gap: 3rem;
    }
    
    .iwa-page #iwa-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .iwa-page #iwa-overview .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 1024px) {
    .iwa-page #iwa-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .iwa-page #iwa-hero .hero-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .iwa-page #iwa-hero .hero-badge {
        align-self: flex-start;
    }
    
    .iwa-page #iwa-hero .hero-buttons {
        justify-content: flex-start;
    }
    
    .iwa-page #iwa-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .iwa-page #iwa-pricing .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .iwa-page #contact .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .iwa-page #contact .contact-info {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .iwa-page #iwa-hero {
        padding: 100px 5% 60px;
    }
    
    .iwa-page #iwa-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .iwa-page #iwa-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .iwa-page #iwa-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .iwa-page #iwa-hero .btn-primary,
    .iwa-page #iwa-hero .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .iwa-page #iwa-overview,
    .iwa-page #iwa-features,
    .iwa-page #iwa-use-cases,
    .iwa-page #iwa-benefits,
    .iwa-page #iwa-examples,
    .iwa-page #iwa-pricing,
    .iwa-page #contact {
        padding: 80px 5% 60px;
    }
    
    .iwa-page #iwa-features .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .iwa-page #iwa-overview .overview-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .iwa-page #iwa-use-cases .use-cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .iwa-page #iwa-examples .examples-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .iwa-page #contact .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iwa-page #contact .contact-info {
        gap: 1.5rem;
    }
    
    .iwa-page #iwa-overview .section-header h2,
    .iwa-page #iwa-features .section-header h2,
    .iwa-page #iwa-use-cases .section-header h2,
    .iwa-page #iwa-benefits .section-header h2,
    .iwa-page #iwa-examples .section-header h2,
    .iwa-page #iwa-pricing .section-header h2,
    .iwa-page #contact .section-header h2 {
        font-size: 2rem;
    }
    
    .iwa-page #iwa-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iwa-page #iwa-pricing .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .iwa-page #iwa-pricing .pricing-card.featured {
        transform: none;
    }
    
    .iwa-page #iwa-pricing .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

.crm-page #crm-pricing .pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #33b4ff, #1a90d9);
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 50px;
    margin-top: auto;
}

.crm-page #crm-pricing .pricing-button:hover {
    background: linear-gradient(135deg, #1a90d9, #147abc);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 180, 255, 0.4);
}

/* CRM Contact Section */
.crm-page #contact {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, rgba(51, 180, 255, 0.03), rgba(252, 0, 189, 0.03));
    position: relative;
}

.crm-page #contact .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crm-page #contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.crm-page #contact .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #33b4ff, #fc00bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crm-page #contact .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CRM Page Responsive Design */
@media (max-width: 1200px) {
    .crm-page #crm-hero .hero-container {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .crm-page #crm-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .crm-page #crm-hero .hero-badge {
        align-self: center;
    }
    
    .crm-page #crm-hero .hero-buttons {
        justify-content: center;
    }
    
    .crm-page #crm-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .crm-page #crm-pricing .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .crm-page #crm-hero {
        padding: 100px 5% 60px;
    }
    
    .crm-page #crm-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .crm-page #crm-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .crm-page #crm-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .crm-page #crm-hero .btn-primary,
    .crm-page #crm-hero .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .crm-page #crm-overview,
    .crm-page #crm-features,
    .crm-page #crm-pricing,
    .crm-page #contact {
        padding: 80px 5% 60px;
    }
    
    .crm-page #crm-features .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .crm-page #crm-overview .section-header h2,
    .crm-page #crm-features .section-header h2,
    .crm-page #crm-pricing .section-header h2,
    .crm-page #contact .section-header h2 {
        font-size: 2rem;
    }
    
    .crm-page #crm-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .crm-page #crm-pricing .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .crm-page #crm-pricing .pricing-card.featured {
        transform: none;
    }
    
    .crm-page #crm-pricing .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}
