* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;

}

body {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: playfair;
    src: url(Playfair-VariableFont_opsz\,wdth\,wght.ttf);
}

@font-face {
    font-family: title;
    src: url(TitilliumWeb-Black.ttf);
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    overflow-x: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 250px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.loader-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.bubble {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: #102a43;
    animation: bubble-float 1.5s infinite ease-in-out;
}

.bubble-1 {
    animation-delay: 0s;
}

.bubble-2 {
    animation-delay: 0.2s;
}

.bubble-3 {
    animation-delay: 0.4s;
}

.bubble-4 {
    animation-delay: 0.6s;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #102a43;
    letter-spacing: 3px;
    margin-top: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bubble-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* HEADER NAVBAR */

header {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 28px;
    color: #102a43;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #102a43;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #e5ebf4;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #102a43;
    cursor: pointer;
    gap: 10px;
    text-decoration: none;
}
.mobile-order-btn i {
    font-size: 20px;
    overflow: auto;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #102a43;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcfcfc;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.show {
    display: flex;
    transform: translateX(0);
}

.mobile-menu a {
    margin: 20px 0;
    text-decoration: none;
    color: #102a43;
    font-size: 16px;
    font-weight: 600;
}

.mobile-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #e5ebf4;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #102a43;
    gap: 10px;
    text-decoration: none;
    margin: 20px auto;
    max-width: 200px;
    transition: background-color 0.3s ease;
}

.mobile-order-btn:hover {
    background: #d1d9e6;
    color: #102a43;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 3rem;
    color: #102a43;
    cursor: pointer;
}

header.hide-navbar {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

header {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {

    /* Loader Styles */
    .loader-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        overflow-x: hidden;
    }

    .loader-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .loader-logo {
        width: 200px;
        margin-bottom: 30px;
        animation: pulse 2s infinite;
    }

    .loader-animation {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }

    .bubble {
        width: 10px;
        height: 10px;
        margin: 0 10px;
        border-radius: 50%;
        background-color: #102a43;
        animation: bubble-float 1.5s infinite ease-in-out;
    }

    .bubble-1 {
        animation-delay: 0s;
    }

    .bubble-2 {
        animation-delay: 0.2s;
    }

    .bubble-3 {
        animation-delay: 0.4s;
    }

    .bubble-4 {
        animation-delay: 0.6s;
    }

    .loader-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: #102a43;
        letter-spacing: 3px;
        margin-top: 20px;
    }

    header {
        width: 100vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: #fff;
        position: relative;
        z-index: 10;
    }

    .nav-links,
    .order-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
        transform: translateX(0);
    }

    .logo {
        width: 100%;
        height: 100%;
    }

    .logo img {
        height: 30px;
    }
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

.fancy-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.button-wrapper::before,
.button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}



/* Hero Section */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    text-align: center;
    z-index: 1;
    background-image: url(Background.png);
    background-size: cover;
    object-fit: cover;
    overflow-x: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.inflex-bg-text {
    /* font-family: title; */
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #b2c2d6;
    /* text-stroke: 2px #b2c2d6; */
    opacity: 0.3;
    letter-spacing: 50px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero-title {
    font-family: playfair;
    font-size: 3.5vw;
    font-weight: 500;
    margin-bottom: 24px;
    margin-top: 0;
    z-index: 1;
    letter-spacing: 2px;
    color: white;
    transform: translateY(50px);
    opacity: 1;
}

.hero-desc {
    font-size: 18px;
    color: #e9eef5;
    margin-bottom: 40px;
    z-index: 1;
    max-width: 800px;
    letter-spacing: 1.5px;
    transform: translateY(50px);
    opacity: 1;
}

.button-wrapper {
    position: relative;
    display: inline-block;
    transform: translateY(50px);
    opacity: 1;
}

.fancy-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.button-wrapper::before,
.button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}


/* Mobile Menu Toggle Button */
/* Removed .mobile-menu-toggle styles */


@media (max-width: 768px) {

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        user-select: none;
        overflow-x: hidden;
    }

    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 100vh;
        padding: 50px 10px 20px 10px;
        gap: 2rem;
        overflow-x: hidden;
    }

    .hero-title {
        color: white;
        font-size: 1.2rem;
        margin-top: 0px;
        padding: 0 0px;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.2rem;
        padding: 0 0px;
        margin-bottom: 30px;
        width: 100%;
    }

    .inflex-bg-text {
        font-size: 4rem;
        letter-spacing: 20px;
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke: 2px #b2c2d6;
        opacity: 0.3;
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .hero-content {
        width: 100%;
        overflow-x: hidden;
        display: flex;
        justify-content: start;
        align-items: start;
        height: auto;
    }

    .hero-box {
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding: 30px 15px;
        margin: 0 10px;
        max-width: 100%;
        backdrop-filter: blur(5px);
        /* overflow-x: hidden; */
    }

    .button-wrapper {
        position: relative;
        display: inline-block;
    }

    .fancy-button {
        background: white;
        color: #020D3F;
        font-size: 1rem;
        font-weight: bold;
        padding: 20px 60px;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .fancy-button:hover {
        background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
        color: #fff;
    }

    /* Corner lines */
    .button-wrapper::before,
    .button-wrapper::after {
        display: none;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .button-wrapper::before {
        display: none;
        top: -10px;
        left: -10px;
        border-top: 1px solid white;
        border-left: 1px solid white;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper::after {
        display: none;
        bottom: -10px;
        right: -10px;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper:hover::before {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .button-wrapper:hover::after {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

}


/* Feature Cards Section */
.features {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0 4rem 0;
    background-color: #fff;
}

.feature-card {
    background: #fff;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.5);
    /* border-radius: 8px; */
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 320px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.2s;
    border-left: 2px solid #1D3655;
    border-top: 2px solid #1D3655;
}

.feature-icon {
    position: absolute;
    top: -28px;
    left: 24px;
    background: #1D3655;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(34, 58, 95, 0.10);
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    margin-top: 32px;
    font-size: 1.5rem;
    color: #1D3655;
    font-weight: 500;
}

.feature-card p {
    color: #555555;
    font-size: 1rem;
    margin-top: 0.5rem;
}



/* Our History Section */
.history {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.history-image img {
    width: 500px;
    /* border-radius: 8px; */
}

.back-img {
    position: absolute;
    top: 170%;
    z-index: -1;
    left: 38%;
    background-size: cover;
    object-fit: cover;
    background-color: none;
}

.back-img img {
    width: 150px;
    height: 180px;
    background-size: cover;
    object-fit: cover;
}

.history-content {
    max-width: 540px;
}

.history-content h4 {
    color: #8A99A8;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.history-content h2 {
    color: #1D3655;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.history-underline {
    width: 100px;
    height: 20px;
    color: #1D3655;
    /* background: #223A5F; */
    margin-bottom: 1.5rem;
}

.history-content p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}


.button-wrapper-learn {
    position: relative;
    display: inline-block;
}

.learn-more-btn {
    background: #1D3655;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    /* background: linear-gradient(135deg, #23364d 0%, #2c4663 100%); */
    color: #fff;
}

/* Corner lines */
.button-wrapper-learn::before,
.button-wrapper-learn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper-learn::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid #1D3655;
    border-left: 1px solid #1D3655;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper-learn::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid #1D3655;
    border-right: 1px solid #1D3655;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper-learn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper-learn:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

@media (max-width: 768px) {

    /* Responsive Feature Cards Section */
    .features {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin: 2rem 0;
        padding: 0 10px;
        height: 75vh;
        overflow-x: hidden;
    }

    .feature-card {
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        min-height: 150px;
        margin: 0;
        padding: 0px 10px;
        box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.50);
    }

    .feature-icon {
        top: 6px;
        left: 16px;
        padding: 6px;
        z-index: 9;
        position: absolute;
    }

    .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-card h3 {
        font-weight: 700;
        margin-top: 28px;
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }


    /* Responsive Our History Section */
    .history {
        display: flex;
        min-height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px 10px;
        gap: 2rem;
        margin-top: 0px;
    }

    .history-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .history-image img {
        width: 100%;
        /* max-width: 320px; */
        height: auto;
    }

    .back-img {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .back-img img {
        width: 80px;
        height: 90px;
    }

    .history-content {
        max-width: 100%;
        padding: 0 5px;
    }

    .history-content h2 {
        font-size: 2rem;
        font-weight: 400;
    }

    .history-content h4 {
        font-size: 0.9rem;
    }

    .history-underline {
        width: 60px;
        height: 10px;
        margin-bottom: 1rem;
    }

    .history-content p {
        font-size: 1rem;
        line-height: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .button-wrapper-learn {
        width: 100%;
        display: flex;
        justify-content: start;
    }

    .learn-more-btn {
        width: 100%;
        max-width: 200px;
        padding: 16px 0;
        font-size: 0.9rem;
    }

    /* Corner lines */
    .button-wrapper-learn::before,
    .button-wrapper-learn::after {
        display: none;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .button-wrapper-learn::before {
        display: none;
        top: -10px;
        left: -10px;
        border-top: 1px solid #1D3655;
        border-left: 1px solid #1D3655;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper-learn::after {
        display: none;
        bottom: -10px;
        right: 170px;
        border-bottom: 1px solid #1D3655;
        border-right: 1px solid #1D3655;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper-learn:hover::before {
        display: none;
        width: 50%;
        height: 100%;
        opacity: 1;
    }

    .button-wrapper-learn:hover::after {
        display: none;
        width: 50%;
        height: 100%;
        opacity: 1;
    }
}

/* TRUSTED SOURCE */
.trusted-source {
   
    padding: 80px 0px;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.trusted-left {
    flex: 1;
    max-width: 550px;
    margin-left: 100px;
}

.trusted-left h2 {
    font-weight: 400;
    font-size: 2.5rem;
    color: #2d4052;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.trusted-underline {
    color: #2d4052;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.trusted-features {
    display: flex;
    flex-direction: column;
    list-style: disc inside;
    color: #555555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    gap: 1rem;
}

.trusted-right {
    flex: 1.2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}

.trusted-img-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    /* margin-bottom: 24px; */
}

.trusted-img {
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10); */
    /* background: #f5f5f5; */
    object-fit: cover;
}

.trusted-img.small {
    position: relative;
    right: -10%;
    width: 200px;
    height: 200px;
}

.trusted-img.large {
    position: relative;
    right: -25%;
    width: 280px;
    height: 250px;
    z-index: 10;
}

.trusted-img.medium {
    position: relative;
    width: 450px;
    /* height: 180px; */
}

.trusted-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(#2d4052 2px, transparent 2.5px);
    background-size: 16px 16px;
    opacity: 0.5;
    z-index: 0;
}

.trusted-source {
    /* opacity: 0; */
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

@media (max-width: 768px) {

    .trusted-source {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        padding: 10px 10px;
    }

    .trusted-left {
        flex: 1;
        max-width: 100%;
        padding: 0px 5px;
        margin-left: 0px;
    }

    .trusted-left h2 {
        font-weight: 400;
        font-size: 2rem;
        color: #2d4052;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }

    .trusted-underline {
        color: #2d4052;
        font-size: 1.5rem;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .trusted-features {
        display: flex;
        flex-direction: column;
        list-style: disc inside;
        color: #555555;
        margin-bottom: 30px;
        font-size: 1rem;
        gap: 1rem;
    }

    .trusted-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
        margin-top: 2rem;
        margin-bottom: 2rem;

    }

    .trusted-img-row {
        /* width: 100%; */
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        /* gap: 14px; */
        /* margin-bottom: 24px; */
    }

    .trusted-img {
        /* border-radius: 8px; */
        /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10); */
        /* background: #f5f5f5; */
        object-fit: cover;
    }

    .trusted-img.small {
        position: relative;
        right: 0%;
        width: fit-content;
        height: 125px;
    }

    .trusted-img.large {
        position: relative;
        right: 0%;
        width: fit-content;
        height: 125px;
        z-index: 1;
    }

    .trusted-img.medium {
        position: relative;
        width: 230px;
        right: 0%;
        height: 270px;
    }

    .trusted-dots {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 120px;
        height: 80px;
        background-image: radial-gradient(#2d4052 2px, transparent 2.5px);
        background-size: 16px 16px;
        opacity: 0.5;
        z-index: 0;
    }

    .button-wrapper-learn {
        width: 100%;
        display: flex;
        justify-content: start;
    }

    .learn-more-btn {
        width: 100%;
        max-width: 200px;
        padding: 16px 0;
        font-size: 0.9rem;
        overflow: hidden;
    }

}

/* WHY CHOOSE US Section */
.why-choose-us {
    width: 100%;
    /* height: 150vh; */
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
    padding: 60px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.choose-title {
    font-family: playfair;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-align: center;
}

.choose-desc {
    font-size: 1.1rem;
    max-width: 600px;
    text-align: center;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.6;
}

.choose-desc .highlight {
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 8px #2c4663;
}

.choose-underline {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-align: center;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 36px 32px; */
    width: 90%;
    /* height: 100%; */
    max-width: 1200px;
    /* margin: 0 auto; */
}

.choose-card {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    /* border-radius: 18px; */
    box-shadow: 0 4px 24px 0 rgba(30, 40, 80, 0.10);
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.choose-icon {
    font-size: 2.7rem;
    margin-bottom: 18px;
    color: #fff;
    filter: drop-shadow(0 2px 8px #2c4663);
}

.choose-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
}

.choose-card p {
    font-size: 1rem;
    color: #e0e6ed;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
}

@media (max-width: 700px) {
    .why-choose-us {
        padding: 50px 10px;
        margin-top: 10px;
        overflow-y: hidden;
    }

    .choose-title {
        font-size: 2.5rem;
        font-weight: normal;
    }

    .choose-desc {
        font-size: 1rem;
        max-width: 600px;
        text-align: center;
        margin-bottom: 10px;
        color: #ffffff;
        line-height: 1.6;
        font-weight: normal;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 18px 0;
        width: 98%;
    }

    .choose-card {
        height: 250px;
        padding: 20px 10px;
    }
}

/* GLOBAL STATE */
.global-stats {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;
    background: #fff;
    gap: 40px;
}

.global-stats {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.global-stats.animated {
    opacity: 1;
    transform: translateY(0);
}

.global-stats-left,
.global-stats-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.global-stats-left.animated {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.global-stats-right.animated {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.global-stats-numbers>div {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s, transform 0.6s;
}

.global-stats-numbers>div.animated {
    opacity: 1;
    transform: scale(1);
}

.global-stats .big-number {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

.global-stats .big-number.animated {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.global-stats .global-headline,
.global-stats .global-desc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

.global-stats .global-headline.animated {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.global-stats .global-desc.animated {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.global-stats-left {
    /* flex: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dotted-map {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.global-stats-right {
    /* flex: 1; */
    color: #22334a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
}

.big-number {
    font-size: 72px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #22334a;
}

.global-headline {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 18px 0;
    color: #22334a;
}

.global-desc {
    font-size: 16px;
    color: #234;
    margin-bottom: 32px;
    line-height: 1.5;
}

.global-stats-numbers {
    display: flex;
    gap: 40px;
}

.number-label-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number-1 {
    font-size: 32px;
    font-weight: 700;
    color: #22334a;
    margin-bottom: 4px;
}

.stat-label-1 {
    font-size: 14px;
    color: #003459;
    letter-spacing: 1px;
    font-weight: 500;
}

.number-label-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number-2 {
    font-size: 32px;
    font-weight: 700;
    color: #22334a;
    margin-bottom: 4px;
}

.stat-label-2 {
    font-size: 14px;
    color: #003459;
    letter-spacing: 1px;
    font-weight: 500;
}

.number-label-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number-3 {
    font-size: 32px;
    font-weight: 700;
    color: #22334a;
    margin-bottom: 4px;
}

.stat-label-3 {
    font-size: 14px;
    color: #003459;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 18px 0;
        width: 98%;
        height: auto;
    }

    .global-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 32px 0;
    }

    .global-stats-left {
        flex: 2;
        width: 100%;
        justify-content: center;
        margin-bottom: 16px;
    }

    .dotted-map {
        max-width: 100vw;
        width: 100%;
        height: auto;
        opacity: 0.3;
    }

    .global-stats-right {
        flex: 1;
        align-items: start;
        max-width: 95vw;
        text-align: center;
    }

    .big-number {
        font-size: 40px;
    }

    .global-headline {
        font-size: 22px;
    }

    .global-desc {
        font-size: 14px;
    }

    .global-stats-numbers {
        flex-direction: row;
        gap: 16px;
        width: 100%;
        position: relative;
    }
}

@media (max-width: 480px) {

    .global-stats {
        padding: 50px 10px;
        gap: 12px;
    }

    .big-number {
        font-size: 3rem;
        font-weight: 500;
    }

    .global-headline {
        font-size: 2rem;
        font-weight: 500;
    }

    .global-desc {
        font-size: 1rem;
        text-align: left;
    }

    .number-label-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .stat-number-1 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #22334a;
        margin-bottom: 4px;
    }

    .stat-label-1 {
        font-size: 14px;
        color: #003459;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .number-label-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .stat-number-2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #22334a;
        margin-bottom: 4px;
    }

    .stat-label-2 {
        font-size: 14px;
        color: #003459;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .number-label-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .stat-number-3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #22334a;
        margin-bottom: 4px;
    }

    .stat-label-3 {
        font-size: 14px;
        color: #003459;
        letter-spacing: 1px;
        font-weight: 500;
    }
}


/* experience-section */
.experience-section {
    display: flex;
    /* max-width: 1400px; */
    width: 80%;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.experience-left {
    /* flex: 1 1 320px; */
    max-width: 450px;
}

.experience-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1D3655;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.experience-desc {
    color: #003459;
    font-size: 1.1rem;
    margin-bottom: 32px;
}


.button-wrapper .see-more-btn {
    position: relative;
    display: inline-block;
}

.see-more-btn {
    background: #1D3655;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.see-more-btn:hover {
    /* background: linear-gradient(135deg, #23364d 0%, #2c4663 100%); */
    color: #102a43;
}

/* Corner lines */
.button-wrapper .see-more-btn::before,
.button-wrapper .see-more-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper .see-more-btn::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid #1D3655;
    border-left: 1px solid #1D3655;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper .see-more-btn::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid #1D3655;
    border-right: 1px solid #1D3655;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper .see-more-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    color: #fff;
}

.button-wrapper .see-more-btn:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    color: #fff;
}

.experience-products {
    display: flex;
    gap: 32px;
    flex: 2 1 600px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.product-card {
    background: #22395d;
    padding: 20px;
    width: 320px;
    height: 370px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.product-label {
    position: absolute;
    top: 10%;
    left: 38%;
    transform: translate(-50%, -50%);
    background: #456882;
    color: #fff;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.product-card img {
    width: 90%;
    height: 80%;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-top: 55px;
    object-fit: contain;
    background-image: url(product\ background.png);
    background-size: cover;
    /* object-fit: cover; */
}

/* Responsive styles */
@media (max-width: 1100px) {
    .experience-section {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .experience-products {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .experience-section {
        width: 100%;
        height: 190vh;
        padding: 50px 10px;
    }

    .experience-left {
        flex: 1;
        max-width: 100%;
        padding: 0px 5px;
        margin-right: 0px;
        overflow: hidden;
    }

    .product-label {
        position: absolute;
        top: 10%;
        left: 45%;
        transform: translate(-50%, -50%);
        background: #456882;
        color: #fff;
        padding: 8px 24px;
        border-radius: 24px;
        font-size: 1.1rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        white-space: nowrap;
    }

    .experience-products {
        width: 100%;
        height: auto;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        overflow-y: hidden;
        gap: 24px;
        padding: 0px 20px;
    }

    .product-card {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        height: auto;
    }

    .experience-left h2 {
        font-size: 2.5rem;
        font-weight: 500;
        overflow: hidden;
    }
}


/* Client Feedback Section */
.client-feedback-section {
    width: 100%;
    min-height: 550px;
    background: #94b4eb45;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 80px 0 60px 0; */
    margin: 50px auto;
    overflow: hidden;
}

.client-feedback-title {
    font-family: playfair, 'Playfair Display', serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #22334a;
    margin-bottom: 12px;
    text-align: center;
}

.client-feedback-quote-icon {
    font-size: 3rem;
    color: #b2c2d6;
    margin-bottom: 18px;
    text-align: center;
}

.client-feedback-content {
    max-width: 600px;
    margin: 0 auto 24px auto;
    text-align: center;
    z-index: 2;
}

.client-feedback-text {
    font-size: 1.15rem;
    color: #234;
    margin-bottom: 24px;
    line-height: 1.5;
}

.client-feedback-client {
    display: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
}

.client-feedback-avatar.center-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b2c2d6;
    margin-bottom: 8px;
}

.client-feedback-client-name {
    font-weight: 700;
    color: #22334a;
    font-size: 1.1rem;
}

.client-feedback-client-location {
    color: #6a7a8c;
    font-size: 0.95rem;
}

.client-feedback-avatars {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.client-feedback-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b2c2d6;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 8px rgba(34, 58, 95, 0.10);
    pointer-events: auto;
}

.client-feedback-avatar.center-avatar {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.avatar-top-left {
    top: 40px;
    left: 18%;
}

.avatar-top-right {
    top: 40px;
    right: 18%;
}

.avatar-middle-left {
    top: 40%;
    left: 25%;
}

.avatar-middle-right {
    top: 40%;
    right: 25%;
}

.avatar-bottom-left {
    bottom: 40px;
    left: 18%;
}

.avatar-bottom-right {
    bottom: 40px;
    right: 18%;
}

@media (max-width: 900px) {
    .client-feedback-section {
        min-height: 420px;
        padding: 60px 0 40px 0;
    }

    .client-feedback-avatars .client-feedback-avatar {
        width: 48px;
        height: 48px;
    }

    .avatar-top-left,
    .avatar-top-right {
        top: 24px;
    }

    .avatar-bottom-left,
    .avatar-bottom-right {
        bottom: 24px;
    }

    .avatar-middle-left,
    .avatar-middle-right {
        top: 44%;
    }
}

@media (max-width: 600px) {
    .client-feedback-section {
        min-height: 500px;
        padding: 40px 0 30px 0;
        margin: 20px 0px;
    }

    .client-feedback-title {
        font-size: 2.5rem;
    }

    .client-feedback-content {
        max-width: 98vw;
        padding: 0 8px;
    }

    .client-feedback-avatar {
        display: none;
    }

    .client-feedback-avatar.center-avatar {
        display: none;
    }

    .client-feedback-text {
        font-size: 1rem;
        color: #003459;
    }

    .client-feedback-avatars .client-feedback-avatar {
        width: 36px;
        height: 36px;
    }

    .avatar-top-left {
        top: 8px;
        left: 8%;
    }

    .avatar-top-right {
        top: 8px;
        right: 8%;
    }

    .avatar-middle-left {
        top: 38%;
        left: 0%;
    }

    .avatar-middle-right {
        top: 38%;
        right: 0%;
    }

    .avatar-bottom-left {
        bottom: 8px;
        left: 12%;
    }

    .avatar-bottom-right {
        bottom: 8px;
        right: 12%;
    }
}

.project-realize-section {
    width: 102vw;
    min-height: 30vh;
    background-image: url('Section\ \(1\).png');
    background-size: cover;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    padding: 60px 0px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    /* margin-right: 10px; */
}

.project-realize-content {
    max-width: 700px;
    color: #fff;
}

.project-realize-title {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.project-realize-desc {
    font-size: 1.2rem;
    color: #b0b8c9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}


.get-button-wrapper {
    position: relative;
    display: inline-block;
    /* transform: translateY(50px); */
    opacity: 1;
}

.get-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    
}

.get-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.get-button-wrapper::before,
.get-button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.get-button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.get-button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.get-button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.get-button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}


@media (max-width: 900px) {
    .project-realize-section {
        padding: 40px 0 40px 4vw;
        min-height: 35vh;
    }

    .project-realize-title {
        font-size: 2.2rem;
    }

    .project-realize-content {
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .project-realize-section {
        box-sizing: border-box;
        margin: 0;
        width: 100%;
        padding: 40px 20px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: start;
        height: 55vh;
    }
    .get-button {
        background: white;
        color: #020D3F;
        font-size: 1rem;
        font-weight: bold;
        padding: 20px 60px;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
        overflow-y: hidden;
        animation: none;
    }

    


.get-button-wrapper::before,
.get-button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.get-button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.get-button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.get-button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.get-button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 0;
}

    .project-realize-content {
        padding: 0;
        text-align: start;
    }

    .project-realize-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .project-realize-desc {
        font-size: 1rem;
    }

    .get-started-btn {
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .project-realize-section .button-wrapper {
        width: 100%;
        position: relative;
        display: inline-block;
        /* overflow-x: hidden; */
    }

    .fancy-button {
        padding: 15px 40px;
        font-size: 0.9rem;
        overflow-x: hidden;
    }

    .fancy-button:hover {
        background-color: #fff;
        color: #0d1b3d;
    }

    /* Corner lines */
    .button-wrapper::before,
    .button-wrapper::after {
        display: none;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .button-wrapper::before {
        display: none;
        top: -10px;
        left: -10px;
        border-top: 1px solid white;
        border-left: 1px solid white;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper::after {
        display: none;
        bottom: -10px;
        right: -10px;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper:hover::before {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .button-wrapper:hover::after {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }


    /* Corner lines */
    .button-wrapper .see-more-btn::before,
    .button-wrapper .see-more-btn::after {
        display: none;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .button-wrapper .see-more-btn::before {
        display: none;
        top: -10px;
        left: -10px;
        border-top: 1px solid #1D3655;
        border-left: 1px solid #1D3655;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper .see-more-btn::after {
        display: none;
        bottom: -10px;
        right: -10px;
        border-bottom: 1px solid #1D3655;
        border-right: 1px solid #1D3655;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .button-wrapper .see-more-btn:hover::before {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .button-wrapper .see-more-btn:hover::after {
        display: none;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

}

/* Footer Styles */
.footer {
    width: 100vw;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 2;
    min-width: 200px;
    margin-bottom: 24px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 16px;
}

.footer-desc {
    max-width: 500px;
    color: #003459;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials a {
    display: inline-block;
    margin-right: 16px;
    color: #003459;
    font-size: 20px;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #0077b5;
}

.footer-right {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.footer-right h3 {
    font-size: 22px;
    color: #003459;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.footer-contacts {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    color: #003459;
    font-size: 15px;
}

.footer-contacts li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-size: 15px;
}

.footer-contacts i {
    margin-right: 10px;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    margin-top: 24px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #003459;
    text-decoration: none;
    margin: 0 4px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .footer-left,
    .footer-right {
        min-width: 0;
        width: 100%;
    }

    .footer-right {
        margin-top: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 10px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-right h3 {
        font-size: 18px;
    }

    .footer-contacts {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 12px;
    }
}

/* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Animate the hero description */
.hero-desc {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.7s;
}

/* Animate the button */
.button-wrapper {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial state: hidden and moved down */
.feature-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* When in view: visible and moved to original position */
.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Add a staggered delay for each card */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Animation for fade in and slide up */
.fade-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Global Stats Map Animation */
.global-stats .dotted-map {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
}

.global-stats .global-desc {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Experience Section Animations */
.experience-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.experience-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}

.experience-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.experience-products .product-card {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: opacity 0.7s, transform 0.7s;
}

.experience-products .product-card.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.see-more-btn {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.see-more-btn:hover {
    transform: scale(1);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Initial state */
.client-feedback-section .client-feedback-title,
.client-feedback-section .client-feedback-quote-icon,
.client-feedback-section .client-feedback-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s, transform 0.6s;
}

/* Animated state */
.client-feedback-section.animate .client-feedback-title,
.client-feedback-section.animate .client-feedback-quote-icon,
.client-feedback-section.animate .client-feedback-content {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.client-feedback-section.animate .client-feedback-avatars img {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.client-feedback-section.animate .client-feedback-avatars img:nth-child(1) {
    animation-delay: 0.2s;
}

.client-feedback-section.animate .client-feedback-avatars img:nth-child(2) {
    animation-delay: 0.3s;
}

.client-feedback-section.animate .client-feedback-avatars img:nth-child(3) {
    animation-delay: 0.4s;
}

.client-feedback-section.animate .client-feedback-avatars img:nth-child(4) {
    animation-delay: 0.5s;
}

.client-feedback-section.animate .client-feedback-avatars img:nth-child(5) {
    animation-delay: 0.6s;
}

.client-feedback-section.animate .client-feedback-avatars img:nth-child(6) {
    animation-delay: 0.7s;
}

.order-btn i {
    font-size: 20px;
    text-decoration: none;
}

a {
    text-decoration: none;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: none;
}

.whatsapp-btn i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #102a43;
    font-size: 40px;
}