@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500&display=swap');



body {
    font-family: 'Roboto Slab', serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

/* Navbar styles */
.navbar {
    background-color: rgba(39, 50, 70, 0.5); /* Add opacity to the background color */
    transition: background-color 0.3s ease; /* Smooth transition for opacity */
}

.navbar-brand {
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}
.navbar-light .navbar-toggler-icon {
    background-color: #fff;
}

.navbar-brand p {
    font-size: 12px;
}

#home .title{
    margin-top: 30px;
}

#home .subTitle {
    margin-bottom: 50px;
}

.stats {
    font-size: 50px;
}

.homeImg {
    min-height: 80px;
    width: 150px;
}

.aboutImg {
    width: 400px;
    min-height: 400px;
}

.content {
    text-align: left;
}

/* Sticky header */
.sticky-top {
    background-color: rgba(36, 46, 63, 0.9);
    min-height: 75px;
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {

    color: #d6b56e;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #d6b56e;
}

/* Parallax styles */
.parallax {
    background-image: url('img/background.jpeg'); /* Replace with your background image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    color: #fff;
    position: relative; /* Add relative positioning for content overlay */
}


/* Section styles */
.section {
    padding: 100px 0;
    text-align: center;
}

.section h2 {
   border-bottom: 3px #d6b56e solid;
   padding-bottom: 10px;
   display: inline-block;
   margin-bottom: 80px;
}

.darkSection {
    background-color: #242e3f;
    color: #fff;
}

/* Custom Styles */

/* Custom Flat Form Control Styles */
.form-control {
    padding: 20px;
    border-radius: 0;
}

.form-control:focus {
    border-color: #a6924d; /* Border color on focus */
    box-shadow: none; /* Remove the default box shadow */
    outline: none; /* Remove the default outline */
}


.btn {
    padding: 10px;
    min-width: 150px;
    border-radius: 0;
    background-color: #d6b56e;
    border: #d6b56e solid;
    color: #fff;
}

.btn:hover, .btn:active {
    background-color: #a6924d !important; /* Darker color on hover */
    border: #a6924d solid;
}

/* Team */
.team-member {
    margin-top:20px;
}
.team-img {
    margin-bottom: 20px;
    border-radius: 50%;
    border: 10px solid #a6924d;
    padding: 10px;
    width: 200px;
}

.team-desc {
    margin-top: 0;
    font-size: 14px;
}

.modal-header {
    padding-bottom: 0;
    border: 0;
}

.modal-title {
    border: 0px;
}

.modal-body {
    text-align: center;
}

.modal-body .team-designation {
    margin-bottom: 0;
}

.modal-body img {
    margin-bottom: 20px;
    border-radius: 50%;
    border: 10px solid #242e3f;
    padding: 10px;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
}



.modal-body h4 {
    font-size: 18px;
}

/* Youtube */

.youtube-link {
    color: #242e3f;
    margin-top: 20px;
    font-size: 18px;
    display: block;
}

/* Custom styles for the service offer section */
.service-offer-section {
    padding: 40px 0;
    display: flex;
}

.service-offer {
    text-align: center;
    min-height: 200px;
    background-color: #fff;
    color: #242e3f;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.service-offer i {
    font-size: 48px;
    color: #d6b56e;
    border-radius: 50%;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-offer h3 {
    font-size: 18px;
    margin-bottom: 0;
}


/* Custom Tab Styles */
.custom-tabs {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #d6b56e;
    border-radius: 5px;
    overflow: hidden;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    background-color: #d6b56e;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    user-select: none;
}

.tab-content {
    display: none;
    padding: 20px;
    border-top: 1px solid #d6b56e;
    text-align: justify;
}




/* Change tab style on hover */
.tab:hover {
    background-color: #a6924d;
}

/* Custom styles for the selected tab */
.tab.active {
    background-color: #a6924d;
    color: #fff;
}

/* Show the content of the selected tab */
.tab-content.active {
    display: block;
}

/* Custom styles for testimonial section */
.testimonial-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.testimonial {
    display: none;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.4;
}

.testimonial-author {
    font-style: italic;
}



/* Carousel navigation buttons */
.carousel-navigation {
    margin-top: 20px;
}


/* Contact Form */
.formGroup {
    text-align: left;
}

.mandatory {
    margin-top: 5px;
    font-size: 12px;
    font-style: italic;
}

#result {
    color: #242e3f;
}

/* Footer styles */
footer {
    background-color: #242e3f;
    color: #fff;
    padding: 15px 0;
}

