/********** Template CSS **********/
:root {
    --primary: #37b9b7;
    --secondary: #fd745a;
    --lightSecondary: #fd755abb;
    --light: #F6F7FC;
    --dark: #1f414d;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.display-7{
    font-size: 22px;
}

.whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 52px;
    height: 52px;
    z-index: 100;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: heartbeat 1.5s infinite;
  }

  .whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  /* Heartbeat Animation */
  @keyframes heartbeat {
    0% {
      transform: scale(1);
    }
    30% {
      transform: scale(1.1);
    }
    50% {
      transform: scale(1);
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  /* Hover Effect */
  .whatsapp-float:hover {
    transform: scale(1.15);
    transition: transform 0.3s ease;
  }

  /* Responsive Adjustment */
  @media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 95px;
        right: 30px;
    }
  }

::selection{
    background-color: var(--secondary);
    color: white;
}

h1, h2{
    font-weight: 600 !important;
}

h3, h4{
    font-weight: 500 !important;
}

h5, h6{
    font-weight: 400 !important;
}

p{
    font-family: 'poppins';
    font-size: 16px;
}


/*** 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;
}

.logo-loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo-spinner {
    width: 65px;
    z-index: 2;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Circular Ring */
.logo-loader .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #e3e3e3;
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}




/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 70px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #212529;
    letter-spacing: 1px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-logo{
    width: 100%;
    height: auto;
}

/* Border under service headings (h6) */
.dropdown-menu h6 {
    padding-bottom: 8px;
    margin-bottom: 10px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary); /* Blue line */
}

/* Dotted border under each dropdown item */
.dropdown-menu .dropdown-item {
    padding-bottom: 8px;
    margin-bottom: 6px;
    border-bottom: 3px dashed #ccc;
}

/* Remove dotted border from last item in each column */
.dropdown-menu .col-md-3 .dropdown-item:last-child {
    /*border-bottom: none;*/
    margin-bottom: 0;
    padding-bottom: 0;
}

.dropdown-menu .dropdown-item:hover .gap-2 {
        color: var(--secondary); 
    }

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        width: 100%;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .navbar-nav .nav-link{
        margin-left: 5px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        border-top: 4px solid var(--primary);
        border-bottom: 4px solid var(--primary);
        margin-top: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

}

@media (min-width: 992px) {
    .dropdown-menu {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        position: fixed !important;
        top: 125px !important;
        left: 0 !important;
        width: 100vw !important;
        padding: 10px 20px !important;
        background-color: #fff !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
        justify-content: center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        border-radius: 0;
    }

    .shadow-sm .dropdown-menu {
        top: 85px !important;
    }

    .nav-item:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-item {
        padding: 8px 18px !important;
        font-size: 14px;
        font-weight: 600;
        color: #333 !important;
        font-family: 'Poppins';
        text-decoration: none !important;
        white-space: normal !important; /* Allow text to wrap */
        word-wrap: break-word !important; /* Break long words */
        overflow-wrap: break-word !important; /* Modern alternative for wrapping */
        transition: background-color 0.2s !important;
        line-height: 1.5; /* Add some line spacing for readability */
    }


    /* Initially shift the entire row to the left */
    .dropdown-menu .dropdown-item .gap-2 {
        transform: translateX(-10px); 
        transition: transform 0.3s ease; 
    }

    /* On hover of the dropdown item, slide it to original position */
    .dropdown-menu .dropdown-item:hover .gap-2 {
        transform: translateX(0);
        color: var(--secondary); 
    }


}

.dropdown-scrollable {
    max-height: auto;
    overflow-y: scroll !important;
    overflow-x: hidden;
}

.dropdown-menu h6 {
    font-size: 15px;
}

.over-scalable{
    overflow: hidden;
    border-radius: 15px;
}

.scalable{
    transition: transform 0.5s ease;
}

.over-scalable:hover .scalable{
    transform: scale(1.1);
    cursor: pointer;
}


@media (max-width: 576px) {
    .dropdown-menu {
        max-width: calc(100vw - 20px);
        margin: 0 auto;
    }
    .dropdown-item {
        padding: 0.25rem 0.1rem;
        white-space: normal !important; /* Allow text to wrap */
    }
    .dropdown-menu .dropdown-item:hover .gap-2 {
        color: var(--secondary); 
    }
    
    .dropdown-scrollable {
        max-height: 250px!important;
    }

}

.img-icon{
    width: 32px;
}

/* Video Section Styles */
.video-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Placeholder Image (shown until video loads) */
.video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.6);
    z-index: 1;
    transition: opacity 0.6s ease;
}

/* Background Video */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: blur(8px) brightness(0.6);
    opacity: 0; /* hidden initially */
    transition: opacity 0.6s ease;
    z-index: 1;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(55, 185, 183, 0.1);
    z-index: 1;
}

/* Content */
.video-section .container {
    position: relative;
    height: 100%;
}

.content-left{
    position: relative;
    z-index: 3;
}

.content-right{
    position: relative;
    z-index: 2;
}

.content-left p {
    font-size: 1.2rem;
    line-height: 1.6;
}


.content-left .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.right-image {
    max-width: 100%;
    height: auto;
}


/* ---- particles.js container ---- */

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; 
}

    
/* ===== Curved Bottom Wave (Desktop Only) ===== */
@media (min-width: 992px) {
    .wave-divider {
        position: absolute;
        bottom: -10%;
        left: 0;
        width: 100vw;        
        height: 160px;
        display: block;
        z-index: 3;
    }
}
@media (max-width: 991px) {
    .wave-divider {
        display: none;
    }
}



.service-box {
    background: #ffffff;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.portfolio-item {
    background: url('../img/bg_blue.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
}

.portfolio-img {
    overflow: hidden; /* Prevent image overflow */
    border-radius: 16px 16px 0 0;
    margin: 0 10px;
    padding: 10px;
}

.portfolio-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.08);
    cursor: pointer;
}

.portfolio-content {
    padding: 20px;
}


/* Owl Nav Styling */
.portfolio-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.portfolio-carousel .owl-nav .owl-prev,
.portfolio-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--secondary);
    border-radius: 10px;
    font-size: 22px;
    transition: .4s;
}


/* ============================
   Service Highlight Cards
============================ */

.highlight-card {
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Hover Effect */
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Box */
.highlight-card .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(var(--primary-rgb, 13, 110, 253), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.highlight-card .icon-box i {
    font-size: 26px;
    color: var(--primary);
}


/* Description */


/* ============================
   Service Features Section
============================ */

.service-features {
    position: relative;
}


/* Tech Item Styles */
.tech-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px; 
    background-color: #fff;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

.tech-item img {
    display: block;
    margin: 0 auto;
}





/* Wrapper */
.world {
    position: relative;
    display: flex;
    align-items: center;
}

/* Image container */
.world .image-display {
    max-width: 72%;
}

.world .image-display img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Address card */
.world .address-display {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    position: absolute;
    top: 10%;
    right: 0;
    width: 50%;
    min-height: 80%;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Titles */
.country-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.country-title .flag img {
    margin-right: 10px;
    border-radius: 50%;
}

.city-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.address-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}

.contact-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-text a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a i {
    color: #0d6efd;
    margin-right: 8px;
}

.contact-text a:hover {
    color: #0d6efd;
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
    .world {
        flex-direction: column;
    }

    .world .image-display {
        max-width: 100%;
    }

    .world .address-display {
        position: relative;
        width: 100%;
        margin-top: -60px;
        min-height: auto;
        right: auto;
        top: auto;
    }
}




.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Icon Style */
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.2s ease-in;

}

.why-icon i {
    font-size: 24px;
    color: #fff;
}

 .why-card:hover .why-icon{
    background-color: var(--secondary) !important;
 }

.sticky-sidebar {
    position: sticky;
    top: 100px;
}


.process-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Icon inside card */
.process-card .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card .icon{
    transition: 0.2s ease-in;
}

.process-card:hover .icon{
    background-color: var(--secondary) !important;
    cursor: pointer;
 }

/* Dots */
.process-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.process-dots .dot {
    width: 15px;
    height: 8px;
    background-color: var(--lightSecondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.process-dots .dot.active {
    width: 25px;
    background-color: var(--secondary); /* Red color like screenshot */
}


/* Service Card */
.service-card {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Image Wrapper */
.service-img {
    overflow: hidden; /* Prevent image overflow */
    border-radius: 16px 16px 0 0;
    margin: 0 10px;
}

/* Image */
.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Hover Only */
.service-card:hover .service-img img {
    transform: scale(1.12);
    cursor: pointer;
}

/* Content */
.service-content {
    padding: 20px;
}

/* Owl Nav Centered */
.services-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .4s;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/* Industry Card */
.industry-card {
    text-align: center;
}


/* Image Wrapper */
.industry-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Image Wrapper */
.industry-card:hover img {
    cursor: pointer;
}


/* Owl Nav Styling */
.industries-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.industries-carousel .owl-nav .owl-prev,
.industries-carousel .owl-nav .owl-next {
    margin: 0 6px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.4s;
}

.page-header{
    background: 
        linear-gradient(rgba(0, 0, 0, 0.182), rgba(0, 0, 0, 0.182)),
        url('../img/page-header.jpg') center/cover no-repeat;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}


.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(77, 174, 173, 0.95), rgba(77, 174, 173, 0.95)), url('../img/bg.png');
}

.facts .counter-card h3::after{
    content: '+';
    margin-left: 8px;
}

@media (min-width: 992px){
    .facts .counter-card{
        width: 23%;
    }
}

@media (max-width: 576px){
    .facts .counter-card{
        width: 48%;
    }
}


    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: block;
    }



  /* Steps starts here */

  .step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  .step-box {
    position: relative;
    padding-top: 30px;
    text-align: center;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
  }
  .step-box img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #dee2e6;
  }
  .step-box:hover {
    transform: translateY(-5px);
  }

  .step-box p{
    color: var(--bs-dark);
  }

  .step-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30%;
    z-index: 0;
    right: -75px; /* Adjust spacing between steps */
    transform: translateY(-50%);
    width: 110px; /* Adjust arrow size */
    height: 50px;
    background: url('../img/arrow01.webp') no-repeat center center;
    background-size: contain;
    z-index: -1;
  }

  /* Responsive adjustment for mobile screens */
  @media (max-width: 992px) {
    .step-box:not(:last-child)::after {
      display: none; /* Hide arrows on small screens */
    }
  }

/* Steps ends here */


.bg-primarys{
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* section title defines here */
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}



/* gallerys grid starts here */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item .gallery-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black overlay */
    color: #fff;
    text-align: center;
    padding: 10px 5px;
    font-size: 18px;
    font-weight: 500;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: background 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-text {
    background: rgba(0, 0, 0, 0.8); /* Darker overlay on hover */
}

@media (min-width:576px) and (max-width: 992px){
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media (max-width: 576px){
    .gallery-grid {
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }
}
 

/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/*** Usp ***/
.usp .nav .nav-link {
    transition: .5s;
}

.usp .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.usp .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.usp .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(77, 174, 173, 0.9), rgba(77, 174, 173, 0.9)), url(../img/form-banner.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
    height: 300px;
    object-fit: cover;
}

.team-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/* Contact Section Starts Here */
.contact-border{
    border: 2px solid var(--bs-secondary);
    padding: 30px 10px;
    border-radius: 20px;
    width: 32%;
  }


  .contact-img .img-container img {
    transition: 0.5s;
  }

  .contact-img:hover .img-container img {
    transform: scale(1.2);
  }

  @media(max-width:576px){
    .contact-border{
      width: 100%;
    }
  }

/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-item {
    border-radius: 18px;
}


.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


.testimonial-carousel .testimonial-item .test-img {
    width: 100px !important;
    display: block;       /* Make the image a block element */
    margin: 0 auto 1rem;  /* Center horizontally and add bottom margin */
}

/* Optional: if you want left alignment on medium+ screens */
@media (min-width: 768px) {
    .testimonial-carousel .testimonial-item .test-img {
        margin: 0 0 1rem 0; /* Remove auto margins to align left */
    }
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/* Popup form */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999999;
  }

  .form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    background: linear-gradient(#d3d3d3, #dddddd);
    background-position: center;
    background-size: cover;
    padding: 20px 30px;
    border-radius: 5px;
    display: none;
    z-index: 999999;
  }

  .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
  }

  .form-container #booknow {
    color: #405945;
    font-weight: 600;
  }

  .form-container h4 {
    color: rgb(0, 0, 0);
  }

  .popup_form label {
    color: rgb(0, 0, 0);
    font-weight: 600;
  }

  .form-container input,
  .form-container select {
    height: 42px;
  }

  .form-container .photo {
    border: 10px double #cc9c52;
  }

  .form-container img{
    height: auto;
    object-fit: cover;
  }

  .form-container .btn-dark:hover {
    background-color: white;
    color: #000;
  }

  @media (max-width: 576px) {
    .form-container {
      top: 50%;
      width: 100%;
      padding: 25px 20px;
    }

    .form-container h4 {
      margin-top: 10px;
      font-size: 20px;
    }
  }

  /* Image thumbnails */
  .img-thumbnail {
    cursor: pointer;
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s;
  }
  .img-thumbnail:hover {
    transform: scale(1.1);
  }
  .thumbnail-slider {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
  }


  @media (min-width: 768px){
    .sticky-image {
        position: -webkit-sticky;
        position: sticky;
        top: 12%;
        align-self: start;
    }
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
    cursor: pointer;
}


/* Address Cards */
.address-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.address-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.address-card iframe {
    border-radius: 12px;
    margin-top: 15px;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    color: var(--primary);
}

/* Input Group */
.input-group-text {
    background: #f1f1f1;
    border: none !important;
}

.modal-content {
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modal-content:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-close:focus {
    box-shadow: none;
}

.form-control:focus, .input-group .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}



.portfolio-mockup {
    max-width: 100%;
    transition: transform 0.4s ease;
}

.portfolio-mockup:hover {
    transform: scale(1.03);
}


/* Button */
.live-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: visible;
}

/* Icon wrapper */
.icon-wave {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

/* Eye icon */
.icon-wave i {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #fff;
}

/* Wave rings */
.icon-wave::before,
.icon-wave::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    animation: wavePulse 1.8s infinite;
}

/* Second wave delay */
.icon-wave::after {
    animation-delay: 0.9s;
}

/* Animation */
@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


/* Feature Box (if not already defined) */
.feature-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    font-size: 15px;
    font-weight: 500;
}

/* Icon Base Style */
.icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* Background Color Variants */
.bg-blue {
    background: #0d6efd;
}

.bg-purple {
    background: #6f42c1;
}

.bg-green {
    background: #198754;
}

.bg-orange {
    background: #fd7e14;
}

.bg-red {
    background: #dc3545;
}

.bg-whatsapp {
    background: #25D366;
}


/*** Footer ***/
.footer {
    color: #ffffff;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.452), rgba(0, 0, 0, 0.459)),
        url('../img/footer-bg.jpg') center/cover no-repeat;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}



.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #fff;
    border: 1px solid #fff;
}

.footer .btn.btn-square:hover {
    background-color: var(--secondary);
    border-color: var(--light);
}

.footer ::placeholder{
    color: white;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid #c7c7c7;
}

.footer .copyright a {
    color: white;
    font-weight: bold;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer_logos img{
    border-radius: 20px;
    width: 128px;
    height: 128px;
}

.icon-border {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff; /* white border */
    border-radius: 50%; /* circular shape */
    margin-right: 8px; /* space between icon and text */
    color: #ffffff; /* icon color */
}




.footer-logo{
    width: 120px;
    border-radius: 5px;
}