.montserrat-blank_space {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

body {
    font-family: "Montserrat", serif, sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    /* color: #FFFCEB */
    color: #fff
}

/* Navbar styles */
.navbar {
    background-color: rgba(0, 0, 0, 0);
    /* Transparent dark overlay */
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url(../images/menu_icon.svg);
    background-size: 100%;
    color: white;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.heart-icon svg {
    width: 32px;  /* Adjust size */
    height: 32px;
    fill: white;  /* Default color */
    transition: fill 0.3s ease-in-out;
    vertical-align: middle;
}

.nav-link:hover .heart-icon svg {
    fill: #4D4B3F;  /* Change color on hover */
}


.hero-section {
    /* background-image: url('../images/home_banner.jpg'); */
    /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.home .hero-section {
    height: 100vh;
}

.this_is_us .hero-section {
    background-image: url('../images/this_is_us.jpg');
    /* Replace with actual image path */
}

.this_is_us .subHeading{
    font-size: 2rem;;
}

/* */
.swiper {
    width: 100%;
    height: 100% !important;
}

.swiper-slide img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
}

.subHeroSection {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Optional: Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
    color: white;
}

/* Optional: Pagination Dots */
.swiper-pagination-bullet {
    background: white;
}

.we_love_doing {
    background-color: #fff;
}

.we_love_doing .hero-section {
    background-image: url('../images/we_love_doing.jpg');
    /* Replace with actual image path */
}
.the_gallery .hero-section {
    background-image: url('../images/the_gallery.jpg');
    /* Replace with actual image path */
}

.hero-text {
    width: 100%;
    position: absolute;
    bottom: -120px;
    font-size: 200px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

section {
    padding: 80px 0px;
}

.philosophy-section {
    background-color: #A1A470;
}

.philosophy-section p {
    margin: 0;
    font-size: 1.2rem;
}

.contact-section {
    background-color: #4D4B3F;
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-section .btn {
    background-color: #fff;
    color: #39382d;
    border: none;
}

footer {
    background-color: #fff;
    padding: 20px;
    font-size: 0.9rem;
    color: #555;
}

footer a {
    color: inherit;
    text-decoration: none;
    margin: 0 2px;
}


/* custom collapse menu */
.custom-collapse {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    /* Half the screen */
    height: 100vh;
    background-color: #A1A470;
    /* Dark background to match the navbar */
    transform: translateX(100%);
    /* Start off-screen */
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    /* Ensure it appears above other content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-collapse.show {
    transform: translateX(0);
    /* Slide in when shown */
}

.custom-collapse .btn-close {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    background-color: rgb(0, 0, 0, 0);
    border: 0px;
}

#navbarNav .btn-close {
    display: none;
}

.custom-collapse .btn-close:hover {
    color: #ffc107;
}

.navbar-nav {
    padding: 2rem;
    /* Add some spacing for menu items */
}

.nav-link {
    color: #fff;
    /* White links */
    font-size: 2rem;
    /* Increase font size */
    margin-bottom: 1rem;
    display: block;
    /* Block layout for easier styling */
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #4D4B3F;
    /* Highlight color on hover */
}

.btn {
    border-radius: 0px;
    color: #605644;
    background-color: #FFFCED;
}

.founderSection {}

.founderSection img {
    position: absolute;
    top: -200px;
    width: 150%;
    right: 0;
}

.services-section .service-card {
    overflow: hidden;
    border: none;
    border-radius: 0px;
}

.services-section .service-image {
    position: relative;
}

.services-section .service-image img {
    object-fit: cover;
    width: 100%;
}

.services-section .card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase;
}

.services-section .card-title-overlay span {
    width: 100%;
    display: inline-block;
    padding: 0 80px;
}

.services-section .service-card .card-body {
    background-color: #A1A470;
    padding: 40px 65px;
    text-align: justify;
    color: #fff;
    font-weight: 600;
}


/* New service page */
.serviceSection .row{
    margin-bottom: 20px;
}
.serviceSection .col-lg-7 img{
    width: 100%;
}
.serviceSection .card-title-overlay{
    font-size: 5rem;
    line-height: 5rem;
    padding: 20px 0 30px;
    margin: 20px 0;
    border-top: 1px solid #4D4B3F;
    border-bottom: 1px solid #4D4B3F;
}
.serviceSection .card-title-overlay span{

}
.serviceSection .reverseRow .card-title-overlay{
    text-align: right;
}

.row-cols-1>.col,
.row-cols-md-3>.col,
.row-cols-1>[class^=col-] {
    padding: 0;
    /* Remove spacing between columns */
}

.serviceSection .container {
    background-color: #fff;
}

.the_gallery_inner .hero-section .hero-text {
    bottom: 0 !important;
    font-size: 4rem !important;
    text-align: left;
    padding: 50px;
}

.the_gallery_inner .hero-section .hero-text span {
    display: block;
    font-size: 36px;
    font-weight: 600;
}

.gallery-container {
    padding: 20px;
}

.gallery-container .row>div {
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.col-md-12 .gallery-item:hover img {
    transform: scale(1.02);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 5px;
}

/*.gallery-item:hover .overlay {
    background: rgba(0, 0, 0, 0.5);
}*/

.overlay h4,
.overlay p {
    color: white;
    margin: 0;
    text-align: center;
}

.overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.overlay p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
}

.connectSection {
    background-color: #A1A470;
    padding: 160px 0;
}

.connectSection label {
    font-weight: 600;
}

.connectSection label span {
    font-weight: 400;
}

.connectSection input,
.connectSection textarea {
    border-radius: 0px;
}

.connectHeading {
    font-size: 4rem;
}

.main-image {
    position: relative;
    text-align: center;
    margin-bottom: .25rem!important;
}

.main-image img {
    max-width: 100%;
    max-height: 700px;
    transition: opacity 0.3s;
}
.galleryItem {
    flex: 0 0 auto; /* Ensure items do not shrink or grow */
}

.galleryItem img {
    opacity: 0.5;
    cursor: pointer;
    width: auto;
    height: 150px; /* Set a fixed height */
    object-fit: cover; /* Maintain aspect ratio and cover the area */
}
.galleryItem img.active{
    opacity: 1;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}


.regular-bold {
    font-weight: 400 !important;
}

.semi-bold {
    font-weight: 600;
}

.extra-bold {
    font-weight: 800;
}

.super-bold {
    font-weight: 900;
}

/* Font Colors*/
.pColor {
    color: #605644;
}

.sColor {
    color: #4D4B3F;
}

.tColor {
    color: #A1A470;
}

.bg-white {
    background-color: #fff;
}

/* Gallery thummnail */
.galleryContainer {
    position: relative;
}
/* Navigation Buttons for Thumbnails */
.thumbnails-container{
    position: relative;
    overflow: hidden;
    padding: 0;
}
/* Thumbnails Container */
.thumbnails-wrapper {
    background-color: #fff;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 5px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.thumbnails-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}
.thumb-nav {
    position: absolute;
    bottom: 25%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

#thumbPrev {
    left: 0;
}

#thumbNext {
    right: 0;
}
@media (max-width: 1472px) {
    .hero-text {
        bottom: -96px !important;
        font-size: 10rem !important;
    }
}
@media (max-width: 1400px) {
    .serviceSection .card-title-overlay{
        font-size: 4rem;
        line-height: 4rem;
    }

    .service-card .card-body {}
}

@media (max-width: 1330px) {
    .hero-text {
        bottom: -85px !important;
        font-size: 9rem !important;
    }
}
@media (max-width: 1060px) {
    .hero-text {
        bottom: -75px !important;
        font-size: 8rem !important;
    }
}
@media (max-width: 992px) {
    .hero-text {
        bottom: -46px !important;
        font-size: 5rem !important;
    }

    .the_gallery_inner .hero-section .hero-text {
        font-size: 3rem !important;
    }

    .the_gallery_inner .hero-section .hero-text span {
        font-size: 2rem;
    }

    .founderSection img {
        position: relative;
        top: 0;
        width: auto;
        height: auto;
        left: 0;
        max-width: 100%;
    }

    .founderSection div:has(> img) {
        text-align: center;
    }

    .card-title-overlay span {
        padding: 0 !important;
    }

    #navbarNav .btn-close {
        display: block !important;
    }

    .connectHeading {
        line-height: 0.8;
    }

    .connectFormDiv {
        margin-top: 40px;
    }

    .serviceSection .card-title-overlay{
        font-size: 4rem;
        line-height: 4rem;
    }
}

@media (max-width: 786px) {
    .custom-collapse {
        width: 100% !important;
    }
    .thumb-nav {
        display: none !important;
    }
    .this_is_us .subHeading{
        font-size: 1.5rem;
    }
    .connectHeading {
        font-size: 2rem !important;
    }
}
@media (max-width: 674px) {
    .the_gallery_inner .hero-section .hero-text {
        line-height: 0.8 !important;
    }
    .subHeroSection{height: auto;}
}
@media (max-width: 588px) {
    .hero-text {
        bottom: -20px !important;
        font-size: 5rem !important;
        line-height: .8
    }
}
@media (max-width: 576px) {
    .nav-link {
        font-size: 1rem;
    }
    .heart-icon svg {
        width: 18px !important;  /* Adjust size */
        height: 18px !important;
    }

    .hero-text {
        bottom: -20px !important;
        font-size: 5rem !important;
        line-height: .8
    }

    .footer div {
        text-align: left !important;
    }
    .serviceSection .card-title-overlay{
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* General Slide Styling */
.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    width: 80%;
    height: auto;
    opacity: 0;
    transform: scale(1) translateX(0);
    /* transition: opacity 1s ease-in-out, transform 5s ease-in-out; */
}

.slide-image img{
    width: 120%;
}
/* Fade-in effect */
.swiper-slide-active .slide-image {
    opacity: 1;
}

/* Movement effects */
@keyframes moveLeft {
    0% { transform: scale(1.1) translateX(0); }
    100% { transform: scale(1.1) translateX(-40px); }
}

@keyframes moveRight {
    0% { transform: scale(1.1) translateX(0); }
    100% { transform: scale(1.1) translateX(40px); }
}

@keyframes zoomIn {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.16); }
}

/* Apply animations */
.move-left {
    animation: moveLeft 6s ease-in-out 1;
}

.move-right {
    animation: moveRight 6s ease-in-out 1;
}

.zoom-in {
    animation: zoomIn 6s ease-in-out 1;
}


/* Custom success alert */
.alert-success-custom {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border-color: #c3e6cb; /* Green border */
}

/* Custom error alert */
.alert-error-custom {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border-color: #f5c6cb; /* Red border */
}