@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

@font-face {
    font-family: 'asthetic';
    src: url('assets/fonts/Aesthetic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'goudos';
    src: url('assets/fonts/GOUDOS.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Baskerville';
    src: url('assets/fonts/Baskerville.ttc') format('truetype-collection');
    font-weight: normal;
    font-style: normal;
}



:root {
    --gold-clr: #D1A22C;
    --pale-gray: #cec5be;
    --pale-blue: #929496;
    --pale-pink: #fdf1e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {

    background-color: #fff;
    font-family: 'Georgia', serif;
    color: white;
}

.main {
    max-width: 130rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

img {
    width: 100%;
}

/* hero section */

.hero-sec {
    width: 100%;
    background-image: url("assets/imgs/hero-bg.webp");
    aspect-ratio: 1500 / 660;
    justify-content: flex-end;
    align-items: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-sec.desk {
    display: flex;
}

.hero-sec.mob {
    display: none;
}

.hero-txt-box {
    margin: auto 4rem 4rem auto;
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.hero-txt,
.hero-txt-last {
    padding: 0;
    margin: 0;
    font-family: "Baskerville";
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 1.2px;
    font-style: italic;
    font-weight: 300;
}

.hero-txt-last {
    line-height: 3;
}

.gold-txt {
    color: var(--gold-clr);
    font-family: "Baskerville";
}

.gold-under-line {
    text-decoration: underline;
    text-decoration-color: var(--gold-clr);
    font-family: "Baskerville";
}

@media (max-width: 500px) {
    .hero-sec.desk {
        display: none;

    }

    .hero-sec.mob {
        display: flex;
        width: 100vw;
        height: 100vh;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .7)),
            url('assets/imgs/hero-bg-mob.webp');
        aspect-ratio: 1 / 2;
    }

    .hero-txt-box {
        margin: auto 2rem 2rem auto;
    }

    .hero-txt,
    .hero-txt-last {
        font-size: 2.5rem;
    }
}

/* trust section */

.trust-sec.desk {
    background-color: var(--pale-pink);
    width: 100%;
    padding: 0 4rem;

    display: grid;
    grid-template-columns: 70% 30%;
    justify-items: center;
    align-items: center;
    height: 30rem;

    position: relative;
}

.trust-sec.mob {
    display: none;
}

.trust-sec .neckless-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    height: 100%;
    object-fit: contain;

    aspect-ratio: 1000 / 810;
}

.trust-sec .left {
    align-self: start;
    padding: 2rem 0;
}

.trust-sec .left p,
.trust-sec .left p span {
    font-family: "asthetic";
    font-size: 12rem;
    color: var(--pale-gray);
}

.trust-sec .left p span {
    color: var(--gold-clr);
}


.trust-sec .right {
    align-self: end;
    color: var(--pale-blue);
    padding: 2rem 0;
}

.trust-sec .right .top p {
    font-family: "goudos";
    font-size: 3.5rem;
}

.trust-sec .right .top .first {
    margin-bottom: -1rem;
}

.trust-sec .right .btm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: end;
}

.trust-sec .right .btm p {

    font-family: sans-serif;
    font-size: .8rem;

    padding: .5rem;

}

.trust-sec .right .btm .left-text {
    border-right: 1px solid var(--pale-gray);
}

.trust-sec .right .btm span {
    font-size: .9rem;
}

@media (max-width: 500px) {

    .trust-sec.desk {
        display: none;
    }

    .trust-sec.mob {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;

        width: 100%;

        position: relative;

        padding-bottom: 2rem;

        background-color: var(--pale-pink);
    }

    .trust-sec.mob .neckless-img {
        position: absolute;
        right: 0;
        top: 0;
        left: auto;
        width: 70%;
        transform: none;
        height: auto;
        aspect-ratio: 610 / 810;
    }

    .trust-sec.mob .heading-box {
        padding-top: 6rem;
    }

    .trust-sec.mob .heading,
    .trust-sec.mob .heading span {
        font-family: "asthetic";
        font-size: 27vw;
        color: var(--pale-gray);
        padding-left: 2rem;
        line-height: 1;
    }

    .trust-sec.mob .heading span {
        color: var(--gold-clr);
        padding: 0;
    }

    .trust-sec.mob .top {
        padding-left: 2rem;
        color: var(--pale-blue);
    }

    .trust-sec.mob .top p {
        font-family: "goudos";
        font-size: 2.5rem;
    }

    .trust-sec.mob .top .first {
        margin-bottom: -.8rem;
    }

    .trust-sec.mob .btm {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: end;
        padding-left: 2rem;
        color: var(--pale-blue);
    }

    .trust-sec.mob .btm p {

        font-family: sans-serif;
        font-size: .7rem;

        padding: .5rem;

    }

    .trust-sec.mob .btm p span {
        color: var(--pale-blue);
    }

    .trust-sec.mob .btm .left-text {
        border-right: 1px solid var(--pale-gray);
    }

    .trust-sec.mob .btm span {
        font-size: .8rem;
    }
}


/* leader section */

.leader-sec {
    width: 100%;

    display: grid;
    grid-template-columns: 50% 50%;

    justify-items: center;
    align-items: center;

    padding: 0 4rem;
    background-image: url('assets/imgs/leader-bg-1.svg'),
        linear-gradient(#7b0f14, #7b0f14);

    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: bottom;
}

.leader-sec .left,
.leader-sec .left .img {

    width: 100%;
    position: relative;
}

.leader-sec .left .left-inner {
    position: absolute;
    top: 0;
    left: 0;

    display: grid;
    grid-template-columns: 50% 50%;

    justify-items: center;
    align-items: center;

    /* padding: 1rem; */
    width: 100%;
    height: 100%;
}

.leader-sec .left .left-inner .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.leader-sec .left .left-inner .left .img-box,
.leader-sec .left .left-inner .left p {
    width: 80%;
    margin: auto;
}

.leader-sec .left .left-inner .left .img-box {
    margin-bottom: 1rem;
}

.leader-sec .left .left-inner .left p {
    font-weight: 600;
    font-size: .9rem;
    font-family: sans-serif;
}

.leader-sec .left .left-inner .left .last {
    color: var(--gold-clr);
}

.leader-sec .left .left-inner .right {
    font-size: .9rem;
    font-weight: 400;
    font-family: sans-serif;
    padding-right: 2rem;
}

.leader-sec .left .left-inner .right .first-para {
    margin-bottom: 1rem;
}


.carousel-container {
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.carousel-title {
    font-size: 2.5rem;
    font-family: "goudos";
    margin-bottom: 2rem;
    color: #fff;
}

.owl-carousel .item {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.leader-card {
    color: white;
}

.leader-card img {
    width: 100%;
    height: auto;
}

.leader-info {
    text-align: left;
}

.leader-info h4 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.leader-info p {
    margin: 0;
    font-size: 14px;
    color: #d3a62f;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
    margin-left: auto;
    width: fit-content;
}

.owl-theme .owl-dots .owl-dot {
    background-color: var(--gold-clr);
}

.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: none;
    border: none;
    font-size: 30px;
    color: white;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    height: 5px;
    width: 25px;
    margin: 5px;
    background: #a76c32;
    display: inline-block;
}

.owl-dot.active {
    background: #f9bf3b;
    width: 40px;
}

@media (max-width: 500px) {

    .leader-sec {
        grid-template-columns: 100%;
        padding: 2rem 1rem;
    }

    .leader-sec .left .left-inner .left .img-box,
    .leader-sec .left .left-inner .left p {
        width: 80%;
        margin: auto;
    }

    .leader-sec .left .left-inner .right {
        padding-right: .6rem;
    }

    .leader-sec .left .left-inner .left p,
    .leader-sec .left .left-inner .right {
        font-size: 11px;
    }

    .leader-sec .left .left-inner .right .first-para {
        margin-bottom: .5rem;

    }


    .carousel-title {
        font-size: 1.3rem;
        font-family: "goudos";
        margin-bottom: 2rem;
        color: #fff;
    }

    .carousel-container {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }

    .owl-carousel .item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: .5rem;
        padding: 0;
    }

    .leader-info h4 {
        margin: 10px 0 5px;
        font-size: 12px;
    }

    .leader-info p {
        margin: 0;
        font-size: 10px;
        color: #d3a62f;
    }

    .owl-dot {
        height: 3px;
    }
}

/* mission vision section */

.min-vin-sec.desk {

    width: 100%;

    display: grid;
    grid-template-rows: 40% 60%;
    justify-items: center;
    align-items: center;

    position: relative;

}

.min-vin-sec.mob {
    display: none;
}

.vis-ring {
    position: absolute;
    top: 7vw;
    left: 37vw;
    width: 28vw;
}

.min-vin-sec.desk .vision,
.min-vin-sec.desk .mission {
    display: grid;
    grid-template-columns: 70% 28%;
    width: 100%;
    justify-items: end;
    align-items: center;

    gap: 2rem;
    padding: 2rem;
    padding-top: 2rem;
}


.min-vin-sec.desk .vision {
    background-color: var(--pale-pink);
    padding-top: 2rem;
    padding-bottom: 0;
}

.min-vin-sec.desk .mission {
    padding-bottom: 2rem;
}

.min-vin-sec.desk .vision .left,
.min-vin-sec.desk .mission .left {
    font-size: 14vw;
    font-family: "asthetic";
    color: var(--pale-gray);
}

.min-vin-sec.desk .vision .right,
.min-vin-sec.desk .mission .right {
    font-size: 1.2vw;
    color: #232323;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.min-vin-sec.desk .mission .right img {
    width: 12vw;
}

.min-vin-sec.desk .mission .right .text {
    position: absolute;

    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 1rem;
    background-color: #fff;
    width: 100%;
}


@media (max-width: 500px) {
    .min-vin-sec.desk {
        display: none;
    }

    .min-vin-sec.mob {
        width: 100%;

        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;

        position: relative;
    }

    .vis-ring {
        position: absolute;
        top: 12vw;
        left: 38vw;
        width: 40vw;
    }

    .min-vin-sec.mob .vision,
    .min-vin-sec.mob .mission {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-items: end;
        align-items: center;

        gap: 1rem;
        padding: 1rem;
    }

    .min-vin-sec.mob .mission {
        gap: 0;
        position: relative;
    }

    .mission-inner {
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background-color: #fff;
    }

    .min-vin-sec.mob .vision {
        background-color: var(--pale-pink);
        padding-top: 1rem;
    }

    .min-vin-sec.mob .mission {
        padding-bottom: 1rem;
    }

    .min-vin-sec.mob .vision .left,
    .min-vin-sec.mob .mission .left {
        font-size: 23vw;
        font-family: "asthetic";
        color: var(--pale-gray);
    }

    .min-vin-sec.mob .mission .left {
        line-height: 1;
    }

    .min-vin-sec.mob .vision .right,
    .min-vin-sec.mob .mission .right {
        font-size: 3vw;
        color: #232323;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 77%;
    }

    .min-vin-sec.mob .mission img {
        width: 40vw;
    }

    .min-vin-sec.mob .mission .right .text {
        /* position: absolute;
        display: none; */
    }
}

/* map section */

.map-sec {
    width: 100%;

    display: grid;
    grid-template-columns: 20% 60% 20%;
    justify-items: center;
    align-items: start;

    gap: 2rem;

    padding: 4rem;

    background-color: var(--pale-pink);
}

.store-imgs {
    display: grid;
    grid-template-rows: 30% 60% 10%;
    justify-items: center;
    align-items: center;
    width: 100%;
    height: 100%;

}

.store-map-heading {

    align-self: end;

    background-color: #7b0f14;
    color: var(--gold-clr);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.store-map-heading p {
    font-size: 2rem;
    font-family: "goudos";
}

.store-list {
    height: 400px;
    overflow-y: scroll;
}

#map {
    height: 400px;
    width: 100%;
}

.store-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.store {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 5px;

    color: #000;

    padding-bottom: 1rem;

    border-bottom: 1px solid var(--gold-clr);

    width: 100%;
}

.store h4 {
    margin-bottom: .5rem;
}

.store:hover {
    background-color: #ddd;
}

.store.active {
    background-color: #ddd7d2;
}

.outer-box {
    display: grid;
    grid-template-columns: 19% 79%;
    gap: 2%;

    width: 100%;
}

@media (max-width: 500px) {

    .store-list {
        order: 2;
    }

    #map {
        order: 1;
    }

    .outer-box {
        grid-template-columns: 1fr;
    }

    .map-sec {
        width: 100%;

        display: block;

        gap: 2rem;

        padding: 2rem;

        background-color: var(--pale-pink);
    }

    .store-imgs {
        display: grid;
        grid-template-rows: 4rem;
        justify-items: center;
        align-items: center;
        width: 100%;
        height: 100%;

    }

    .store-list {
        flex-direction: row;
        justify-content: space-between;
        overflow-x: scroll;
        overflow-y: hidden;
        height: 100%;
    }

    .store {
        border-right: 1px solid var(--gold-clr);
        border-bottom: 0;
        padding: 1rem;
        padding-right: .3rem;
        padding-bottom: 0;
        padding-bottom: 1rem;
        height: 100%;
        max-width: 8rem;
        min-width: 8rem;

        color: #232323;
    }

    .store h4 {

        font-size: 12px;
    }

    .store p {

        font-size: 10px;
    }

    .info-content {
        font-size: .8rem;
    }

    .store-map-heading {
        flex-direction: row;
        gap: 1rem;
        height: 100%;
    }

}

.custom-info-window {
    background-color: #232323;
    /* Dark background */
    color: #fff;
    /* White font */
    padding: 10px;
    position: relative;
    border-radius: 8px;

    display: flex;
    gap: 5px;
}

.custom-info-window .info-content {
    font-size: 14px;
    line-height: 1.5;
}

.custom-info-window .close-btn {
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: red;
    /* Red background for close button */
    color: white;
    /* White cross */
    font-size: 18px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gm-style-iw-chr {
    display: none;
}

.gm-style .gm-style-iw-c {
    padding: 0;
}

.gm-style-iw-d {
    overflow: auto !important;
    max-height: auto;
}

/* awards section */

.award-sec {
    width: 100%;

    padding: 2rem;

    display: grid;
    grid-template-columns: 25% 75%;
}

.award-sec .left {
    position: relative;
}

.award-sec .left .heading {

    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;

}

.award-sec .left .heading p {
    font-family: "Cinzel";
    font-size: 5vw;
}

.carousel-container-1 {
    padding: 0;
}

.owl-carousel-2 .item {
    padding: 0 1rem;

    border-right: 1px solid #000;
}

.owl-carousel-2 .leader-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: .5rem;
}

.owl-carousel-2 h4,
.owl-carousel-2 p {
    color: #000;
}

@media (max-width: 500px) {
    .award-sec {
        grid-template-columns: 100%;
    }

    .award-sec .left .heading p {
        font-size: 8vh;
    }
    
}