/********** Template CSS **********/
:root {
    --primary: #18629f;
    --secondary: #0db14c;
    --light: #F6F7FC;
    --dark: #03569b;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.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: 500 !important;
}

h3, h4{
    font-weight: 400 !important;
}

h5, h6{
    font-weight: 300 !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;
}


/*** 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: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    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: 230px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        width: 160px;
    }

    .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;
        margin-top: 0;
        top: 150%;
        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: 99vw !important;
        padding: 10px 20px !important;
        background-color: #f8f9fa !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: 80px !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 */
    }


    .dropdown-item:hover {
        background-color: #e9ecef !important;
    }
}

.dropdown-scrollable {
    max-height: 300px;
    overflow-y: scroll !important;
    overflow-x: hidden;
}

.dropdown-menu h6 {
    font-size: 15px;
}



@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 */
    }


}

.img-icon{
    width: 32px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

.image-carousel{
    width: 100%;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        /*min-height: 450px;*/
    }

    #header-carousel .carousel-item img {
        /*position: absolute;*/
        width: 100%;
        /*height: 100%;*/
        /*object-fit: cover;*/
    }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 95, 219, 0.76);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.play-button:hover {
    background-color: rgba(2, 214, 48, 0.8);
}

.page-header {
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('../img/carousel-1.jpg') center center no-repeat;
    background-size: cover;
}

.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(53, 94, 252, .95), rgba(53, 94, 252, .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%;
    }
}


/*** Service Start ***/
.coolers .cooler-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    margin: 0 10px;
  }

  .coolers .cooler-item a {
    transition: 0.5s;
  }

  .coolers .cooler-item:hover a:hover {
    color: var(--bs-primary);
  }

  .coolers .cooler-item .cooler-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-top: 2px solid rgb(101, 255, 134);
    border-left: 2px solid rgb(101, 193, 255);
    border-right: 2px solid rgb(101, 193, 255);
  }

  .coolers .cooler-item .cooler-img img {
    transition: 0.5s;
    width: 100%;
    height: 300px;
    /* object-fit: cover; */
  }

  .coolers .cooler-item:hover .cooler-img img {
    transform: scale(1.1);
  }

  .cooler-carousel .owl-stage-outer {
    margin-top: 58px;
  }

  .coolers .owl-nav .owl-prev {
    position: absolute;
    top: 45%;
    left: -25px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 15px 20px;
    border-radius: 50%;
    transition: 0.5s;
  }

  .coolers .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: #fff;
  }

  .coolers .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    right: -25px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 15px 20px;
    border-radius: 50%;
    transition: 0.5s;
  }

  .coolers .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: #fff;
  }

  @media(max-width:576px){
      .coolers .owl-nav .owl-next {
        right: -20px;
      }
      .coolers .owl-nav .owl-prev {
        left: -20px;
      }

      .coolers .cooler-item .cooler-img img {
        transition: 0.5s;
        width: 100%;
        height: 330px;
        /* object-fit: cover; */
    }
  }

  /* Spare parts carousel starts here */
.spares .spare-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    margin: 0 10px;
  }

  .spares .spare-item a {
    transition: 0.5s;
  }

  .spares .spare-item:hover a:hover {
    color: var(--bs-primary);
  }

  .spares .spare-item .spare-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-top: 2px solid rgb(101, 255, 134);
    border-left: 2px solid rgb(101, 193, 255);
    border-right: 2px solid rgb(101, 193, 255);
  }

  .spares .spare-item .spare-img img {
    transition: 0.5s;
    width: 100%;
    height: 200px;
    /* object-fit: cover; */
  }

  .spares .spare-item:hover .spare-img img {
    transform: scale(1.1);
  }

  .spare-carousel .owl-stage-outer {
    margin-top: 58px;
  }

  .spares .owl-nav .owl-prev {
    position: absolute;
    top: 45%;
    left: -25px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 15px 20px;
    border-radius: 50%;
    transition: 0.5s;
  }

  .spares .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: #fff;
  }

  .spares .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    right: -25px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 15px 20px;
    border-radius: 50%;
    transition: 0.5s;
  }

  .spares .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: #fff;
  }

  @media(max-width:576px){
      .spares .owl-nav .owl-next {
        right: -20px;
      }
      .spares .owl-nav .owl-prev {
        left: -20px;
      }

      .spares .spare-item .spare-img img {
        transition: 0.5s;
        width: 100%;
        height: 280px;
        /* object-fit: cover; */
    }
  }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: block;
    }

    .vendor-carousel .owl-nav.disabled {
        display: none;
    }

    .price-quote{
        text-decoration: underline;
        cursor: pointer;
        color: var(--bs-dark);
    }

    .price-quote:hover{
        color: #01335c;
    }



  /* Steps starts here */

  .step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d6efd;
    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(--bs-primary), var(--bs-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; }
}

/*** Amenities Section Styles ***/
.amenities-section {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/bg.png) center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    margin-top: 50px;
}

.amenity-item {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation effect */
    position: relative;
    overflow: hidden;
}

.amenity-item .icons {
    width: 64px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; /* Smooth scaling */
}

/* Hover Effect for Amenity Item */
.amenity-item:hover {
    transform: translateY(-10px); /* Lift the box on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.amenity-item:hover .icons {
    transform: scale(1.1); /* Slightly enlarge the icon */
}

/* Add Overlay Effect on Hover */
.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(63, 165, 114, 0.1); /* Light overlay color */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 10px; /* Match the border-radius of the item */
}

.amenity-item:hover::before {
    opacity: 1; /* Show overlay on hover */
}

.amenity-item p{
    color: var(--bs-dark);
    font-weight: 500;
    font-size: 14px;
}


/* Small Screen Adjustments */
@media (max-width: 768px) {
    .amenity-item {
        padding: 15px;
    }

    .amenity-item .icons {
        width: 60px;
    }


}

.form-section {
    background-color: #ecececbd; /* Similar blue background */
    color: rgb(0, 0, 0);
    padding: 2rem;
    border-radius: 8px;
  }
  .form-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .form-control {
    background-color: #f1f1f1; /* Light grey for inputs */
    border: 2px solid #405945;
    border-radius: 5px;
  }

  .form-select {
    background-color: #f1f1f1; /* Light grey for inputs */
    border: 2px solid #405945;
    border-radius: 5px;
  }

  .form-section label {
    color: rgb(0, 0, 0);
    font-weight: 600;
  }



/* Hotels grid starts here */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
}

.hotel-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;
}

.hotel-item img {
    width: 100%;
    height: 280px;
    display: block;
    border-radius: 10px;
}

.hotel-item .hotel-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;
}

.hotel-item:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hotel-item:hover .hotel-text {
    background: rgba(0, 0, 0, 0.8); /* Darker overlay on hover */
}

@media (min-width:576px) and (max-width: 992px){
    .hotel-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media (max-width: 576px){
    .hotel-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(1, 95, 201, .7), rgba(1, 95, 201, .8)), 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;
}

.team-item:hover img {
    transform: scale(1.1);
}

.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-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.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;
  }
  
  .video-dual {
    position: relative;
    overflow: hidden;
}

    /* Background video (blurred) */
    .video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 130%;
        height: 130%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        filter: blur(12px) brightness(0.7);
        z-index: 1;
    }
    
    /* Front video (normal clean video) */
    .video-front {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 2;
    }


  .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;
    }
}

/*** Footer ***/
.footer {
    color: #ffffff;
    background: linear-gradient(rgba(3, 57, 138, 0.863),rgba(3, 57, 138, 0.869)), url('../img/air-conditioner.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.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);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #fff;
    border: 1px solid #fff;
}

.footer .btn.btn-square:hover {
    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: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 280px; /* Fixed height for all images */
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio, crops if necessary */
    transition: 0.5s ease;
    border-radius: 10px;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 35px;
    opacity: 0;
    transition: 0.4s;
    border-radius: 10px;
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    text-align: center;
    background: linear-gradient(90deg, #18629f, #0db14c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



