@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --brand-color: #0d9eab;
    --dark-color: #092032;
    --bg-light: #f3f7f9;
    --text-main: #333; /* Improved contrast */
}

body {
    margin: 0;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}
 .page-section {
      min-height: 100vh;
      margin:0px;
      scroll-margin-top: 80px;  
      padding: 0 25px;                                      
    }
    .section-head{
        text-align: center;
        width: 100%;
        background-color: #ffffff;
    }
.home-section {
     min-height: unset;
     min-height: 80vh;
     background-color: rgba(107, 165, 155, 0.54); 
}
.page-section:nth-last-child{
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 700 !important;
    color: #092032;
}
a {
    color: #092032;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
}
p{
    color: #000;
    padding: 10px;
}
img {
    width: 100%;
}
.bg-cover {
    background-position: center !important;
    background-size: cover !important;
}

    /* Floating button */
    #backToTop {
      position: fixed;
      bottom: 33px;
      right: 33px;
      z-index: 4;
      background-color:rgba(188, 186, 186, 0.8);
      color: #000;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 17px;
      text-align: center;
      cursor: pointer;
      display: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: 0.3s ease;
    }
    #backToTop:hover {
      width: 35px;
      height: 35px;
      bottom: 30px;
      right: 30px;
      border: solid 1px #0d9eab;
    }

/* NAVBAR */
.top-nav {
    background-color: #0d9eab;
    padding-top: 5px;
    padding-bottom: 5px;
}
.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: #ffffff;
}
.top-nav i, .top-nav span {
    vertical-align: middle;
}
.social-links a {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    border-radius: 100%;
}
.social-links a:hover {
    background-color: #ffffff;
    color: #0d9eab;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0;

    .navbar-nav .nav-link {
        position: relative;
        margin-right: 10px;
        font-size: 18px;
        
        &::after {
            content: "";
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: currentColor;
            position: absolute;
            transform: scaleX(0);
            transition: 0.3s ease;
        }

        &:hover::after {
            transform: scaleX(1);
        }
    }
}
.navbar .navbar-nav .nav-link:hover{
    color:#0d9eab;
}
.navbar .navbar-nav .nav-link.active {
    color:#0d9eab;
}
.navbar .navbar-nav .nav-link.active::after{
    transform: scaleX(1);
}
/* Styling for the custom icons */
.navbar-toggler i {
    font-size: 2rem;
    color: #333; /* Change to your brand color */
    vertical-align: middle;
}

/* When the menu is CLOSED (.collapsed class exists) */
.navbar-toggler.collapsed .hamburger-icon {
    display: inline-block !important;
}
.navbar-toggler.collapsed .close-icon {
    display: none !important;
}

/* When the menu is OPEN (.collapsed class is removed) */
.navbar-toggler:not(.collapsed) .hamburger-icon {
    display: none !important;
}
.navbar-toggler:not(.collapsed) .close-icon {
    display: inline-block !important;
}

/* Remove the default Bootstrap background icon if any remains */
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    color: #092032;
}
.navbar-brand span {
    color: #0d9eab;
}
.btn {
    padding: 9px 24px;
    font-weight: 500;
}
.btn-brand {
    background-color: #0d9eab;
    color: #ffffff;
    border-color: #0d9eab;
}
.btn-brand:hover {
    color: var(--brand-color);
    background-color: #eaeaea;
    box-shadow: 0 4px 12px rgba(13, 158, 171, 0.3);
}

/************* SLIDER **************/
.slider-container{
 position: relative;
 height: 80vh;
 width: 100%;
 overflow: hidden;
}
.slider-container .slide-subtitle{
 font-size: 40px;
}
.slider-container .slide-title{
    font-size: 12px;
}
.slider-container .slide-descripttion{
    width: 80%;
    font-size: 20px;
}
.swiper-button-prev, .swiper-button-next{
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.swiper-button-prev.show, 
.swiper-button-next.show{
    opacity: 1;
    pointer-events: auto;
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
.swiper-button-next i, .swiper-button-prev i{
    font-weight: 100;
    font-size: 40px;
    background-color:rgba(255, 255, 255, 0.216);
    border-radius: 50%;
    color: #000;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    i{
    display: block;
    color: white;
    }
}
.slider-container .slider-controls{
    z-index: 5;
    position: absolute;
    bottom: 20px;
    width: 100%;

}
.slider-controls .slider-pagination{
    position: relative;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 80%;
}
.slider-indicator{
    position:absolute;
    bottom: 0;
    border-bottom: 2px solid #ffffff;
    transition: 1.5s ease-in-out;
}
.slider-pagination .slider-tab{
    color: #ffffff;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    font-size: 0.85rem;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
/*&&&&&&&&&&&&&&&&&&&&&&&&& About Section &&&&&&&&&&&&&&&&&&&&&&&*/
.aboutrow1{
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
}
.aboutcol{
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 10px 10px 3px #e0e0e0;
}
.aboutcol .row{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
.abouticon1{
    font-size: 30px;
    background: rgba(25, 226, 82, 0.2) ;
    color: rgb(13, 159, 52) ;
    height: 40px;
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.abouticon2{
     font-size: 30px;
    background: rgba(15, 41, 237, 0.2) ;
    color: rgb(13, 13, 231) ;
    height: 40px;
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
/* Card Container */
.value-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Icon - Centered horizontally in card */
.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    width: 45px;
    height: 45px;
    background-color: #bdecf1;
    border-radius: 50%;
    color: #14939f;
    transition: 0.3s ease-in-out;
}

/* Heading - Centered via HTML text-center */
.value-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Paragraph - Left aligned by default */
.value-card p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #444;
    text-align: center;
}

/* Hover Effects */
.value-card:hover {
    box-shadow: 0 10px 20px #bfbfbf;
    transform: translateY(-5px);
}

.value-card:hover .value-icon {
    background-color: #14939f;
    color: #ffffff;
}

/* &&&&&&&&&&&&&&& Services &&&&&&&&&&&&&&&&&&&&& */

#services{
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 0 ;
}
.service-icon{
    font-size: 18px;
    background-color: #0ed7a198;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d3a2e;
    margin: 5px;
    transition: 0.3s ease-in-out;

}
.fa-ul li .fa-li i {
  color: #16d332;
}
.service-heading h3,.service-heading p{
    text-align: center;
}
.service-heading p{
    padding-top: 0;
}
.service-contents{
    margin-bottom:20px ;
}
.service-box{
    background-color:#f3f7f9;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
}
.service-contents p{
    text-align: left;
}
.service-contents li{
    color: #000;
}
.service-box:hover{
        box-shadow: 0 5px 10px #bfbfbf;
        transform: translateY(-5px);

        .service-icon{
            color: #ffffff;
            background-color: #05523e;
        }
}

/* $$$$$$$$$$$$ Why Us Page Section $$$$$$$$$$$$$$ */
.why-row2{
    margin-top: 30px;
}
.why-box{
    background-color: #ffffff;
    text-align: center;
    padding: 10px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}
.why-icon{
    font-size: 25px;
    background-color: #0ed7a198;
    color: #0d3a2e;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}
.why-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 10px #bfbfbf;
    cursor: default;

    .why-icon{
        color: #ffffff;
        background-color: #05523e;
        transform: scale(1.05);
    }
}
.clientel{
    margin-top: 20px;
    padding-top: 20px;
}
.clientel ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Space between the pills */
}

.clientel ul li {
    background-color: #f0f4f8; /* Soft light blue/grey background */
    color: #333;
    padding: 10px 25px 10px 45px; /* Extra left padding for the icon */
    border-radius: 50px; /* High value creates the pill shape */
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Hover effect for interactivity */
.clientel ul li:hover {
    background-color: #05523e; /* Changes to blue on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px #05523e;
    cursor:default;
}

/* Proper icon placement inside the pill */
.clientel .fa-li {
    left: 10px; /* Positions icon inside the left edge of the pill */
    top: 50%;
    transform: translateY(-50%);
}

/* Change icon color on hover */
.clientel ul li:hover .fa-li {
    color: #fff;
}

/* !!!!!!!!!!!! Contact Page !!!!!!!!!!!!!!!!!!!!!!!! */
/* Removed align-items: center to let columns 'stretch' (Equal Height) */
#contact .row {
    display: flex;
    justify-content: center;
}

/* Base style for both boxes */
.cons {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Softer shadow */
    padding: 40px; /* Increased padding for a cleaner look */
    border-radius: 20px;
    border: 1px solid #eee; /* Light border for definition */
    transition: transform 0.3s ease;
}

/* h3 styling */
.cons h3 {
    font-weight: 700;
    margin-bottom: 25px;
}

/* Contact form */
.contact-form label{
    font-weight: 500;
}
.contact-form input,
.contact-form .btnn, 
.contact-form textarea{
    border-radius: 5px;
    border: solid 1px #181818;
    font-size: 15px;
    padding: 2px 15px;
    transition: 0.3s ease-in-out;
}
.contact-form button.btnn{
    background-color: #60d0da;
    border-radius: 5px;
    height: 40px ;
    font-size: 20px;
}
.contact-form button.btnn:hover{
    background-color: #0d3a2e;
    color: #26d6e6;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px #26d6e6;
}
.contact-form input:focus,
.contact-form .btnn:focus,
.contact-form textarea:focus{
    outline: none;
    border: solid 2px #041e0200;
    box-shadow: 0 0 5px rgba(13, 158, 171, 0.5);
}
.contact-form textarea{
    field-sizing: content;
    min-height: 100px;
}

/* ************ Footer *************************** */

footer.container-fluid {
    color: #cbd7cd;
    background-color: #07281f;
    margin-bottom: 0;
}

/* Define children separately for standard CSS compatibility */
footer.container-fluid p, 
footer.container-fluid h4, 
footer.container-fluid a {
    color: #cbd7cd;
    text-decoration: none; /* Optional: removes underlines from links */
}

footer.container-fluid a:hover {
    color: #ffffff;
}
.copyright {
    text-align: center;
    padding: 0;
}

.copyright p {
    margin-bottom: 0;
    padding: 0;
}
.copyright hr{
    border: none;
    height: 2px;
    background-color: #dcdcdc;
    opacity: 0.3;
}
.footercontent .follow .icon{
    font-size: 30px;
}
.footercontent .follow .icon .bx{
    transition: 0.3s ease-in-out;
}
.footercontent .follow .icon .bx:hover{
    cursor: pointer;
    transform: translateY(-5px);
    color: #42edbf;
    box-shadow: 0 5px 10px #42edbf;
    border-radius: 20%;
}
.footercontent p{
    padding: 0;
}

/***************** Tablet Vew*********************** */
@media (max-width:1040px){
.contact-info p{
    font-size: 10px;
}
.slider-container .slider-controls{
    padding: 0px;
}
.slider-pagination .slider-tab {
    padding: 10px 15px;
    font-size: 13px;
}
.slider-pagination .slider-indicator{
    /* width: 100px; */
}
.btn {
    padding: 5px 10px;
    font-weight: 400;
    font-size: 15px;
}
.slider-container .slider-controls{
bottom: 23px;
}

}
/* ***********************Medium View ********************/
@media (max-width: 600px){
    #newsletter {
    display:inline-block;
    justify-items:left;
    width: 100%;
    padding-left: 25px;
    }
    .aboutrow1{
    margin-top: 30px;
}
   .contact-info p{
    font-size: 13px;
}
}

/* *****************Mobile Vew **********************/
@media (max-width: 500px){

    .home-section {
    min-height: unset;
    min-height: 55vh;
    }   
    .slider-container {
        height: 55vh !important;
    }
    .slider-container .slide-subtitle{
        font-size: 17px;
    }
    .slider-container .slide-descripttion{
        width: 90% !important;
        font-size: 13px;
    }
    .slider-container p{
        margin-bottom: 2px;
    }
    .slide-subtitle{
        font-size:15px ;
    }
    .slide-title {
        font-size: 19px;
    }
    .slide-descripttion{
        font-size: 15px;
        font-weight: 300;
    }
    .slider-container .slider-controls{
        padding: 0;
    }
   .slider-pagination .slider-tab {
    padding: 6px 15px;
    font-size: 13px;
}
    .slider-pagination .slider-indicator{
        width: 50px;
    }
    .btn {
        padding: 2px 8px;
        font-weight: 300;
        font-size: 11px;
        
    }
    .navbar-brand {
    padding-top: 0px !important;
    font-size: 17px;
    }
    .slider-container .slider-controls{
        display: none;
    }
    .top-nav .contactinfo{
        display: none;
    }
    .col-5 {
    flex: 0 0 auto;
    width: 80%;
    }
    .aboutrow1{
    margin-top: 20px;
    }
    .cons h3 {
    font-weight: 700;
    font-size: 15px;
    }
    .cons h6{
        font-size: 15px;
    }
    .cons p{
        font-size: 10px;
    }
}
