*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    min-height: 100vh;
    font-family: sans-serif;
}

/* Navbar */

.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    background: #111111;
    z-index: 999;
}
.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}
.nav-logo{
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.nav-container .nav-menu{
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}
.nav-container .nav-menu li a{
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}
.nav-container .nav-menu li a:hover{
    color: #111111;
    background-color: #c8a96a;
    border: 2px solid white;
}
.nav-toggle{
    background: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
    display: none;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: white;
    transition: all 0.3s ease-in-out;
}
.nav-container .nav-menu li a.active {
    color: #111111;
    background-color: #c8a96a;
    border: 2px solid white;
}


/* Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #444;
    border-top: 5px solid #c8a96a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loader.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease;
}


/* Hero Section */
.hero-section{
    margin-top: 80px;
    height: 90vh;
    width: 100%;
    /* position: relative; */
    background: url(images/heroimg.webp);
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
}
.hero-section .hero-txt{
    width: 60%;
    height: 100%;
    /* background-color: aqua; */
    align-content: center;
    /* top: 20%; */
    /* position: relative; */
    justify-items: center;
    
}
.hero-section .hero-txt h1{
    font-size: 3rem;
    color: #fff;
    /* padding: 0px 50px; */
    margin-bottom: 20px;
    width: 70%;
}
.hero-section .hero-txt p{
    font-size: 1.2rem;
    color: #fff;
    width: 70%;
    line-height: 1.6rem;
    /* padding: 0px 50px; */
}


/* Hero Section Right side */

.hero-section .hero-btns{
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10%;
}

.btn{
    background-color: #111111;
    border-radius: 30px;
    text-align: center;
    padding: 10px 25px;
    border: none;
    transition: 0.5s ease;
    display: flex;
    font-size: 22px;
    justify-content: center;
    gap: 5px;
}
.btn svg{
    height: 25px;
    stroke: #fff;
}
.btn:hover svg{
    stroke: #111111;
}
.hero-section .hero-btns a{
    color: #fff;
    text-decoration: none;
    width: 50%;
    font-size: 1.6rem;
}
.btn:hover{
    background: #c8a96a;
    color: #111111;
    transform: translateY(-2px);
}
.btn-sec{
    background-color: transparent;
    border-radius: 30px;
    text-align: center;
    padding: 10px 30px;
    border: 1px solid #c8a96a;
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    font-size: 22px;
}
.btn-sec svg{
    height: 28px;
    stroke:#fff;
}
.btn-sec:hover{
    background: #c8a96a;
    color: #111111;
    transform: translateY(-2px);
}
.btn-sec:hover svg{
    stroke: #111111;
}


/* Our Services */
.services{
    min-height: auto;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 35px 0px;
    opacity: 1;
}
.services .serv-heading{
    height: 60px;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
}
.services .serv-heading h1{
    color: #0f305d;
    width: 100%;
}
.services .serv-heading h1 span{
    color: #ab030c;
}
.services .serv-cards{
    flex: 1;
    width: 100%;
    display: flex;
    gap: 25px;
    padding: 20px 60px;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}
.card{
    height: 550px;
    /* border: 1px solid black; */
    width: 30%;
    flex: 1 1 280px;
    background-color: #f6f6f6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border: 2px solid #f0f0f0;
}

.serv-img{
    height: 50%;
    width: 100%;
    border-radius: 4px;
}
.card-head{
    color: #323232;
    text-align: center;
}
.card-para{
    color: #444444;
    font-size: 16px;
}

/* Approach */
.approach{
    min-height: auto;
    width: 100%;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
}
.approach .approach-head{
    height: 100px;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}
.approach .approach-head h1{
    color: #0f305d;
    width: 100%;
}
.approach .approach-head h1 span{
    color: #ab030c;
}
.approach .approach-head p{
    color: #323232;
}
.approach-cards{
    flex: 1;
    width: 100%;
    display: flex;
    gap: 25px;
    padding: 20px 60px;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}
.app-cards{
    height: 250px;
    /* border: 1px solid black; */
    width: 30%;
    flex: 1 1 220px;
    background-color: #fff;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    border: 2px solid #f0f0f0;
    position: relative;
}
.app-img{
    height: 80%;
    width: 100%;
    background-size: auto;
}
.app-heading-card{
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-heading-card h2{
    font-size: 20px;
    color: #323232;
}
.app-count{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 20px;
    background-color: #111111;
    color: #fff;
    font-weight: 500;
    z-index: 999;
}

.background {
    width: 100%; 
    min-height: auto; 
    position: relative; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    background-color: #f6f6f6;
    padding: 35px 0px;
}

/* Styling for the title above the slider */
.slider-title {
    color: #0f305d;
    width: 100%;
    text-align: center;
    margin-bottom: 35px; 
}
.slider-title span{
    color: #ab030c;
}

/* Main container for the slider - this holds the images and navigation buttons */
.slider-container {
    position: relative; 
    width: 60%; 
    max-width: 800px; 
    overflow: hidden; 
    border-radius: 10px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
}

/* Flexbox container that holds all the slides */
.slider {
    display: flex; 
    transition: transform 0.4s ease-in-out; 
}

/* Each individual slide - takes up full width of the container */
.slide {
    min-width: 100%; 
    height: 450px; 
    transition: transform 0.5s ease-in-out;
}


/* Ensures that images fill the slide area while maintaining aspect ratio */
.slide img {
    width: 100%; 
    height: 90%; 
    object-fit: cover; 
    border-radius: 10px; 
}
.slide h4{
    padding-top: 10px;
    padding-left: 5px;
    font-size: 18px;
}

/* Common styling for both previous and next navigation buttons */
.prev, .next {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none; 
    width: 40px; 
    height: 40px; 
    cursor: pointer; 
    z-index: 10; 
    border-radius: 50%; 
    transition: background-color 0.3s ease; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; 
}

/* Positioning the previous button to the left */
.prev {
    left: 10px; 
}

/* Positioning the next button to the right */
.next {
    right: 10px; 
}

/* Hover effect for navigation buttons */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8); 
}

/* Container for the dot indicators below the slider */
.dots-container {
    margin-top: 35px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

/* Common styling for each individual dot */
.dot {
    height: 15px; 
    width: 15px; 
    margin: 0 5px; 
    background-color: #0f305d; 
    border-radius: 50%; 
    display: inline-block; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

/* Styling for the active dot - indicates the current slide */
.dot.active {
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid #0f305d;
}

/* Why us */
.why-us{
    min-height: auto;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 35px 0px;
}
.why-us .why-us-head{
    height: 100px;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}
.why-us .why-us-head h1{
    color: #0f305d;
    width: 100%;
}
.why-us .why-us-head span{
    color: #ab030c;
}
.why-us .why-us-head p{
    color: #323232;
}
.why-us-cards{
    flex: 1;
    width: 100%;
    display: flex;
    gap: 25px;
    padding: 20px 60px;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}
.why-cards{
    height: 200px;
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #f0f0f0;
    padding: 20px 60px;
    gap: 20px;
}
.why-cards h2{
    color: #444444;
}
.why-cards p{
    font-size: 16px;
    line-height: 1.5rem;
    color: #323232;
}



/* CTA */

.cta{
    background: url(images/contactbg.jpg);
    background-size: cover;
    min-height: auto;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}
.cta .cta-head{
    height: 100px;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}
.cta .cta-head h1{
    color: #0f305d;
    width: 100%;
}
.cta .cta-head span{
    color: #ab030c;
}
.cta .cta-form{
    flex: 1;
    width: 40%;
    display: flex;
    gap: 20px;
    padding: 60px;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
}
.inpt-box{
    width: calc(100% - 25px);
    height: 40px;
    padding: 5px 10px;
}
#start-proj{
    color: #444444;
}
#sbmt-btn{
    background-color: #111111;
    color: #fff;
    transition: 0.5s ease;
    border: none;
}
#sbmt-btn:hover{
    background: #c8a96a;
    color: #111111;
    transform: translateY(-2px);
}
#service{
    color: #444444;
}
select option{
    color: #111111;
}

/* Contact us */

.cont-us{
    min-height: auto;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.detail-sec{
    flex: 1;
    width: 100%;
    display: flex;
    gap: 15px;
    padding: 100px 150px;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}
.details-card{
    height: 220px;
    width: calc(33% - 12.5px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}
.details-card img{
    height: 100px;
    width: 100px;
}
.details-card h3{
    color: #ab030c;
}
.details-card h4{
    text-align: center;
}
.details-card h4 a{
    text-decoration: none;
    color: #111111;
}

/* Map styling */
.map-sec{
    width: 100%;
}
.map-sec iframe{
    width: 100%;
}
#map-placeholder {
    height: 450px;
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* footer */
.footer{
    height: 150px;
    background-color: #111111;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    padding: 10px 0px;
}
.footer-icons{
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.footer-icons a img{
    height: 30px;
}
.breakline{
    height: 1px;
    width: 50%;
    background-color: #ffffff45;
    /* margin: 12px 0px; */
}
.copyright{
    width: 100%;
    text-align: center;
}
.copyright h4{
    color: white;
}
.copyright h4:hover{
    color: #ab030c;
}
.fix-contact{
    width: 100%;
    height: 60px;
    background-color: #111111;
    position: fixed;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.call{
    width: 50%;
}
.call a{
    text-decoration: none;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.call svg{
    height: 40px;
}
.whatsapp{
    width: 50%;
}
.whatsapp a{
    text-decoration: none;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whatsapp svg{
    height: 25px;
}

.disclaimers{
    display: flex;
    gap: 15px;
}
.disclaimers a{
    color: #fff;
    text-decoration: none;
}
.disclaimers a:hover{
    color: #ab030c;
}