:root {
    --main: #a84943;
    --main-light: #d1635c;
    --gold: #ad7c41;
    --gold-light: #ffc784;
    --dark: #111111;
    --white: #ffffff;
    --nav-h: 72px;
}

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

body,
html {
    scroll-behavior: auto;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
}

a {
    text-decoration: none;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: linear-gradient(135deg,
            #9c2c21,
            #c44334);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(156, 44, 33, .25);
}

.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(156, 44, 33, .4);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: linear-gradient(135deg,
            #ad7c41,
            #d4af37);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(173, 124, 65, .25);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(173, 124, 65, .45);
}

.shivas-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: box-shadow .3s ease, background .3s ease;
}

.shivas-nav.scrolled {
    box-shadow: 0 4px 28px rgba(17, 17, 17, .08);
    background: white;
}

.shivas-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 16px;
}

.shivas-nav__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.shivas-nav__brand img {
    margin-top: 0px;
    height: 100px;
    width: auto;
    transition: all 0.5s;
    display: block;
}

.shivas-nav.scrolled .shivas-nav__brand img {
    height: 70px;
    margin: 0;
    transition: all 0.5s;
}

.social_list {
    margin-top: 30px;
}

.social_list ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_list ul li a {
    width: 40px;
    height: 40px;
    display: grid;
    border-radius: 50%;
    place-content: center;
    border: 1px solid #000;
    font-size: 20px;
    transition: all 0.5s;
    color: #000;
}

.social_list ul li a:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.shivas-nav__links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
}

.social_list ul li:hover a {
    color: #fff;
    border: 0;
}

.social_list ul li:hover a.facebook {
    background: #1877F2;
}

.social_list ul li:hover a.instagram {
    background: linear-gradient(45deg, #ffd600, #ff7a00, #ff0069, #d300c5, #7638fa);
}

.social_list ul li:hover a.youtube {
    background: #FF0000;
}

.social_list ul li:hover a.twitter {
    background: #000;
}

.shivas-nav__links a {
    display: inline-block;
    padding: 6px 13px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    transition: color .25s;
}

.shivas-nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 1.5px;
    background: var(--main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.shivas-nav__links a:hover,
.shivas-nav__links a.active {
    color: var(--main);
}

.shivas-nav__links a:hover::after,
.shivas-nav__links a.active::after {
    transform: scaleX(1);
}

.shivas-nav__cta {
    display: inline-flex;
    border-radius: 10px;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--main);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--main);
    transition: background .25s, color .25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.shivas-nav__cta:hover {
    background: transparent;
    color: var(--main);
}

.shivas-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.shivas-nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--main);
    transition: transform .35s ease, opacity .35s ease, width .35s ease;
}

.shivas-nav__toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.shivas-nav__toggle.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.shivas-nav__toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.shivas-nav__drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(201, 160, 90, .18);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
    z-index: 999;
    padding: 8px 0 24px;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
}

.shivas-nav__drawer.open {
    transform: translateY(0);
    opacity: 1;
}

.shivas-nav__drawer ul {
    list-style: none;
    padding: 0 0 16px;
}

.shivas-nav__drawer ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 160, 90, .1);
    transition: color .2s, background .2s;
}

.shivas-nav__drawer ul li a:hover,
.shivas-nav__drawer ul li a.active {
    color: var(--main);
    background: rgba(201, 160, 90, .04);
}

.shivas-nav__drawer ul li a.active {
    font-weight: 600;
}

.shivas-nav__drawer ul li a .bi-chevron-right {
    font-size: 11px;
    opacity: .45;
}

.shivas-nav__drawer-cta {
    padding: 0 24px;
    margin-top: 8px;
}

.shivas-nav__drawer-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--main);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s;
}

.shivas-nav__drawer-cta a:hover {
    background: var(--main-light);
}




.hero-section {
    min-height: 100vh;
    background-image: url('../img/hero/hero-bg.webp');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-section .video_button {
    position: absolute;
    right: 10%;
    bottom: 5%;
    display: none;
    gap: 10px;
    align-items: center;
    color: white;
    cursor: pointer;
}

.hero-section .video_button iconify-icon {
    width: 50px;
    height: 50px;
    border: 1px solid white;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 30px;
}

.hero-section .video_button p {
    margin: 0;
    font-weight: 600;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 0 0 48%;
    max-width: 560px;
}

.hero-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--main);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 500;
    color: #111;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--main);
}

.hero-text {
    max-width: 480px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}


.trust_tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    transform: translateY(17px);
}

.trust_tag small {
    display: block;
    font-size: 14px;
    color: #777;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.trust_tag p {
    margin: 2px 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.trust_tag span {
    display: block;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}


.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    aspect-ratio: 3/2;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .1));
}

.service-card .content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-card .icons {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card .icons iconify-icon {
    font-size: 28px;
    color: #a84943;
}

.service-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0px;
}

.service-card p {
    color: #ddd;
    font-size: 12px;
}

@media(max-width:991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .services-section {
        padding: 80px 0;
    }
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading span {
    display: block;
    color: var(--main);
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: bold;
    color: #111;
    position: relative;
}

.stats-section {
    padding: 10px 0;
    background-color: var(--main);
    overflow: hidden;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-section .stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 35px;
    position: relative;
}

.stats-section .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #e5e5e5;
}

.hero-subtitle,
.hero-title,
.hero-text,
.hero-btns,
.social_list li,
.trust_tag,
.video_button {
    will-change: transform, opacity;
}

.stats-section .icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: #d4af3747;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-section .icon iconify-icon {
    font-size: 30px;
    color: #fff;
}

.stats-section .content h3 {
    position: relative;
    margin: 0;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.stats-section .content h3::after {
    content: "+";
}

.stats-section .content p {
    margin: 8px 0 0;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.shivas-nav.fixed-nav {
    background: #fff;
}

.shivas-nav.fixed-nav img {
    height: 60px;
    margin: 0;
}

.shivas-nav__links .has-dropdown {
    position: relative;
}

.shivas-nav__links .has-dropdown>.dropdown-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 10px 0;
    margin-top: 10px;
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 9999;
}

.shivas-nav__links .has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shivas-nav__links .dropdown-menu li {
    list-style: none;
}

.shivas-nav__links .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #222;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.shivas-nav__links .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--main);
}


@media(max-width:991px) {
    .social_list ul {
        justify-content: center;
    }

    .has-dropdown .dropdown-menu {
        display: none !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 15px;
    }

    .has-dropdown.active .dropdown-menu {
        display: block !important;
    }
}

.shivas-footer {
    background: #fff;
    border-top: 1px solid rgba(201, 160, 90, .15);
}

.sf-top {
    padding: 64px 0 48px;
}

.sf-brand {
    display: inline-block;
    margin-bottom: 16px;
}

.sf-brand img {
    height: 150px;
    width: auto;
}

.sf-about {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px;
    max-width: 240px;
}

.sf-social {
    display: flex;
    gap: 10px;
}

.sf-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 160, 90, .4);
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}

.sf-social a:hover {
    background: var(--main);
    color: #fff;
    border-color: var(--main);
}

.sf-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .04em;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 160, 90, .2);
}

.sf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf-links a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}

.sf-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.sf-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.55;
}

.sf-contact li iconify-icon {
    color: var(--main);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sf-contact a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.sf-contact a:hover {
    color: var(--gold);
}

.sf-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.sf-gallery-item {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.sf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.sf-gallery-item:hover img {
    transform: scale(1.08);
}

.sf-bottom {
    border-top: 1px solid rgba(201, 160, 90, .12);
    padding: 16px 0;
}

.sf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-bottom p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.sf-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sf-bottom-links a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    transition: color .2s;
}

.sf-bottom-links a:hover {
    color: var(--gold);
}

.sf-bottom-links span {
    color: #ccc;
    font-size: 11px;
}

@media (max-width: 991px) {
    .sf-top {
        padding: 48px 0 36px;
    }
}

@media (max-width: 767px) {
    .sf-top {
        padding: 40px 0 32px;
    }

    .sf-about {
        max-width: 100%;
    }

    .sf-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:991px) {

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

    .stats-section .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media(max-width:576px) {
    .stats-section .stat-item::after {
        display: none;
    }

    .stats-section .stat-item {
        padding: 15px;
        border-bottom: 0;
    }

    .stats-section .stat-item:last-child {
        border-bottom: none;
    }

    .stats-section .icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .stats-section .content p {
        font-size: 12px;
    }

    .stats-section .content h3 {
        font-size: 24px;
    }
}





.lk-slide iframe {
    width: 100%;
    height: 450px;
}

.lk-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}


.lk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.lk-btn-prev,
.lk-btn-next {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s, color .2s;
}

.lk-btn-prev:hover,
.lk-btn-next:hover {
    background: var(--gold);
    color: #fff;
}

.lk-pagination {
    position: static !important;
    width: auto !important;
}

.lk-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #ddd;
    opacity: 1;
    transition: background .25s, transform .25s;
}

.lk-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.4);
}




.mobile-dropdown .mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fafafa;
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    padding: 12px 40px !important;
    font-size: 13px !important;
    text-transform: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle i {
    transition: .3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.lk-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px;
}

.lk-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--gold-light) !important;
    opacity: 1 !important;
    display: block !important;
    border-radius: 50%;
}

.lk-frame iframe {
    pointer-events: none;
}

.lk-btn-prev,
.lk-btn-next {
    position: relative;
    z-index: 9999;
    cursor: pointer;
}

.lk-pagination .swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

.lk-frame iframe {
    pointer-events: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1ebe5a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, .55);
    color: #fff;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsapp-pulse 2.2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-4px);
}

.service-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.service-option {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 3px 7px;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
    user-select: none;
}

.service-option:hover {
    border-color: #000;
}

.service-option input {
    width: 12px;
    height: 12px;
    accent-color: #000;
}


@media (prefers-reduced-motion: reduce) {
    .whatsapp-float::before {
        animation: none;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .wa-tooltip {
        display: none;
    }
}

@media (max-width: 1280px) {

    .lk-slide iframe {
        height: 381px;
    }



    .shivas-nav__cta {
        display: none;
    }

    .shivas-nav__inner {
        padding: 0 0px;
        gap: 0px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .btn-gold,
    .btn-main {
        font-size: 14px;
        padding: 16px 28px;
    }
}

@media (max-width: 1080px) {
    .lk-slide iframe {
        height: 320px;
    }
}

@media (max-width: 991px) {
    .shivas-nav__brand img {
        height: 80px;
    }

    .lk-slide iframe {
        height: 400px;
    }


    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }


    .trust_tag {
        text-align: start;
    }

    .trust_tag .image {
        width: 40px;
    }

    .trust_tag small {
        font-size: 10px;
    }

    .trust_tag .image img {
        width: 100%;
        height: 100%;
    }

    .trust_tag p {
        font-size: 20px;
    }

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

    .hero-section .video_button {
        color: black;
    }

    .hero-section .video_button p {
        font-size: 12px;
    }

    .hero-section .video_button iconify-icon {
        width: 40px;
        height: 40px;
        border: 1px solid #000000;
        font-size: 30px;
    }

    .shivas-nav__links,
    .shivas-nav__cta {
        display: none;
    }

    .shivas-nav__toggle {
        display: flex;
    }

    .hero-section {
        min-height: 620px;
        background-position: 40%;
    }


}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }

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

    .hero-text {
        font-size: 15px;
    }


    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-gold,
    .btn-main {
        width: 250px;
        font-size: 14px;
        font-weight: 600;
        padding: 10px 28px;
        justify-content: center;
    }


    .services-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }




}

.about-section {
    padding: 80px 0;
    background: #fffaf7;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: #a84943;
    color: #fff;
    padding: 15px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(168, 73, 67, .25);
}

.experience-badge h3 {
    font-size: 42px;
    margin: 0;
    line-height: 1;
}

.experience-badge span {
    font-size: 14px;
}

.sub-title {
    color: #a84943;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about_point {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.about_point_card h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.about_point_card p {
    font-size: 12px;
    margin: 0;
}

.about_point_card .icons {
    color: var(--gold);
    font-size: 40px;
    margin: 0;
}

@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }


}

@media(max-width:576px) {

    .about-section {
        padding: 40px 0;
    }


    .about-btns {
        flex-direction: column;
    }

}

.founder-message {
    padding: 80px 0;
    background: #ffeee4b0;
    position: relative;
    overflow: hidden;
}



.founder-message .fm-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(2, 1fr);
}

.founder-message .fm-image {
    flex: 0 0 48%;
    position: relative;
}

.founder-message .fm-image::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    z-index: 0;
    opacity: .15;
}

.founder-message .fm-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.founder-message .fm-content {
    flex: 1;
    position: relative;
}


.founder-message p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 24px;
    font-weight: 400;
}

.founder-message h4 {
    margin-top: 40px;
    color: var(--main);
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
}



.founder-message .fm-content::after {
    content: "38+";
    position: absolute;
    right: 0;
    top: -40px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(212, 175, 55, .06);
    line-height: 1;
    z-index: -1;
}

@media (max-width: 1200px) {
    .founder-message h2 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .founder-message {
        padding: 90px 0;
    }

    .founder-message .fm-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }

    .founder-message .fm-image,
    .founder-message .fm-content {
        width: 100%;
    }



    .founder-message .fm-content::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .founder-message {
        padding: 70px 0;
    }


    .founder-message p {
        font-size: 16px;
        line-height: 1.8;
    }

    .founder-message .fm-image img {
        border-radius: 20px;
        height: 100%;
    }
}

.why-choose-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading span {
    color: #a84943;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 52px;
    margin: 15px 0;
    color: #111;
}

.section-heading p {
    color: #666;
    line-height: 1.8;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 520px 1fr;
    gap: 40px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-card {
    background: #fff;
    border: 1px solid rgba(168, 73, 67, .08);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(168, 73, 67, .15);
}

.icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #a84943, #d1635c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon iconify-icon {
    color: #fff;
    font-size: 30px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 40px;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.floating-badge h3 {
    color: #a84943;
    font-size: 42px;
    margin: 0;
}

.floating-badge span {
    color: #666;
    font-size: 14px;
}

@media(max-width:1200px) {
    .why-wrapper {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .why-image img {
        height: 500px;
    }
}

@media(max-width:768px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .why-image img {
        height: 400px;
    }

    .why-card {
        padding: 20px;
    }
}

.location-section {
    background: url(../img/background/world-map.webp);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.location-section .content {
    position: relative;
    z-index: 1;
}

.location-section::after {
    content: "";
    background-color: #ffffffdb;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.location-section .swiper-pagination,
.location-section .swiper-button-prev,
.location-section .swiper-button-next {
    display: none !important;
}

.location-section .location_list_card {
    border-radius: 16px;
    border: 1px solid var(--gold-light);
    overflow: hidden;
}

.location_list_card .location_name {
    padding: 10px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.location_list_card .image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.location-section .location_name h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.location-section .location_name a {

    text-align: center;
    padding: 10px 0px;
    width: 150px;
    font-size: 12px;
    border-radius: 16px;
    background: var(--gold-light);
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 600;
}

.testimonials-section {
    padding: 80px 0;
}



.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    transition: .4s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}


.featured p,
.featured span,
.featured h4 {
    color: #fff;
}

.quote {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(168, 73, 67, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.featured .quote {
    background: rgba(255, 255, 255, .15);
}

.quote iconify-icon {
    font-size: 28px;
    color: #a84943;
}

.featured .quote iconify-icon {
    color: #fff;
}

.testimonial-card p {
    line-height: 1.5;
    color: #666;
    margin-bottom: 30px;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client h4 {
    margin-bottom: 4px;
    font-size: 18px;
    color: #111;
}

.client span {
    color: #777;
    font-size: 14px;
}

.rating {
    margin-top: 25px;
    color: #ffc784;
    font-size: 20px;
}

.stats-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 2px solid rgba(168, 73, 67, .08);
}

.stats-card h3 {
    font-size: 70px;
    color: #a84943;
    line-height: 1;
}

.stars {
    color: #ffc784;
    font-size: 24px;
    margin: 15px 0;
}

.stats-card p {
    margin: 0;
}

.divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

.stats-card h4 {
    font-size: 48px;
    color: #a84943;
}

.stats-card span {
    color: #666;
}

@media(max-width:1200px) {}

@media(max-width:768px) {

    .testimonials-section {
        padding: 80px 0;
    }

}

.careers-section {
    padding: 40px 0 0 0;
    background: url(../img/background/career_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.careers-cta {

    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    position: relative;
}

.careers-cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.careers-content {
    position: relative;
    z-index: 2;
}

.careers-content span {
    color: #ffc784;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.careers-content h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #fff;
    margin: 20px 0;
}

.careers-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.5;
    max-width: 650px;
}

.career-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.feature iconify-icon {
    font-size: 24px;
    color: #ffc784;
}

.career-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 35px;
    background: #fff;
    color: #a84943;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

.btn-secondary {
    padding: 16px 35px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

.careers-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
}

@media(max-width:991px) {

    .careers-cta {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    .careers-content h2 {
        font-size: 42px;
    }

    .careers-image img {
        height: 400px;
    }
}

@media(max-width:576px) {

    .careers-section {
        padding: 80px 0;
    }

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

    .careers-cta {
        padding: 35px;
        border-radius: 25px;
    }

    .careers-content h2 {
        font-size: 32px;
    }

    .career-features {
        grid-template-columns: 1fr;
    }

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

    .careers-image img {
        height: 300px;
    }
}

.lookbook-section {
    padding: 80px 0;
    background: #fffaf7;
}

.lookbook-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    margin-top: 60px;
}

.featured-video {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    height: 700px;
}

.featured-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.video-badge h4 {
    font-size: 42px;
    color: #a84943;
    margin: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-card {
    border-radius: 25px;
    overflow: hidden;
    height: 340px;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.lookbook-cta {
    text-align: center;
    margin-top: 60px;
}

.lookbook-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #a84943;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
}

.lookbook-cta iconify-icon {
    font-size: 20px;
}

@media(max-width:991px) {

    .lookbook-wrapper {
        grid-template-columns: 1fr;
    }

    .featured-video {
        height: 500px;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:576px) {

    .video-grid {
        grid-template-columns: 1fr;
    }

    .featured-video {
        height: 350px;
    }

    .video-card {
        height: 280px;
    }
}

#genderGroup.is-invalid {
    border: 2px solid #dc3545;
    padding: 10px;
    border-radius: 10px;
}

#genderError {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

#genderError.show {
    display: block;
}

.breadcrumb-section {
    padding: 120px 20px 0px;
    position: relative;
    background: url(../img/background/breadcrumb.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.spin-btn.disabled,
.spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    pointer-events: none;
}

.breadcrumb-section::after {
    content: "";
    background: linear-gradient(180deg, #ffffffa8, #fff);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.breadcrumb-box {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.breadcrumb-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 10px 30px;
    width: max-content;
    background: #ffc78414;
    border: 1px solid var(--gold);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.breadcrumb li {
    font-size: 14px;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    opacity: 1;
    transition: 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--main);
}

.breadcrumb .divider {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
}

.breadcrumb .active {
    color: var(--main);
    font-weight: 600;
}

.wwa-section {
    padding: 110px 0;
    background: #fffaf7;
    position: relative;
    overflow: hidden;
}

.wwa-section::before {
    content: "Who We Are";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Cormorant Garamond", serif;
    font-size: 180px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(173, 124, 65, .045);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.wwa-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.wwa-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.wwa-intro {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.wwa-intro .sub-title {
    display: block;
    margin-bottom: 18px;
}

.wwa-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--dark);
    margin: 0 0 40px;
}

.wwa-title span {
    color: var(--main);
    font-style: italic;
}

.wwa-origin {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding-top: 32px;
    border-top: 1px solid rgba(173, 124, 65, .25);
}

.wwa-origin__year {
    flex-shrink: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}

.wwa-origin p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    max-width: 230px;
}

.wwa-story {
    border-left: 1px solid rgba(173, 124, 65, .2);
    padding-left: 60px;
}

.wwa-story p {
    font-family: "Inter", sans-serif;
    font-size: 16.5px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 26px;
}

.wwa-story .wwa-lede {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 32px;
}

.wwa-story strong {
    color: var(--main);
    font-weight: 600;
}

.wwa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.wwa-tag {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--main);
    background: rgba(168, 73, 67, .07);
    border: 1px solid rgba(168, 73, 67, .18);
    border-radius: 30px;
    padding: 9px 18px;
}

@media (max-width: 1200px) {
    .wwa-section::before {
        font-size: 130px;
    }

    .wwa-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .wwa-section {
        padding: 80px 0;
    }

    .wwa-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .wwa-intro {
        position: static;
    }

    .wwa-story {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(173, 124, 65, .2);
        padding-top: 40px;
    }

    .wwa-section::before {
        font-size: 90px;
        top: 0;
    }
}

@media (max-width: 576px) {
    .wwa-section {
        padding: 64px 0;
    }

    .wwa-container {
        padding: 0 20px;
    }

    .wwa-title {
        font-size: 30px;
    }

    .wwa-story .wwa-lede {
        font-size: 22px;
    }

    .wwa-story p {
        font-size: 15px;
    }

    .wwa-origin {
        gap: 16px;
    }

    .wwa-origin__year {
        font-size: 36px;
    }

    .wwa-tags {
        gap: 8px;
    }

    .wwa-tag {
        font-size: 11px;
        padding: 7px 14px;
    }

    .wwa-section::before {
        display: none;
    }
}


.mvv-section {
    padding: 110px 0;
    background: #fff;
}

.mvv-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.mvv-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 90px;
}

.mvv-pair__item {
    text-align: center;
}

.mvv-pair__label {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 20px;
    position: relative;
}

.mvv-pair__text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}

.mvv-pair__divider {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(173, 124, 65, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.mvv-pair__divider::before,
.mvv-pair__divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(173, 124, 65, .35));
}

.mvv-pair__divider::before {
    right: 100%;
}

.mvv-pair__divider::after {
    left: 100%;
    background: linear-gradient(90deg, rgba(173, 124, 65, .35), transparent);
}

.mvv-pair__divider iconify-icon {
    font-size: 24px;
    color: var(--gold);
    transform: rotate(90deg);
}

.mvv-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(168, 73, 67, .12);
    border: 1px solid rgba(168, 73, 67, .12);
    border-radius: 24px;
    overflow: hidden;
}

.mvv-value {
    background: #fffaf7;
    padding: 40px 26px;
    text-align: left;
    transition: background .3s ease;
}

.mvv-value:hover {
    background: #fff;
}

.mvv-value__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(173, 124, 65, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.mvv-value__icon iconify-icon {
    font-size: 22px;
    color: var(--main);
}

.mvv-value h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.mvv-value p {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 1200px) {
    .mvv-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .mvv-section {
        padding: 80px 0;
    }

    .mvv-pair {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 60px;
    }

    .mvv-pair__divider {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .mvv-pair__divider iconify-icon {
        transform: rotate(0deg);
    }

    .mvv-pair__divider::before,
    .mvv-pair__divider::after {
        width: 60px;
    }

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

@media (max-width: 576px) {
    .mvv-section {
        padding: 64px 0;
    }

    .mvv-container {
        padding: 0 20px;
    }

    .mvv-pair__label {
        font-size: 26px;
    }

    .mvv-pair__text {
        font-size: 15px;
    }

    .mvv-values {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .mvv-value {
        padding: 30px 24px;
    }
}

.journey-section {
    padding: 110px 0 90px;
    background: #fffaf7;
    overflow: hidden;
}

.journey-head {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.journey-head .section-heading {
    margin-bottom: 60px;
    text-align: left;
    max-width: 600px;
    margin-left: 40px;
}

.journey-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 50px;
}

.journey-scroll::-webkit-scrollbar {
    display: none;
}

.journey-track {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 0 calc(50vw - 160px);
    position: relative;
}

.journey-track::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(173, 124, 65, .35) 0,
            rgba(173, 124, 65, .35) 8px,
            transparent 8px,
            transparent 16px);
}

.journey-stop {
    flex: 0 0 320px;
    scroll-snap-align: center;
    position: relative;
    padding-top: 0;
}

.journey-stop__year {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 18px;
}

.journey-stop__dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #fffaf7;
    box-shadow: 0 0 0 1.5px var(--gold);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.journey-stop__card {
    background: #fff;
    border: 1px solid var(--gold-light);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: transform .35s ease, box-shadow .35s ease;
}

.journey-stop:hover .journey-stop__card {
    transform: translateY(-6px);
    border: 1px solid var(--gold);
    box-shadow: 0 20px 45px rgba(168, 73, 67, .12);
}

.journey-stop__card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.journey-stop__card p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

.journey-nav {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.journey-nav__btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background .25s, color .25s;
}

.journey-nav__btn:hover {
    background: var(--gold);
    color: #fff;
}

.journey-progress {
    flex: 1;
    height: 2px;
    background: rgba(173, 124, 65, .18);
    border-radius: 2px;
    overflow: hidden;
}

.journey-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--main);
    border-radius: 2px;
    transition: width .15s linear;
}

@media (max-width: 991px) {
    .journey-section {
        padding: 80px 0 70px;
    }

    .journey-head .section-heading {
        margin-left: 0;
    }

    .journey-track {
        padding: 0 24px;
        gap: 40px;
    }

    .journey-stop {
        flex: 0 0 280px;
    }
}

@media (max-width: 576px) {
    .journey-section {
        padding: 64px 0 56px;
    }

    .journey-head {
        padding: 0 20px;
    }

    .journey-head .section-heading {
        margin-bottom: 40px;
    }

    .journey-nav {
        padding: 0 20px;
    }

    .journey-track {
        padding: 0 20px;
        gap: 24px;
    }

    .journey-stop {
        flex: 0 0 250px;
    }

    .journey-stop__card {
        padding: 22px 20px;
    }

    .journey-nav__btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .journey-stop__card {
        transition: none;
    }
}

.ach-section {
    padding: 110px 0;
    background: #fff;
}

.ach-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
}

.ach-list {
    display: flex;
    flex-direction: column;
}

.ach-item {
    display: grid;
    grid-template-columns: 210px 1fr 50px;
    align-items: center;
    gap: 30px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(173, 124, 65, .18);
    transition: padding-left .35s ease;
}

.ach-item:first-child {
    border-top: 1px solid rgba(173, 124, 65, .18);
}

.ach-item:hover {
    padding-left: 14px;
}

.ach-item__year {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .02em;
}

.ach-item__body h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 6px;
}

.ach-item__body p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.ach-item__icon {
    font-size: 26px;
    color: var(--main);
    opacity: .35;
    justify-self: end;
    transition: opacity .35s ease, transform .35s ease;
}

.ach-item:hover .ach-item__icon {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .ach-section {
        padding: 80px 0;
    }

    .ach-item {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "year icon"
            "body body";
        gap: 8px 16px;
        padding: 26px 0;
    }

    .ach-item:hover {
        padding-left: 0;
    }

    .ach-item__year {
        grid-area: year;
        font-size: 22px;
    }

    .ach-item__icon {
        grid-area: icon;
        opacity: .6;
    }

    .ach-item__body {
        grid-area: body;
    }

    .ach-item__body h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .ach-container {
        padding: 0 20px;
    }
}


.cta-section {
    position: relative;
    padding: 130px 0;
    background: url(../img/background/career_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #00000082;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
}

.cta-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    margin: 0 0 22px;
}

.cta-title span {
    color: var(--gold-light);
    font-style: italic;
}

.cta-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    margin: 0 auto 44px;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 90px 0;
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .cta-container {
        padding: 0 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 14px;
    }

    .cta-btns .btn-main,
    .cta-btns .btn-gold {
        width: 100%;
        justify-content: center;
    }
}

.contact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-section {
    padding: 110px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-heading {
    font-size: 40px;
    font-weight: 500;
    color: var(--dark);
    margin: 12px 0 16px;
}

.contact-lede {
    font-family: "Inter", sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: #666;
    max-width: 480px;
    margin: 0 0 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-field label {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #444;
}

.cf-field input,
.cf-field textarea {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    color: var(--dark);
    padding: 14px 16px;
    border: 1.5px solid rgba(173, 124, 65, .25);
    border-radius: 10px;
    background: #fffaf7;
    outline: none;
    transition: border-color .25s ease, background .25s ease;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: #999;
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-color: var(--main);
    background: #fff;
}

.cf-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn-main {
    align-self: flex-start;
    margin-top: 8px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fffaf7;
    border: 1px solid rgba(173, 124, 65, .15);
    border-radius: 24px;
    padding: 36px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-info-card .icon iconify-icon {
    font-size: 22px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 6px;
}

.contact-info-card p {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.contact-info-card p a {
    color: #666;
    text-decoration: none;
    transition: color .2s;
}

.contact-info-card p a:hover {
    color: var(--main);
}

.contact-social {
    display: flex;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(173, 124, 65, .18);
    margin-top: 4px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(173, 124, 65, .35);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background .2s, color .2s, border-color .2s;
}

.contact-social a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}


.contact-map-section {
    width: 100%;
    height: 480px;
    line-height: 0;
}

.contact-map-section iframe {
    display: block;
    filter: grayscale(8%) contrast(1.02);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-map-section {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 0 20px;
    }

    .contact-heading {
        font-size: 30px;
    }

    .cf-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-info-wrap {
        padding: 26px;
        border-radius: 18px;
    }

    .contact-map-section {
        height: 300px;
    }
}

.commit-section {
    padding: 100px 20px;
    background: #0f0f0f;
    color: #fff;
}

.commit-container {
    max-width: 1200px;
    margin: auto;
}

.section-heading span {
    color: #c9a227;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.section-heading h2 {
    font-size: 38px;
    margin-top: 10px;
    font-weight: 600;
}

.commit-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.commit-story p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 18px;
}

.commit-lede {
    font-size: 18px;
    color: #fff;
}

.commit-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #c9a227;
}

.highlight-card h3 {
    margin-bottom: 8px;
    color: #c9a227;
}

@media(max-width: 900px) {
    .commit-grid {
        grid-template-columns: 1fr;
    }
}

.bollywood-section {
    padding: 0 20px 80px 20px;
    background: #0f0f0f;
    color: #fff;
}

.section-heading span {
    color: #c9a227;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 36px;
    margin-top: 10px;
}

.bolly-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
}

.bolly-card:hover {
    transform: translateY(-8px);
    border-color: #c9a227;
}

.bolly-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.bolly-card .info {
    padding: 18px;
}

.bolly-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.bolly-card p {
    font-size: 14px;
    color: #c9a227;
}

.founder-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.founder-info p {
    color: #b8860b;
    letter-spacing: 1px;
}

.founder-signature {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.founder-signature h4 {
    color: var(--main);
    font-size: 24px;
    margin-bottom: 5px;
}

.founder-signature span {
    color: #b8860b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.locations-section {
    padding: 100px 0;
    background: #fffaf7;
}


.section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.section-heading p {
    color: #6e6e73;
    font-size: 18px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
    transition: .35s;
}

.location-card:hover {
    transform: translateY(-8px);
}

.location-card .map {
    height: 160px;
}

.location-card .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-content {
    padding: 18px;
}

.location-content .location_name h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
}


.address-box,
.phone-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #6e6e73;
}

.address-box p {
    color: #1d1d1f;
    font-size: 14px;
    margin: 0;
}

.phone-box a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.location-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.direction-btn {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    display: grid;
    place-content: center;
    font-size: 12px;
    border-radius: 16px;
    background: var(--gold-light);
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 600;
}

.book-btn {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    display: grid;
    place-content: center;
    font-size: 12px;
    border-radius: 16px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width:768px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

}

.svc-section {
    padding: 100px 0 120px;
    background: #fffaf7;
}

.svc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-card {
    background: #fff;
    border: 1px solid rgba(168, 73, 67, .1);
    border-radius: 22px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(168, 73, 67, .14);
    border-color: rgba(168, 73, 67, .25);
}

.svc-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #9a2923;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.svc-card__icon iconify-icon {
    font-size: 28px;
    color: #fff;
}

.svc-card h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.svc-card p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin: 0 0 22px;
    flex-grow: 1;
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--main);
    text-decoration: none;
    transition: gap .25s ease, color .25s ease;
}

.svc-card__link iconify-icon {
    font-size: 14px;
    transition: transform .25s ease;
}

.svc-card__link:hover {
    gap: 12px;
    color: var(--gold);
}

.svc-card__link:hover iconify-icon {
    transform: translateX(2px);
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .svc-section {
        padding: 80px 0 90px;
    }
}

@media (max-width: 576px) {
    .svc-container {
        padding: 0 20px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-card {
        padding: 30px 26px;
    }

    .svc-section {
        padding: 64px 0 70px;
    }
}

.cw-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}


.cw-perks-section {
    padding: 100px 0 90px;
    background: #fff;
}

.cw-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cw-perk {
    text-align: center;
    padding: 8px;
}

.cw-perk .icon {
    margin: 0 auto 22px;
}

.cw-perk h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.cw-perk p {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ---------- Job openings ---------- */

.cw-openings-section {
    padding: 90px 0 120px;
    background: #fffaf7;
}

.cw-job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cw-job {
    background: #fff;
    border: 1px solid rgba(168, 73, 67, .12);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.cw-job:hover {
    border-color: rgba(168, 73, 67, .3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.cw-job[open] {
    border-color: var(--main);
}

.cw-job__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 30px;
}

.cw-job__summary::-webkit-details-marker {
    display: none;
}

.cw-job__main h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.cw-job__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cw-job__tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    color: #777;
}

.cw-job__tags iconify-icon {
    font-size: 14px;
    color: var(--gold);
}

.cw-job__toggle {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(173, 124, 65, .35);
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform .3s ease, background .25s ease, color .25s ease;
}

.cw-job[open] .cw-job__toggle {
    transform: rotate(45deg);
    background: var(--main);
    color: #fff;
    border-color: var(--main);
}

.cw-job__body {
    padding: 0 30px 30px;
}

.cw-job__body p {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 16px;
}

.cw-job__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cw-job__body ul li {
    position: relative;
    padding-left: 22px;
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #666;
}

.cw-job__body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.cw-job__body .btn-main {
    padding: 13px 28px;
    font-size: 13px;
}

.cw-openings-note {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #777;
    margin-top: 36px;
}

.cw-openings-note a {
    color: var(--main);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cw-openings-note a:hover {
    color: var(--gold);
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .cw-perks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

@media (max-width: 768px) {
    .cw-perks-section {
        padding: 80px 0 70px;
    }

    .cw-openings-section {
        padding: 70px 0 90px;
    }

    .cw-job__summary {
        padding: 22px;
        flex-wrap: wrap;
    }

    .cw-job__body {
        padding: 0 22px 26px;
    }
}

@media (max-width: 576px) {
    .cw-container {
        padding: 0 20px;
    }

    .cw-perks-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cw-job__main h3 {
        font-size: 18px;
    }

    .cw-job__tags {
        gap: 10px 14px;
    }

    .cw-job__tags span {
        font-size: 11.5px;
    }
}



















/* =================================================
   TESTIMONIALS — Full Page
   New CSS only. Reuses existing .testimonial-card,
   .client, .rating, .quote, .featured, .stats-card,
   .stars, .divider, .section-heading exactly as
   already defined — not redefined here. This file
   only adds the page container, the 3-col grid, and
   the stats strip layout, none of which exist yet.
================================================= */

.ts-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Stats strip ---------- */

.ts-stats-section {
    padding: 0 0 40px;
    background: #fff;
}

.ts-stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    background: #fffaf7;
    border: 1px solid rgba(168, 73, 67, .1);
    border-radius: 24px;
    padding: 40px;
}

.ts-stats-card {
    border: none;
    background: transparent;
    padding: 0;
}

.ts-stats-card .stars {
    justify-content: center;
    display: flex;
    gap: 4px;
    margin: 10px 0;
}

.ts-stats-divider {
    width: 1px;
    height: 60px;
    margin: 0;
}

/* ---------- Testimonials grid ---------- */

.ts-section {
    padding: 30px 0 110px;
    background: #fff;
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ts-grid .featured {
    background: linear-gradient(135deg, #a84943, #7a342f);
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .ts-stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding: 32px;
    }

    .ts-stats-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .ts-section {
        padding: 20px 0 80px;
    }
}

@media (max-width: 576px) {
    .ts-container {
        padding: 0 20px;
    }

    .ts-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ts-stats-grid {
        padding: 26px 20px;
        border-radius: 18px;
    }
}











.gv-section {
    padding: 70px 0 120px;
    background: #fff;
}

.gv-subheading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 26px;
}

.gv-subheading iconify-icon {
    font-size: 22px;
    color: #ff0000;
}

.gv-subheading--ig iconify-icon {
    color: #d6249f;
}

.gv-subheading h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* ---------- YouTube grid ---------- */

.gv-yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.gv-yt-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.gv-yt-item iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Instagram Reels grid ---------- */

.gv-ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gv-ig-grid blockquote.instagram-media {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 18px;
    overflow: hidden;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {

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

@media (max-width: 768px) {
    .gv-section {
        padding: 60px 0 90px;
    }

    .gv-yt-grid {
        margin-bottom: 50px;
        gap: 18px;
    }

    .gv-ig-grid {
        gap: 18px;
    }
}

@media (max-width: 576px) {

    .gv-yt-grid,
    .gv-ig-grid {
        grid-template-columns: 1fr;
    }
}

.gal-section {
    padding: 90px 0 120px;
    background: #fff;
}

.gal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Filters ---------- */

.gal-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.gal-filter {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #555;
    background: transparent;
    border: 1.5px solid rgba(173, 124, 65, .3);
    border-radius: 50px;
    padding: 11px 24px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.gal-filter:hover {
    border-color: var(--main);
    color: var(--main);
}

.gal-filter.active {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
}

/* ---------- Masonry grid ---------- */

.gal-grid {
    column-count: 5;
    column-gap: 22px;
}

.gal-item {
    display: block;
    position: relative;
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
    break-inside: avoid;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .5s ease;
}

.gal-item--tall img {
    aspect-ratio: 3 / 4.4;
}

.gal-item--wide img {
    aspect-ratio: 16 / 10;
}

.gal-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, .75) 0%, rgba(17, 17, 17, 0) 55%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    opacity: 0;
    transition: opacity .35s ease;
}

.gal-item:hover .gal-item__overlay {
    opacity: 1;
}

.gal-item:hover img {
    transform: scale(1.06);
}

.gal-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.gal-item__label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.gal-empty {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #888;
    padding: 60px 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
    .gal-grid {
        column-count: 4;
    }
}

@media (max-width: 768px) {
    .gal-section {
        padding: 70px 0 90px;
    }

    .gal-grid {
        column-count: 2;
        column-gap: 14px;
    }

    .gal-item {
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .gal-filters {
        gap: 8px;
        margin-bottom: 36px;
    }

    .gal-filter {
        font-size: 12px;
        padding: 9px 18px;
    }
}

@media (max-width: 576px) {
    .gal-container {
        padding: 0 16px;
    }

    .gal-grid {
        column-count: 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gal-item img,
    .gal-item__overlay {
        transition: none;
    }
}

.offers-section {
    padding: 120px 20px;
    background: #000;
}

.container {
    max-width: 1320px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header span {
    display: inline-block;
    padding: 10px 18px;
    background: #f3e8d8;
    color: #8b5e3c;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 32px;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    transition: .4s;
}

.offer-card:hover {
    transform: translateY(-12px);
}

.offer-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(0, 0, 0, .03);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.offer-card.featured {
    overflow: hidden;
    cursor: no-drop;
    position: relative;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.offer-card.featured::after {
    content: "SOLD OUT";
    position: absolute;
    top: 30px;
    right: -45px;
    width: 180px;
    text-align: center;
    padding: 10px 0;
    background: #ef4444;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.offer-card.featured a {
    cursor: no-drop;
}

.offer-card.featured h3,
.offer-card.featured .offer-note,
.offer-card.featured .offer-tag,
.offer-card.featured .offer-discount {
    color: #fff;
}

.offer-badge {
    display: inline-block;
    background: #fff4e5;
    color: #ff7b00;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.offer-tag {
    display: block;
    color: #c08a4a;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.offer-card h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 800;
}


.offer-discount span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #d97706;
    margin-top: 5px;
    margin-bottom: 15px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    transition: .3s;
}

.featured .offer-btn {
    background: #fbbf24;
    color: #111827;
}

.offer-btn:hover {
    transform: translateX(6px);
}

.offer-note {
    margin-bottom: 0px;
    margin-top: 19px;
    font-size: 10px;
    color: #6b7280;
}

@media(max-width:991px) {

    .offers-grid {
        grid-template-columns: 2fr;
    }

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





@media (max-width: 576px) {

    .offers-grid {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

}









.coupon-modal {
    border: none;
    border-radius: 30px;
    overflow: hidden;
}

.modal-header {
    padding: 30px 30px 10px;
}

.modal-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #fff4e5;
    color: #ff7b00;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.modal-body {
    padding: 20px;
}

.coupon-modal label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.coupon-modal label span {
    font-size: 12px;
}

.coupon-modal textarea.form-control {
    height: auto;
    resize: none;
}

.gender-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.gender-option {
    margin: 0;
}

.gender-option input {
    display: none;
}

.gender-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: .3s;
}

.gender-option span iconify-icon {
    font-size: 26px;
}

.gender-option input:checked+span {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    margin-top: 25px;
    background: var(--main);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

@media(max-width:767px) {

    .modal-body,
    .modal-header {
        padding: 20px;
    }

    .modal-title {
        font-size: 22px;
    }
}







.founderSwiper {
    width: 100%;
    overflow: hidden;
}

.founderSwiper .swiper-wrapper {
    align-items: center;
}

.founderSwiper .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.custom-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: #d1940b;
    opacity: 1;
    transition: .4s;
}

.custom-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: #a84943;
}

.founderSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.founderSwiper .swiper-wrapper {
    width: 100%;
}

.founderSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

.founder-img img {
    width: 100%;
    display: block;
}

label.req {
    position: relative;
}

label.req::after {
    content: "*";
    color: red;
    margin: 4px 2px;
}








.compare-section {
    padding: 100px 0;
    background: #f8fafc;
}

.compare-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.compare-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.compare-overlay img {
    width: 900px;
    height: 600px;
    object-fit: cover;
}

.compare-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
}

.compare-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #fff;
    z-index: 15;
    pointer-events: none;
}

.compare-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #534AB7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(83, 74, 183, .3);
}

.compare-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 14px;
    z-index: 10;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

@media(max-width:768px) {

    .compare-img {
        height: 400px;
    }

    .compare-overlay img {
        height: 400px;
    }

    .compare-handle span {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.awardsSwiper {
    width: 100%;
    overflow: hidden;
}

.awardsSwiper .swiper-wrapper {
    display: flex;
}

.awardsSwiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.fm-image {
    width: 100%;
}

.fm-image img {
    width: 100%;
    display: block;
}









































/*==========================
SPIN BOX
===========================*/

.spin-box {
    width: 100%;
    padding: 80px 0;
    background:
        radial-gradient(circle at top, #2b2b2b 0%, #090909 45%, #000 100%);
}

/*==========================
CENTER LAYOUT
===========================*/

.spin-container {

    width: 100%;
    max-width: 850px;
    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-section {

    width: 100%;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 215, 0, .15);

    border-radius: 30px;

    padding: 45px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 0 70px rgba(255, 187, 0, .15),
        inset 0 0 30px rgba(255, 255, 255, .03);

    position: relative;
    overflow: hidden;
}

/* Golden Glow Border */

.slot-section::before {

    content: "";

    position: absolute;
    inset: -2px;

    border-radius: 30px;

    padding: 2px;

    background: linear-gradient(135deg,
            #ffde59,
            #ffb300,
            #fff2a8,
            #ffb300);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}

/*==========================
WINNER CARD
===========================*/

.winner-card {

    margin-top: 35px;

    background: #111;

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    border: 1px solid rgba(255, 215, 0, .15);

    box-shadow:
        0 0 30px rgba(255, 187, 0, .15);
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:768px) {

    .slot-section {

        padding: 25px;

    }

    .slot-body {

        padding: 20px;
        gap: 10px;

    }

    .slot-window {

        width: 90px;
        height: 90px;

    }

    .reel div {

        height: 90px;
        font-size: 30px;

    }

    .machine-handle {

        display: none;

    }

    .slot-title {

        flex-direction: column;
        gap: 12px;

    }

    .slot-title h2 {

        font-size: 26px;

    }

    .spin-btn {

        height: 55px;
        font-size: 17px;

    }

    .winner-card h1 {

        font-size: 40px;

    }

}

.custom-picker {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    flex-wrap: nowrap;
}

.custom-picker .input-group-text {
    background: #fff;
    border: 0;
    color: #0d6efd;
    font-size: 20px;
    padding: 0 16px;
}

.custom-picker .form-control {
    border: 0;
    height: 52px;
    font-size: 15px;
    box-shadow: none;
}

.custom-picker:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .12);
}

html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100%;
}























.spin-box {
    background: #fff;
    border-radius: 24px;
    border: 0.5px solid var(--color-border-tertiary);
    padding: 2rem 1.5rem 1.5rem;
    width: 100%;
    max-width: 600px;
    /* position: relative;
    overflow: hidden; */
}

.spin-box .popup-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.spin-box .popup-tag {
    display: inline-block;
    background: #EEEDFE;
    color: #3C3489;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.spin-box .popup-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.25;
}

.spin-box .popup-sub {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.spin-box .wheel-wrap {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto 1.25rem;
}

.spin-box .wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid #534AB7;
    filter: drop-shadow(0 2px 4px rgba(83, 74, 183, .4));
    z-index: 10;
}

.spin-box #wheelCanvas {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    display: block;
}

.spin-box .spin-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #534AB7;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.spin-box .spin-btn:hover {
    background: #3C3489;
}

.spin-box .footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-top: 10px;
}

.spin-box .result-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.spin-box .result-overlay.show {
    display: flex;
}

.spin-box .result-overlay .result-modal {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    animation: popupScale .35s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.result-emoji {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 15px;
}

.result-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.result-value {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.result-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.result-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 22px;
    background: #EEEDFE;
    color: #534AB7;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.retry-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #534AB7;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.retry-btn:hover {
    background: #3C3489;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #ff000015;
    color: #ff0000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
}

@keyframes popupScale {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media(max-width:576px) {

    .spin-box .result-overlay .result-modal {
        padding: 25px 20px;
    }

    .result-value {
        font-size: 28px;
    }

    .result-code {
        font-size: 18px;
        min-width: 150px;
    }
}

@media(max-width:576px) {
    .experience-badge h3 {
        font-size: 30px;
    }

    .experience-badge span {
        font-size: 12px;
    }

    .spin-box #wheelCanvas,
    .spin-box .wheel-wrap {
        width: 100%;
        height: 100%;
    }

    .spin-box {
        padding: 5px;
    }

    .founder-message .fm-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }


}

@media (min-width: 991px) and (max-width: 1200px) {
.compare-wrapper,
    .compare-overlay img,
    .compare-img {
        width: 800px;
    }
}


@media (min-width: 768px) and (max-width: 990px) {
.compare-wrapper,
    .compare-overlay img,
    .compare-img {
        width: 700px;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
.compare-wrapper,
    .compare-overlay img,
    .compare-img {
        width: 400px;
    }
}
@media (min-width: 280px) and (max-width: 480px) {
.compare-wrapper,
    .compare-overlay img,
    .compare-img {
        width: 300px;
    }
}


.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 62, 93, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: all .3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}
