* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poiret One", sans-serif;
}

body,
html {
    height: 100%;
    overflow-x: hidden;
    background: #ffffff;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}


body {
    overflow-y: auto;
}

p {
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0px;
    word-spacing: 8px;
}

.video-section {
    width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* .video-text {
    position: absolute;
    bottom: 30%;
    left: 10%;
    max-width: 600px;
    color: #ffffff;
    z-index: 3;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(6px);
} */

.video-text {
    position: absolute;
    bottom: 30%;
    left: 10%;
    max-width: 600px;
    color: #ffffff;
    z-index: 3;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(6px);

    /* animation setup */
    opacity: 0;
    transform: translateY(80px);
    animation: videoTextEnter 1.2s ease-out forwards;
    animation-delay: 2s;
}

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



.video-text h2 {
    font-weight: 700;
    font-size: 22px;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-section video {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 158, 223, 0.25);
    z-index: 1;
    pointer-events: none;

}

/* top-part */
.carousel {
    width: 100%;
    height: 100vh;
}

.carousel-item::after,
.main-3-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}


.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.carousel-top-part {
    position: absolute;
    top: 5%;
    z-index: 110;
    color: white;
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.top-part-menu {
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 30px;
    text-align: center;

    animation: soft-shake 2.5s infinite ease-in-out;
}


/* Stop animation on hover */
.top-part-menu:hover {
    animation-play-state: paused;
}

/* Subtle shake keyframes */
@keyframes soft-shake {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-10px);
    }

    20% {
        transform: translateX(10px);
    }

    30% {
        transform: translateX(-10px);
    }

    40% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

.top-part-menu h2 {
    font-size: 18px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 17px;
    background-color: white;
    color: black;
    text-align: center;
    margin: auto;
    font-family: "Roboto", sans-serif;
    ;
}

.top-part-about {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: 600;
    gap: 10px;
}

.top-part-about-view {
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 30px;
    text-align: center;
    align-items: center;
}

.top-part-about-view h2 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1;
}


.top-part-about img {
    height: 40px;
}

.top-part-head {
    text-align: center;
}

.top-part-head .flag-img{
    height: 30px;
}

.top-part-head a{
    text-decoration: none;
}

.top-part-head h1 {
    font-size: 50px;
    font-weight: 600;
}

.top-part-head p {
    font-size: 26px;
    font-weight: 600;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    bottom: 46px;
    top: auto;
    border-radius: 49px;
    border-width: 1px;
    border: 1px solid #FFFFFF;
    width: 200px;
    height: 50px;
    justify-content: space-between;
    opacity: 1;
    background: #3a2e294d;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
}




.carousel-control-next {
    right: 50px;
}

.carousel-control-prev {
    left: 50px;
}

.prev-next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 40px;
    margin-left: 6px;
    margin-right: 6px;

    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}


/* PREV button → slide LEFT */
.carousel-control-prev .prev-next-btn {
    animation-name: moveLeft;
}

/* NEXT button → slide RIGHT */
.carousel-control-next .prev-next-btn {
    animation-name: moveRight;
}

.carousel-control-prev .prev-next-btn.next {
    animation-name: moveLeftn;
}

/* NEXT button → slide RIGHT */
.carousel-control-next .prev-next-btn.next {
    animation-name: moveRightn;
}

.carousel-control-prev:hover .prev-next-btn,
.carousel-control-next:hover .prev-next-btn,
.carousel-control-prev:hover .prev-next-btn.next,
.carousel-control-next:hover .prev-next-btn.next {
    animation-play-state: paused;
}


@keyframes moveLeftn {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveRightn {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0.15);
}

.prev-btn-contents,
.next-btn-contents {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
}

.prev-btn-contents {
    text-align: left;

}

.next-btn-contents {
    text-align: right;
}

.prev-btn-contents .contents,
.next-btn-contents .contents {
    font-size: 17px !important;
    font-weight: 600;
    margin-right: 10px;
}

.next-btn-contents .contents {
    margin-left: 10px;
    margin-right: 0;
}

.carousel .carousel-caption {
    bottom: 20%;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.carousel .carousel-caption h5 {
    position: relative;
    font-size: 76px;
    z-index: 2;
    /* text-transform: capitalize; */
}

.carousel .carousel-caption p {
    font-size: 32px;
}

.carousel .bottom-bar {
    position: absolute;
    bottom: 46px;
    left: 0;
    right: 0;
    width: 500px;
    height: 50px;
    border-radius: 49px;
    margin: auto;
    background: linear-gradient(180deg, #343a40, #465461);
    display: flex;
    justify-content: space-between;
    color: white;
}

.carousel .bottom-bar .bottom-bar-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    /* optional spacing from edges */
}


.carousel .bottom-bar span {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.carousel .bottom-bar span p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

.top-part-menu {
    display: flex;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
}

.top-part-menu h2 {
    font-size: 18px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 17px;
    background-color: white;
    color: black;
    margin: auto;
}

/* Dropdown styling */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 10px;
}

.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 15px;
}

.dropdown-menu .dropdown-item:hover {
    background: #00000000;
    color: #aaabb9;
}

.dropdown-toggle::after {
    display: none;
}



/* MAIN HERO */
.main-2-hero {
    position: relative;
    /* background-image: url('/images/business.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: rgba(253, 245, 230, 1);
    z-index: 1;
}



.main-2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.main-2-hero>* {
    position: relative;
    z-index: 2;
}


.main-2-hero-carousel {
    width: 100%;
    height: 100%;
}

.main-2-hero-carousel .owl-stage-outer,
.main-2-hero-carousel .owl-stage,
.main-2-hero-carousel .owl-item {
    height: 100%;
}

.main-2-hero-slide {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 100%;
}

.main-2-container {
    margin: auto;
    display: flex;
    position: relative;
    padding: 5%;
}

.main-2-left h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: rgba(253, 245, 230, 1);
}

.main-2-subtext {
    font-size: 18px;
    color: rgba(253, 245, 230, 1);
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.main-2-dots {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.main-2-dots span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #b8b3a5;
    opacity: 0.8;

    cursor: pointer;
    transition: all 0.3s ease;
}

.main-2-dots .dot-active {
    background: rgba(253, 245, 230, 1) !important;
    opacity: 1 !important;
    border: 2px solid #dcd6c8;
}

.main-2-dots span:hover {
    opacity: 1;
    transform: scale(1.1);
}

.main-2-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border: 1px solid #dcd6c8;
    border-radius: 30px;
    color: rgba(253, 245, 230, 1);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    font-weight: 400;
    transition:
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.35s ease;
}

.main-2-btn span {
    /* width: 28px;
    height: 28px; */
    border-radius: 50%;
    /* background: #dcd6c8; */
    color: #1b262c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.main-2-btn span img {
    height: 36px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-2-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-right: 100px;
    /* increases button width smoothly */
}

.main-2-btn:hover span img {
    transform: translateX(80px);
    /* move icon right */
}

/* .main-2-btn span img {
    height: 36px;
}

.main-2-btn:hover {
    background: rgba(255, 255, 255, 0.08);
} */

.main-2-house {
    position: absolute;
    top: 8%;
    width: 100%;
    max-width: 800px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

.main-2-bottom-text {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 380px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(253, 245, 230, 1);
    text-align: left;
    font-weight: 400;
    width: 300px;
}


/* animation */
.main-2-hero {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.main-2-hero.show {
    opacity: 1;
    transform: translateY(0);
}


/* Animate inner elements */
.main-2-left h1,
.main-2-subtext,
.main-2-dots,
.main-2-btn,
.main-2-house,
.main-2-bottom-text {
    opacity: 0;
    transform: translateY(30px);
}

/* Staggered animation */
.main-2-hero.show .main-2-left h1 {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

.main-2-hero.show .main-2-subtext {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.7s;
}

.main-2-hero.show .main-2-dots {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1s;
}

.main-2-hero.show .main-2-btn {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.3s;
}

.main-2-hero.show .main-2-house {
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 1.6s;
}

.main-2-hero.show .main-2-bottom-text {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.9s;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== MAIN 3 HERO ===== */
.main-3-hero {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    /* top: -5%; */
}

/* Background */
.main-3-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-3-card {
    position: absolute;
    /* top: 12%; */
    bottom: 20px;
    left: 12%;
    /* background: #fff; */
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    /* width: 620px; */
    z-index: 2;
    background-color: white;
}

.main-3-card-left h2 {
    font-weight: 400;
    line-height: 1.2;
    font-size: 32px;
}

.main-3-card-left p {
    font-size: 14px;
    color: #000000;
    margin-top: 24px;
    font-weight: 400;
}

.main-3-card-right {
    position: relative;
}

.main-3-sub-card {
    display: none;
}



/* Right image */
.main-3-video {
    position: relative;
    width: 300px;
    height: 190px;
    border-radius: 18px;
    overflow: hidden;
}

.main-3-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-3-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 26px;
    color: #fff;
    left: -12px;
    display: none;
    /* background: rgba(0, 0, 0, 0.3); */
}

.main-3-play img {
    height: 30px;
}

.main-3-tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
}

.main-3-tags span {
    padding: 4px 40px;
    border: 1px solid #000000;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}

.main-3-right-text {
    position: absolute;
    top: 14%;
    right: 160px;
    color: #fff;
    z-index: 2;
}

.main-3-right-text.mob {
    display: none;
}

.main-3-right-text h1 {
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2;
}

.main-3-mission {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding: 2px 2px 2px 8px; */
    padding: 14px 26px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    /* font-size: 18px; */
    font-size: 20px;
    font-weight: 400;
    transition:
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.35s ease;
}

.main-3-mission span {
    /* background: white; */
    border-radius: 50%;
    color: black;
    text-align: center;
    align-items: center;
    padding: 0;
}

.main-3-mission span img {
    height: 36px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-3-mission:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-right: 60px;
    /* increases button width smoothly */
}

.main-3-mission:hover span img {
    transform: translateX(55px);
    /* move icon right */
}


.main-3-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(50, 58, 65, 1);
    padding: 14px 22px;
    border-radius: 30px 0 0 0;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 26px;
    min-width: 320px;
    flex-direction: column;
    gap: 15px;
}

.main-3-bottom-text,
.main-3-bottom-input {
    flex: 1;
}

.main-3-bottom-text {
    display: flex;
    align-items: center;
}

.main-3-bottom-input {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: white;
    min-width: 250px;
    border-radius: 10px;
    padding: 4px 10px;
}

.main-3-bottom-input img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
}

.main-3-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* animation */
/* ===== MAIN-3 OUTSIDE-IN ANIMATION ===== */

/* Background always visible */
.main-3-bg {
    opacity: 1;
}

/* INITIAL: content OUTSIDE viewport */
.main-3-card {
    opacity: 0;
    transform: translateX(-120px);
}

.main-3-right-text {
    opacity: 0;
    transform: translateX(120px);
}

.main-3-bottom {
    opacity: 0;
    transform: translateY(120px);
}

/* ACTIVE STATE */
.main-3-hero.show .main-3-card,
.main-3-hero.show .main-3-right-text,
.main-3-hero.show .main-3-bottom {
    opacity: 1;
    transform: translate(0);
}

/* FAST smooth motion */
.main-3-card {
    transition: transform 0.45s ease-out, opacity 0.35s ease;
}

.main-3-right-text {
    transition: transform 0.45s ease-out, opacity 0.35s ease;
    transition-delay: 0.12s;
}

.main-3-bottom {
    transition: transform 0.4s ease-out, opacity 0.3s ease;
    transition-delay: 0.22s;
}



/* HEADER */
.section-1-header {
    font-weight: 400;
    text-align: center;
    width: 70%;
    margin: 40px auto;
}

.section-1-header h1 {
    font-size: 34px;
    margin-bottom: 12px;
}

.section-1-header p {
    font-size: 16px;
    line-height: 1.6;
}

/* SECTION 1 */
.section-1 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.section-1-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-1-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-1-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
}

.section-1-icon {
    background: rgba(255, 255, 255, 0.3);
    padding: 6px;
    border-radius: 50%;
}

.section-1-label-left {
    top: 35%;
    left: 10%;
}

.section-1-label-right {
    top: 30%;
    right: 12%;
}

.section-1-card {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    padding: 14px;
    border-radius: 20px;
    text-align: center;
    width: 280px;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.section-1-card.animate {
    animation: cardFloat 0.6s ease;
}

@keyframes cardFloat {
    0% {
        transform: translateX(-50%) translateY(30px) scale(0.94);
        opacity: 0.6;
    }

    60% {
        transform: translateX(-50%) translateY(-12px) scale(1.04);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.section-1-card img {
    width: 100%;
    border-radius: 14px;
}

.section-1-card p {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}

.section-1-tabs {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
}

.section-1-tabs button {
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-1-tabs button.active {
    background: #fff;
    color: #000;
}

/* animation */
/* ===== SECTION 1 HEADER ANIMATION ===== */

.section-1-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 3.2s ease;
}

.section-1-bg.active {
    opacity: 1;
    transform: scale(1);
}

.section-1-header {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 5;
}

.section-1-header.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BACKGROUND SLIDE ANIMATION ===== */
/* ===== FAKE SLIDE EFFECT ===== */

.section-1-bg {
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.section-1-bg.slide-out {
    opacity: 0;
    transform: translateX(-40px) scale(1.02);
}

.section-1-bg.slide-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}




/* SECTION 2 */
.section-2 {
    padding: 40px 0;
    background: #fff;
}

.section-2-wrapper {
    max-width: 96%;
    margin: auto;
}

.section-2-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.section-2-gif {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

.section-2-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 80px;
}

.section-2-title {
    font-size: 72px;
    letter-spacing: 14px;
    font-weight: 500;
    margin-bottom: 14px;
}

.section-2-text {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.section-2-btn {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: #fff;
    color: #000;
    border-radius: 40px 0 0 0;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 26px;
    transition: all 0.3s ease;
}

.section-2-btn img {
    width: 34px;
    height: 34px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.section-2-btn:hover {
    transform: translateX(4px);
}

/* SECTION 3 */
.section-3-wrapper {
    max-width: 96%;
    height: 100%;
    margin: auto;
    padding: 30px 0px;
    position: relative;
}

.section-3-pill-carousel .pill {
    background: #000;
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    display: inline-block;
    max-width: 180px;
}

.section-3-pill-carousel .owl-stage {
    display: flex !important;
    align-items: center;
}



.section-3-contact-btn {
    position: absolute;
    right: 0%;
    border: 1px solid #473e3e00;
    border-radius: 50px;
    padding: 6px 22px;
    background: #fff;
    font-size: 14px;
    box-shadow: 0 0 4px 0px #00000014;
}

.section-3-content {
    display: flex;
    gap: 50px;
}

.section-3-left {
    width: 60%;
}

.section-3-card-carousel .section-3-card-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 110 !important;
    padding-left: 0;
    margin-top: 30px;
}

.section-3-owl {
    z-index: 110;
}


.section-3-card-carousel {
    position: relative;
}

.section-3-card-carousel .owl-nav {
    position: absolute;
    top: 60%;
    left: -12px;
    right: -12px;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
}

.section-3-card-carousel .owl-nav button {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff !important;
    transition: transform 0.2s;
}

.section-3-card-carousel .owl-nav button:hover {
    transform: scale(1.1);
}

.section-3-pill-carousel {
    z-index: 1 !important;
    max-width: 80%;
}

.section-3-card-carousel img {
    width: 100%;
    height: 120px !important;
    object-fit: cover;
}

.section-3-card-label {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 1);
    padding: 6px 0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.section-3-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-top: 30px;
}

.section-3-title.web .tagline-sec-3 {
    position: relative;
    width: 75%;
    font-size: 30px;
    /* width: 415px; */
    display: block;
    margin-top: 15px;
}

.section-3-title.phone,
.section-3-main-image.phone {
    display: none;
}

.section-3-title.phone .section-3-dynamic-word {
    line-height: 1.5;
    font-size: 32px;
}

.section-3-title.phone .tagline-sec-3 {
    position: relative;
    width: 66%;
    font-size: 18px;
    /* width: 415px; */
    display: block;
    margin-top: 15px;
    font-weight: 500;
}


.section-3-desc {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-top: 15px;
    max-width: 420px;
}

.section-3-desc2 {
    font-size: 14px;
    font-weight: 600;
    max-width: 70%;
    padding: 20px 0;
}

.section-3-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: 420px;
}

.section-3-tag {
    border: 1px solid #ccc;
    border-radius: 50px;
    color: #333;
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 900;
}

.section-3-right {
    width: 55%;
    position: absolute;
    left: 45%;
    top: 2%;
    z-index: 100;
}

.section-3-main-image {
    width: 100%;
    height: 600px;
    border-radius: 24px;
}

.section-3-image-label {
    position: absolute;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-3-label-top {
    display: none;
    top: 45%;
    right: 10%;
}

.section-3-label-bottom {
    display: none;
    bottom: 40%;
    left: 30%;
    transform: translateX(-50%);
}

.owl-nav,
.owl-dots {
    display: none;
}

/* animation */

/* INITIAL STATE - hide by default */
.section-3-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WHEN ACTIVE */
.section-3-animate.slide-in {
    opacity: 1;
    transform: translateY(0);
}

/* WHEN LEAVING */
.section-3-animate.slide-out {
    opacity: 0;
    transform: translateY(50px);
}

@media (min-width:1400px) {
    .main-2-hero {
        min-height: 100vh;
    }

    .main-2-subtext {
        font-size: 30px;
    }

    .main-2-btn {
        font-size: 30px;
    }

    .main-2-bottom-text {
        width: 600px;
        font-size: 30px;
    }


    .main-3-card {
        left: 10%;
    }

    .main-3-mission {
        font-size: 30px;
    }

    .main-3-card-left h2 {
        font-size: 30px;
    }

    .main-3-card-left p {
        font-size: 20px;
    }

    .main-3-video {
        width: 370px;
        height: 230px;
    }

    .main-3-tags span {
        font-size: 20px;
    }


    .section-1-header h1 {
        font-size: 40px;
        padding: 20px 0;
    }

    .section-1-header p {
        font-size: 20px;
        padding: 10px 0;
    }

    .section-2-text {
        font-size: 20px;
        max-width: 900px;
    }

    .section-3-main-image {
        height: 800px;
    }

    .section-3-pill-carousel .pill {
        padding: 16px 26px;
        font-size: 20px;
    }

    .section-3-card-carousel img {
        height: 166px !important;
    }

    .section-3-card-label {
        font-size: 16px;
    }

    .section-3-desc {
        max-width: 600px;
        font-size: 24px;
    }

    .section-3-tags {
        max-width: 500px;
    }

    .section-3-tag {
        font-size: 24px;
    }

    .section-3-desc2 {
        font-size: 15px;
        padding: 30px 0;
    }

    .section-3-contact-btn {
        font-size: 24px;
        padding: 4px 22px;
    }

    .section-3-image-label {
        font-size: 20px;
    }

    .section-3-card-carousel .section-3-card-item {
        margin-top: 36px;
    }
}

@media (min-width:1700px) {
    .main-2-bottom-text {
        right: 10%;
    }

    .section-3-desc2 {
        font-size: 16px;
    }

    .section-3-contact-btn {
        padding: 4px 40px;
    }

    .top-part-menu h2 {
        font-size: 26px;
        padding: 8px 20px;
        border-radius: 28px;
    }

    .top-part-about-view h2 {
        font-size: 26px;
        text-align: center;
        margin-top: 16px;
    }

    .top-part-menu {
        padding: 10px 30px;
        border-radius: 40px;
    }

    .top-part-about img {
        height: 60px;
    }

    .main-3-card-left h2 {
        font-size: 40px;
    }

    .main-3-card-left p {
        font-size: 24px;
    }

    .main-3-video {
        width: 400px;
        height: 250px;
    }

    .main-3-play {
        left: -12px;
    }

    .main-3-play img {
        height: 50px;
    }

    .main-3-tags span {
        font-size: 24px;
    }
}


@media (min-width: 2000px) {
    .top-part-head h1 {
        font-size: 100px;
    }

    .top-part-head p {
        font-size: 50px;
    }

    .section-1-header h1 {
        font-size: 60px;
    }

    .section-1-header p {
        font-size: 40px;
    }

    .top-part-about-view h2 {
        font-size: 30px;
    }

    .top-part-about-view {
        padding: 12px 20px;
        border-radius: 50px;
    }

    .carousel .carousel-caption h5 {
        font-size: 100px;
    }

    .carousel .carousel-caption p {
        font-size: 50px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 300px;
        height: 80px;
    }

    .prev-next-btn {
        width: 62px;
        height: 62px;
    }

    .prev-btn-contents,
    .next-btn-contents {
        font-size: 36px;
        gap: 10px;
    }

    .prev-btn-contents .contents,
    .next-btn-contents .contents {
        font-size: 26px !important;
    }

    .carousel .bottom-bar {
        width: 766px;
        height: 80px;
    }

    .carousel .bottom-bar span p {
        font-size: 30px;
    }

    .main-2-hero {
        min-height: 100vh;
    }

    .main-2-left h1 {
        font-size: 90px;
    }

    .main-2-subtext {
        font-size: 40px;
    }

    .main-2-dots span {
        width: 50px;
        height: 50px;
    }

    .main-2-btn {
        gap: 20px;
        padding: 14px 26px;
        border-radius: 44px;
        font-size: 40px;
    }

    .main-2-btn span img {
        height: 60px;
    }

    .main-2-house {
        top: 2%;
        max-width: 1200px;
    }

    .main-2-bottom-text {
        bottom: 80px;
        font-size: 40px;
        width: 600px;
    }


    .main-3-card {
        /* top: 12%; */
        left: 10%;
        /* width: 100%; */
    }

    .main-3-card-left h2 {
        font-size: 60px;
    }

    .main-3-card-left p {
        font-size: 30px;
    }

    .main-3-right-text h1 {
        font-size: 60px;
    }

    .main-3-mission {
        font-size: 40px;
    }

    .main-3-mission span img {
        height: 46px;
    }

    .main-3-video {
        width: 450px;
        height: 320px;
    }

    .main-3-play {
        left: -18px;
    }

    .main-3-play img {
        height: 50px;
    }

    .main-3-tags span {
        border-radius: 30px;
        font-size: 30px;
    }

    .section-1-card {
        width: 500px;
        padding: 25px;
        bottom: 150px;
    }

    .section-1-card p {
        font-size: 30px;
    }

    .section-1-tabs button {
        font-size: 30px;
        padding: 12px 60px;
    }

    .section-2-text {
        font-size: 30px;
        max-width: 1000px;
        font-weight: 400;
    }

    .section-2-btn {
        font-size: 40px;
    }

    .section-3-main-image {
        height: 1200px !important;
    }

    .section-3-pill-carousel .pill {
        padding: 20px 26px;
        font-size: 30px;
        margin-top: 25px;
    }

    .section-3-card-carousel .section-3-card-item {
        margin-top: 54px;
    }

    .section-3-card-carousel img {
        height: 240px !important;
    }

    .section-3-card-label {
        font-size: 26px;
    }

    .section-3-title {
        font-size: 60px;
        letter-spacing: 10px;
        margin-top: 50px;
    }

    .section-3-desc {
        max-width: 70%;
        font-size: 40px;
        margin-top: 40px;
    }

    .section-3-tags {
        max-width: 60%;
        margin-top: 30px;
    }

    .section-3-tag {
        font-size: 40px;
        padding: 10px 40px;
    }

    .section-3-desc2 {
        font-size: 24px;
    }

    .section-3-contact-btn {
        font-size: 40px;
        padding: 4px 22px;
    }

    .section-3-image-label {
        font-size: 34px;
    }

    .section-3-label-top {
        top: 32%;
    }
}


@media (min-width:2200px) {
    .main-3-card-left h2 {
        font-size: 70px;
    }

    .main-3-card-left p {
        font-size: 36px;
    }

    .main-3-video {
        width: 500px;
        height: 400px;
    }

    .main-3-play {
        left: -25px;
    }

    .main-3-play img {
        height: 60px;
    }

    .main-3-tags span {
        border-radius: 40px;
        font-size: 34px;
    }
}

@media (max-width:1400px) {
    .main-2-hero {
        height: 100vh;
    }
    .video-text{
        bottom: 20%;
        left: 5%;
        max-width: 500px;
    }
    .video-text h2 {
        font-size: 18px;
    }
}

@media (max-width:1200px) {
    .main-3-card {
        left: 8%;
    }

    .main-3-card-left h2 {
        font-size: 26px;
    }

    .main-3-card-left p {
        margin-top: 24px;
    }

    .main-3-video {
        width: 250px;
        height: 160px;
    }

    .main-3-tags span {
        padding: 2px 30px;
        font-size: 14px;
    }
}

@media (max-width:1024px) {
    .video-text{
        max-width: 400px;
    }
    .video-text h2 {
        font-size: 16px;
    }

    .top-part-menu h2 {
        font-size: 16px;
    }

    .top-part-about img {
        height: 30px;
    }

    .top-part-about-view h2 {
        font-size: 16px;
        margin-top: 2%;
    }

    .carousel .carousel-caption {
        bottom: 30%;
    }

    .carousel .carousel-caption h5 {
        font-size: 40px;
    }

    .carousel .carousel-caption p {
        font-size: 24px;
    }

    .carousel .bottom-bar {
        bottom: 15%;
        width: 400px;
    }

    .carousel .bottom-bar span p {
        font-size: 14px;
    }

    .prev-btn-contents .contents,
    .next-btn-contents .contents {
        font-size: 12px !important;
    }

    .main-2-hero {
        height: 72vh !important;
    }

    .main-2-left h1 {
        font-size: 30px;
    }

    .main-2-subtext {
        font-size: 16px;
    }

    .main-2-dots span {
        width: 20px;
        height: 20px;

    }

    .main-2-btn {
        padding: 2px 2px 2px 8px;
        font-size: 14px;
    }



    .main-3-mission {
        padding: 2px 2px 2px 8px;
        font-size: 14px;
    }

    .main-2-btn span img,
    .main-3-mission span img {
        height: 24px;
    }

    .main-2-house {
        max-width: 450px;
    }

    .main-2-bottom-text {
        bottom: 10%;
        right: 8%;
        font-size: 16px;
        width: 250px;
    }

    .main-3-card {
        left: 4%;
    }

    .main-3-card-left h2 {
        font-size: 20px;
    }

    .main-3-card-left p {
        margin-top: 10px;
    }

    .main-3-video {
        width: 240px;
        height: 130px;
    }

    .main-3-play img {
        height: 25px;
    }

    .main-3-right-text h1 {
        font-size: 30px;
    }

    .main-3-tags span {
        padding: 1px 20px;
    }

    .section-3-title {
        font-size: 30px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 160px;
    }

    .section-3-desc {
        font-size: 16px;
        max-width: 70%;
    }

    .section-3-tags {
        max-width: 60%;
    }


    .section-3-label-top {
        top: 34%;
    }
}

@media (max-width:900px) {
    .main-2-hero {
        padding: 80px 50px;
    }

    .main-2-house {
        max-width: 430px;
    }

    .main-3-card {
        top: 8%;
    }

    .main-3-video {
        width: 180px;
        height: 110px;
    }

    .main-3-play {
        top: -20%;
    }

    .main-3-play img {
        height: 20px;
    }

    .main-3-tags span {
        padding: 1px 8px;
        font-size: 12px;
    }

    .main-3-right-text {
        right: 40%
    }

    .main-3-right-text h1 {
        font-size: 24px;
    }

    .main-3-mission {
        font-size: 16px;
    }

    .main-3-right-text.web {
        display: none;
    }

    .main-3-right-text.mob {
        display: block;
    }

    .main-3-bottom {
        font-size: 18px;
        min-width: 200px;
    }

    .main-3-bottom-input {
        min-width: 130px;
    }

    .section-3-main-image {
        height: 500px;
    }

    .section-3-contact-btn {
        padding: 6px 24px;
        font-size: 10px;
    }

    .section-3-pill-carousel .pill {
        padding: 6px 26px;
    }

    .section-3-card-carousel img {
        height: 100px !important;
    }

    .section-3-card-carousel .section-3-card-item {
        margin-top: 16px;
    }

    .section-3-label-top {
        top: 32%;
    }

    .section-3-image-label {
        font-size: 12px;
    }

    .section-3-title {
        font-size: 26px;
    }

    .section-3-desc {
        font-size: 14px;
        max-width: 70%;
    }

    .main-3-card {
        display: none;
    }

    .main-3-sub-card {
        display: block;
        /* position: relative; */
        /* top: 12%; */
        /* left: 12%; */
        border-radius: 30px;
        padding: 40px;
        display: flex;
        gap: 40px;
        z-index: 2;
        width: 100%;
        justify-content: center;
    }

    .main-3-sub-left h2 {
        font-weight: 400;
        line-height: 1.2;
        font-size: 32px;
    }

    .main-3-sub-left p {
        font-size: 14px;
        color: #000000;
        margin-top: 24px;
        font-weight: 400;
    }

    .main-3-sub-right {
        position: relative;
    }

    /* Right image */
    .main-3-sub-video {
        position: relative;
        width: 300px;
        height: 190px;
        border-radius: 18px;
        overflow: hidden;
    }

    .main-3-sub-video img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-3-sub-play {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        left: -12px;
    }

    .main-3-sub-play img {
        height: 30px;
    }

    .main-3-sub-tags {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        justify-content: space-between;
    }

    .main-3-sub-tags span {
        padding: 4px 40px;
        border: 1px solid #000000;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 400;
    }

}


/* @media (max-width:800px){
   .main-3-card{
    display: none;
   }
} */

@media (max-width:768px) {
    .video-text{
        bottom: 0%;
        padding:  0px;
        max-width: 100%;
    }
    .video-text h2{
        font-size: 14px;
    }
    .top-part-head h1 {
        font-size: 40px;
    }

    .top-part-head p {
        font-size: 18px;
    }

    .carousel .bottom-bar {
        width: 300px;
    }

    .carousel .bottom-bar .bottom-bar-text {
        padding: 0 10px;
    }

    .carousel .bottom-bar span img {
        height: 20px;
    }

    .carousel .bottom-bar span p {
        font-size: 12px;
    }

    .main-2-hero {
        height: 86vh !important;
        padding: 30px;
    }

    .main-2-left h1 {
        font-size: 24px;
    }

    .main-2-subtext {
        font-size: 14px;
    }

    .main-2-dots span {
        width: 15px;
        height: 15px;
    }

    .main-2-bottom-text {
        right: 10%;
        font-size: 14px;
        width: 70%;
    }

    .main-3-right-text.mob {
        margin-left: 4%;
    }

    .main-3-right-text h1 {
        font-size: 22px;
    }

    .main-3-mission {
        margin-top: 10px;
        padding: 0px 4px
    }

    .section-1-header {
        width: 80%;
        margin: 20px auto;
    }

    .section-1-header h1 {
        font-size: 24px;
        font-weight: 700;
    }

    p {
        font-weight: 600 !important;
        font-size: 14px !important;
    }

    .section-1-card {
        bottom: 100px;
        padding: 8px;
        width: 160px;
    }

    .section-1-card p {
        margin-top: 2px;
        font-size: 12px;
        word-spacing: 0;
        margin-bottom: 0;
    }

    .section-1-tabs {
        bottom: 40px;
        position: absolute;
        bottom: 40px;
        left: 0%;
        right: 0;
        display: block;
        /* gap: 18px; */
        margin: auto;
        width: fit-content;
        transform: translateX(0%);
    }

    .section-1-tabs button {
        padding: 6px 12px;
    }

    .section-2-title {
        font-size: 30px;
    }

    .section-2-text {
        font-size: 12px;
    }

    .section-2-btn {
        font-size: 16px;
    }

    .section-3-right {
        position: relative;
    }

    .section-3-content {
        flex-direction: column;
        gap: 10px;
    }

    .section-3-title.web,
    .section-3-main-image.web,
    .section-3-right {
        display: none;
    }

    .section-3-title.phone,
    .section-3-main-image.phone {
        display: block;
        position: relative;
    }

    .section-3-contact-btn.new {
        padding: 8px 48px;
        font-size: 14px;
        position: absolute;
        top: 3%;
    }

    .section-3-left {
        width: 100%;
    }

    .section-3-pill-carousel {
        max-width: 100%;
    }

    .section-3-tags {
        max-width: 40%;
    }

    .section-3-main-image.phone img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding-top: 20px;
    }

    .section-3-main-image {
        height: 100%;
    }

    .section-3-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .section-3-phone-text {
        margin-top: -14%;
    }

    .main-3-sub-left h2 {
        font-size: 26px;
        font-weight: 700;
    }
    .section-3-card-carousel .owl-nav{
        left: 0;
        right: 0;
    }
}


@media (max-width: 700px) {

    .main-3-sub-video {
        height: 145px;
    }

    .main-3-sub-play {
        left: -16px;
        top: -16%;
    }

    .section-3-contact-btn.new {
        padding: 8px 36px;
    }
}

@media (max-width:600px) {
    .main-2-container {
        flex-direction: column;
    }

    .main-2-house {
        max-width: 430px;
        position: relative;
    }

    .main-2-hero {
        height: 90vh !important;
    }

    .main-3-sub-card {
        flex-direction: column;
        align-items: center;
        padding: 40px 5% 20px;
        text-align: center;
        gap: 10px;
    }

    .main-3-sub-left h2 {
        font-size: 26px;
        text-align: center;
        font-weight: 600;
    }


    .section-3-tags {
        max-width: 60%;
    }

    .main-3-bg img {
        width: 100%;
        height: 100%;
        min-height: 60vh;
        object-fit: cover;
    }

    .section-3-contact-btn.new {
        padding: 5px 25px;
    }
}

@media (max-width:500px) {
    .top-part-head h1 {
        font-size: 30px;
    }

    .top-part-head p {
        font-size: 12px;
    }

    .top-part-menu h2 {
        font-size: 12px;
    }

    .top-part-menu {
        padding: 2px 10px;
    }

    .top-part-menu img {
        width: 22px;
    }

    .section-3-tags {
        max-width: 65%;
    }

    .carousel-top-part {
        padding: 0 15px;
    }

    .top-part-menu h2 {
        padding: 2px 6px;
        margin-top: 0;
    }

    .top-part-about img {
        height: 20px;
    }

    .top-part-about-view h2 {
        font-size: 12px;
        margin-top: 2%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 150px !important;
        height: 34px;
        padding: 2px;
    }

    .carousel-control-prev {
        left: 10px;
        width: 120px;
    }

    .carousel-control-next {
        right: 10px;
        width: 120px;
    }

    .prev-next-btn {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        margin-left: 2px;
        margin-right: 2px;
    }

    .prev-btn-contents,
    .next-btn-contents {
        font-size: 12px;
    }

    .prev-btn-contents .contents,
    .next-btn-contents .contents {
        font-size: 12px !important;
    }

    .main-2-hero {
        height: 85vh !important;
        padding: 20px;
    }

    .main-2-bottom-text {}

    .main-2-house {
        height: 310px;
    }

    .section-1-header h1 {
        font-size: 20px;
    }

    .section-1-header p {
        font-size: 10px;
    }

    .section-3-title {
        font-size: 18px;
    }

    .section-3-contact-btn.new {
        padding: 5px 19px;
        font-size: 12px;
    }

}

@media (max-width: 430px) {
    .section-3-tags {
        max-width: 85%;
    }
}

@media (max-width:400px) {
    .section-3-phone-text {
        margin-top: -16%;
    }

    .section-3-contact-btn.new {
        padding: 2px 14px;
        font-size: 12px;
        top: 5%;
    }
}

@media (max-width:330px) {
    .section-3-contact-btn.new {
        padding: 2px 8px;
    }
}

.main-footer {
    background: #202b38;
    color: #ffffff;
    padding: 70px 0 40px;
    font-family: "Inter", sans-serif;
}

.footer-container {
    max-width: 1400px;
    color: white;
}

/* TOP SECTION */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;

}

.footer-col {
    min-width: 180px;
}

.footer-col h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    opacity: 0.85;
    color: white;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    opacity: 0.85;
    color: white;
    font-family: "Inter", sans-serif;
}

/* DIVIDER */
.footer-divider {
    margin: 50px 0 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* BOTTOM SECTION */
.footer-bottom p {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: white !important;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #f5f0e8;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-logo {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-address,
.footer-contact {
    font-size: 16px;
    font-weight: 200;
    line-height: 28px;
    opacity: 0.85;
    color: white;
    font-family: "Inter", sans-serif;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-copyright p {
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 200;
    opacity: 0.7;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-top {
        gap: 40px;
    }
}

/* @media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
} */


/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.contact-modal-header {
    background: linear-gradient(135deg, #26303a 0%, #3d4f5e 100%);
    color: #fdf5e6;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
}

.contact-modal-close {
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
}

.contact-modal-close:hover {
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 35px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #26303a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #26303a;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(38, 48, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel,
.btn-send {
    flex: 1;
    padding: 14px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel {
    background: #f0f0f0;
    color: #333;
}

.btn-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-send {
    background: linear-gradient(135deg, #26303a 0%, #3d4f5e 100%);
    color: #fdf5e6;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 48, 58, 0.3);
}

.btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .contact-modal-header {
        padding: 20px 20px;
    }

    .contact-modal-header h2 {
        font-size: 26px;
    }

    .contact-modal-body {
        padding: 25px 20px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-send {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-modal-header h2 {
        font-size: 22px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
}


.contact-modal-content::-webkit-scrollbar {
    display: none;
}


