@media (max-width: 1024px) {
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .about-image img {
        width: auto !important;
        height: 450px !important;
        max-width: 90vw;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    }

    .about-image.animate,
    .about-content.animate,
    .footer-hero.animate,
    .footer-column.animate,
    .footer-bottom.animate,
    .service-card.animate,
    .partner-logo.animate,
    .form-group.animate,
    .submit-btn.animate {
        transition-delay: 0.7s !important;
    }

    .about-text,
    .value-content p {
        max-width: 100% !important;
        text-align: justify !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #EFA710;
    --navy: #03445F;
    --text-gray: #6b7280;
    --white: #ffffff;
    --yellow: #EFA710;
}

body {
    font-family: 'Figtree', sans-serif;
    overflow-x: hidden;
    color: white;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: transparent;
    transition: background-color 0.6s ease;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    transition: opacity 1.5s ease;
}

.video-background.hide {
    opacity: 0;
    pointer-events: none;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

/* Dark Gradient Overlay - Medium darkness */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
    transition: opacity 1.5s ease;
}

.video-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
}

nav.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

nav.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Navbar in Footer - Black Theme */
nav.scrolled .logo-text .highlight {
    color: #000000;
}

nav.scrolled .nav-links a:hover {
    color: #000000;
}

nav.scrolled .nav-links a:hover::after {
    background: #000000;
}

nav.scrolled .nav-cta {
    background: #000000;
    color: #EFA710 !important;
}

nav.scrolled .nav-cta:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #EFA710 !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-cta {
    background: var(--primary-teal);
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    color: var(--navy) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 120vh;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 5%;
    position: relative;
}


.hero-container {
    max-width: 1400px;
    text-align: left;
}

.hero-content {
    max-width: 900px;
    margin: 0 0 0 100px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.3s;
}

.hero.visible .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -2px;
    text-align: left;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--yellow) 0%, #D89000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fading Text Animation */
.typewriter {
    display: inline-block;
    min-width: 500px;
    text-align: left;
    position: relative;
    min-height: 1.2em;
}

.animated-text {
    display: inline-block;
    animation: fadeInOut 15s ease-in-out infinite;
    position: absolute;
    left: 0;
    opacity: 0;
    background: linear-gradient(135deg, var(--yellow) 0%, #D89000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.animated-text:nth-child(1) {
    animation-delay: 0s;
}

.animated-text:nth-child(2) {
    animation-delay: 3s;
}

.animated-text:nth-child(3) {
    animation-delay: 6s;
}

.animated-text:nth-child(4) {
    animation-delay: 9s;
}

.animated-text:nth-child(5) {
    animation-delay: 12s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    2% {
        opacity: 1;
        transform: translateY(0);
    }

    18% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.cursor {
    display: none;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .typewriter {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .typewriter {
        min-width: 250px;
    }
}

.hero p {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    font-weight: 400;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: var(--navy);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D89000 0%, var(--yellow) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.btn-primary svg,
.btn-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg,
.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow);
    animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hero,
    .services-section {
        height: auto;
        min-height: 100vh;
    }

    .testimonials-section {
        height: auto;
        min-height: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hero {
        padding: 100px 5% 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 20px;
    }


    .hero-content {
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .logo-text {
        font-size: 24px;
    }
}

/* Services Section */
.services-section {
    padding: 60px 5%;
    background: transparent;
    position: relative;
    overflow: visible;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.services-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.services-section.visible .section-header {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: #000000;
}

.highlight-dark {
    color: white;
}

.highlight-yellow {
    color: #EFA710;
}

.service-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #EFA710;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: black;
}

.section-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #000000;
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

/* Scroll Arrows */
/* Fixed Left/Right Scroll Arrows */
.scroll-arrow-fixed {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-arrow-fixed:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.scroll-arrow-fixed svg {
    width: 24px;
    height: 24px;
    fill: var(--navy);
}

.scroll-arrow-fixed:hover svg {
    fill: var(--navy);
}

.scroll-arrow-left {
    left: 20px;
}

.scroll-arrow-right {
    right: 20px;
}

/* Service Navigation - Bottom Arrows */
.service-nav-bottom {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 20px 5%;
    position: relative;
    z-index: 100;
    background: transparent;
    visibility: visible !important;
}

.service-nav-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 4px solid #03445F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 101;
}

.service-nav-arrow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: #03445F;
}

.service-nav-arrow:hover svg {
    stroke: white;
}

.service-nav-arrow:active {
    transform: translateY(-1px);
}

.service-nav-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(0);
}

.service-nav-arrow:disabled:hover {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.service-nav-arrow svg {
    width: 28px;
    height: 28px;
    stroke: #03445F;
    stroke-width: 3;
}

/* Individual Service Card */
.service-card {
    width: 350px;
    min-width: 350px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    clip-path: circle(0% at 50% var(--video-center-y));
    --video-center-y: 80px;
    /* Center of 160px height video */
}

/* Unified circular reveal for entire card */
.service-card.reveal {
    animation: cardRevealCircle 6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes cardRevealCircle {
    0% {
        clip-path: circle(0px at 100% 0%);
    }

    100% {
        clip-path: circle(1200px at 100% 0%);
    }
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* White overlay for entire card circular reveal */
/* Ensure card content is visible */
.service-video-container,
.service-content {
    position: relative;
    z-index: 1;
}

/* Circular cursor for cards */
.service-card,
.service-card * {
    cursor: pointer;
}

/* Custom circular cursor follower */
.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(253, 225, 45, 0.7);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.custom-cursor.active {
    opacity: 1;
}

/* Individual card colors - actual background */
.service-card:nth-child(1) {
    background: #EFA710;
}

.service-card:nth-child(2) {
    background: #A8E063;
}

.service-card:nth-child(3) {
    background: #C9A7EB;
}

.service-card:nth-child(4) {
    background: #6DD5ED;
}

.service-card:nth-child(5) {
    background: #EFA710;
}

/* Remove individual colored overlays */


/* Video Container */
.service-video-container {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #000;
    clip-path: circle(0% at 100% 0%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Video reveal animation */
.service-card.reveal .service-video-container {
    animation: videoRevealCircle 6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes videoRevealCircle {
    0% {
        clip-path: circle(0px at 100% 0%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        clip-path: circle(1200px at 100% 0%);
        opacity: 1;
    }
}

/* Border Ring Animation */
.service-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 6px solid #EFA710;
    /* Gold Brand Color */
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}

.service-card.reveal .service-video-container::after {
    animation: borderExpand 6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes borderExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 6px;
    }

    100% {
        width: 2400px;
        /* Large enough to cover card */
        height: 2400px;
        opacity: 1;
        border-width: 6px;
    }
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card:hover .service-video {
    transform: scale(1.15) rotate(1deg);
}

.video-overlay-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 100%);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card:hover .video-overlay-card {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.8;
}

/* Service Content */
.service-content {
    padding: 24px;
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0 24px;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card:hover .service-content {
    background: #f9f9f9;
}

/* Colored overlay for circular reveal - specific to each card */
.service-card:nth-child(1) .service-content::before {
    background: #EFA710;
}

.service-card:nth-child(2) .service-content::before {
    background: #A8E063;
}

.service-card:nth-child(3) .service-content::before {
    background: #C9A7EB;
}

.service-card:nth-child(4) .service-content::before {
    background: #6DD5ED;
}

.service-card:nth-child(5) .service-content::before {
    background: #EFA710;
}

/* Colored overlay that grows from top-right */
.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Trigger animation when card gets reveal class */
.service-card:hover .service-content::before {
    opacity: 1;
}

.service-card.reveal .service-content::before {
    animation: contentFadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card:hover .service-content h3 {
    transform: translateY(-2px);
}

/* Individual heading colors for each card */
.service-card:nth-child(1) h3 {
    color: black;
}

.service-card:nth-child(2) h3 {
    color: black;
}

.service-card:nth-child(3) h3 {
    color: black;
}

.service-card:nth-child(4) h3 {
    color: black;
}

.service-card:nth-child(5) h3 {
    color: black;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.service-bullets li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0.8;
}

.service-card:hover .service-bullets li {
    opacity: 1;
    padding-left: 24px;
}

.service-card:hover .service-bullets li:nth-child(1) {
    transform: translateX(2px);
    animation: bulletReveal 0.4s ease-out 0.1s both;
}

.service-card:hover .service-bullets li:nth-child(2) {
    transform: translateX(2px);
    animation: bulletReveal 0.4s ease-out 0.2s both;
}

.service-card:hover .service-bullets li:nth-child(3) {
    transform: translateX(2px);
    animation: bulletReveal 0.4s ease-out 0.3s both;
}

@keyframes bulletReveal {
    from {
        opacity: 0.6;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(2px);
    }
}

.service-bullets li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .service-bullets li::before {
    color: rgba(255, 255, 255, 1);
}

/* Scroll Progress Indicator */
.scroll-progress {
    width: 90%;
    max-width: 1400px;
    margin: 30px auto 0;
    height: 4px;
    background: rgba(3, 68, 95, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: width 0.1s ease;
    width: 0%;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .service-card {
        width: 320px;
        min-width: 320px;
    }

    .services-scroll-container {
        padding: 20px 0 40px 0;
    }

    .service-nav-arrow {
        width: 60px;
        height: 60px;
    }

    .service-nav-arrow svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 5%;
    }

    .service-card {
        width: 280px;
        min-width: 280px;
    }

    /* Adjust video center for mobile where video height is 320px */
    .service-card {
        --video-center-y: 160px;
    }

    .services-scroll-container {
        padding: 20px 0 40px 0;
    }

    .services-cards {
        gap: 20px;
    }

    .service-video-container {
        height: 320px;

    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-nav-bottom {
        margin-top: 40px;
        margin-bottom: 30px;
        gap: 25px;
        padding: 20px 5%;
        display: flex !important;
        visibility: visible !important;
    }

    .service-nav-arrow {
        width: 60px;
        height: 60px;
        display: flex !important;
        visibility: visible !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .service-nav-arrow svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 260px;
        min-width: 260px;
    }

    .services-cards {
        gap: 15px;
    }

    .services-scroll-container {
        padding: 20px 0 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 5%;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
}

/* Testimonials Header */
.testimonials-header {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
    text-align: left;
}

.testimonials-section.visible .testimonials-header {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: black;
}

/* Testimonial Display */
.testimonial-display {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
    border-left: 4px solid black;
    opacity: 1;
    transform: translateY(0);
}

.testimonials-section.visible .testimonial-display {
    opacity: 1;
    transform: translateY(0);
}

.quote-mark {
    font-size: 140px;
    line-height: 0.8;
    color: black;
    font-weight: 700;
    margin-bottom: 15px;
    margin-left: -10px;
    font-family: Georgia, serif;
}

.testimonial-content-main {
    margin-bottom: 40px;
}

.testimonial-quote {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.7;
    color: white;
    font-weight: 400;
    margin: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: justify;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: rgba(3, 68, 95, 0.2);
    margin-bottom: 30px;
}

/* Testimonial Author */
.testimonial-author-main {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-author-main h3 {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 6px;
}

.testimonial-author-main p {
    font-size: clamp(14px, 1.4vw, 18px);
    color: black;
    font-weight: 400;
}

/* Testimonial Bottom Navigation */
.testimonial-nav-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-bottom-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-bottom-arrow:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
}

.testimonial-bottom-arrow:active {
    transform: translateY(-1px);
}

.testimonial-bottom-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(3, 68, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(3, 68, 95, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: black;
    transform: scale(1.3);
}

/* Fade animation classes */
.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Entry Animations for All Sections */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-based directional animations */
.reveal-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Section Headers - Fade In + Scale */
.service-title,
.about-title,
.partners-header,
.testimonials-header {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title.animated,
.about-title.animated,
.partners-header.animated,
.testimonials-header.animated {
    opacity: 1;
    transform: scale(1);
}

/* Section Description - Slide Up */
.section-description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.section-description.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards - Subtle Slide Up */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1).animated {
    transition-delay: 0.1s;
}

.service-card:nth-child(2).animated {
    transition-delay: 0.2s;
}

.service-card:nth-child(3).animated {
    transition-delay: 0.3s;
}

.service-card:nth-child(4).animated {
    transition-delay: 0.4s;
}

.service-card:nth-child(5).animated {
    transition-delay: 0.5s;
}



.about-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

@media (max-width: 768px) {
    .about-content {
        transition-delay: 0s;
    }
}

.about-content.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Client Logos - Simple Fade */
.partner-logo {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo.animated {
    opacity: 1;
    transform: translateY(0);
}

.partner-logo:nth-child(1).animated {
    transition-delay: 0.1s;
}

.partner-logo:nth-child(2).animated {
    transition-delay: 0.2s;
}

.partner-logo:nth-child(3).animated {
    transition-delay: 0.3s;
}

.partner-logo:nth-child(4).animated {
    transition-delay: 0.4s;
}

.partner-logo:nth-child(5).animated {
    transition-delay: 0.5s;
}

.partner-logo:nth-child(6).animated {
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    .partner-logo:nth-child(n).animated {
        transition-delay: 0s;
    }
}

/* Contact Info - Simple Fade */
.contact-info-side {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-side.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Fields - Simple Fade Stagger */
.form-group {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group.animated {
    opacity: 1;
    transform: translateY(0);
}

.form-group:nth-child(1).animated {
    transition-delay: 0.1s;
}

.form-group:nth-child(2).animated {
    transition-delay: 0.2s;
}

.form-group:nth-child(3).animated {
    transition-delay: 0.3s;
}

.form-group:nth-child(4).animated {
    transition-delay: 0.4s;
}

.form-group:nth-child(5).animated {
    transition-delay: 0.5s;
}

.form-group:nth-child(6).animated {
    transition-delay: 0.6s;
}

/* Submit Button - Scale Pop */
.submit-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.7s;
}

.submit-btn.animated {
    opacity: 1;
    transform: scale(1);
}

/* Footer Hero - Simple Fade */
.footer-hero {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-hero.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Columns - Simple Fade Stagger */
.footer-column {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column.animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-column:nth-child(1).animated {
    transition-delay: 0.2s;
}

.footer-column:nth-child(2).animated {
    transition-delay: 0.3s;
}

.footer-column:nth-child(3).animated {
    transition-delay: 0.4s;
}

.footer-column:nth-child(4).animated {
    transition-delay: 0.5s;
}

/* Footer Bottom - Fade In */
.footer-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: 0.6s;
}

.footer-bottom.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Remove old styles that are no longer needed */
.section-title-dark,
.highlight-yellow,
.section-description-dark,
.testimonials-grid,
.testimonial-card,
.circle-effect,
.testimonial-header,
.client-avatar,
.client-info,
.star-rating,
.star,
.testimonial-text {
    display: none !important;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 6%;
    }

    .testimonial-bottom-arrow {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 6%;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-display {
        padding-left: 25px;
        border-left-width: 3px;
    }

    .quote-mark {
        font-size: 100px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonial-author-main h3 {
        font-size: 16px;
    }

    .testimonial-author-main p {
        font-size: 13px;
    }

    .testimonial-dots {
        margin-top: 25px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-nav-bottom {
        margin-top: 25px;
        gap: 15px;
    }

    .testimonial-bottom-arrow {
        width: 50px;
        height: 50px;
    }

    .testimonial-bottom-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 5%;
    }

    .testimonial-display {
        padding-left: 20px;
        border-left-width: 2px;
    }

    .quote-mark {
        font-size: 70px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonial-content-main {
        margin-bottom: 30px;
    }

    .testimonial-divider {
        margin-bottom: 25px;
    }

    .testimonial-dots {
        bottom: 25px;
        right: 5%;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .testimonial-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav-arrow svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-nav-arrow.prev {
        left: 5px;
    }

    .testimonial-nav-arrow.next {
        right: 5px;
    }
}

/* About Us Section */
.about-section {
    padding: 60px 5%;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
}



/* Update about-container to accommodate team grid and content */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    transform: translateX(-5%);
}

/* Remove about-image styles and slider styles */


.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    position: relative;
    /* Transition only opacity and vertical displacement to avoid conflict with horizontal scroll */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-section.animated .about-content {
    opacity: 1;
    transform: translateY(0);
}

.about-content::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    /* Slight offset from top/bottom for aesthetics */
    width: 3px;
    background-color: #1f2937;
}

.about-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 4px;
    border-radius: 10px;
    background: black;
}

.highlight-navy {
    color: #EFA710;
}

.highlight-yellow {
    color: #EFA710;
}

.about-text {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    margin-bottom: 25px;
    text-align: justify !important;
    max-width: 80%;
}

.about-values {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: black;
    margin-bottom: 6px;
}

.value-content p {
    font-size: 15px;
    color: white;
    line-height: 1.6;
    max-width: 80%;
    text-align: justify;
}

/* Get in Touch button in About section */
.about-cta-button {
    margin-top: 40px;
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #03445F;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.about-cta-button:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
/* Trusted Partners Section */
.trusted-partners-section {
    padding: 80px 0 0 0;
    background: transparent;
}


.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.partners-header {
    margin-bottom: 60px;
    text-align: left;
}

.partners-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1f2937;
    display: block;
    margin-bottom: 10px;
}

.partners-title {
    font-size: 56px;
    font-weight: 800;
    color: #EFA710;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
    padding-left: 0;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: black;
}

.partners-description {
    font-size: 18px;
    color: #6b7280;
    margin-top: 10px;
    font-weight: 400;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: transparent;
}


.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: start;
}

.contact-info-side {
    color: white;
}

.contact-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: var(--yellow);
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow);
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.9;
    color: white;
}

.detail-value {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.detail-value:hover {
    opacity: 0.8;
}

a.detail-value {
    cursor: pointer;
}

/* Contact Form */
.contact-form-side {
    background: transparent;
    padding: 0px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 0px;
    border-left: 4px solid #EFA710;
    padding-left: 30px;
    margin-left: 0;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    outline: none;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: #EFA710;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #EFA710;
}

.form-group select {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: #03445F;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    background: #EFA710;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

.footer {
    position: relative;
    background: transparent;
    color: white;
    padding: 100px 5% 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-hero {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-bottom: 0;
}

.footer-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    background: black;
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column-title {
    font-size: 20px;
    font-weight: 700;
    color: black;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact p {
    color: white;
    font-size: 24px;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: white;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Entry Animations */
/* Service Cards Animation */
.service-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:nth-child(1).animate {
    transition-delay: 0.1s;
}

.service-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.service-card:nth-child(3).animate {
    transition-delay: 0.3s;
}

.service-card:nth-child(4).animate {
    transition-delay: 0.4s;
}

.service-card:nth-child(5).animate {
    transition-delay: 0.5s;
}



.about-content {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.about-content.animated {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.1s;
}

/* Client Logos Stagger Animation */
.partner-logo {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.partner-logo.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.partner-logo:nth-child(1).animate {
    transition-delay: 0.1s;
}

.partner-logo:nth-child(2).animate {
    transition-delay: 0.2s;
}

.partner-logo:nth-child(3).animate {
    transition-delay: 0.3s;
}

.partner-logo:nth-child(4).animate {
    transition-delay: 0.4s;
}

.partner-logo:nth-child(5).animate {
    transition-delay: 0.5s;
}

.partner-logo:nth-child(6).animate {
    transition-delay: 0.6s;
}

/* Contact Form Fields Animation */
.contact-info-side {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-info-side.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-group.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-group:nth-child(1).animate {
    transition-delay: 0.1s;
}

.form-group:nth-child(2).animate {
    transition-delay: 0.2s;
}

.form-group:nth-child(3).animate {
    transition-delay: 0.3s;
}

.form-group:nth-child(4).animate {
    transition-delay: 0.4s;
}

.form-group:nth-child(5).animate {
    transition-delay: 0.5s;
}

.form-group:nth-child(6).animate {
    transition-delay: 0.6s;
}

.submit-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.7s;
}

.submit-btn.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Columns Stagger Animation */
.footer-hero {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-hero.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-column {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-column.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-column:nth-child(1).animate {
    transition-delay: 0.2s;
}

.footer-column:nth-child(2).animate {
    transition-delay: 0.3s;
}

.footer-column:nth-child(3).animate {
    transition-delay: 0.4s;
}

.footer-column:nth-child(4).animate {
    transition-delay: 0.5s;
}

.footer-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.6s;
}

.footer-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    .about-content {
        text-align: left;
        transform: translateX(0) scale(1);
    }

    .about-content::before {
        display: none;
        /* Hide line on mobile */
    }

    .about-title {
        font-size: 32px;
    }

    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-heading {
        font-size: 28px;
    }

    .footer-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Removed mobile override for .footer-content outside media query */
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 42px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .trusted-partners-section {
        padding: 80px 5%;
    }

    .partners-title {
        font-size: 36px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-section {
        padding: 80px 5%;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-form-side {
        padding: 30px;
    }
}

/* Services Scroll Container - Horizontal Swipe */
.services-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0 40px 0;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-scroll-container::-webkit-scrollbar {
    display: none;
}

.services-cards {
    display: flex;
    gap: 30px;
    padding: 0 5%;
    width: max-content;
}

.service-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
}

/* Optimize Animations for Mobile */
@media (max-width: 768px) {

    /* Remove delay for About Us content on mobile for faster appearance */
    .about-content {
        transition-delay: 0s !important;
    }

    /* Optional: Also speed up the image if it feels slow, though it had no delay */
    .about-image {
        transition-delay: 0s !important;
    }

    /* Ensure title appears immediately too if it had any hidden delay or just to be safe */
    .about-title {
        transition-delay: 0s !important;
    }
}



/* Why Trust Us Cards - Flip Effect */
.trust-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 0 5%;
    width: 100%;
    /* Fix layout constraint */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.trust-card {
    background-color: transparent;
    perspective: 1000px;
    /* Min-height required to maintain size for absolute positioned children */
    min-height: 280px;
    cursor: pointer;
    width: 100%;
    /* Ensure it fills flex basis */

    /* Default Mobile: Full width or 2 per row */
    flex: 1 1 280px;
    max-width: 500px;

    /* Animation FadeIn */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    box-sizing: border-box;
}

.trust-card-front {
    overflow: hidden;
    /* Clip video */
    background-color: white;
    color: black;
}

.card-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

.card-content-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Subtle overlay for text readability */
    padding: 20px;
    border-radius: 12px;
}

/* Force 3 on top, 2 on bottom for Desktop */
@media (min-width: 1024px) {
    .trust-card {
        flex: 0 0 calc(33.333% - 20px);
        /* 3 cards per row exactly, NO SHRINK */
        max-width: none;
    }
}

.trust-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.trust-card:hover .trust-card-inner {
    transform: rotateY(180deg);
}

.trust-card-front,
.trust-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
}

.trust-card-front {
    background-color: transparent;
    color: white;
}

.trust-card-back {
    background-color: #03445F;
    /* Navy Blue */
    color: white;
    transform: rotateY(180deg);
}

/* Content Styling */
.trust-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #EFA710;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    background: white;
    transform: scale(1.1);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    color: inherit;
}

.trust-sub {
    font-size: 12px;
    font-weight: 700;
    color: #EFA710;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.trust-desc {
    font-size: 15px;
    line-height: 1.6;
    color: white;
    /* For back face */
    margin: 0;
}

/* Staggered Animation Delays */
.trust-card:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.4s;
}

.trust-card:nth-child(4) {
    animation-delay: 0.6s;
}

.trust-card:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us Section - New Design */
.why-choose-us-section {
    padding: 100px 5% 120px 5%;
    /* Reduced bottom padding */
    background: transparent;
    position: relative;
    overflow: hidden;
}

.why-choose-us-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0;
    transform: translate(5%, -50px);
}

.why-choose-us-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    color: black;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 20px;
    padding-left: 0;
}

.why-choose-us-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: black;
}

.why-choose-us-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 40px 0;
}

/* Background Dashed Line */
.dashed-line-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.dashed-line-bg svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Cards */
.choose-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    text-align: left;
    max-width: 350px;
    min-height: 300px;
    /* Uniform height */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.choose-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #EFA710;
    /* Default cyan-ish */
}

.choose-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.choose-card p {
    font-size: clamp(14px, 2vw, 16px);
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Highlighted Middle Card */
.choose-card.highlight-card {
    background: black;
    /* Teal/Cyan color from image */
    transform: scale(1.1);
    /* Slightly larger */
    z-index: 2;
    /* On top */
    box-shadow: 0 20px 60px rgba(75, 192, 192, 0.4);
}

.choose-card.highlight-card .choose-icon {
    color: white;
}

.choose-card.highlight-card h3 {
    color: #EFA710;
}

.choose-card.highlight-card p {
    color: #EFA710;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-us-grid {
        flex-wrap: wrap;
        gap: 30px;
        flex-direction: column;
    }

    .choose-card.highlight-card {
        transform: scale(1);
    }

    .dashed-line-bg {
        display: none;
        /* Hide dashed line on mobile/vertical stack */
    }
}



.team-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    padding-left: 0;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 3px;
    border-radius: 10px;
    background: black;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-image-wrapper {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* center image in wrapper */
    transition: transform 0.5s ease;
}


.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: #EFA710;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.team-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}



@media (max-width: 768px) {
    .team-title {
        font-size: 40px;
        text-align: left;
    }

    .team-grid {
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-about {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Keep portrait height for About Us single card */
    .about-card-single .team-image-wrapper {
        height: 450px !important;
    }
}


@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-image-wrapper {
        height: 280px;
    }
}

/* New About Section Team Grid */
/* New About Section Single Card */
.about-card-single {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 550px;
    /* Ensure space for absolutely positioned cards */
}

.team-cards-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 540px;
    /* Match single card height */
    margin: 0 auto;
}

.about-card-single .team-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.8s;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.about-card-single .team-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.about-card-single .team-card.prev {
    opacity: 0;
    visibility: visible;
    transform: translateX(-20px) scale(0.95);
    z-index: 1;
}

.about-card-single .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-card-single .team-image-wrapper {
    height: 440px;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.about-card-single .team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-in-out;
}

.about-card-single .team-card.active .team-image-wrapper img {
    transform: scale(1.1);
    /* Subtle Ken Burns effect */
}



/* Standard animate-on-scroll styles apply to .team-cards-container */

/* About Us Slider Layout */
.about-slider-container {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.horizontal-strip {
    display: flex;
    width: 200vw;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.horizontal-strip>section {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Arrows */
@media (max-width: 1024px) {

    .about-slider-container,
    .slider-wrapper,
    .horizontal-strip,
    .horizontal-strip>section {
        height: auto !important;
        min-height: 100vh;
        overflow: hidden !important;
    }

    .horizontal-strip {
        align-items: flex-start;
        /* alignment at top */
    }
}

.about-slider-container.scroll-locked {
    height: 100vh !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    background: #ffffff;
    overscroll-behavior: contain;
    /* Ensure white background when locked */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(239, 167, 16, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:hover svg {
    fill: #EFA710;
}

.slider-arrow svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

.slider-arrow-left {
    left: 40px;
}

.slider-arrow-right {
    right: 40px;
}

/* Ensure sections fit nicely */
.about-section {
    padding: 80px 0 80px 5% !important;
    margin: 0 !important;
    background: transparent !important;
}

.why-choose-us-section {
    padding: 65px 5% 80px 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.section-divider {
    width: 3px;
    height: 60%;
    background: rgba(0, 0, 0, 0.1);
    align-self: center;
    flex-shrink: 0;
    border-radius: 10px;
    margin-right: -3px;
}