:root {
    --theme-white: #fdfeff;
    --theme-font: #211C84;
    --theme-blue-500: #4D55CC;
    --theme-blue-400: #7A73D1;
    --theme-blue-200: #B5A8D5;
    --theme-blue-100: #d9ebf2;
    --theme-red: #E83F25;
    --theme-black: #030303;
    --theme-header-footer: #eeddcf;
    --animationStartsAfter: 10vh;
    --animationDistance: 150px;
    --heading-font: "Raleway", sans-serif;
}

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

body {
    font-family: "Scope One", serif;
    scroll-behavior: smooth;
}

.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

video {
    width: 100%;
    display: block;
}

iframe {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.col-1 {
    width: 8.33%;
    padding: 10px;
}

.col-2 {
    width: 16.66%;
    padding: 10px;
}

.col-3 {
    width: 25%;
    padding: 10px;
}

.col-4 {
    width: 33.33%;
    padding: 10px;
}

.col-5 {
    width: 41.65%;
    padding: 10px;
}

.col-6 {
    width: 50%;
    padding: 10px;
}

.col-7 {
    width: 58.31%;
    padding: 10px;
}

.col-8 {
    width: 66.64%;
    padding: 10px;
}

.col-9 {
    width: 75%;
    padding: 10px;
}

.col-10 {
    width: 83.3%;
    padding: 10px;
}

.col-11 {
    width: 91.63%;
    padding: 10px;
}

.col-12 {
    width: 100%;
    padding: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.ms-1 {
    margin-left: 16px;
}

.ms-3 {
    margin-left: 48px;
}

.me-1 {
    margin-right: 16px;
}

.me-2 {
    margin-right: 32px;
}

.ms-5 {
    margin-left: 80px;
}

.mb-1 {
    margin-bottom: 35px;
}

.mb-3 {
    margin-bottom: 80px;
}

.my-2 {
    margin: 20px 0;
}

.mt-1 {
    margin-top: 16px;
}

.p-1 {
    padding: 16px;
}

.pt-1 {
    padding-top: 10px;
}

.py-5 {
    padding: 20px;
}

.d-flex {
    display: flex;
}

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

.justify-content-start {
    justify-content: flex-start;
}

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

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.align-item-start {
    align-items: flex-start;
}

.align-item-center {
    align-items: center;
}

.align-item-end {
    align-items: flex-end;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.divider-100h {
    height: 100px;
}

.divider-50h {
    height: 50px;
}

/* Header Section Start */
header {
    background-color: var(--theme-white);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo image styling */
.navbar-brand img {
    height: 60px;
    width: 100px;
}

/* Navbar links styling */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--theme-white);
    font-weight: 700;
    background-color: var(--theme-font);
}

/* Active nav link styling */
.navbar-nav .nav-link.active {
    background-color: var(--theme-font);
    border-bottom: 2px solid var(--theme-font);
}

/* Optional: change navbar background and shadow */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Navbar toggler customization (hamburger icon) */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile menu style */
@media (max-width: 991.98px) {
    .navbar-nav {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 0.25rem;
    }
}


/* Header Section End */

/* Hero Section Start */
.hero {
    width: 100%;
    height: 100vh;
    background: url('../images/hero.jpg'), linear-gradient(#ffffffcc);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.hero .hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero .hero-image h1 {
    font-size: 45px;
    font-weight: 700;
    color: var(--theme-font);
    margin-bottom: 20px;
    font-family: var(--heading-font)
}

.hero .hero-image p {
    font-size: 20px;
    color: var(--theme-font);
}

.hero .hero-image a {
    border: 2px solid var(--theme-font);
    border-radius: 10px;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 20px;
    background-color: var(--theme-font);
    color: var(--theme-white);
    font-size: 16px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    text-decoration: none;
}

.hero .hero-image a:hover {
    background-color: var(--theme-blue-500);
}

/* Hero Section End */

/* Quality Section Start */
.quality .quality-items {
    text-align: center;
}

.quality .quality-items .item1 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.quality .quality-items .item1 img {
    width: 100px;
    margin-bottom: 10px;
}

.quality .quality-items p {
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.quality .quality-items p span {
    color: var(--theme-red);
    font-weight: 700;
}

/* Quality Section End */

/* Product Section Start */
.product {
    background: linear-gradient(0.25turn, #6ea8c1, #ebf8e1, #6ea8c1);
}

.product .product-header h1 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-align: center;
    color: var(--theme-font);
    margin-bottom: 10px;
    padding-top: 40px;
}

.product .product-item {
    background-color: var(--theme-white);
    padding: 20px 10px;
    margin: 40px 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .product-item .product-img {
    width: 250px;
    height: 300px;
}

.product .product-detail {
    text-align: center;
}

.product .product-detail h1 {
    font-size: 32px;
}

.product .product-detail h1 span {
    color: var(--theme-font);
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Product Section End */

/* Why to choose us Section Start */
.choose-us .choose-header h1 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-align: center;
    color: var(--theme-font);
    margin-bottom: 50px;
}

.choose-us .choose-content ul {
    margin-top: 50px;
    padding-left: 0;
}

.choose-us .choose-content ul li {
    padding: 5px 0;
    font-size: 16px;
    color: var(--theme-font);
    font-weight: 400;
    display: flex;
}

.choose-us .choose-content ul li span i {
    color: var(--theme-font);
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
}

/* Why to choose us Section End */

/* Dealership Section Start */
.dealership {
    background-color: var(--theme-blue-100);
    text-align: center;
    padding: 40px;
}

.dealership .dealership-header h4 {
    color: var(--theme-font);
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.dealership .dealership-header h1 {
    font-size: 28px;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 10px;
}

.dealership .dealership-header h1 span {
    color: var(--theme-font);
}

.dealership .dealership-header p {
    color: var(--theme-blue-500);
    margin-bottom: 30px;
}

.dealership .dealership-content {
    background-color: var(--theme-white);
    text-align: center;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 15px 10px;
    margin: 10px 0;
    max-width: 300px;
}

.dealership .dealership-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg,
            transparent,
            transparent 30%,
            var(--theme-blue-500));
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.dealership .dealership-content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--theme-blue-500);
}

.dealership .dealership-content:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.dealership .dealership-content img {
    width: 75px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 10px;
}

.dealership .dealership-content h3 {
    margin-top: 80px;
    font-size: 21px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--theme-font);
    margin-bottom: 10px;
}

.dealership .dealership-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Dealership Section End */

/* About Section Start */
.about .about-content {
    padding: 20px;
}

.about .about-content h1 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--theme-font);
    margin-bottom: 20px;
}

.about .about-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.about .about-content p span {
    color: var(--theme-font);
    font-size: 18px;
    font-weight: 700;
}

.about .about-image {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
    display: block;
    position: relative;
}

.about .about-image .st-zoom,
.product .product-item .st-zoom {
    overflow: hidden;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.about .about-image .st-zoom .zoom-in,
.product .product-item .st-zoom .zoom-in {
    transition: all 0.3s ease-in-out;
}

.about .about-image .st-zoom:hover .zoom-in,
.product .product-item .st-zoom:hover .zoom-in {
    transform: scale(1.07);
}

/* About Section End */

/* Mission Section Start */
.mission {
    background-color: var(--theme-blue-100);
    padding: 30px 0;
}

.mission .mission-content h4 {
    color: var(--theme-font);
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.mission .mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.mission .mission-image {
    width: 75px;
}

.mission .mission-content p {
    margin-bottom: 10px;
}

/* Mission Section End */

/* Values Section Start */
.values .values-header {
    text-align: center;
}

.values .values-header h4 {
    color: var(--theme-font);
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.values .values-header h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.values .values-items {
    background-color: var(--theme-white);
    box-shadow: 1px 5px 10px #e4e5e6;
    border-radius: 5px;
    padding: 30px 0 30px 30px;
    transition: all 0.3s ease-in-out;
    width: 390px;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 5px;
}

.values .values-items:hover {
    background-color: var(--theme-font);
}

.values .values-items:hover .beforehover {
    display: none;
}

.values .values-items:hover .afterhover {
    display: block;
}

.values .values-items:hover h4,
.values .values-items:hover ul li {
    color: var(--theme-white);
}

.values .values-items img {
    width: 80px;
    margin-bottom: 20px;
}

.values .values-items .afterhover {
    display: none;
    transition: all 0.3s ease-in-out;
}

.values .values-items h4 {
    color: var(--theme-font);
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.values .values-items ul {
    list-style: circle;
    padding-left: 0;
}

.values .values-items ul li {
    padding: 5px;
    color: #808080;
    transition: all 0.3s ease-in-out;
}

/* Values Section End */

/* Vision Section Start */
.vision {
    background-color: var(--theme-blue-100);
    padding: 30px 0;
}

.vision .vision-content h4 {
    color: var(--theme-font);
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.vision .vision-content h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.vision .vision-content p {
    text-align: justify;
    margin-bottom: 10px;
}

.vision .vision-video {
    min-width: 200px;
}

/* Vision Section End */

/* Contact Section Start */
.contact .contact-header h2 {
    color: var(--theme-font);
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
}

.contact .contact-detail {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    min-width: 300px;
}

.contact .contact-detail:hover {
    background-color: var(--theme-font);
}

.contact .contact-detail:hover .contact-icon {
    background-color: var(--theme-white);
    color: var(--theme-font);
}

.contact .contact-detail:hover h3,
.contact .contact-detail:hover h4,
.contact .contact-detail:hover h5,
.contact .contact-detail:hover p {
    color: var(--theme-white);
}

.contact .contact-detail .contact-icon {
    height: 52px;
    width: 52px;
    background-color: var(--theme-font);
    border-radius: 52px;
    font-size: 26px;
    color: var(--theme-white);
    margin: 0 auto 22px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.contact .contact-detail .contact-icon .fa-location-dot,
.contact .contact-detail .contact-icon .fa-phone-volume,
.contact .contact-detail .contact-icon .fa-envelope {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact .contact-detail h3 {
    margin-bottom: 5px;
    font-family: var(--heading-font);
    transition: all 0.3s ease-in-out;
    font-size: 24px;
}

.contact .contact-detail h4 {
    font-size: 21px;
}

.contact .contact-detail h5 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

/* Contact Section End */

/* Reach us Section Start */
.reach-us .reach-header h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--theme-font);
}

.reach-us .reach-header iframe {
    min-width: 200px;
    margin-bottom: 20px;
}

.reach-us .msg-header h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--theme-font);
}

.reach-us .msg-details input,
textarea {
    padding: 10px 20px;
    margin: 10px 20px 5px 0;
    background-color: var(--theme-white);
    border: 1px solid var(--theme-font);
    border-radius: 10px;
    outline: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    width: 100%;
}

.reach-us .msg-details textarea {
    height: 170px;
    width: 100%;
    margin-top: 10px;
}

.reach-us .msg-details input:focus,
.reach-us .msg-details textarea:focus {
    border: 2px solid var(--theme-font);
}

.reach-us .msg-details .btn-submit {
    border: 2px solid var(--theme-font);
    border-radius: 10px;
    background-color: var(--theme-font);
    color: var(--theme-white);
    outline: 0;
    padding: 10px 20px;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.reach-us .msg-details .btn-submit:hover {
    background-color: var(--theme-blue-400);
}

/* Reach us Section End */

/* Recipes Section Start */
.recipes .recipes-header h2 {
    color: var(--theme-font);
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    margin-top: 30px;
}

.recipes .recipes-header h2::before {
    content: "";
    width: 140px;
    height: 3px;
    background-color: var(--theme-blue-100);
    position: absolute;
    bottom: -10px;
}

.recipes .recipes-header h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: var(--theme-font);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.recipes .recipe-item {
    margin-bottom: 20px;
    max-width: 360px;
}

.recipes .recipe-item .recipe-image {
    overflow: hidden;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.recipes .recipe-item .recipe-image .zoom-in {
    transition: all 0.4s ease-in-out;
}

.recipes .recipe-item .recipe-image:hover .zoom-in {
    transform: scale(1.07);
}

.recipes .recipe-item .recipe-image h3 {
    width: 97%;
    font-size: 22px;
    font-family: var(--heading-font);
    position: absolute;
    bottom: 0;
    padding: 0px 25px;
    line-height: 44px;
    margin: 0;
    left: 0;
    font-weight: 400;
    background-color: var(--theme-font);
    color: var(--theme-white);
    letter-spacing: 1px;
    text-align: center;
}

.recipes .recipe-item .recipe-image h3::before {
    content: "";
    position: absolute;
    left: 100%;
    border-style: solid;
    border-width: 44px 0 0 12px;
    border-color: transparent transparent transparent var(--theme-font);
    top: 0;
}

.recipes .recipe-item .recipe-detail {
    position: relative;
}

.recipes .recipe-item .recipe-detail p {
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--theme-blue-100);
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 15px;
}

.recipes .recipe-item .recipe-detail a {
    text-decoration: none;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #333;
    line-height: 40px;
    padding: 0 20px;
    color: var(--theme-white);
    font-weight: 500;
    font-size: 16px;
    font-family: var(--heading-font);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.recipes .recipe-item .recipe-detail a:hover {
    background-color: var(--theme-red);
}

/* Recipes Section End */

/* Recipes1 Section Start */
.recipe1 .recipe1-header {
    text-align: center;
    margin-top: 30px;
}

.recipe1 .recipe1-header h1 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--theme-font);
    margin-bottom: 30px;
}

.recipe1 .recipe1-header .recipe1-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipe1 .recipe1-header .recipe1-image img {
    max-width: 700px;
    height: 400px;
}

.recipe1 .recipe1-detail {
    padding: 20px 0;
}

.recipe1 .recipe1-detail ul {
    padding-left: 0;
}

.recipe1 .recipe1-detail ul li {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}

.recipe1 .recipe1-detail ul li i {
    font-size: 24px;
    color: var(--theme-font);
    margin-right: 10px;
}

.recipe1 .recipe1-detail ul li h3 {
    font-size: 21px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.recipe1 .recipe1-detail ul li h3 span {
    font-weight: 400;
}

.recipe1 .recipe-items {
    display: flex;
}

.recipe1 h2 {
    padding-top: 10px;
    font-size: 24px;
    font-family: var(--heading-font);
    margin-bottom: 5px;
}

.recipe1 .recipe-items ul {
    width: 50%;
    padding-left: 0;
}

.recipe1 .recipe-items ul li {
    margin-top: 5px;
    display: flex;
}

.recipe1 .recipe-items ul li i {
    font-size: 16px;
    color: var(--theme-font);
    margin-right: 10px;
    margin-top: 5px;
}

.recipe1 .recipe-items ul li h4 {
    font-size: 18px;
    font-weight: 500;
}

.recipe1 h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--theme-font);
    margin-bottom: 20px;
}

.recipe1 .recipe-process ul {
    padding-left: 0;
    margin-bottom: 0;
}

.recipe1 .recipe-process ul li i {
    font-size: 18px;
    color: var(--theme-font);
    margin-right: 10px;
    margin-top: 2px;
}

.recipe1 .recipe-process ul li p {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 10px;
}

/* Recipes1 Section End */

#top {
    display: hidden;
}

#scroll-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    text-decoration: none;
    color: var(--theme-white);
    background-color: var(--theme-font);
    display: grid;
    place-items: center;
    width: 2.5rem;
    aspect-ratio: 1;
    border-radius: 5px;
    opacity: 0;

    animation: showButton linear forwards;
    animation-timeline: view();
    animation-range-start: calc(100vh + var(--animationStartsAfter));
    animation-range-end: calc(100vh + var(--animationStartsAfter) + var(--animationDistance));

    &>span {
        font-weight: bold;
        font-size: 2rem;
    }
}

@keyframes showButton {
    from {
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
    }
}

/* Footer Section Start */
footer {
    background-color: var(--theme-blue-100);
}

footer .footer-details h2 {
    color: var(--theme-font);
    font-family: var(--heading-font);
    margin-bottom: 10px;
    padding: 10px 0;
}

footer .footer-details h2::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--theme-font);
    position: absolute;
    bottom: 0px;
}

footer .footer-details ul {
    padding-left: 0;
}

footer .footer-details ul li {
    margin-bottom: 5px;
}

footer .footer-details ul li .footer-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--heading-font);
}

footer .footer-details ul li .footer-link:hover {
    color: var(--theme-font);
    font-weight: 700;
}

footer .footer-details .contact-details h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;

}

footer .footer-details .contact-details span {
    font-size: 16px;
}

footer .footer-details .contact-details ul li {
    padding: 5px 0;
}

footer .footer-details .contact-details .fa-facebook {
    font-size: 24px;
    color: blue;
}

footer .footer-details .contact-details ul li a .fa-square-instagram {
    font-size: 24px;
    color: #E1306C;
}

footer .footer-details .address-details span {
    font-size: 16px;
    font-weight: 700;
}

footer .footer-details .address-details .fa-location-dot {
    font-size: 16px;
    color: var(--theme-black);
    margin-right: 10px;
}

footer .footer-details .address-details p {
    padding: 0 20px;
    margin-bottom: 20px;
}

footer .copyright {
    background-color: var(--theme-blue-200);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

footer .copyright h4 {
    font-weight: 400;
    font-size: 16px;
}

footer .copyright h4 span {
    color: var(--theme-font);
    font-weight: 700;
    font-family: var(--heading-font);
}

/* Footer Section End */