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

/* Loading Spinner */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

#loading-spinner .spinner-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-spinner .spinner-logo {
    width: 80px;
    height: auto;
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(30, 58, 138, 0.3));
}

#loading-spinner .spinner {
    border-radius: 50%;
    box-sizing: border-box;
    border: 5px solid rgba(135, 206, 250, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading-spinner .inner {
    border-top: 5px solid #3b82f6;
    border-bottom: 5px solid #3b82f6;
    width: 70px;
    height: 70px;
    margin: -35px;
    -webkit-animation: inner-spin 3s linear infinite;
    animation: inner-spin 3s linear infinite;
}

#loading-spinner .outer {
    border-right: 5px solid #1e3a8a;
    border-left: 5px solid #1e3a8a;
    width: 90px;
    height: 90px;
    margin: -45px;
    -webkit-animation: outer-spin 3s linear infinite;
    animation: outer-spin 3s linear infinite;
}

#loading-spinner .eye {
    width: 50px;
    height: 50px;
    border: none;
    background-color: #87ceeb;
    animation: eye-flash 3s infinite;
}

@-webkit-keyframes inner-spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes inner-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes outer-spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(-180deg); }
}

@keyframes outer-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-180deg); }
}

@keyframes eye-flash {
    0% { background-color: #87ceeb; }
    50% { background-color: rgba(135, 206, 250, 0.3); }
    100% { background-color: #87ceeb; }
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient( white 50%, #ffffff 15%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* Subtle professional grid background */
/* Subtle professional grid background */
/* moved grid to .top-section::before so body::before removed */

.top-section {
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #e3f2fd 60%, #ffffff 100%);
    width: 100vw;
    margin: 0;
    padding: 1.5rem;
    max-width: none;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    min-height: 720px;
        /* play with min height 700-750 */

}
.top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-image:
        linear-gradient(rgba(135, 206, 250, 0.08) 2px, transparent 2px),
        linear-gradient(90deg, rgba(135, 206, 250, 0.08) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}


@media (max-width: 640px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Navigation Bar */
.nav-oval {
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    box-shadow: 
        0 8px 32px rgba(135, 206, 250, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0.6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    position: relative;
    z-index: 100;
}

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

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Typing area */
.typing-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2rem 0 3rem;
}

.typing-text {
    font-size: 1rem;
    color: #1e3a8a;
    font-weight: 500;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cursor {
    color: #87ceeb;
    animation: blink 0.8s infinite;
    font-weight: 600;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.service-icon i {
    color: #fff;
}

.menu-btn:hover {
    background: rgba(135, 206, 250, 0.1);
}

.menu-icon {
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: #1e3a8a;
    border-radius: 2px;
}

/* Navigation links (hidden by default). Clicking the burger toggles .active */
.nav-links {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

/* When active show as dropdown on small screens (cornered) */
.nav-links.active {
    display: flex;
    position: absolute;
    top: 64px;
    right: 1rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.4rem;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
    flex-direction: column;
    min-width: 160px;
    z-index: 101;
}

.nav-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(135, 206, 250, 0.06);
}

.nav-link.active {
    background: #1e3a8a;
    color: #ffffff;
    border-radius: 999px;
}

/* On desktop, when active, show links inline inside the nav */
@media (min-width: 769px) {
    .nav-links.active {
        position: static;
        top: auto;
        right: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .nav-links {
        /* keep hidden until burger clicked */
        display: none;
    }
}

/* Hero Section - Updated */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem 2rem;
    position: relative;
    z-index: 1;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hero Actions/Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.btn-primary {
    background: #1e3a8a;
    color: white;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: #0f2557;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
}

.arrow-icon {
    transition: transform 0.3s;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

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

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(30, 58, 138, 0.2);
    height: 550px;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hero-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: 1;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.stat-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 58, 138, 0.15);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: #1e3a8a;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}

.trust-text strong {
    display: block;
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-main {
        height: 400px;
    }

    .floating-stat {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 1.5rem 2rem;
    }

    .hero-image-main {
        height: 300px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        width: 100%;
    }
}

/* Professional Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #1e3a8a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(135, 206, 250, 0.15);
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 250, 0.3), transparent);
    animation: shimmer 3s infinite;

}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}


.pulse-dot {
    width: 10px;
    height: 10px;
    background: #87ceeb;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #87ceeb;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #87ceeb;
    animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, #55cbfa 0%, #1339b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(135, 206, 250, 0.4),
            0 2px 8px rgba(30, 58, 138, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 24px rgba(135, 206, 250, 0.6),
            0 3px 12px rgba(30, 58, 138, 0.3);
    }
}

.subtitle,
.hero-subtitle {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.bold-text {
    color: #1e3a8a;
    font-weight: 600;
}

.cta-btn {
    background: #87ceeb;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 250, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    position: relative;
}

.cta-btn:hover {
    background: #1e3a8a;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    transform: translateY(-2px);
}

.cta-btn:active {
    transform: translateY(0);
}

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

.cta-btn:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .nav-oval {
        padding: 0.5rem 1.5rem;
        height: 50px;
    }

    .typing-container {
        padding: 0 1.5rem 0 2rem;
    }

    .typing-text {
        font-size: 0.85rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    body {
        padding: 1rem;
    }

    .nav-oval {
        padding: 0.5rem 1.2rem;
        height: 48px;
    }

    .typing-container {
        padding: 0 1rem 0 1.5rem;
    }

    .typing-text {
        font-size: 0.75rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cone {
        width: 40px;
        height: 60px;
    }
}



        .hero-section *,
        .company-section *,
        .values-section *,
        .objectives-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .hero-section,
        .company-section,
        .values-section,
        .objectives-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: #1e3a8a;
            line-height: 1.6;
        }

        /* Navigation */
     

       

        /* Hero Section with Image Overlay */
        .hero-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Placeholder for user's image */
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(37, 99, 235, 0.7) 100%),
                url('../img/header1.jpg');
            background-position: top center;
            background-size: cover;
          
            opacity: 1;
            transition: opacity 0.5s, transform 0.7s cubic-bezier(0.4,0,0.2,1);
            will-change: transform, opacity;
        }

.hero-section.bg-animate {
    /* Swipe left animation */
    animation: heroSwipeLeft 0.7s cubic-bezier(0.4,0,0.2,1);
}

@keyframes heroSwipeLeft {
    0% { opacity: 1; transform: translateX(0); }
    40% { opacity: 0; transform: translateX(-100%); }
    60% { opacity: 0; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-title, .hero-subtitle {
    transition: opacity 0.5s, transform 0.7s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}
.hero-text-animate {
    animation: textFadeLeft 0.7s cubic-bezier(0.4,0,0.2,1);
}
@keyframes textFadeLeft {
    0% { opacity: 1; transform: translateX(0); }
    40% { opacity: 0; transform: translateX(-100%); }
    60% { opacity: 0; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(0); }
}

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

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            color: #ffffff;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            font-weight: 400;
        }

        /* Unique styles for hero-section "Building Trust" area */
        .hero-section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            color: #ffffff;
            text-align: center;
        }

        .hero-section-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            font-weight: 400;
            color: #ffffff;
            text-align: center;
            margin-bottom: 2rem;
        }

        /* Additional Content with Icons */
        .hero-additional-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .additional-item {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.2rem;
            transition: all 0.3s ease;
        }

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

        .additional-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #87ceeb, #5eb8e5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            color: white;
        }

        .additional-text h4 {
            margin: 0 0 0.3rem 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
        }

        .additional-text p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
        }

        /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            overflow-x: hidden;
        }

        /* Swipeable Company Cards Section */
        .company-section {
            margin-bottom: 3rem;
            /* bg baby blue*/
              background:white;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3a8a;
            text-align: center;
            margin-bottom: 2rem;
            
        }

        .cards-container {
            position: relative;
            max-width: 100%;
        }

        .cards-wrapper {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding: 1rem 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .cards-wrapper::-webkit-scrollbar {
            display: none;
        }

        .company-card {
            flex: 0 0 calc(33.333% - 1.5rem);
            min-width: 320px;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            scroll-snap-align: center;
            transition: all 0.3s ease;
            border-left: 1px solid #87ceeb;
        }

        .company-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
        }

        .card-icon-header {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #87ceeb, #1e3a8a);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .card-heading {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.75rem;
        }

        .card-description {
            color: #1e3a8a;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* Enhanced Card Elements */
        .card-highlights {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .highlight-badge {
            background: linear-gradient(135deg, #87ceeb, #5eb8e5);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(135, 206, 235, 0.3);
        }

        .card-stats {
            margin-top: 1rem;
        }

        .stat-item {
            text-align: center;
            padding: 0.75rem;
            background: linear-gradient(135deg, rgba(135, 206, 250, 0.1), rgba(30, 58, 138, 0.05));
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 250, 0.2);
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: #1e3a8a;
            line-height: 1;
        }

        .stat-label {
            display: block;
            font-size: 0.85rem;
            color: #87ceeb;
            font-weight: 600;
            margin-top: 0.25rem;
        }

        .achievement-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0;
        }

        .achievement-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #1e3a8a;
        }

        .achievement-list li i {
            color: #87ceeb;
            margin-right: 0.5rem;
            font-size: 0.8rem;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .service-tag {
            background: rgba(135, 206, 250, 0.1);
            color: #1e3a8a;
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(135, 206, 250, 0.3);
        }

        .cards-nav {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid #e3f2fd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .nav-dot.active {
            background: #1e3a8a;
            width: 24px;
            border-radius: 4px;
        }

        .card-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(135, 206, 250, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .card-dot.active {
            background: #87ceeb;
            transform: scale(1.2);
        }

        .card-dot:hover {
            background: #5eb8e5;
        }

        /* Core Values Section - Split Layout */
        .values-section {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .values-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        /* Left Side - Image */
        .values-image {
            position: relative;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Replace with your image */
            background: 
                linear-gradient(135deg, rgba(135, 206, 250, 0.3), rgba(30, 58, 138, 0.2)),
                url('../img/drilli.jpg') center/cover;
        }

        /* Loading Spinner */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border: 4px solid rgba(135, 206, 250, 0.3);
            border-top: 4px solid #87ceeb;
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .loading-spinner.show {
            opacity: 1;
            visibility: visible;
            animation: spin 1s linear infinite;
        }

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

        /* Right Side - Interactive Values */
        .values-interactive {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .values-header {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        /* Oval Switch Bar */
        .values-switch-bar {
            background: #ffffff;
            border: 2px solid #e3f2fd;
            border-radius: 50px;
            padding: 0.5rem;
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .values-switch-bar::-webkit-scrollbar {
            display: none;
        }

        .value-tab {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            background: transparent;
            border: none;
            color: #1e3a8a;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .value-tab:hover {
            color: #1e3a8a;
            background: rgba(135, 206, 250, 0.1);
        }

        .value-tab.active {
            background: #1e3a8a;
            color: white;
            box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
        }

        /* Value Content Card */
        .value-content {
            background: #ffffff;
            border-radius: 12px;
            padding: 2rem;
            min-height: 200px;
            position: relative;
            overflow: hidden;
        }

        .value-card {
            display: none;
            animation: fadeSlideIn 0.4s ease;
        }

        .value-card.active {
            display: block;
        }

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

        .value-icon-large {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .value-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.75rem;
        }

        .value-description {
            color: #1e3a8a;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Strategic Objectives */
        .objectives-container {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .objectives-header {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 2rem;
            text-align: center;
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .objective-item {
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #e3f2fd;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .objective-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #87ceeb;
            transform: scaleY(0);
            transition: transform 0.3s;
            border-radius: 8px 0 0 8px;
        }

        .objective-item:hover::before {
            transform: scaleY(1);
        }

        .objective-item:hover {
            border-color: #87ceeb;
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(135, 206, 250, 0.2);
        }

        .objective-number {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #87ceeb, #1e3a8a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .objective-label {
            font-size: 0.95rem;
            color: #1e3a8a;
            font-weight: 600;
        }

        .objectives-subtitle {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(135, 206, 250, 0.05));
            border: 1px solid rgba(30, 58, 138, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #374151;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 500;
            position: relative;
        }

        .objectives-subtitle::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #1e3a8a, #87ceeb);
            border-radius: 2px;
        }

        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #87ceeb, #d4a017);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .values-split {
                grid-template-columns: 1fr;
            }

            .values-image {
                height: 300px;
                order: -1;
            }

            .company-card {
                flex: 0 0 calc(50% - 1rem);
                min-width: 280px;
            }

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-section {
                padding: 3rem 1.5rem;
                min-height: 250px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            /* Additional content mobile styles */
            .hero-additional-content {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .additional-item {
                padding: 1rem;
            }

            .additional-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                margin-right: 0.8rem;
            }

            .additional-text h4 {
                font-size: 1rem;
            }

            .additional-text p {
                font-size: 0.85rem;
            }

            .main-content {
                padding: 1.5rem 1rem;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            /* Stack cards vertically on mobile but keep swipe for tablet */
            .cards-wrapper {
                gap: 1.5rem;
            }

            .company-card {
                flex: 0 0 85%;
                min-width: 280px;
                scroll-snap-align: start;
                padding: 2rem 1.5rem;
            }

            .card-icon-header {
                width: 56px;
                height: 56px;
                font-size: 1.8rem;
                margin-bottom: 1.25rem;
            }

            .card-heading {
                font-size: 1.25rem;
            }

            .card-description {
                font-size: 0.95rem;
            }

            /* Show dots on mobile for swipe navigation */
            .cards-nav {
                display: flex;
            }

            .values-section {
                padding: 2rem 1.5rem;
            }

            .values-split {
                gap: 2rem;
            }

            .values-image {
                height: 250px;
            }

            .values-header {
                font-size: 1.5rem;
            }

            .values-switch-bar {
                padding: 0.4rem;
                gap: 0.4rem;
            }

            .value-tab {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
            }

            .value-content {
                padding: 1.5rem;
                min-height: 180px;
            }

            .value-icon-large {
                font-size: 2.5rem;
            }

            .value-name {
                font-size: 1.3rem;
            }

            .value-description {
                font-size: 0.9rem;
            }

            .objectives-container {
                padding: 2rem 1.5rem;
            }

            .objectives-header {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .objectives-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .objective-item {
                padding: 1.25rem;
            }

            .objectives-subtitle {
                padding: 1.25rem;
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .nav-content {
                padding: 0 1rem;
            }

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

            .hero-section {
                padding: 1.2rem 0.5rem 1rem 0.5rem;
                min-height: 120px;
            }

            .hero-title {
                font-size: 1.6rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .values-switch-bar {
                flex-wrap: wrap;
            }

            .value-tab {
                flex: 1 1 auto;
                min-width: fit-content;
            }
        }
/* Services Section */
.services-section {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #1e3a8a;
}

/* Services Slider */
.services-slider-container {
    position: relative;
    margin-bottom: 2rem;
}

.services-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    scroll-snap-align: start;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.2);
}

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: -50px auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    position: relative;
    z-index: 1;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.service-description {
font-size: 0.95rem;
color: #1e3a8a;
line-height: 1.6;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #87ceeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow span {
    font-size: 2rem;
    color: #1e3a8a;
    font-weight: bold;
    line-height: 1;
    transition: color 0.3s;
}

.slider-arrow:hover span {
    color: white;
}

.slider-arrow-left {
    left: -25px;
}

.slider-arrow-right {
    right: -25px;
}

/* Slider Progress */
.slider-progress {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.progress-track {
    flex: 1;
    max-width: 400px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #87ceeb, #1e3a8a);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 8.33%;
}

.slider-counter {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    min-width: 60px;
    text-align: center;
}

/* CTA Button */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.quote-btn {
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.quote-btn:hover .btn-arrow {
        transform: translateX(5px);
    }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
        color: white;
        padding: 4rem 2rem 2rem 2rem;
        margin: 4rem -1.5rem 0 -1.5rem;
        position: relative;
        overflow: hidden;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #87ceeb, #1e3a8a, #87ceeb);
        background-size: 200% 100%;
        animation: shimmer-footer 3s linear infinite;
    }

    @keyframes shimmer-footer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

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

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 2px solid rgba(135, 206, 250, 0.2);
        position: relative;
    }

    .footer-top::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100px;
        height: 2px;
        background: #87ceeb;
        animation: border-slide 3s ease-in-out infinite;
    }

    @keyframes border-slide {
        0%, 100% { left: 0; width: 100px; }
        50% { left: calc(100% - 100px); width: 150px; }
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        animation: fade-in-up 0.6s ease-out backwards;
    }

    .footer-column:nth-child(1) { animation-delay: 0.1s; }
    .footer-column:nth-child(2) { animation-delay: 0.2s; }
    .footer-column:nth-child(3) { animation-delay: 0.3s; }
    .footer-column:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-about {
        padding-right: 2rem;
    }

    .footer-logo {
        position: relative;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(135, 206, 250, 0.3));
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        font-size: 0.95rem;
    }

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

    .social-link {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(135, 206, 250, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .social-link:hover::before {
        width: 100%;
        height: 100%;
    }

    .social-link:hover {
        background: linear-gradient(135deg, #87ceeb, #5ba3d0);
        border-color: #87ceeb;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(135, 206, 250, 0.4);
    }

    .social-link i {
        position: relative;
        z-index: 1;
    }

    .footer-heading {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
        position: relative;
        padding-bottom: 0.75rem;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #87ceeb, transparent);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        position: relative;
        padding-left: 0;
    }

    .footer-links a::before {
        content: '';
        position: absolute;
        left: -10px;
        width: 0;
        height: 2px;
        background: #87ceeb;
        transition: width 0.3s ease;
        opacity: 0;
    }

    .footer-links a:hover::before {
        width: 20px;
        opacity: 1;
    }

    .footer-links a:hover {
        color: #87ceeb;
        padding-left: 1rem;
    }

    .footer-links a:hover i {
        transform: translateX(5px);
        color: #87ceeb;
    }

    .footer-links i {
        font-size: 0.75rem;
        transition: all 0.3s ease;
    }

    .footer-contact {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-contact li {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        line-height: 1.5;
        transition: all 0.3s ease;
        cursor: default;
    }

    .footer-contact li:hover {
        color: white;
        transform: translateX(5px);
    }

    .footer-contact li:hover i {
        transform: scale(1.2);
        color: #87ceeb;
    }

    .footer-contact i {
        color: #87ceeb;
        width: 20px;
        flex-shrink: 0;
        margin-top: 0.2rem;
        transition: all 0.3s ease;
        filter: drop-shadow(0 0 8px rgba(135, 206, 250, 0.5));
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
    }

    .footer-copyright p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-copyright p::before {
        content: '©';
        font-size: 1.1rem;
        color: #87ceeb;
    }

    .footer-legal {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .footer-legal a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: #87ceeb;
        transition: width 0.3s ease;
    }

    .footer-legal a:hover::after {
        width: 100%;
    }

    .footer-legal a:hover {
        color: #87ceeb;
    }

    .footer-legal .separator {
        color: rgba(255, 255, 255, 0.3);
        font-weight: 300;
    }

    /* Footer Responsive */
    @media (max-width: 1024px) {
        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .footer-about {
            grid-column: 1 / -1;
            padding-right: 0;
        }
    }

    @media (max-width: 640px) {
        .footer {
            min-height: unset;
            padding: 0 1.5rem 0 2rem;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
        }

        .footer-about {
            grid-column: 1;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
    }

/* Partners/Clients Logo Scroll Section */
    .partners-section {
        background: #ffffff;
        padding: 4rem 2rem;
        overflow: hidden;
        margin-top: 3rem;
    }

    .partners-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .partners-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e3a8a;
        text-align: center;
        margin-bottom: 3rem;
    }

    .logos-scroll {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .logos-scroll::before,
    .logos-scroll::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .logos-scroll::before {
        left: 0;
        background: linear-gradient(to right, #ffffff, transparent);
    }

    .logos-scroll::after {
        right: 0;
        background: linear-gradient(to left, #ffffff, transparent);
    }

    .logos-track {
        display: flex;
        gap: 4rem;
        animation: scroll 30s linear infinite;
        width: max-content;
    }

    .logos-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .logo-item {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        background: #ffffff;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 160px;
        height: 80px;
        border: 1px solid #e3f2fd;
    }

    .logo-item:hover {
        background: #87ceeb;
        transform: scale(1.05);
    }

    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .logo-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Responsive for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 2rem 1.5rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

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

    .services-slider {
        gap: 1rem;
    }

    .service-card {
        flex: 0 0 85%;
        min-width: 280px;
    }

    .slider-arrow {
        display: none;
    }

    .progress-track {
        max-width: 200px;
    }

    .quote-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Mobile Responsive Styles for Foundation Section */
@media (max-width: 768px) {
    .hero-additional-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .additional-item {
        padding: 1.5rem;
    }

    .additional-item h3 {
        font-size: 1.25rem;
    }

    .additional-item p {
        font-size: 0.9rem;
    }

    .company-cards {
        padding: 1rem;
    }

    .company-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .company-card h3 {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .card-highlights {
        flex-wrap: wrap;
    }

    .highlight-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .achievement-list li {
        font-size: 0.85rem;
    }

    .service-tags {
        gap: 0.4rem;
    }

    .service-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .cards-nav {
        gap: 0.4rem;
        margin-top: 1.5rem;
    }

    .card-dot {
        width: 10px;
        height: 10px;
    }

    .loading-spinner {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
}

/* Privacy Policy Styles */
.privacy-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #87ceeb;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.privacy-card .card-icon-header {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.privacy-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.privacy-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-item i {
    color: #87ceeb;
    margin-top: 0.1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(135, 206, 250, 0.1), rgba(30, 58, 138, 0.05));
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(135, 206, 250, 0.2);
}

.security-badge i {
    color: #87ceeb;
}

.contact-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left-color: #1e3a8a;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
}

.contact-item i {
    color: #87ceeb;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #87ceeb;
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .privacy-card .card-icon-header {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .privacy-section-title {
        font-size: 1.2rem;
    }

    .privacy-text {
        font-size: 0.95rem;
    }

    .privacy-item {
        font-size: 0.9rem;
    }

    .security-features {
        gap: 0.5rem;
    }

    .security-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}