@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: #123C69 !important;
    font-family: 'poppins', sans-serif !important;
}

.font-xl {
    font-size: 2.5vw !important;
    font-weight: 600 !important;
}


.font-large {
    font-size: 2vw !important;
    font-weight: 600 !important;
}

.font-medium {
    font-size: 1.6vw !important;
    font-weight: 600 !important;
    color: #123C69;
}

.font-small {
    font-size: 1.25vw !important;
    font-weight: 500 !important;
}

.font-tiny {
    font-size: 1vw !important;
}


@media screen and (max-width: 768px) {

    .font-xl {
        font-size: 6vw !important;
    }

    .font-large {
        font-size: 5vw !important;
    }

    .font-medium {
        font-size: 4.2vw !important;
    }

    .font-small {
        font-size: 3.5vw !important;
    }

    .font-tiny {
        font-size: 3vw !important;
    }
}

.heading-underline {
    position: relative;
    display: inline-block;
    padding: 0 0 1% 0;
    margin: 0 0 4% 0;
}

.heading-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    /* control underline length */
    height: 3px;
    background-color: #C9A13F;
    border-radius: 2px;
    /* optional rounded edge */
}

@media screen and (max-width: 768px) {
    .heading-underline {
        padding: 0 0 2.5% 0;
        margin: 0 0 4% 0;
    }
}

.section-1 {
    width: 30%;
    margin: 5% auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.section-2 {
    width: 30%;
    margin: 5% auto;
    text-align: center;
}

.button {
    border: none;
    /* remove default border */
    outline: none;
    background-color: #C9A13F;
    padding: 12px 18px;
    border-radius: 25px;
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* optional: soft shadow */
}

.button-outline {
    border: 2px solid #C9A13F;
    /* remove default border */
    outline: none;
    background-color: transparent;
    padding: 8px 18px;
    border-radius: 25px;
    color: #000;
}

.button-outline:hover {
    background-color: #C9A13F;
    color: #fff;
}

.button:hover {
    background: #c19b2e;
    /* darker gold on hover */
}

a {
    text-decoration: none !important;
}

@media screen and (max-width: 768px) {
    .section-1 {
        width: 90%;
        margin: 10% auto;
    }

    .section-2 {
        width: 90%;
        margin: 10% auto;
    }
}

.nav-menu-box {
    width: 75%;
}

.nav-menu-box div:nth-of-type(0) {
    width: 75%;
}

.enquiry-nav {
    width: 25%;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .nav-menu-box {
        width: 100%;
    }

    .nav-menu-box div:nth-of-type(0) {
        width: 100%;
    }

    .enquiry-nav {
        width: 100%;
        text-align: center;
    }
}

.toast {
    visibility: hidden;
    min-width: 260px;
    background-color: #28a745;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 12px 18px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

.navbar .nav-link {
    position: relative;
    color: #000;
    /* normal text color */
    padding-bottom: 5px;
}

/* Active link */
.navbar .nav-link.active {
    color: #C9A13F;
    /* gold highlight */
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #C9A13F;
    border-radius: 2px;
}



/***********************************************************
Bootstrap Overwrite
***********************************************************/
nav {
    background-color: #FFFFFF !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


/* Nav link hover effect */
.nav-item .nav-link {
    transition: color 0.3s, background-color 0.3s;
    /* Smooth transition */
}

/* Optional: Change cursor on hover */
.nav-item .nav-link:hover {
    cursor: pointer;
    /* Change cursor to pointer on hover */
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Adjust if needed to align dropdown */
}




@media screen and (max-width: 768px) {
    .nav-link {
        padding: 5% 0% !important;
    }

    .nav-item:hover {
        background-color: unset;
        /* Change background color on hover */
        color: #000000;
    }

    .nav-item:hover .nav-link {
        color: #000000;
    }

    .dropdown ul {
        text-align: center;
    }
}

.navbar .nav-link {
  position: relative;
  color: #000;
  transition: color 0.3s;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #C9A13F;
  transition: width 0.3s ease-in-out;
  border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}


/***********************************************************
Hero Banner 
***********************************************************/
.hero-banner {
    margin: 0;
    position: relative;
}

.carousel-inner {
    border-radius: 10px;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
    max-width: 500px;
    z-index: 3;
    /* higher than overlay */
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 15px 0 25px;
}

.hero-content .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
}

/* Add full background overlay */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
    z-index: 2;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero-banner-img {
        height: 90vh;
        object-fit: cover;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/***********************************************************
About Section
***********************************************************/
.sec-bg {
    /* background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%); */
    /* background-image:  linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%); */
    background-color: #FFFFFF;
    margin: 10% 5%;
    padding: 5% 0%;
    border-radius: 10px;
}

/* .services-head {
    padding: 0% 0% 2.5% 0%;
    text-align: center;
} */

.sec-about {
    overflow: hidden;
    /* Keep overflow hidden for desktop */
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3.33%;
    justify-content: center;
    /* margin: auto 5%; */
}

.about-div {
    flex: 0 0 auto;
    text-align: center;
    width: 22.5%;
    scroll-snap-align: start;
    margin-top: 3.33%;
}

.about-card {
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.about-icon {
    font-size: 3vw;
    color: #123C69;
}

.about-para {
    margin: 0% auto;
    text-align: justify;
    width: 70%;
    line-height: 2;
}

.about-para p {
    margin: 0 !important;
    opacity: 0.8;
}

/* Mobile View: Horizontal Scrolling */
@media screen and (max-width: 768px) {


    .sec-bg {
        padding: 10% 0% 5% 0%;
    }

    .about-div {
        width: 30%;
        /* Adjust width for mobile */
    }

    .about-card {
        padding: 10% 2%;
    }

    .about-icon {
        font-size: 8vw;
    }

    /* .about-text {
        margin-top: 3vw;
        font-size: 2.5vw;
    } */

    .about-para {
        margin: 5% 5% 5% 5%;
        text-align: justify;
        width: 90%;
    }

}

/***********************************************************
Services button 
***********************************************************/
.services {
    background-color: #FFFFFF;
    /* margin: 10% 0%; */
    padding: 5%;
}

.services-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.services-box {
    width: 32%;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   background: #F5F5F5; */
    /* background-color: #F8F1D2; */
    /* border-radius: 10px; */
    text-align: center;
    padding: 0 2.5% 2.5% 2.5%;

}

.services-box h3 {
    font-weight: 700;
}

.services-box-special {
    border-right: 2px solid #c4c4c4;
    border-left: 2px solid #c4c4c4;
}

.img-icon {
    width: 8vw;
    background-color: #FFFFFF;
    padding: 5%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {

    .services {
        padding: 10% 5% 5% 5%;
    }

    .services-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .services-box {
        width: 100%;
        margin: 5% auto;
        padding: 5%;
    }

    .img-icon {
        width: 18vw;
    }

    .services-box-special {
        border-right: none;
        border-left: none;
        border-top: 2px solid #c4c4c4;
        border-bottom: 2px solid #c4c4c4;
    }

}

.middle-box {
    position: relative;
}

/* ===== Desktop Borders (Left & Right) ===== */
.middle-box::before,
.middle-box::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    /* control border length */
    border-left: 2px solid #123C69;
}

.middle-box::before {
    left: 0;
}

.middle-box::after {
    right: 0;
    border-left: none;
    border-right: 2px solid #123C69;
}

/* ===== Mobile Borders (Top & Bottom) ===== */
@media (max-width: 768px) {

    .middle-box::before,
    .middle-box::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        /* control border length */
        border: none;
    }

    .middle-box::before {
        top: 0;
        border-top: 2px solid #123C69;
    }

    .middle-box::after {
        bottom: 0;
        border-bottom: 2px solid #123C69;
    }
}





/***********************************************************
Download Banner
***********************************************************/
.download-banner {
    margin: 10% 5%;
}

.download-banner img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}




/***********************************************************
Whatsapp button 
***********************************************************/

.call-icon {
    position: fixed;
    /* Fixed positioning */
    bottom: 20px;
    /* Distance from the bottom */
    right: 20px;
    /* Distance from the right */
    width: 60px;
    /* Width of the icon */
    height: 60px;
    /* Height of the icon */
    z-index: 1000;
    /* Ensure it appears above other elements */
    border-radius: 50%;
    /* Make it circular */
    background-color: #C9A13F;
    /* Background color */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Shadow for a 3D effect */
    transition: background-color 0.3s;
    /* Smooth transition */
}

.call-icon i {
    font-size: 25px;
    color: #FFFFFF;
}


.call-icon:hover {
    background-color: #FFFFFF;

}

.call-icon:hover i {
    color: #25D366;
}


/***********************************************************
Footer Section
***********************************************************/

footer {
    padding: 5% 0% 0% 0%;
    background-color: #FFFFFF !important;
}

.footer-icon-div {
    width: 25%;
    margin: 0 auto 2.5% auto;
    text-align: center;

}

.footer-icon {
    padding: 2% 3.5%;
    border-radius: 5px;
    font-size: 2vw;
    margin: auto 5%;
    color: #F5F5F5;
    background-color: #C9A13F;

}

@media screen and (max-width:768px) {
    .footer-icon-div {
        width: 100%;
        margin: 5% 0;
        text-align: center;
    }

    .footer-icon {
        font-size: 6vw;
        margin: auto 2.5%;

    }
}


/***********************************************************
Contact & Map Section
***********************************************************/

.sec-contact {
    margin: 10% 5%;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 5% 0;
}

.contact-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.contact-card {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 0% 5%;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card div {
    padding: 5% 0;

}

.contact-card i {
    color: #343434;
    margin-right: 5px;
}

.contact-card a {
    text-decoration: none;
    color: #343434 !important;
}

.map-card {
    width: 40%;
}

.map-card iframe {
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .sec-contact {
        margin: 10% 5%;
        padding: 10% 5%;
    }

    .contact-flex {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;

    }

    .contact-card {
        margin-top: 7.5%;
        padding: 0% 5%;
        width: 100%;
    }

    .map-card {
        width: 100%;
        margin: 10% 0 0 0;
    }
}

.project {
    padding: 5% !important;
    background-color: #FFF;
}

.project-thumb {
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    height: 300px !important;
    object-fit: cover !important;
    background-color: #f8f9fa;
}

.project-thumb:hover {
    transform: scale(1.05);
}

.gallery-thumbs img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    margin: 5px;
    transition: 0.2s;
}

.gallery-thumbs img.active {
    border: 3px solid #007bff;
}

.main-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .project {
        padding: 10% 5% 10% 5% !important;
    }

    .project-thumb {
        height: 200px !important;
    }

    .project>div:nth-child(1) {
        margin-bottom: 5%;
    }

}

.enquiry-btn {
    display: none;
}

@media (max-width: 768px) {
    .enquiry-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        /* adjust to stay above WhatsApp icon */
        right: 120px;
        background-color: #C9A13F;
        /* your theme color */
        color: #fff;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        text-decoration: none;
        z-index: 9999;
        padding: 12px 18px;
        opacity: 0;
        pointer-events: none;
        transform: translatex(60px);
        transition: all 0.4s ease;
    }

    /* Show after scrolling */
    .enquiry-btn.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}