/* Global Styles */
:root {
    --primary-lime: #C4FF4D;
    --primary-blue: #4169FF;
    --text-dark: #111111;
    --text-gray: #666666;
    --text-light-gray: #888888;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --border-color: #e5e5e5;
    --font-inter: 'Inter', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Remove blinking cursor/caret globally to prevent visual distraction */
    caret-color: transparent !important;
}

body {
    font-family: var(--font-inter);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #4169FF 0%, #3457D5 100%);
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-lime);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary span {
    margin-left: 8px;
    transition: margin-left 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 255, 77, 0.4);
}

.btn-primary:hover span {
    margin-left: 12px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-label.white {
    color: var(--primary-lime);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title.white {
    color: white;
}

.section-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.8);
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}


.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-blue);
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown .arrow {
    font-size: 10px;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}



.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero {
    padding: 80px 0 80px 0;
    position: relative;
    overflow: hidden;
    /* Smoother, cleaner background gradient */
    background: url('../Images/HomePage1.png') no-repeat center top;
    background-size: cover;
    text-align: center;
}

.hero-background-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2000px;
    height: 2000px;
    /* Subtler, thinner lines with wider spacing */
    background: repeating-radial-gradient(circle,
            transparent 0,
            transparent 249px,
            rgba(65, 105, 255, 0.05) 250px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    /* Prevent wrapping */
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 110px;
    /* Push text down to reveal logo */
    /* Ensure full width availability */
}

.hero-welcome {
    font-weight: 500;
    font-size: 13px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.hero-title {
    font-size: 48px;
    /* Reduced from 64px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

/* Response adjustment for laptop screens */
@media screen and (max-width: 1366px) {
    .hero {
        padding: 80px 0 100px 0;
        /* Reduced padding for better vertical fit */
    }

    .hero-title {
        font-size: 42px;
        /* Consistency */
        /* Slightly smaller title to prevent overflow */
    }
}

/* Force consistent background crop on smaller screens (Split/Mobile) */
/* Force consistent background crop on smaller screens (Split/Mobile) */
@media screen and (max-width: 991px) {
    .hero {
        background-size: 250% auto;
        /* Simulate desktop crop */
        background-position: center top;
        padding: 100px 0;
        /* Adjust padding for balance */
    }

    .hero-content {
        margin-top: 120px;
        /* Increased to clear the background logo */
    }

    .hero-title {
        font-size: 32px;
        /* Reduced to prevent cramping */
    }

    .hero-welcome {
        font-size: 11px;
    }
}

/* Maintain mobile view as is (User says it is correct) */
@media screen and (max-width: 576px) {
    .hero {
        background-size: 300% auto;
        /* Zoom in more for mobile */
        padding: 80px 0;
    }

    .hero-content {
        margin-top: 60px;
        /* Revert to original for mobile */
    }
}

.hero-title-underline {
    height: 8px;
    width: 280px;
    background: linear-gradient(90deg, #C4FF4D 0%, #4169FF 100%);
    border-radius: 10px;
    margin: 0 auto 30px auto;
}

.hero-description {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.7;
}

/* Specific styles for Home Hero description (subtitle) to reduce size and adjust spacing */
.hero .hero-subtitle.dark {
    font-size: 18px;
    /* Slightly reduced from 16px/18px */
    margin-top: 15px;
    /* Vertical spacing after title */
    margin-bottom: 30px;
    /* Vertical spacing before button */
    display: block;
    /* Ensure block level for margins */
}

.btn-primary {
    background-color: var(--primary-lime);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 255, 77, 0.3);
}

/* Floating Avatars */
.hero-avatars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    pointer-events: none;
    /* Let clicks pass through to text */
}

.avatar-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.1); */
}

.avatar-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.status-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    /* Symmetrical overlap */
    width: 34px;
    /* Slightly smaller for better proportion */
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.status-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.status-icon.blue {
    background: var(--primary-blue);
    color: white;
}

.status-icon.lime {
    background: var(--primary-lime);
    color: var(--text-dark);
}

/* Avatar Positions - Balanced Orbit */

/* 1. Top Left - Mid Distance */
.avatar-1 {
    top: 5%;
    left: 15%;
    transform: scale(1.0);
}

/* 2. Top Right - Near Title (Bearded Man pos) */
.avatar-2 {
    top: 28%;
    right: 22%;
    transform: scale(1.1);
}

/* 3. Mid Left - Wide */
.avatar-3 {
    top: 45%;
    left: 8%;
    transform: scale(1.1);
}

/* 4. Mid Right - Wide */
.avatar-4 {
    top: 55%;
    right: 8%;
    transform: scale(1.0);
}

/* 5. Bottom Center/Left (Woman pos) */
.avatar-5 {
    bottom: 22%;
    left: 45%;
    transform: translateX(-50%) scale(1.2);
    /* Central below button */
}


/* 6. Bottom Right - Far */
.avatar-6 {
    bottom: 5%;
    right: 20%;
    transform: scale(1.0);
}

/* Logo Banner Fix */
.logo-banner {
    padding: 40px 0;
    border-top: none;
    border-bottom: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(196, 255, 77, 0.4) 100%);
    /* Greenish fade at bottom */
}

.logo-scroll {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #888;
}

/* Features */
.features {
    padding: 60px 0;
}

/* Layout for features: text top? or split?
   HTML has: section-header, then features-content.
   features-content has image and grid.
*/
.features-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-icon.lime {
    background: rgba(196, 255, 77, 0.2);
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Services */
.services-section {
    padding: 40px 0;
}

.services-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card-large {
    grid-column: span 2;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-card-small {
    padding: 30px;
    border-radius: 20px;
}

.lime-bg {
    background: var(--primary-lime);
    color: var(--text-dark);
}

.white-bg {
    background: white;
    color: var(--text-dark);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    /* or white transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.lime-bg .service-icon {
    background: rgba(255, 255, 255, 0.5);
}

.white-bg .service-icon {
    background: var(--bg-light);
}

.services-content {
    flex: 1;
}

/* Why Choose Us */
.why-choose {
    padding: 40px 0;
}

.why-choose-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-content {
    flex: 1;
}

.checklist {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.why-choose-image {
    flex: 1;
    position: relative;
}

.why-choose-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary-lime);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

/* Process */
.process-section {
    padding: 40px 0;
}


.section-header.center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: var(--primary-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonial */
.testimonial {
    padding: 40px 0;
}

.testimonial-card {
    display: flex;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-image {
    width: 350px;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: #FFC107;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.author-title {
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
}

.cta-box {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    /* Default dark if green not defined */
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.gradient-bg-green {
    background: linear-gradient(135deg, #C4FF4D 0%, #A3D930 100%);
    color: var(--text-dark);
}

.cta-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
}

.cta-avatars img:first-child {
    margin-left: 0;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 0 30px 0;
    background: #fdfdfd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.footer-col p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info {
    margin-bottom: 8px !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(65, 105, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(65, 105, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-avatars,
.feature-card,
.process-card,
.service-card-large,
.service-card-small {
    animation: fadeIn 0.8s ease forwards;
}


/* Responsive */
@media (max-width: 991px) {
    .header {
        position: fixed;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .features-content,
    .services-layout,
    .why-choose-layout,
    .footer-grid,
    .intro-layout,
    .timezone-layout {
        flex-direction: column;
        display: flex;
    }

    .intro-layout,
    .timezone-layout {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-image {
        width: 100%;
        height: 250px;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-column: span 1;
    }
}

/* ============================
   About Page & New Styles
   ============================ */
.section-padding {
    padding: 40px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.center {
    text-align: center;
}

/* About Hero */
.about-hero {
    position: relative;
    padding: 120px 0 40px 0;
    background: url('../Images/SubModule.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
}

.about-intro {
    padding-top: 20px;
}

.hero-subtitle.dark {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto 0 auto;
}

/* Service Modules Grid */
.service-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-module-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-lime);
}

.service-module-card.lime-highlight {
    background: linear-gradient(135deg, white 0%, #f9ffeb 100%);
    border: 1px solid var(--primary-lime);
}

.service-icon-large {
    font-size: 40px;
    margin-bottom: 25px;
    background: var(--bg-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue);
}

.service-module-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-module-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 12px;
}

/* Responsive Services Grid */
@media (max-width: 991px) {
    .services-grid-main {
        grid-template-columns: 1fr;
    }
}

.hero-curves {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) scaleY(1.5);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.hero-curves svg {
    width: 100%;
    height: auto;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.about-hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(65, 105, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Intro Section */
.intro-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-text {
    flex: 1;
    text-align: left;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.pillar-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--bg-light);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-lime);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(65, 105, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px auto;
    color: var(--primary-blue);
}

/* Why Outsource Full */
.why-outsource-full {
    color: white;
}

.why-outsource-content {
    display: flex;
    justify-content: center;
}

.why-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 60px;
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.why-list-grid li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
}

.check-icon-white {
    width: 28px;
    height: 28px;
    background: white;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: bold;
}

/* Infrastructure */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.infra-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.infra-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.infra-icon {
    font-size: 36px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Timezone Section */
/* TEMPORARY: Clock visuals are hidden. To restore:
   1. Uncomment the clock HTML in about.html (lines ~181-203)
   2. Replace the CSS below with the commented "ORIGINAL LAYOUT" section
*/

/* Timezone Layout with Clocks */
.timezone-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.timezone-text {
    flex: 1;
    text-align: left;
}

.timezone-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* Lighter shadow */
}

/* Reduced Top Padding for Timezone Section */
.timezone.section-padding {
    padding-top: 40px;
    padding-bottom: 60px;
}

.clock-container {
    display: flex;
    gap: 40px;
}

.clock-item {
    text-align: center;
}

.clock-item span {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-gray);
}

.clock-face {
    width: 200px;
    height: 200px;
    border: 4px solid #f0f0f0;
    /* Thinner border for cleaner look */
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: white;
    box-shadow: none;
}


.clock-face .num {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    /* Reset inherited margin for centering */
    font-size: 13px;
    /* Optimized size */
    font-weight: 600;
    color: var(--text-dark);
    top: 50%;
    /* Geometric center */
    left: 50%;
    transform-origin: center;
}

/* Positioning Numbers 1-12 with optimal radius (68px) for 200px clock */
.num1 {
    transform: translate(-50%, -50%) rotate(30deg) translate(0, -68px) rotate(-30deg);
}

.num2 {
    transform: translate(-50%, -50%) rotate(60deg) translate(0, -68px) rotate(-60deg);
}

.num3 {
    transform: translate(-50%, -50%) rotate(90deg) translate(0, -68px) rotate(-90deg);
}

.num4 {
    transform: translate(-50%, -50%) rotate(120deg) translate(0, -68px) rotate(-120deg);
}

.num5 {
    transform: translate(-50%, -50%) rotate(150deg) translate(0, -68px) rotate(-150deg);
}

.num6 {
    transform: translate(-50%, -50%) rotate(180deg) translate(0, -68px) rotate(-180deg);
}

.num7 {
    transform: translate(-50%, -50%) rotate(210deg) translate(0, -68px) rotate(-210deg);
}

.num8 {
    transform: translate(-50%, -50%) rotate(240deg) translate(0, -68px) rotate(-240deg);
}

.num9 {
    transform: translate(-50%, -50%) rotate(270deg) translate(0, -68px) rotate(-270deg);
}

.num10 {
    transform: translate(-50%, -50%) rotate(300deg) translate(0, -68px) rotate(-300deg);
}

.num11 {
    transform: translate(-50%, -50%) rotate(330deg) translate(0, -68px) rotate(-330deg);
}

.num12 {
    transform: translate(-50%, -50%) rotate(0deg) translate(0, -68px) rotate(0deg);
}

/* Main Markers (12, 3, 6, 9) Optional visual enhancement */
.marker {
    display: none;
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 6px;
    z-index: 1;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s cubic-bezier(0.4, 2.08, 0.55, 0.44);
}

/* Specific hand adjustments for larger clock */
.hand.hour {
    width: 6px;
    height: 45px;
    background: var(--text-dark);
    z-index: 3;
}

.hand.minute {
    width: 4px;
    height: 65px;
    background: #666;
    z-index: 2;
}

.hand.second {
    width: 2px;
    height: 70px;
    background: #ff4d4d;
    z-index: 4;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: none;
    transition: none;
}

.hand.second::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.center-dot {
    width: 12px;
    height: 12px;
    background: var(--text-dark);
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.digital-time {
    margin-top: 5px;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* CTA Updates */
.centered-cta {
    text-align: center;
}

.cta-buttons-row {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 40px;
    margin-top: 30px;
}

.cta-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    max-width: 400px;
}

.cta-desc {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0 !important;
    max-width: 320px;
}

.cta-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    align-self: stretch;
}

@media (max-width: 768px) {
    .cta-buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .cta-divider {
        width: 100%;
        height: 1px;
    }

    .about-hero-text .hero-title {
        font-size: 32px;
    }
}

/* Modern Animations & UI Enhancements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Enhanced Card Hover Effects */
.feature-card,
.service-card-large,
.service-card-small,
.process-card,
.pillar-card,
.service-module-card,
.contact-form-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.service-card-large:hover,
.service-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Glassmorphism Hints */
.header {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.9);
}

/* 3D Button Effect */
.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(196, 255, 77, 0.2);
}

/* Smooth Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #4169FF, #3457D5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Page Styles */
.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
}

.contact-form-col {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.contact-details-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text .label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-gray);
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-text .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 15px;
    transition: all 0.3s;
    background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 105, 255, 0.1);
}

/* Responsive Contact */
@media (max-width: 991px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
}

/* CTA Section Button Visibility Fix */
/* Override button styling specifically for CTA section to ensure visibility against green background */
.gradient-bg-green .btn-primary {
    background-color: var(--text-dark);
    color: white;
    border: 2px solid var(--text-dark);
    font-weight: 600;
    padding: 14px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gradient-bg-green .btn-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(65, 105, 255, 0.3);
}

/* Enforce Two-Line Text Layout for CTA Description */
.cta-desc {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0 !important;
    max-width: 400px;
    min-height: 51px;
    display: block;
    text-align: center;
}

.cta-desc1 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0 !important;
    max-width: 400px;
    min-height: 51px;
    display: block;
    text-align: center;
}

/* Ensure CTA option containers have enough width */
.cta-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    max-width: 450px;
    /* Increased from 400px to accommodate wider text */
}