@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #FF5632;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --primary-font: "Playfair Display", serif;
    --header-height: 96px;
}

body {
    margin: 0;
    font-family: "Inter Tight", sans-serif;
    ;
}

/* HEADER START */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-logo {
    height: 100px;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #111 !important;
}

.nav-link.active {
    font-weight: 600;
}

.navbar-nav {
    transition: 0.3s !important;
}

.navbar-nav li a:hover {
    color: var(--primary-color) !important;
    font-weight: 600;

}

.header-icon {
    font-size: 22px;
    cursor: pointer;
}

.header-cta {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}


.header-cta:hover {
    background-color: #000;
    color: #fff !important;
}

/* HEADER END */

/* HERO SECTION START*/
.hero-section {
    position: relative;
    height: 100vh;
    background: url("./assets/hero-1.png") center / cover no-repeat;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.0) 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: var(--primary-font);
}

.hero-text {
    max-width: 425px;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.hero-cta:hover {
    background-color: #000;
}

.review-badge {
    position: absolute;
    bottom: 50px;
    right: 100px;
    background: transparent;
    padding: 10px 16px;
    border-radius: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.review-avatars {
    display: flex;
}

.review-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -10px;
}

.review-avatars img:first-child {
    margin-left: 0;
}

.review-text strong {
    font-size: 22px;
    font-weight: 700;
    display: block;
    color: #fff;
}

.review-text span {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .review-badge {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }
}

/* HERO SECTION END */

/* MISSION SECTION START */

.mission-section {
    background: #FFF8F4;
    padding: 80px 0;
    text-align: center;
    font-family: var(--primary-font);
    border-radius: 0 0 210px 210px;
}

.mission-text {
    max-width: 1005px;
    margin: 0 auto;
    font-size: 32px;
    line-height: 1.45;
    font-weight: 400;
    color: #111;
}

.mission-text strong {
    font-weight: 600;
}

.mission-text em {
    font-style: italic;
    font-weight: 400;
}

.highlight {
    color: #ff5a2c;
    font-style: italic;
    font-weight: 500;
    white-space: nowrap;
}

.inline-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.inline-avatars {
    display: inline-flex;
    align-items: center;
}

.inline-avatars img {
    height: 50px;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.inline-row {
    transform: translateY(2px);
}


@media (max-width: 991px) {
    .mission-section {
        padding: 60px 0;
        border-radius: 0 0 160px 160px;
    }

    .mission-text {
        font-size: 22px;
    }

    .inline-avatars img {
        height: 30px;
    }
}

@media (max-width: 575px) {
    .mission-section {
        padding: 50px 0;
        border-radius: 0 0 120px 120px;
    }

    .mission-text {
        font-size: 19px;
        line-height: 1.5;
    }

    .inline-avatars img {
        height: 26px;
    }
}

/* MISSION SECTION END */

/* POPULAR SECTION START */
.popular-section {
    padding: 90px 0;
}

.section-eyebrow {
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 44px;
    font-weight: 500;
    color: #000;
    font-family: var(--primary-font);
    margin-top: 20px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.product-card {
    text-align: center;
}

.product-image {
    background: #f6f6f6;
    border-radius: 32px;
    padding: 0px 20px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card h4 {
    margin-top: 22px;
    font-size: 24px;
    font-family: var(--primary-font);
    font-weight: 600;
}

.price {
    font-size: 18px;
    margin: 14px 0;
}

.old-price {
    color: #FF0000;
    text-decoration: line-through;
    margin-left: 6px;
}

.rating {
    font-size: 16px;
    color: #FFAE00;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.rating span {
    color: #000;
    margin-left: 10px;
    font-size: 16px;
}


@media (max-width: 991px) {
    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
}

/* POPULAR SECTION END */

/* SERVICE SECTION AFTER */
.services-section {
    background: #FFF8F4;
    padding: 100px 0;
    border-radius: 220px 220px 0 0;
    position: relative;
}

.ellipse {
    position: absolute;
}

.ellipse-right {
    right: 0;
    top: -20%;
}

.services-header {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.section-tag {
    letter-spacing: 0.5px;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 44px;
    font-weight: 100;
    color: #000;
    font-family: var(--primary-font);
    margin-top: 20px;
}

.services-header h2 em {
    font-style: italic;
    font-weight: 600;
}

.all-services-link {
    position: absolute;
    right: 0;
    top: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 28px;
    border-radius: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.4s;
}

.all-services-link:hover {
    background-color: #000;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.service-card {
    text-align: center;
}


.service-image {
    width: 100%;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    border: 1px solid #DBD9D9;
    padding: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 999px;
    transition: transform 0.5s ease;
}


.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hover-cta {
    position: absolute;
    inset: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.hover-cta:hover {
    background-color: #fff;
    color: #000;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-card:hover .hover-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover img {
    transform: scale(1.06);
}


.service-card h4 {
    font-size: 26px;
    margin: 30px 0 12px;
    font-weight: 600;
    font-family: var(--primary-font);
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}



@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-header {
        text-align: center;
    }

    .all-services-link {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
}
/* SERVICE SECTION END */

/* OFFER SECTION START */
.offer-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("./assets/offer-bg.png") center / cover no-repeat;
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.offer-content h2 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 26px;
    font-family: var(--primary-font);
}

.offer-content .highlight {
    color: #F6FF00;
    font-weight: 600;
}

.offer-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.offer-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 26px;
    border-radius: 22px;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background-color: #fff;
    color: #000;
}


@media (max-width: 991px) {
    .offer-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .offer-section {
        min-height: 360px;
    }

    .offer-content h2 {
        font-size: 28px;
    }

    .offer-content p {
        font-size: 14px;
    }
}

/* OFFER SECTION END */

/* COMMITMENT SECTION START */

.commitment-section {
    background: #fff6f1;
    padding: 100px 0;
    border-radius: 0 0 220px 220px;
}

.commitment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.commitment-image {
    border-radius: 52px;
    overflow: hidden;
}

.commitment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.commitment-content .section-tag {
    display: block;
    letter-spacing: 0.5px;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.commitment-content h2 {
    line-height: 1.25;
    font-weight: 400;
    font-size: 44px;
    color: #000;
    font-family: var(--primary-font);
    margin-bottom: 20px;
}

.commitment-content h2 em {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
}

.intro-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.point {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #9F9F9F;
}

.point .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 90, 44, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5a2c;
    font-size: 18px;
    flex-shrink: 0;
}

.text {
    display: flex;
    gap: 20px;
}

.point h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
    font-family: var(--primary-font);
    max-width: 137px;
    border-right: 1px solid #9F9F9F;
}

.point p {
    font-size: 16px;
    color: #000;
}


@media (max-width: 991px) {
    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .commitment-section {
        border-radius: 0;
        padding: 80px 0;
    }

    .commitment-content {
        text-align: center;
    }

    .commitment-points {
        align-items: center;
    }

    .point {
        max-width: 420px;
        text-align: left;
    }
}

/* COMMITMENT SECTION END */

/* NEW ARRIVAL SECTION START */
.new-arrivals-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-tag {
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 60px;
}

.section-title em {
    font-style: italic;
    font-weight: 600;
}

.product-card {
    text-align: center;
    padding: 0 15px;
}


.stars {
    color: #f5a623;
}

.stars span {
    color: #000;
    margin-left: 4px;
}


.arrivals-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.arrivals-carousel .owl-nav .owl-prev {
    left: -60px;
}

.arrivals-carousel .owl-nav .owl-next {
    right: -60px;
}

.arrivals-carousel .owl-nav span {
    font-size: 24px;
}

.arrivals-carousel .owl-dots {
    margin-top: 30px;
}

.arrivals-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ddd;
}

.arrivals-carousel .owl-dot.active span {
    background: #000;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .arrivals-carousel .owl-nav {
        display: none;
    }
}

/* NEW ARRIVAL SECTION END */

/* GALLERY SECTION START */
.gallery-section {
    background: #FCF8F8;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.ellipse {
    position: absolute;
    z-index: 0;
}

.ellipse-left {
    left: 0;
    top: 10%;
}

.ellipse-right {
    right: 0;
    top: -15%;
}

.gallery-header {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 90px;
    z-index: 2;
}



.gallery-header h2 {
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    margin-top: 18px;
    line-height: 1.25;
}

.gallery-header h2 em {
    font-style: italic;
    font-weight: 600;
}

.all-gallery-link {
    position: absolute;
    right: 0;
    top: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 26px;
    border-radius: 20px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.all-gallery-link:hover {
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    position: relative;
    z-index: 2;
}

.gallery-card {
    text-align: center;
}

.gallery-middle-card {
    margin-top: 85px;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #DBD9D9;
    padding: 18px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}

.gallery-card h4 {
    margin-top: 28px;
    font-size: 22px;
    font-family: var(--primary-font);
    font-weight: 500;
}


@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gallery-header {
        text-align: center;
    }

    .all-gallery-link {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .gallery-header h2 {
        font-size: 32px;
    }
}

/* GALLERY SECTION END */

/* TESTIMONIAL SECTION START */

.wt-testimonials {
    padding: 100px 0 0;
    background: #ffffff;
    overflow: visible;
}

.wt-container {
    margin: 0 auto;
    padding: 0 40px;
}

.wt-heading {
    text-align: center;
    margin-bottom: 60px;
}

.wt-heading span {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
}

.wt-heading h2 {
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    margin-top: 18px;
    line-height: 1.25;
}

.wt-heading em {
    font-style: italic;
    font-weight: 600;
}


.wt-owl .owl-stage {
    display: flex;
    align-items: center;
}

.wt-owl .owl-item {
    display: flex;
    justify-content: center;
}

.wt-card {
    width: 340px;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.wt-text-card {
    background: #FBEFEF;
    padding: 40px 32px;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.wt-text-card:hover,
.wt-text-card.wt-active {
    background: linear-gradient(180deg, #FFF8F4 0%, #FFF8F4 50%, #FF957F 100%);
}

.wt-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.wt-stars i {
    color: #FFAE00;
    font-size: 18px;
}

.wt-text-card p {
    font-size: 22px;
    color: #000;
    font-family: var(--primary-font);
}

.wt-author {
    font-size: 16px;
    color: #000;
}

.wt-image-card {
    overflow: hidden;
}

.wt-image-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
}

.wt-owl .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.wt-owl .owl-dot span {
    width: 6px;
    height: 6px;
    background: #cfcfcf;
    margin: 0 6px;
}

.wt-owl .owl-dots {
    display: block !important;
    position: relative;
    z-index: 5;
}

.wt-owl .owl-dot.active span {
    background: #000000;
}

/* TESTIMONIAL SECTION END */

/* CONTACT SECTION START */

.ct-contact {
    padding: 100px 0;
    background: #ffffff;
}

.ct-box {
    background: #FFF6F1;
    border-radius: 36px;
    padding: 80px 60px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ct-tag {
    display: inline-block;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ct-box h2 {
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    margin-top: 18px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ct-subtitle {
    font-size: 16px;
    color: #000;
    max-width: 560px;
    margin: 0 auto 40px;
}

.ct-form {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.ct-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    border: 1px solid #DBD9D9;
    border-radius: 30px;
    padding: 12px 18px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
    background: #fff;
}

.ct-form textarea {
    border-radius: 18px;
    min-height: 160px;
    resize: none;
}

.ct-form ::placeholder {
    color: #716E6E;
}

.ct-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: absolute;
    left: 39%;
    bottom: -15px;
}

.ct-btn:hover {
    background: var(--primary-color);
}


@media (max-width: 991px) {
    .ct-box {
        padding: 60px 30px;
    }

    .ct-row {
        grid-template-columns: 1fr;
    }

    .ct-box h2 {
        font-size: 32px;
    }
}

/* CONTACT SECTION END */

/* NEWSLETTER SECTION START */
.newsletter-section {
    background: var(--primary-color);
}

.newsletter-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-left h2 {
    font-family: var(--primary-font);
    font-size: 40px;
    color: #fff;
    margin: 0 0 10px;
}

.newsletter-left p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.newsletter-left span {
    color: #F6FF00;
    font-weight: 500;
}

.newsletter-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.newsletter-right input {
    width: 260px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    color: #FFD8CF;
    font-size: 16px;
}

.newsletter-right input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-right button {
    padding: 10px 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 1px solid #fff;
}

/* NEWSLETTERT SECTION END */

/* FOOTER START*/
.site-footer {
    position: relative;
    overflow: hidden;
}



.footer-inner {
    margin: 0 auto;
    padding: 70px 70px 180px;
    position: relative;
}

.footer-ellipse {
    position: absolute;
    bottom: -200px;
    left: -20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    border-bottom: 1px solid #D4D3D3;
}

.footer-col {
    border-right: 1px solid #D4D3D3;
}

.footer-col-last {
    border: none;
}

.footer-col h4 {
    font-family: var(--primary-font);
    font-size: 28px;
    margin-bottom: 35px;
    color: #222;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    font-family: var(--primary-font);
    margin-top: 60px;
    font-size: 18px;
    color: #000;
}

.footer-watermark {
    position: absolute;
    bottom: -45px;
    left: 0%;
    font-family: 'Playfair Display', serif;
    font-size: 260px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    pointer-events: none;
    overflow-y: hidden;
}




/* =========== ABOUT PAGE CSS STARTS ============= */

/* ABOUT HERO START */

.about-hero-section {
    position: relative;
    height: 70vh;
    background: url("./assets/about-hero-bg.png") center / cover no-repeat;
    margin-top: 145px;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60) 0%;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}

.about-hero-breadcrumb {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
}

.about-hero-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-hero-breadcrumb a:hover {
    text-decoration: underline;
}

.about-hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 28px;
    font-family: var(--primary-font);
}

.about-hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.about-hero-cta:hover {
    background-color: #fff;
    color: #000;
}

/* ABOUT HERO END */

/* ABOUT WELCOME SECTION START*/

.about-welcome-section {
    background: #FFF8F4;
    border-radius: 0 0 220px 220px;
}

.about-welcome-wrapper {
    border-radius: 180px;
    padding: 80px 0;
}

.about-welcome-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.about-welcome-content {
    padding-left: 45px;
}

.about-welcome-tag {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
}

.about-welcome-content h2 {
    margin-bottom: 22px;
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    line-height: 1.25;
}

.about-welcome-content h2 em {
    font-style: italic;
    font-weight: 600;
}

.about-welcome-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .about-welcome-wrapper {
        border-radius: 40px;
        padding: 50px 40px;
    }

    .about-welcome-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .about-welcome-content h2 {
        font-size: 30px;
    }
}

/* ABOUT WELCOME SECTION END */

/* ABOUT MISSION SECTION START */


.about-mission-section {
    padding: 80px 0 40px;
    background: #fff;
}

.about-mission-tag {

    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
}

.about-mission-title {
    margin-bottom: 22px;
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    line-height: 1.25;
}

.about-mission-title em {
    font-style: italic;
    font-weight: 500;
}

.about-mission-subtitle {
    margin: 0 auto;
    font-size: 16px;
    color: #000;
}

.about-mission-card {
    height: 100%;
    padding: 70px 25px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    transition: 0.3s ease;
    background: #fff;
}

.about-mission-card img {
    margin-bottom: 25px;
}

.about-mission-card p {
    font-size: 20px;
    color: #000;
    line-height: 1.4;
    margin: 0;
    font-family: var(--primary-font);
}

.about-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .about-mission-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .about-mission-title {
        font-size: 28px;
    }
}

/* ABOUT MISSION SECTION END */

/* SAVING SECTION START */
.about-group-savings-section {
    padding: 80px 0;
    background: #FFF8F4;
    position: relative;
}

.about-saving-ellipse {
    position: absolute;
    right: 0;
    top: -35%;
}

.about-group-tag {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
}

.about-group-title {
    margin-bottom: 22px;
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    line-height: 1.25;
}

.about-group-title em {
    font-style: italic;
    font-weight: 500;
}

.about-group-text {
    max-width: 545px;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-group-highlight {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 18px;
}

.about-group-subtext {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
}

.about-group-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 550px;
    margin-bottom: 18px;
}

.group-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px;
    background: #FFDFD8;
    border-radius: 12px;
}

.group-box img {
    width: 95px;
    height: 95px;
    border-radius: 8px;
    object-fit: cover;
}

.group-box span {
    font-size: 18px;
    color: #111;
    font-family: var(--primary-font);
    line-height: 1.3;
}

.about-group-footer {
    font-size: 18px;
    color: #000;
}

.about-group-image img {
    max-width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-group-title {
        font-size: 34px;
    }

    .about-group-image {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .about-group-boxes {
        grid-template-columns: 1fr;
    }

    .about-group-title {
        font-size: 28px;
    }
}

/* SAVING SECTION END */

/* OUR TEAM SECTION START  */

.about-team-section {
    padding: 80px 0 0;
    background: #fff;
    position: relative;
}

.about-team-ellipse {
    position: absolute;
    left: 0;
    top: -35%;
}

.about-team-wrapper {
    position: relative;
    background: url("./assets/our-team.png") center / cover no-repeat;
    border-radius: 80px;
    padding: 140px 0;
    overflow: hidden;
}

.about-team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.about-team-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    color: #fff;
    font-weight: 200;
}

.about-team-tag {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: block;
}

.about-team-title {
    margin-bottom: 22px;
    font-size: 44px;
    font-weight: 100;
    font-family: var(--primary-font);
    line-height: 1.25;
}

.about-team-title em {
    font-style: italic;
    font-weight: 500;
}

.about-team-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 32px;
}

.about-team-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 38px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-team-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    .about-team-wrapper {
        border-radius: 40px;
        padding: 80px 30px;
    }

    .about-team-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .about-team-title {
        font-size: 28px;
    }
}

/* OUR TEAM SECTION END */

/* BOOK SECTION START */

.book-section {
    position: relative;
    height: 70vh;
    background: url("./assets/book-bg.png") center / cover no-repeat;
    margin-top: 50px;
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60) 0%;
}

.book-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}


.book-title {
    font-size: 64px;
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 28px;
    font-family: var(--primary-font);
}

.book-para{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 50px;
}

.book-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.book-cta:hover {
    background-color: #fff;
    color: #000;
}

/* BOOK SECTION END */