
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* ===========================
   Dial Button Styles
   =========================== */

/* Container for the Dial Button */
.dial-button {
    position: fixed;
    bottom: 20px; /* 1 cm (~20px) from the bottom */
    right: 10px;  /* 1 cm (~10px) from the right */
    z-index: 1000; /* Ensure the button stays above other elements */
    display: flex;
    align-items: center; /* Vertically align button and text */
    gap: 10px; /* Space between the button and the label text */
  }
  
  /* Dial Button Anchor (Clickable Area) */
  .dial-button a {
    display: inline-block;
    width: 60px; /* Width of the circular button */
    height: 60px; /* Height matches width for a perfect circle */
    background-color: #03E78B; /* Updated green color */
    border-radius: 50%; /* Circular button */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Adds a stronger shadow */
    text-align: center; /* Centers the content inside the button */
    line-height: 60px; /* Vertically centers the icon */
    transition: transform 0.3s ease; /* Smooth hover scaling */
    overflow: hidden; /* To keep the icon within the circle */
  }
  
  /* Hover Effects for the Dial Button */
  .dial-button a:hover {
    transform: scale(1.2); /* Grows the button slightly */
  }
  
  /* Dial Button Icon (Phone Image) */
  .dial-button img {
    width: 32px; /* Icon size */
    height: 32px;
    animation: none; /* Default state */
    transition: transform 0.2s ease; /* Prepares the jiggle animation */
  }
  
  /* Jiggle Animation on Hover */
  .dial-button a:hover img {
    animation: jiggle 0.5s infinite ease-in-out; /* Repeats jiggle */
  }
  
  /* ===========================
     Jiggle Animation Keyframes
     =========================== */
  
  @keyframes jiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
  }
  
  html, body {
    overflow-x: hidden;
  }
  
  /* ===========================
     Dial Text Styles
     =========================== */
  
  /* Label Text Next to the Dial Button */
  .dial-button .dial-text {
    font-size: 14px; /* Easy-to-read text size */
    font-weight: bold; /* Bold text for emphasis */
    color: #333; /* Neutral, readable text color */
    background-color: #f8f9fa; /* Light background for text contrast */
    padding: 5px 10px; /* Spacing around the text for better readability */
    border-radius: 5px; /* Slightly rounded corners for a modern look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for emphasis */
    transition: background-color 0.2s ease, color 0.2s ease; /* Smooth hover effect for text */
  }
  
  /* Hover Effects for the Label Text */
  .dial-button .dial-text:hover {
    background-color: #e9ecef; /* Slightly darker background on hover */
    color: #000; /* Darker text color on hover */
  }
  


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background-color: #09B6A9 !important; /* Custom background color */
    border-color: #09B6A9 !important; /* Custom border color */
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #09B6A9 !important; /* Custom hover color */
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 #09B6A9; /* Updated to #09B6A9 */
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 #09B6A9 !important;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #09B6A9; /* Updated to #09B6A9 */
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid #09B6A9 !important; /* Updated to #09B6A9 */
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid #09B6A9 !important; /* Updated to #09B6A9 */
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #09B6A9; /* Updated to #09B6A9 */
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid #09B6A9 !important; /* Updated to #09B6A9 */
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid #09B6A9 !important; /* Updated to #09B6A9 */
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: #09B6A9 !important; /* Replaced var(--bs-primary) with #09B6A9 */
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #09B6A9 !important; /* Replaced var(--bs-primary) with #09B6A9 */
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #09B6A9; /* Replaced var(--bs-primary) with #09B6A9 */
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #09B6A9; /* Replaced var(--bs-primary) with #09B6A9 */
        color: #09B6A9; /* Replaced var(--bs-primary) with #09B6A9 */
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #09B6A9; /* Replaced var(--bs-primary) with #09B6A9 */
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

/* Image Container */
.header-carousel .header-carousel-item {
    position: relative;
    width: 100%;
    display: block;
}

.header-carousel .header-carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Prevent cropping */
    margin-top: 95px;
}

/* Adjust height for smaller devices */
@media (max-width: 992px) {
    .header-carousel .header-carousel-item img {
        height: auto;
        max-height: 400px;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .header-carousel .header-carousel-item img {
        max-height: 300px;
    }

    .header-carousel .header-carousel-item .carousel-caption {
        padding: 30px 0;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95%;
    }
}

/* Carousel caption styling */
.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    color: white;
}

/* Stylish Owl Carousel Nav Buttons */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: #09B6A9;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    left: 20px;
}

.header-carousel .owl-nav .owl-next {
    right: 20px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: #fff;
    color: #09B6A9;
}
/*** Carousel Hero Header End ***/



/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(58, 135, 135, .3);  /* Updated to #09B6A9 */
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;
}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(58, 135, 135, .5);  /* Updated to #09B6A9 */
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(58, 135, 135, .5);  /* Updated to #09B6A9 */
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}

.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}
/*** Service End ***/


.header-carousel .header-carousel-item img {
    width: 100%;
    height: 100vh; /* Full viewport height for images */
    object-fit: cover; /* Or 'contain' if cropping is an issue */
    margin-top: 0; /* Remove unnecessary margin */
    transition: 0.5s; /* Smooth transitions for any style changes */
}

@media (max-width: 768px) {
    .header-carousel .header-carousel-item img {
        height: 50vh; /* Adjust height for medium screens */
    }
}

@media (max-width: 576px) {
    .header-carousel .header-carousel-item img {
        height: 60vh; /* Adjust height for smaller screens */
    }
    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        font-size: 0.9rem; /* Smaller font size for better readability */
        width: 95%; /* Adjust width for smaller screens */
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1); /* Dim background for better contrast */
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    width: 75%; /* Restrict width for better layout */
    text-align: center; /* Center-align text */
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/
.border-primary {
    border-color: #09B6A9 !important; /* Replace with your desired color */
}
/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    background: rgba(58, 135, 135, .3);  /* Updated to #09B6A9 */
}

.service .service-item:hover .service-img::before {
    height: 100%;
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 0.3s ease;
}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(58, 135, 135, .5);  /* Updated to #09B6A9 */
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(58, 135, 135, .5);  /* Updated to #09B6A9 */
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}

.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/* Additional Styling to ensure consistent size and look */
.service .service-item {
    max-width: 360px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.service .service-item .service-img {
    height: 200px;
}

.service .service-item .service-content h5 {
    font-size: 1.2rem;
    font-weight: bold;
}

.service .service-item .service-content p {
    font-size: 1rem;
    color: #6c757d;
}

.service .service-item .service-content .btn {
    margin-top: 10px;
}

/*** Service End ***/



/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    /* Remove the border */
    border: none;
    /* Remove rounded corners */
    border-radius: 0;
}

.about .about-img .about-experience {
    position: absolute;
    top: 125px;
    left: -125px;
    transform: rotate(-90deg);
    background: transparent;
    color: #09B6A9;  /* Updated to #09B6A9 */
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/* Ensure text in the about section is dark black */
.about p {
    color: #8d8d8d !important; /* Force dark black color */
}

/*** About End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid #09B6A9;  /* Updated to #09B6A9 */
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: #09B6A9;  /* Updated to #09B6A9 */
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/

/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/





/*** Team Start ***/
.team {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team .team-item {
    width: 100%;
    max-width: 300px;
    height: 460px; /* Fixed height to make all equal */
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: transparent;
    transition: 0.5s;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, 0.3);
}

.team .team-content {
    color: #09B6A9;
    text-align: center;
    padding: 15px;
    background: #fff;
    transition: 0.5s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team .team-content h5 {
    color: var(--bs-secondary);
    margin-bottom: 5px;
    font-size: 18px;
    transition: 0.5s;
}

.team .team-content p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.team .team-item:hover .team-content {
    background: #639c84;
    color: #fff;
}

.team .team-item:hover .team-content h5 {
    color: #fff;
}
/*** Team End ***/




/*** Testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(58, 135, 135, 0.9), rgba(58, 135, 135, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: #09B6A9; /* Updated to #639c84 */
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: #639c84; /* Updated to #639c84 */
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 #639c84 !important; /* Updated to #639c84 */
    color: var(--bs-white) !important;
}

@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}
/* Testimonial Section Title Start */

.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.wider-img {
    width: 1350px; /* Adjust the width as needed */
    height: 250px; /* Keep the height equal to maintain the circle shape */
    object-fit: cover; /* Ensure the image is cropped to fit the circle shape */
}


.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #09B6A9; /* Updated to #09B6A9 */
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #09B6A9; /* Updated to #09B6A9 */
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/



/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid #09B6A9; /* Updated to #09B6A9 */
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/



/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(58, 135, 135, 0.9), rgba(58, 135, 135, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 #09B6A9; /* Updated to #09B6A9 */
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 #09B6A9 !important; /* Updated to #09B6A9 */
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}


/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #09B6A9; /* Updated to #09B6A9 */
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #09B6A9; /* Updated to #09B6A9 */
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


.email-link {
    font-size: 14px;
}
/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%; /* Ensure full width */
    padding: 0; /* Remove padding to allow full-width */
    margin: 0; /* Remove margin to ensure it stretches fully */
}

/* Footer Item Links */
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

/* Style for email link specifically */
.email-link {
    font-size: 14px; /* Decrease font size */
    font-weight: normal; /* Ensure it's not too bold */
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: #09B6A9; /* Updated to #09B6A9 */
}

/* Remove margin/padding from the container to ensure footer takes up full width */
.container-fluid.footer {
    padding: 0; /* Remove container padding */
    width: 100%; /* Ensure it stretches full width */
    margin: 0; /* Ensure full width */
}

/* Ensure footer items align properly */
.row {
    margin: 0; /* Remove any margin to prevent restrictions */
}

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
    width: 100%; /* Full width for the copyright section */
    padding: 20px 0; /* Adjust padding for spacing */
    text-align: center; /* Ensure the text is centered */
    color: #fff; /* Ensure copyright text is visible */
    margin: 0; /* Ensure full width */
}

/*** copyright End ***/


