/********** Template CSS **********/
html, body {
    overflow-x: hidden; /* Hides horizontal scroll */
    margin: 0;
    padding: 0;
}
:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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 {
    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: #424344;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #042b75;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .nav-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.navbar .nav-item.show i {
  transform: rotate(180deg);
}


@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@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;
    }
}
 
/* Gradient red button */
.pay-later-btn {
    background: linear-gradient(90deg, #ff3b3b, #b80000);
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.4);
    transition: 0.3s;
}
.pay-later-btn:hover {
    background: linear-gradient(90deg, #b80000, #ff3b3b);
    transform: scale(1.05);
}

/* Blue button */
.appointment-btn {
    background: #007bff;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.4);
    transition: 0.3s;
}
.appointment-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Topbar phone number styling */
.text-primary {
    color: #0d6efd !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}


/* Common pulse + continuous shine */
.pay-later-btn,
.appointment-btn {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    transition: transform 0.3s ease;
    animation: softPulse 4s infinite;
}

/* Softer pulse animation */
@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255,255,255,0.25);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 16px rgba(255,255,255,0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255,255,255,0.25);
    }
}

/* Continuous moving shine */
.pay-later-btn::before,
.appointment-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shineSweep 4s linear infinite;
}

/* Shine motion loop */
@keyframes shineSweep {
    0% { left: -75%; }
    100% { left: 125%; }
}

/* Button color schemes */
.pay-later-btn {
    background: linear-gradient(90deg, #ff3b3b, #b80000);
    box-shadow: 0 0 12px rgba(255, 59, 59, 0.4);
}
.pay-later-btn::before {
    background: linear-gradient(
        120deg,
        rgba(255, 59, 59, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 59, 59, 0) 100%
    );
}

.appointment-btn {
    background: linear-gradient(90deg, #007bff, #0056b3);
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
}
.appointment-btn::before {
    background: linear-gradient(
        120deg,
        rgba(0, 123, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(0, 123, 255, 0) 100%
    );
}

/* 🔴 Red underline on hover & active navbar link */
.navbar .nav-link {
    position: relative;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* distance from text */
    width: 0%;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

/* On hover */
.navbar .nav-link:hover::after {
    width: 100%;
}

/* Active link */
.navbar .nav-link.active::after {
    width: 100%;
}

/* Optional: Change text color on hover/active */

/* ===== Enhanced Carousel Style ===== */
.carousel-item {
  height: 85vh; /* Reduced height */
  position: relative;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-item.active img {
  transform: scale(1);
}

/* Overlay */
.carousel-overlay {
  position: absolute;
  inset: 0;
      background: linear-gradient(to right, rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* Caption Content */
.carousel-caption {
  z-index: 2;
  top: 0;
  left: 8%;
  bottom: 0;
  display: flex;
  align-items: center;
}
.content-box {
  max-width: 600px;
  color: #fff; /* All text white */
}

/* Text Styling */
.subtitle {
  font-size: 1.3rem; /* Increased size */
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.title {
  font-size: 4rem; /* Increased size */
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}
.title span {
  color: #fff;
}
.description {
  font-size: 1.3rem; /* Increased size */
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Feature list */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff; /* or dark text depending on background */
}
.highlight-item {
    padding: 0.5rem;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;       /* smaller icon container */
    height: 60px;      /* smaller icon container */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper img {
    max-width: 40px;   /* adjust icon size */
    max-height: 40px;
}


/* ===== Buttons Styling ===== */
.btn-group {
  display: flex;
  gap: 1.5rem; /* Gap between buttons */
  flex-wrap: wrap;
}

.gradient-btn-red,
.gradient-btn-blue {
  border: 2px solid #fff; /* White border */

  color: #fff;
  padding: 16px 36px; /* Increased padding for height */
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.gradient-btn-red {
  background: linear-gradient(90deg, #ff512f, #dd2476);
}
.gradient-btn-blue {
  background: linear-gradient(90deg, #396afc, #2948ff);
}

.gradient-btn-red::after,
.gradient-btn-blue::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  animation: shine 3s infinite linear;
}
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}
.gradient-btn-red:hover,
.gradient-btn-blue:hover {
  transform: scale(1.08);
  border-color: #fff;
}

/* ===== Carousel Controls (Prev / Next) ===== */
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  opacity: 0.9;
}
.carousel-control-prev {
  left: -2rem;
}
.carousel-control-next {
  right: -2rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  border: 2px solid #fff;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(255,255,255,0.6);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .carousel-caption { left: 5%; }
  .title { font-size: 3.2rem; }
  .description { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .carousel-item { height: 60vh; }
  .carousel-caption { justify-content: center; text-align: center; left: 0; padding: 0 1.5rem; }
  .content-box { max-width: 90%; }
  .subtitle { font-size: 1.1rem; }
  .title { font-size: 2.2rem; }
  .description { font-size: 1rem; }
  .features { font-size: 0.95rem; }
  .btn-group { flex-direction: column; gap: 1rem; }
  .gradient-btn-red, .gradient-btn-blue { width: 100%; text-align: center; }
  .carousel-control-prev { left: 0.5rem; }
  .carousel-control-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .carousel-item { height: 50vh; }
  .title { font-size: 1.7rem; }
  .description { font-size: 0.9rem; }
  .features li { font-size: 0.85rem; }
}


/*** Facts ***/
.facts {
	position: relative;
}

.facts * {
	position: relative;
	z-index: 1;
}

.facts::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: rgba(1, 10, 53, .8);
}


/*** Quote ***/
/* =======================
   Common Background
   ======================= */
.section-quote-bg {
    background-image: url('../img/quotebg.jpg'); /* single background */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 0; /* top & bottom spacing */
}

.section-quote-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, 0.89); /* dark overlay for readability */
    z-index: 0;
}

/* Columns overlay */
.container.quote .quote-text,
.container.quote .quote-form {
    position: relative;
    z-index: 1;
}

/* Vertical Centering */
.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Inquiry Content Styling */
.inquiry-content h1 {
    font-weight: 700;
    font-size: 3rem;
}

.inquiry-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.inquiry-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.inquiry-list li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.5rem;
}

.inquiry-list li::before {
    content: '✓';
    color: #c2353b;
    position: absolute;
    left: 0;
    top: 0;
}

/* Form Styling */
#quote-form {
    max-width: 500px;
    width: 100%;
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#quote-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

#quote-form h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Input & Button */
.quote-form form .form-floating .form-control,
.quote-form form .form-floating .form-select {
    border-radius: 0.65rem;
    border: 1px solid #ccc;
    padding: 1rem 0.75rem;
}

.quote-form form .form-floating .form-control:focus,
.quote-form form .form-floating .form-select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 10px rgba(0,86,179,0.2);
}

.quote-form .btn-primary {
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.65rem;
    transition: all 0.3s ease;
}

.quote-form .btn-primary:hover {
    background: #004aad;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .inquiry-content h1 { font-size: 2.2rem; }
    .inquiry-content p { font-size: 1rem; }
    #quote-form { padding: 2rem 2rem; margin: 2rem 0; }
}


/*** Quote ***/












/*** Service ***/
/* Full-width blue background for the section */
.section-blue-bg {
    position: relative; /* needed for overlay & particles */
    width: 100%;
    background-color: #004aad;
    background-image: url('../img/servicesbg.jpg'); /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    overflow: hidden; /* ensures particles stay inside section */
}

/* Overlay */
.section-blue-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 10, 53, 0.41);
    z-index: 1;
}

/* particles.js container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* above background but below overlay? Or 2 if above overlay */
}

/* Section content */
.section-blue-bg .content {
    position: relative;
    z-index: 3; /* content above overlay & particles */
    color: #fff;
    padding: 50px;
}

/* Content inside section */
.section-blue-bg > * {
    position: relative;
    z-index: 2; /* ensures content sits above overlay */
}


/* Ensure your content is above the overlay */
.section-blue-bg > * {
    position: relative;
    z-index: 2;
}


/* Heading text white */
.section-blue-bg h1 {
    color: #fff;
}

/* Service item icon styling stays the same */
.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;
}
.section-blue-bg {
    padding-top: 80px;   /* adjust as needed */
    padding-bottom: 90px; /* adjust as needed */
}
/* Team section styles remain unchanged */
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    border-radius: 70px;
}

.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;
    border-radius: 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: 45px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #7F8499;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7F8499;
    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: #7F8499;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #7F8499;
    border: 1px solid #7F8499;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #ed0000;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}








/* cities start */
/* Section Styles */
.premium-work-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.premium-work-container {
  max-width: 1200px;
  margin: 0 auto;
}

.premium-work-title {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #004aad, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-weight: bold;
}

.premium-work-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.premium-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

/* Country Card */
.premium-country-card {
  background-color: #fefefe;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-country-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* Flag Circle */
.flag-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #004aad, #1e90ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.premium-country-flag {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

/* Country Name & Cities */
.premium-country-name {
  font-size: 1.4rem;
  background: linear-gradient(90deg, #004aad, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-weight: bold;
}

.premium-cities-list {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-work-title {
    font-size: 2.2rem;
  }
  .premium-work-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .premium-country-card {
    padding: 20px 15px;
  }
  .flag-wrapper {
    width: 70px;
    height: 70px;
  }
  .premium-country-flag {
    width: 60px;
    height: 60px;
  }
  .premium-country-name {
    font-size: 1.2rem;
  }
  .premium-cities-list {
    font-size: 0.9rem;
  }
}

/* cities end*/





/* faq start */
 .faq-container {
    background: #ffffff url('../img/FAQBG.jpg') no-repeat center center;
    background-size: cover; /* Makes the image cover the entire container */
    min-height: 100vh;
    padding: 60px 20px;
}

        .faq-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h1 {
            background: linear-gradient(90deg, rgb(0, 0, 0), rgb(5, 6, 7));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            animation: fadeInDown 0.8s ease;
        }

        .faq-header p {
            color: #666;
            font-size: 1.1rem;
            animation: fadeInUp 0.8s ease;
        }

        .faq-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .faq-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: linear-gradient(90deg, rgb(0, 123, 255), rgb(0, 86, 179));
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
        }

     .faq-icon {
    /* width: 30px;
    height: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative; /* Needed for absolute positioning of ::after */
}

.faq-icon::after {
    content: '›';
    font-size: 1.5rem;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    line-height: 1; /* Ensures it’s centered vertically */
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(270deg);
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.3);
}


        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: #ffffff;
            line-height: 1.7;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.1);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }

        .faq-right {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .image-showcase {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 715px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            animation: fadeIn 1s ease;
        }

        .image-showcase img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-showcase:hover img {
            transform: scale(1.05);
        }

        /* .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 123, 255, 0.9), transparent);
            padding: 30px;
            color: white;
        } */

        .image-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .image-overlay p {
            font-size: 1rem;
            color: #ffffff;
            opacity: 0.95;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 1024px) {
            .faq-content {
                grid-template-columns: 1fr;
            }

            .faq-right {
                position: relative;
                top: 0;
            }

            .faq-header h1 {
                font-size: 2.5rem;
            }

            .image-showcase {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .faq-container {
                padding: 40px 15px;
            }

            .faq-header h1 {
                font-size: 2rem;
            }

            .faq-header p {
                font-size: 1rem;
            }

            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px 20px;
            }

            .image-showcase {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .faq-header h1 {
                font-size: 1.75rem;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 18px;
            }

            .image-overlay h3 {
                font-size: 1.4rem;
            }

            .image-showcase {
                height: 300px;
            }
        }
/* faq  end*/



/* blog start  */

       .premium-learning-section {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 80px 0; /* 80px top and bottom, 0 left and right */
}

        .hero-banner {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 1s ease;
            position: relative;
        }

        /* .decorative-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #0056b3);
            margin: 0 auto 30px;
            border-radius: 10px;
            animation: expandWidth 1.5s ease;
        } */

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -2px;
            line-height: 1.2;
           
        }

        .subtitle-text {
            font-size: 1.4rem;
            color: #6c757d;
            font-weight: 600;
            letter-spacing: 3px;
          
            position: relative;
            display: inline-block;
        }

        .subtitle-text::before,
        .subtitle-text::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #007bff);
        }

        .subtitle-text::before {
            right: calc(100% + 20px);
        }

        .subtitle-text::after {
            left: calc(100% + 20px);
            background: linear-gradient(90deg, #007bff, transparent);
        }

        .premium-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 45px;
            margin-top: 50px;
        }

        .luxury-card {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.8s ease;
            border: 1px solid rgba(0, 123, 255, 0.08);
            position: relative;
        }

        .luxury-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #0056b3);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .luxury-card:hover::before {
            transform: scaleX(1);
        }

        .luxury-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(0, 123, 255, 0.2);
            border-color: rgba(0, 123, 255, 0.2);
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 123, 255, 0.1) 100%);
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(1) saturate(1);
        }

        .luxury-card:hover .featured-image {
            transform: scale(1.15) rotate(2deg);
            filter: brightness(1.1) saturate(1.2);
        }

        .category-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.95), rgba(0, 86, 179, 0.95));
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
        }

        .card-content {
            padding: 40px 35px;
            background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
        }

        .post-title {
            font-size: 1.65rem;
            color: #1a1a1a;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.4;
            min-height: 92px;
            transition: color 0.3s ease;
        }

        .luxury-card:hover .post-title {
            color: #007bff;
        }

        .meta-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            color: #868e96;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .calendar-icon {
            width: 18px;
            height: 18px;
            color: #007bff;
        }

        .date-divider {
            width: 4px;
            height: 4px;
            background: #dee2e6;
            border-radius: 50%;
        }

        .read-time {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .premium-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .premium-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .premium-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .premium-cta:hover {
            transform: translateX(8px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
        }

        .arrow-icon {
            transition: transform 0.4s ease;
            font-size: 1.2rem;
        }

        .premium-cta:hover .arrow-icon {
            transform: translateX(5px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .premium-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
/*            body {
                padding: 40px 15px;
            }*/

            .main-title {
                font-size: 2.5rem;
            }

            .subtitle-text {
                font-size: 1.1rem;
                letter-spacing: 2px;
            }

            .subtitle-text::before,
            .subtitle-text::after {
                width: 40px;
            }

            .premium-grid {
                padding: 20px;
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .post-title {
                font-size: 1.4rem;
                min-height: auto;
            }

            .image-container {
                height: 260px;
            }

            .card-content {
                padding: 30px 25px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
                letter-spacing: -1px;
            }

            .subtitle-text {
                font-size: 0.95rem;
                letter-spacing: 1.5px;
            }

            .subtitle-text::before,
            .subtitle-text::after {
                display: none;
            }

            .hero-banner {
                margin-bottom: 50px;
            }

            .premium-cta {
                padding: 14px 32px;
                font-size: 0.95rem;
                width: 100%;
                justify-content: center;
            }

            .category-badge {
                font-size: 0.7rem;
                padding: 6px 16px;
            }
        }
/* blog end  */












/* new page css start */
 .page-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
       
        }

        .content-section {
            background: #ffffff;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #007bff, #0056b3);
        }

        .primary-heading {
            background: linear-gradient(135deg, #007bff, #0056b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 42px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .secondary-heading {
            color: #1a1a1a;
            font-size: 28px;
            font-weight: 700;
            margin: 40px 0 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .secondary-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #0056b3);
            border-radius: 2px;
        }

        .subtitle-text {
            color: #7f8c8d;
            font-size: 18px;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .description-text {
            color: #34495e;
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .technician-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 15px 35px rgba(0,123,255,0.2);
            transition: transform 0.3s ease;
        }

        .technician-image:hover {
            transform: scale(1.02);
        }

        .feature-list {
            list-style: none;
            margin: 25px 0;
        }

        .feature-list li {
            padding: 18px 25px;
            padding-left: 50px;
            position: relative;
            color: #34495e;
            line-height: 1.8;
            margin-bottom: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            transform: translateX(10px);
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 18px;
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
            background: linear-gradient(135deg, #007bff, #0056b3);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-list strong {
            color: #007bff;
            font-weight: 700;
        }

        .sidebar-container {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

.appointment-form {
    max-width: 530px;
    background: linear-gradient(135deg, #1635bd 0%, #4b5ea2 100%);
    padding: 37px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

        .appointment-form::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s infinite;
        }

/* ✅ Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .appointment-form {
        padding: 25px 20px;
        border-radius: 15px;
        margin: 20px auto;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      
    }

        .appointment-form .form-title {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .appointment-form .name-row {
            flex-direction: column;
            gap: 10px;
        }

        .appointment-form .form-input {
            padding: 8px 12px;
            font-size: 14px;
        }

        .appointment-form .submit-button {
            padding: 10px;
            font-size: 15px;
        }
}








        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .form-title {
            color: #ffffff;
            font-size: 24px;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }

        .input-group {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .input-label {
            color: #ffffff;
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
            font-weight: 600;
        }

.form-input {
    width: 100%;
    padding: 7px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}        

        .form-input:focus {
            outline: none;
            background: #ffffff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .name-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .checkbox-group {
            color: #ffffff;
            font-size: 12px;
            margin: 20px 0;
            position: relative;
            z-index: 1;
        }

        .checkbox-group input {
            margin-right: 10px;
        }

        .submit-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
            position: relative;
            z-index: 1;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(58, 123, 213, 0.5);
        }

        .team-section {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 15px 40px rgba(250, 112, 154, 0.3);
            overflow: hidden;
            position: relative;
        }

        .team-title {
            color: #ffffff;
            font-size: 24px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .team-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .team-image:hover {
            transform: scale(1.05);
        }

        .quick-links {
            background: #ffffff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .quick-links-title {
            color: #1a1a1a;
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .link-list {
            list-style: none;
        }

        .link-item {
            padding: 15px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            margin-bottom: 12px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: #2c3e50;
            position: relative;
            overflow: hidden;
        }

        .link-item::before {
            content: '→';
            position: absolute;
            right: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .link-item:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
        }

        .link-item:hover::before {
            opacity: 1;
            right: 15px;
        }

        .faq-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 70px 40px;
         
       
          
        }

        .faq-title {
            color: #ffffff;
            font-size: 40px;
            text-align: center;
          
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px 30px;
            margin-bottom: 20px;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .faq-item:hover {
            background: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .faq-question {
            color: #1a1a1a;
            font-size: 17px;
            font-weight: 600;
            flex: 1;
        }

        .faq-arrow {
            color: #667eea;
            font-size: 28px;
            font-weight: bold;
            transition: transform 0.3s ease;
            margin-left: 20px;
        }

        .faq-item:hover .faq-arrow {
            transform: translateX(5px);
        }

        .sub-heading {
            color: #007bff;
            font-size: 20px;
            margin: 25px 0 12px;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .name-row {
                grid-template-columns: 1fr;
            }

            .sidebar-container {
                position: static;
            }

            .primary-heading {
                font-size: 32px;
            }

            .content-section {
                padding: 30px 25px;
            }

            .appointment-form {
                padding: 25px 12px;
            }
        }
/* new page css start */






.pay-later-btn {
    background-color: #c2353b; /* Red accent */
    transition: 0.3s;
}

    .pay-later-btn:hover {
        background-color: #a7282f;
    }

.appointment-btn {
    background-color: #1f2b6c; /* Deep blue */
    transition: 0.3s;
}

    .appointment-btn:hover {
        background-color: #16204f;
    }

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar .btn {
        font-size: 15px;
    }
}


/* Main Section Background */
.faq-section {
    padding: 60px 20px;
    background: #ffffff url('../img/FAQBG.jpg') no-repeat center center / cover;
    color: #000;
}

/* FAQ Box Base */
.faq-box {
    background: #e3e3e3; /* Light border space */
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
}

/* FAQ Question (Blue Header of Each Box) */
.faq-title {
    background: #007bff; /* Blue background */
    color: #fff;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Toggle Plus/Minus Icon */
.faq-toggle {
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

    .faq-toggle::before,
    .faq-toggle::after {
        content: '';
        position: absolute;
        background-color: white;
    }

    .faq-toggle::before {
        width: 10px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .faq-toggle::after {
        width: 2px;
        height: 10px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.faq-box.active .faq-toggle::after {
    display: none;
}

/* FAQ Answer Section (Gray Background) */
.faq-info {
    background: #f5f5f5; /* Light gray */
    color: #000; /* Black font */
    padding: 15px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.faq-box.active .faq-info {
    display: block;
}

/* Keep Responsive Layout */
@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
    }

    .faq-image {
        order: -1;
        margin-bottom: 20px;
    }
}



/*popupcss start*/
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Box */
/* Overlay Background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: flex-start; /* ✅ Align to top instead of exact center */
    padding-top: 80px; /* ✅ Margin from top */
    z-index: 9999;
}

/* Popup Box (Landscape Layout) */
.popup-content {
    max-width: 90%;
    overflow-y: auto;
    padding: 25px 35px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
}


/* Close Button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}


/*popupcss start*/




<!-- ✅ CSS Styling -->
.contact-section {
    padding: 60px 20px;
    background: #f5f7fa;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: 50px auto; /* Adds equal top & bottom margin */
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}


/* ✅ Left Side Style */
.contact-info {
    flex: 1;
    padding: 40px;
}

    .contact-info h2 {
        font-size: 28px;
        font-weight: 600;
        color: #0056b3;
        position: relative;
        display: inline-block;
    }

        .contact-info h2::after {
            content: '';
            width: 50%;
            height: 3px;
            background: #0056b3;
            position: absolute;
            bottom: -5px;
            left: 0;
            border-radius: 2px;
        }

.info-subtitle {
    color: #555;
    margin-bottom: 30px;
    font-size: 15px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .info-box i {
        font-size: 22px;
        color: #0056b3;
        background: #e8f1ff;
        padding: 12px;
        border-radius: 50%;
    }

    .info-box h4 {
        margin: 0;
        font-size: 18px;
        color: #222;
    }

    .info-box p {
        margin: 3px 0 0;
        color: #555;
        font-size: 15px;
    }

    .info-box a {
        color: #0056b3;
        text-decoration: none;
    }

        .info-box a:hover {
            text-decoration: underline;
        }

/* ✅ Map Section */
.contact-map {
    flex: 1;
    min-height: 350px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        height: 300px;
    }
}





/*mobile responsive css start*/
/* ✅ FINAL MOBILE-FRIENDLY CAROUSEL (FULLY RESPONSIVE) */
@media (max-width: 768px) {

    /* Make carousel items full height on mobile */
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 80vh !important;
        min-height: 600px; /* ensures enough space even on small phones */
        position: relative;
    }

        /* Image covers full height */
        #header-carousel .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }

    /* Overlay for readability */
    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }

    /* ✅ Center caption content perfectly */
    .carousel-caption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .content-box {
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        padding: 25px 15px;
        border-radius: 12px;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }

        /* Typography */
        .content-box .subtitle {
            font-size: 15px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .content-box .title {
            font-size: 26px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

            .content-box .title span {
                display: block;
                font-size: 24px;
            }

        .content-box .description {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Features list */
        .content-box ul.features {
            list-style: none;
            margin: 15px 0;
            padding: 0;
            font-size: 14px;
            text-align: left;
        }

            .content-box ul.features li {
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

    /* Buttons full width & stacked */
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

        .btn-group .btn {
            width: 100%;
            max-width: 280px;
            font-size: 15px;
            padding: 12px 0;
            border-radius: 8px;
        }

    /* Smaller carousel controls */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 28px;
        height: 28px;
        background-size: 100%;
    }

    /* Adjust section spacing */
    .container-fluid.p-0.mb-5 {
        margin-bottom: 30px !important;
    }
}



/*second part*/


@media (max-width: 576px) {


    p {
        padding: 20px;
        font-size: 0.95rem;
    }
}


/* ====== Quote Form Base Styling ====== */
.quote-form .bg-white {
    background-color: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto; /* center the form */
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 992px) {
    .quote-form {
        padding: 0 40px; /* more side gap on tablets */
    }

        .quote-form .bg-white {
            padding: 1.8rem 2rem;
        }
}

@media (max-width: 768px) {
    .quote-form {
        padding: 0 50px; /* wider side spacing on mobile */
    }

        .quote-form .bg-white {
            padding: 1.5rem 2rem;
            border-radius: 12px;
        }

        .quote-form h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }

        .quote-form .form-floating input,
        .quote-form .form-floating select,
        .quote-form .form-floating textarea {
            font-size: 0.9rem;
            padding: 0.75rem 1rem;
        }

        .quote-form .btn {
            padding: 0.75rem;
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .quote-form {
        padding: 0 25px; /* extra left-right gap for very small screens */
    }

        .quote-form .bg-white {
            padding: 1.2rem 1.5rem;
            max-width: 100%;
        }

        .quote-form .form-floating input,
        .quote-form .form-floating select,
        .quote-form .form-floating textarea {
            padding: 0.65rem 0.9rem;
            font-size: 0.85rem;
        }

        .quote-form .btn {
            font-size: 0.95rem;
            padding: 0.7rem;
        }
}



/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .faq-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .faq-list {
        width: 100%;
    }

    .faq-image {
        width: 100%;
        justify-content: center;
    }

        .faq-image img {
            max-width: 380px;
        }
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-title {
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .faq-info {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .faq-image img {
        width: 90%;
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .faq-info {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .faq-image img {
        width: 100%;
        max-width: 400px;
    }
}





/*second part send*/




/*mobile responsive css end*/



/*chat container start*/
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

#chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
    color: white;
    font-size: 28px;
    position: relative;
}

    #chat-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
    }

        #chat-button:hover #tooltip {
            opacity: 1;
            visibility: visible;
        }

    #chat-button.active {
        display: none;
    }

#tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

    #tooltip::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        border: 8px solid transparent;
        border-left-color: #333;
    }

#chat-container {
    display: none;
    width: 380px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: slideUp 0.3s ease;
    margin-bottom: 10px;
}

    #chat-container.active {
        display: flex;
        flex-direction: column;
    }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(10px);
}

.header-info h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

#close-chat {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    #close-chat:hover {
        background: rgba(255,255,255,0.3);
        transform: rotate(90deg);
    }

#chat-body {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    scroll-behavior: smooth;
}

    #chat-body::-webkit-scrollbar {
        width: 6px;
    }

    #chat-body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    #chat-body::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 10px;
    }

.message {
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.bot-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    flex-shrink: 0;
}

.bot-message .message-content {
    background: #fff;
    padding: 12px 16px;
    border-radius: 18px;
    border-top-left-radius: 4px;
    max-width: 75%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1.5;
    font-size: 14px;
    color: #333;
}

.user-message {
    display: flex;
    justify-content: flex-end;
}

    .user-message .message-content {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        padding: 12px 16px;
        border-radius: 18px;
        border-top-right-radius: 4px;
        max-width: 75%;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        line-height: 1.5;
        font-size: 14px;
    }

.typing-indicator {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .typing-indicator .dot {
        width: 8px;
        height: 8px;
        background: #667eea;
        border-radius: 50%;
        animation: typing 1.4s infinite;
    }

        .typing-indicator .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-indicator .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

#chat-footer {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
    align-items: center;
}

#user-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

    #user-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

#send-btn {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
}

    #send-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    #send-btn:active {
        transform: scale(0.95);
    }

.service-card {
    background: #f3f4f6;
    padding: 10px 12px;
    border-radius: 10px;
    margin-top: 8px;
    font-size: 13px;
    border-left: 3px solid #667eea;
}

.price-tag {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    margin: 8px 0;
    font-size: 16px;
}

@media (max-width: 480px) {
    #chat-container {
       /* width: calc(100vw - 20px);*/
        right: 10px;
    }

    #chat-body {
        height: 350px;
    }
}

/*chat container end*/




/*Ac offer button css start*/
.sale-text {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #ff0000, #0000ff, #ff0000);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 2s linear infinite;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 0, 255, 0.5);
    line-height: 1.2;
}

    .sale-text .price {
        font-size: 1.5rem;
        font-weight: 900;
    }

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}
/*Ac offer button css end*/


/ac glowing start/
.ac-service-sticker {
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 15px 25px;
}
/* Yellow Oval Burst Behind Everything */
.ac-service-sticker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 120%;
    background: #f6b300;
    transform: translate(-50%, -50%);
    z-index: -1;
    clip-path: polygon( 50% 0%, 60% 15%, 75% 5%, 85% 20%, 100% 25%, 90% 40%, 100% 55%, 85% 65%, 95% 80%, 75% 75%, 65% 100%, 50% 85%, 35% 100%, 25% 75%, 5% 80%, 15% 65%, 0% 55%, 10% 40%, 0% 25%, 15% 20%, 25% 5%, 40% 15% );
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.8);
}

.sticker-badge {
    display: block;
    color: #ff0000;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
}

/* Text styles */
.sticker-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
}

/*.sticker-price {
    display: block;
    color: #ff0000;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 30px rgba(255, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: price-pulse 1.5s ease-in-out infinite;
    letter-spacing: -1px;
}*/
.sticker-price {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #d60000;
    line-height: 1;
}
.sticker-only {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000;
}
    .sticker-price::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 70%;
        background: #f6b300;
        transform: translate(-50%, -50%);
        z-index: -1;
        /* Oval Burst Shape */
        clip-path: polygon( 50% 0%, 60% 15%, 75% 5%, 85% 20%, 100% 25%, 90% 40%, 100% 55%, 85% 65%, 95% 80%, 75% 75%, 65% 100%, 50% 85%, 35% 100%, 25% 75%, 5% 80%, 15% 65%, 0% 55%, 10% 40%, 0% 25%, 15% 20%, 25% 5%, 40% 15% );
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.9), 0 0 40px rgba(255, 193, 7, 0.6);
    }

.sticker-only {
    display: block;
    color: #ff0000;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
    animation: blink 2s ease-in-out infinite;
}

/* Star burst effect behind price */
.ac-service-sticker::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: #ffeb3b;
    opacity: 0.15;
    animation: rotate-star 20s linear infinite;
}

@keyframes price-pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.12);
    }

    50% {
        transform: scale(1.12);
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.18);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    2%, 6% {
        transform: rotate(-3deg);
    }

    4%, 8% {
        transform: rotate(3deg);
    }

    10% {
        transform: rotate(0deg);
    }
}

@keyframes rotate-star {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/ac glowing end/

