:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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 {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
}
  /* Topbar */
  .bg-dark {
    background: #111 !important;
  }
  .bg-dark small {
    color: #fff;
  }
  .social-hover:hover {
    background: #007bff !important;
    transform: scale(1.1);
  }

  /* Liquid Glass Navbar */
.glass-navbar {
    background: rgba(255, 255, 255, 0.1); /* transparent base */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }
  
  /* On Scroll – slightly darker glass */
  .glass-navbar.scrolled {
    background: rgb(30, 30, 30);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
  }
  
  /* Navbar Links */
  .glass-navbar .nav-link {
    color: #050505 !important;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .glass-navbar .nav-link:hover {
    color: #ed6f16 !important; /* golden hover */
  }
  
  /* Phone Icon Box */
  .phone-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  

  /* Buttons */
  .btn-glow {
    background: linear-gradient(90deg, rgba(0,204,255,0.9), rgba(0,102,255,0.9));
    border: none;
    color: rgb(8, 8, 8);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.6);
    transition: all 0.3s ease;
  }
  .btn-glow:hover {
    box-shadow: 0 6px 20px rgba(0, 204, 255, 0.8);
    transform: translateY(-2px);
  }

  .glow-effect {
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.4);
    transition: all 0.3s ease;
  }
  .glow-effect:hover {
    box-shadow: 0 6px 20px rgba(0, 204, 255, 0.6);
  }

  /* Navbar Scroll Effect */
  .navbar {
    transition: all 0.4s ease;
  }
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #ffffff00;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060606;
    background: transparent;
    border: 1px solid #0d0c0c;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@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;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.bg-dark {
    background: #111 !important;
  }

  .social-hover {
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .social-hover:hover {
    transform: scale(1.2);
    background: #007bff !important;
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .contact-info {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
    .social-icons {
      margin-top: 5px;
      justify-content: flex-start;
    }
  }
  .parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    transition: background-position 0.3s ease-out;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.zoom-slide {
    animation: zoomIn 12s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.delay-1s { animation-delay: 1s; }
.delay-2s { animation-delay: 2s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated { animation-duration: 1s; animation-fill-mode: both; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInRight { animation-name: fadeInRight; }
.slideInDown { animation-name: slideInDown; }

.owl-carousel .owl-item {
    transition: opacity 1s ease-in-out;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .parallax { height: 60vh; background-attachment: scroll; }
    .zoom-slide { animation: zoomIn 15s ease-in-out infinite alternate; }
    .overlay { padding: 1rem; }
    h1 { font-size: 2rem; }
    h5 { font-size: 1rem; }
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.05);
}
.service-text h5 {
    font-size: 1.2rem;
    font-weight: bold;
}
.service-text p {
    font-size: 0.9rem;
    margin-top: 5px;
}
.owl-carousel .service-card {
    margin: 10px;
}


.service-text h5 {
    margin: 0;
}

.service-text:hover {
    background: rgba(0, 123, 255, 0.05);
}

@media (max-width: 768px) {
    .service-img {
        height: 200px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background: #20b954;
    transform: scale(1.1);
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9998;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background: #20b954;
    transform: scale(1.1);
}

/* Popup Card */
.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 280px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
    animation: slideIn 0.6s ease forwards;
}
.popup-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
    margin-bottom: 10px;
}
@keyframes slideIn {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

  
  .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    color: #070606;
    box-shadow: 0 8px 20px rgba(73, 71, 71, 0.25);
  }
  .glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(86, 21, 21, 0.4);
  }
  
  .icon-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(212, 3, 3, 0.045);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Animated Gradient Text */
  .animated-gradient, .animated-gradient-big, .animated-gradient-small {
    background: linear-gradient(270deg, #ff6a00, #ee0979, #00c6ff, #0072ff);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease infinite;
  }
  
  .animated-gradient-big {
    font-size: 2.5rem;
    font-weight: 800;
  }
  
  .animated-gradient-small {
    font-size: 1.3rem;
    font-weight: 700;
  }
  
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .glass-card ul li {
    transition: all 0.3s ease;
  }
  .glass-card ul li:hover {
    color: #0c0c0b;
    transform: translateX(5px);
  }
  /* Topbar */
.topbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    font-size: 14px;
  }
  
  .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }
  .contact-info .contact-item:hover {
    color: #ff6a00;
  }
  
  /* Glass Navbar */
  .glass-navbar-gradient {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }
  
  .navbar-brand .logo {
    max-height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
  }
  .navbar-brand:hover .logo {
    transform: scale(1.1);
  }
  
  .brand-text {
    font-size: 1.4rem;
    background: linear-gradient(270deg, #ff6a00, #ee0979, #00c6ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 6s ease infinite;
  }
  
  @keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .navbar-nav .nav-link:hover {
    color: #ff6a00;
    transform: scale(1.05);
  }
  
  .call-us {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .call-us:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  .phone-icon {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  .phone-icon:hover {
    transform: scale(1.1);
  }
  
  /* Social Icons */
  .social-icons a {
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  .social-icons a:hover {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    transform: scale(1.1);
  }
  
  .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
  }
  
  .glass-navbar-gradient {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    transition: all 0.4s ease;
  }
  
  .navbar {
    padding: 0;
  }
  
  .navbar.scrolled {
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .navbar-brand {
    padding: 0;
    margin-right: 20px;
  }
  
  .logo-img {
    max-height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
  }
  
  .nav-item.nav-link {
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    transition: color 0.3s ease;
    background: #f9f9f9;
    background-size: 800% 800%;
    -webkit-background-clip: text;

  }
  
  .nav-item.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(270deg, #00c6ff, #ff6a00, #ee0979, #00c6ff);
    transition: width 0.3s ease;
  }
  
  .nav-item.nav-link:hover::after {
    width: 10%;
  }
  
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .glow-effect {
    padding: 8px 12px;
  }
  
  .glow-effect:hover {
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.7), 0 0 10px rgba(238, 9, 121, 0.7);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }
  
  .phone-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.7), 0 0 10px rgba(238, 9, 121, 0.7);
  }
  
  @media (max-width: 992px) {
    .glass-navbar-gradient {
      padding: 10px 15px;
    }
    .nav-item.nav-link {
      padding: 6px 8px;
    }
  }
  /* Video background styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full cover like background-size: cover */
    z-index: 0;
  }
  
  /* Overlay on top of video/image */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* dark overlay */
    z-index: 1;
  }
  /* Carousel Section Background */
.service-section {
    background: #f8f9fa;
    padding: 60px 0;
  }
  
  /* Service Card */
  .service-card {
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Hover Effect */
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }
  
  /* Image Wrapper */
  .service-img {
    height: 220px;
    overflow: hidden;
  }
  
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  /* Zoom Effect on Hover */
  .service-card:hover .service-img img {
    transform: scale(1.08);
  }
  
  /* Text Section */
  .service-text {
    padding: 20px;
    text-align: center;
  }
  
  .service-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
  }
  
  /* Owl Carousel Dots */
  .owl-dots {
    text-align: center;
    margin-top: 20px;
  }
  .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s ease;
  }
  .owl-dot.active span {
    background: #007bff !important;
    transform: scale(1.2);
  }
  
  /* Owl Carousel Nav Arrows */
  .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .owl-nav button {
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  .owl-nav button:hover {
    background: #007bff !important;
    color: #fff !important;
  }
  .owl-nav i {
    font-size: 20px;
    color: #333;
  }
  /* Default - links inline */
.navbar-links {
    transition: all 0.4s ease;
  }
  
  /* When scrolled - move links to bottom */
  .glass-navbar.scrolled .navbar-links {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .glass-navbar.scrolled .navbar-links .nav-link {
    color: #f50c0c !important;
    padding: 5px 15px;
    font-size: 15px;
  }
  .fact-card {
    position: relative;
    min-width: 250px;
    overflow: hidden;
  }
  .neon-border::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(45deg, #00f5d4, #4cc9f0, #00f5d4, #4cc9f0);
    background-size: 400% 400%;
    z-index: -1;
    animation: neonGlow 6s linear infinite;
  }
  .neon-border::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    z-index: -1;
  }
  @keyframes neonGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .neon-icon {
    color: #00f5d4;
    animation: neonIconGlow 6s linear infinite;
    text-shadow: 0 0 15px rgba(0,245,212,0.7), 0 0 30px rgba(76,201,240,0.6);
  }
  @keyframes neonIconGlow {
    0% { color: #00f5d4; text-shadow: 0 0 10px #00f5d4; }
    50% { color: #4cc9f0; text-shadow: 0 0 15px #4cc9f0; }
    100% { color: #00f5d4; text-shadow: 0 0 10px #00f5d4; }
  }
  .fact-card:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
  }
  .service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}
.service-img img {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.service-text {
    padding: 20px;
    background: rgb(255, 255, 255);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}
.glow-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #ff4b1f, #ff9068, #f9d423, #6a11cb, #2575fc);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(15px);
    border-radius: 15px;
    animation: glowAnimation 10s ease infinite;
}
@keyframes glowAnimation {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem !important;
    }
    h5 {
        font-size: 1rem !important;
    }
    p {
        font-size: 0.9rem !important;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem !important;
    }
    h5 {
        font-size: 0.9rem !important;
    }
    p {
        font-size: 0.8rem !important;
    }
}
.video-background {
    width: 100%;
    height: auto; /* Keeps original aspect ratio */
    max-height: 100vh; /* Prevents overflow */
    object-fit: contain; /* Prevents cropping */
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)); /* dark overlay */
    display: flex;
    align-items: center;
    padding: 20px;
}

.carousel-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.carousel-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.carousel-text {
    color: white;
    font-size: 1rem;
    max-width: 600px;
}

.carousel-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff4d4d;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #e03d3d;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-title {
        font-size: 2rem;
    }
    .carousel-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .carousel-title {
        font-size: 1.5rem;
    }
    .carousel-text {
        font-size: 0.9rem;
    }
}
.carousel-btn {
    padding: 12px 30px;
    background: #ff4d4d;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.carousel-btn:hover {
    background: #e63939;
}
.overlay {
    position: absolute;
    top:0; left:0; 
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}
/* Glow Effect */
.glow-effect {
    position: relative;
    transition: transform 0.3s ease-in-out;
  }
  .glow-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  }
  
  /* Phone Ring Animation */
  .phone-icon {
    width: 40px;
    height: 40px;
    animation: ring 1.5s infinite;
  }
  .phone-icon i {
    font-size: 18px;
  }
  
  /* Ring Animation Keyframes */
  @keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70%, 100% { transform: rotate(0); }
  }
  
  /* Pop (Pulse) Animation */
  .call-action {
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0,123,255,0.4); }
    100% { transform: scale(1); }
  }
  