:root {
    /* Million Dollar Palette - High-End Light Theme */
    --primary: #0066FF;
    --primary-gradient: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%);
    --bg-main: #FFFFFF;
    --bg-soft: #F9FBFF;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --accent: #0066FF;
    --underline-color: #0066FF;
    --border: #E2E8F0;
    --radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background: var(--bg-main); 
    color: var(--text-dark); 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .logo-text { font-family: 'Poppins', sans-serif; font-weight: 800; }
h1 { font-size: 4.5rem; line-height: 1.05; margin-bottom: 2rem; color: var(--text-dark); }
h1 span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

h2 { 
    font-size: 3.5rem; 
    margin-bottom: 2rem; 
    text-align: center; 
    position: relative;
    padding-bottom: 20px;
    color: var(--text-dark);
    font-weight: 900;
}
h2::after {
    content: ''; position: absolute; width: 80px; height: 5px;
    background-color: var(--underline-color); bottom: 0; left: 50%;
    transform: translateX(-50%); border-radius: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.subtitle {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

p { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 2rem; }

/* --- Navbar --- */
.navbar {
    height: 90px;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.container.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.container.centered p { max-width: 800px; }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 1.8rem; letter-spacing: -1px; color: #002D72; }
.logo-text span { color: var(--primary); }

.nav-links a { 
    text-decoration: none; color: var(--text-dark); 
    margin: 0 1.5rem; font-weight: 600; font-size: 1rem;
    transition: var(--transition);
}

.mobile-nav-header, .mobile-nav-footer { display: none; }
.nav-items-wrapper { display: flex; align-items: center; }

/* --- Hero --- */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 90% 10%, rgba(0, 102, 255, 0.05), transparent 40%);
}
.hero-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.badge {
    display: inline-block; padding: 0.6rem 1.2rem; background: #EFF6FF;
    color: var(--primary); border-radius: 50px; font-weight: 700;
    font-size: 0.85rem; margin-bottom: 2rem; border: 1px solid #DBEAFE;
}

.btn {
    display: inline-block; padding: 0.75rem 1.8rem; border-radius: 50px;
    font-weight: 700; text-decoration: none; transition: var(--transition);
    cursor: pointer; border: none; font-size: 0.95rem;
}
.btn-primary { background: var(--primary-gradient); color: white; box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2); }

.hero-visual { animation: float 6s ease-in-out infinite; }
.hero-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 10px solid white; }

.story-card, .contact-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.05);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    transition: var(--transition);
}

.story-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(0, 102, 255, 0.05);
}

/* --- Services Grid: Pop Effects --- */
.services { padding: 100px 0; background: var(--bg-soft); }
.services-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem; 
    margin-top: 3rem;
    justify-content: center; /* Center Grid Items */
}
.service-card {
    background: white; border-radius: var(--radius); padding: 2.5rem;
    border: 1px solid var(--border); transition: var(--transition);
    text-align: center;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.icon {
    width: 60px; height: 60px; background: #F0F7FF; color: var(--primary);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 1.5rem;
}

/* --- Why Choose Us --- */
.why-choose-us-new { padding: 100px 0; background: #F1F6FF; }
.why-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 3rem; 
    justify-content: center; /* Center Grid Items */
}
.why-item { text-align: center; position: relative; } /* Fully Centered Text */
.why-number {
    font-size: 3.5rem; font-weight: 900; color: var(--primary);
    opacity: 0.15; line-height: 1; margin-bottom: 0.5rem;
    display: block; width: 100%;
}
.why-item h3 { font-size: 1.6rem; margin-bottom: 0.8rem; position: relative; z-index: 1; }

/* --- About Us (Centered Story) --- */
.about { padding: 100px 0; }
.about-text-wrapper { max-width: 900px; margin: 0 auto; }
.check-list-centered {
    list-style: none; display: inline-flex; flex-direction: column;
    text-align: left; gap: 1rem; margin-top: 2.5rem; padding: 0;
}
.check-list-centered li { position: relative; padding-left: 2rem; font-weight: 600; font-size: 1.1rem; }
.check-list-centered li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

/* --- Contact Us (Details Box) --- */
.contact { padding: 100px 0; }
.contact-details-box { display: flex; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.contact-item {
    display: flex; align-items: center; gap: 1rem; background: white;
    padding: 1.2rem 2.5rem; border-radius: 50px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); transition: var(--transition);
}
.contact-item:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
.contact-item a { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 1.2rem; }
.contact-icon { font-size: 1.5rem; }

/* --- Minimalist Footer --- */
.footer { 
    padding: 2rem 0; 
    background: transparent; 
    text-align: center; 
    border-top: 1px solid var(--border);
}
.footer-logo-small { margin-bottom: 0.2rem; }
.logo-text-footer { 
    font-weight: 800; 
    font-size: 1.5rem; 
    color: #002D72; 
    letter-spacing: -0.5px; 
    display: inline-block;
}
.logo-text-footer span { color: var(--primary); }
.copyright-white { font-size: 0.8rem; color: var(--text-gray); letter-spacing: 0.5px; opacity: 0.8; margin-top: 0.2rem; }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.menu-toggle { display: none; }

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-visual { order: -1; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px; /* Sleek side panel */
        background: white; /* Light professional background */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 3rem;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        border-left: 1px solid var(--border);
        overflow: hidden; /* Prevent massive icon overflow */
    }

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

    .mobile-nav-header {
        display: block;
        margin-bottom: 4rem;
        width: 100%;
        text-align: left;
    }

    .mobile-nav-header .logo-text {
        color: #002D72; /* Dark blue as requested */
        font-size: 1.4rem;
    }

    .nav-items-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #0F172A; /* Dark for visibility on white */
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: var(--transition);
        position: relative;
        padding-left: 0;
        opacity: 0;
        transform: translateX(20px);
    }

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

    .nav-links a::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        width: 0;
        height: 1px;
        background: var(--primary);
        transition: var(--transition);
    }

    .nav-links a:hover {
        color: white;
        padding-left: 10px;
    }

    .nav-links a:hover::before {
        width: 15px;
    }

    /* Staggered Animation */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }

    .mobile-nav-footer {
        display: block;
        width: 100%;
        margin-top: auto; /* Push to bottom */
        padding-top: 2rem;
    }

    .social-links-mobile {
        display: flex;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .social-links-mobile .social-icon {
        width: 24px;
        height: 24px;
        opacity: 1;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1000;
        padding: 5px;
    }

    .menu-toggle .bar {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px auto;
        transition: all 0.3s ease;
        background: var(--text-dark);
    }

    /* Animate Hamburger to X */
    .menu-toggle.is-active .bar { background: var(--text-dark) !important; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- Clients Slider (Arrow-Based) --- */
.clients-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.clients-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.clients-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.client-logo {
    flex: 0 0 25%; /* Show 4 logos at once */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

/* Balance sizes - scaling down 'big' logos and scaling up 'small' ones */
.logo-ge img, 
.logo-emaar img { 
    transform: scale(0.8); 
}

.logo-dh img, 
.logo-ibs img { 
    transform: scale(1.3); 
}

.logo-deloitte img, 
.logo-clover img { 
    transform: scale(1.6); 
}

.slider-arrow {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* --- Contact Section (New Design) --- */
.section-title-alt {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.contact-card-new {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.contact-card-new h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-item-new p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-gray);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: inline-block; /* Ensure size is respected */
    transition: var(--transition);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #F8FAFC;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { padding-top: 120px; }
    .section-header { margin-bottom: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-card-new { padding: 2.5rem 1.5rem; }
    .client-logo { flex: 0 0 100%; }
    .container { padding: 0 1.5rem; }
    .logo-text { font-size: 1.5rem; }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-links {
        gap: 1.2rem;
        justify-content: flex-start; /* Align left as requested */
        margin-top: 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .client-logo {
        flex: 0 0 50%;
    }
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}
