 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* Top Bar */
    .top-astro-bar {
      background:#7a0000;
      padding: 8px 0;
      color: #fff;
    }

    .top-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .top-contact a {
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .top-contact .icon-circle {
      width: 48px;
      height: 48px;
    
      color: #ffd400;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .top-title {
      background: #fff;
      color: #000;
      font-size: 20px;
      font-weight: 900;
      padding: 7px 15px;
      text-align: center;
      border-left: 4px solid #000;
      white-space: nowrap;
    }
 
    @media (max-width: 991px) {
      .top-contact {
        justify-content: center;
        margin-bottom: 8px;
      }

      .top-contact a {
        font-size: 22px;
      }

      .top-title {
        white-space: normal;
        font-size: 24px;
      }

      .astro-main-header {
        text-align: center;
      }

      
    }

    @media (max-width: 575px) {
      .top-contact {
        gap: 8px;
      }

      .top-contact a {
        font-size: 18px;
      }

       
    }
 .three-image-section {
    padding: 25px 0;
    background: #fff;
  }

  .image-box {
    width: 100%; 
    border-radius: 5px;
    box-shadow: 0 1px 0px rgba(0,0,0,0.15);
  }

  .image-box img {
    width: 100%;
   
    object-fit: cover;
    display: block;
  }

  @media (max-width: 767px) {
    .three-image-section {
      padding: 30px 0;
    }
 
  }	
   .marquee-section {
    background: #7a0000;
    padding: 10px ;
    overflow: hidden;
    
  }

  .marquee-text {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }

  .marquee-text span {
    color: #ffffff;
    margin: 0 25px;
  }

  @media (max-width: 767px) {
    .marquee-section {
      padding: 8px 0;
    }

    .marquee-text {
      font-size: 18px;
    }
  }
   
  .hero-image-section {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-image-section img {
    width: 100%;
   
    display: block;
  }

  /* Optional Overlay Text */
 
  

  @media (max-width: 991px) {
    .hero-image-section img {
      
    }

    .hero-content h1 {
      font-size: 40px;
    }

    .hero-content p {
      font-size: 19px;
    }
  }

  @media (max-width: 767px) {
    .hero-image-section img {
      
    }

    
  }
 
 
  .ctr-section {
    position: relative;
    padding: 70px 0;
    background:linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.82)),
                url("images/bg1.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .ctr-box {
    max-width: 950px;
    margin: auto;
    text-align: center;
    color: #fff;
  }

  .ctr-subtitle {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
  }

  .ctr-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
  }

  .ctr-title span {
    color: #ffd400;
  }

  .ctr-text {
    font-size: 20px;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 30px;
    color: #f1f1f1;
  }

  .ctr-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .ctr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .call-btn {
    background: #ffd400;
    color: #000;
  }

  .call-btn:hover {
    background: #fff;
    color: #7a0000;
    transform: translateY(-3px);
  }

  .whatsapp-btn {
    background: #25d366;
    color: #fff;
  }

  .whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-3px);
  }

  @media (max-width: 767px) {
    .ctr-section {
      padding: 45px 15px;
    }

    .ctr-title {
      font-size: 31px;
    }

    .ctr-text {
      font-size: 16px;
    }

    .ctr-btn {
      width: 100%;
      max-width: 310px;
      font-size: 17px;
      padding: 13px 20px;
    }
  }
 .about-section {
    padding: 80px 0;
    background: #fff8e1;
    overflow: hidden;
  }

  .about-img-box {
    position: relative;
   
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  }

  .about-img-box img {
    width: 100%;
    
    object-fit: cover;
    display: block;
  }

  .about-content {
    padding-left: 25px;
  }

  .section-subtitle {
    display: inline-block;
    background: #7a0000;
    color: #ffd400;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 15px;
  }

  .about-title {
    font-size: 44px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .about-title span {
    color: #c70000;
  }

  .about-text {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 25px 0 30px;
  }

  .about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    font-size: 17px;
    font-weight: 800;
    color: #222;
  }

  .about-point i {
    color: #7a0000;
    font-size: 22px;
  }

  .about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s ease;
  }

  .call-about-btn {
    background: #ffd400;
    color: #000;
  }

  .call-about-btn:hover {
    background: #7a0000;
    color: #fff;
    transform: translateY(-3px);
  }

  .whatsapp-about-btn {
    background: #25d366;
    color: #fff;
  }

  .whatsapp-about-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-3px);
  }

  @media (max-width: 991px) {
    .about-section {
      padding: 55px 0;
    }

    .about-content {
      padding-left: 0;
      margin-top: 35px;
      text-align: center;
    }

    .about-title {
      font-size: 36px;
    }
 
    .about-buttons {
      justify-content: center;
    }
  }

  @media (max-width: 575px) {
    .about-section {
      padding: 40px 0;
    }

    .about-title {
      font-size: 30px;
    }

    .about-text {
      font-size: 16px;
    }
 
    .about-experience {
      left: 15px;
      bottom: 15px;
      padding: 13px 18px;
    }

    .about-experience h3 {
      font-size: 30px;
    }

    .about-points {
      grid-template-columns: 1fr;
    }

    .about-btn {
      width: 100%;
      justify-content: center;
      font-size: 16px;
    }
  }
 
  .services-bg-section {
    position: relative;
    padding: 80px 0;
    background: #7a0000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
  }

  .services-title-box {
    text-align: center;
    margin-bottom: 50px;
  }

  .services-small-title {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
  }

  .services-main-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
  }

  .services-main-title span {
    color: #ffd400;
  }

  .services-title-text {
    max-width: 780px;
    margin: auto;
    color: #f1f1f1;
    font-size: 18px;
    line-height: 1.7;
  }

  .new-service-card {
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 5px #fff;
    transition: 0.3s ease;
  }

  .new-service-card:hover {
    transform: translateY(-8px);
  }

  .new-service-img {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .new-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
  }

  .new-service-card:hover .new-service-img img {
    transform: scale(1.08);
  }

  .new-service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  }

  .service-over-title {
    position: relative;
    left: 18px;
    right: 18px;
    bottom: 47px;
    z-index: 2;
    background:#7a0000;
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    border: 2px solid #ffd400;
  }

  .new-service-content {
    padding: 24px 22px 28px;
    text-align: center;
  }

  .new-service-content p {
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .new-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #ffd400;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .new-service-btn:hover {
    background: #7a0000;
    color: #fff;
  }

  @media (max-width: 991px) {
    .services-bg-section {
      padding: 60px 0;
      background-attachment: scroll;
    }

    .services-main-title {
      font-size: 36px;
    }
  }

  @media (max-width: 575px) {
    .services-bg-section {
      padding: 45px 0;
    }

    .services-main-title {
      font-size: 29px;
    }

    .services-title-text {
      font-size: 16px;
    }

    .new-service-img {
      height: 220px;
    }

    .service-over-title {
      font-size: 18px;
    }
  }
  .why-choose-section {
    position: relative;
    padding: 80px 0;
    background:#fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .why-subtitle {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 15px;
  }

  .why-title {
    font-size: 45px;
    font-weight: 900;
    color: #7a0000;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .why-title span {
    color: #ffd400;
  }

  .why-text {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .why-call-box {
    background: #7a0000;
    border: 2px solid #ffd400;
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    backdrop-filter: blur(5px);
  }

  .why-call-box h4 {
    font-size: 24px;
    font-weight: 900;
    color: #ffd400;
    margin-bottom: 10px;
  }

  .why-call-box p {
    margin-bottom: 18px;
    color: #fff;
    font-size: 16px;
  }

  .why-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffd400;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .why-call-btn:hover {
    background: #7a0000;
    color: #fff;
  }

  .why-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-bottom: 5px solid #ffd400;
    transition: 0.3s ease;
  }

  .why-card:hover {
    transform: translateY(-8px);
    border-bottom-color: #7a0000;
  }

  .why-icon {
    width: 70px;
    height: 70px;
    background: #7a0000;
    color: #ffd400;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
    border: 3px solid #ffd400;
  }

  .why-card h3 {
    font-size: 21px;
    font-weight: 900;
    color: #7a0000;
    margin-bottom: 10px;
  }

  .why-card p {
    font-size: 15.5px;
    color: #000;
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 991px) {
    .why-choose-section {
      padding: 60px 0;
      text-align: center;
    }

    .why-title {
      font-size: 36px;
    }

    .why-call-box {
      margin-bottom: 35px;
    }
  }

  @media (max-width: 575px) {
    .why-choose-section {
      padding: 45px 0;
    }

    .why-title {
      font-size: 30px;
    }

    .why-text {
      font-size: 16px;
    }

    .why-card {
      padding: 22px 16px;
    }

    .why-card h3 {
      font-size: 19px;
    }
  }
  .best-services-section {
    position: relative;
    padding: 85px 0;
    background:linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.82)),
                url("images/bg1.png") ;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .best-services-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255, 212, 0, 0.12);
    border-radius: 50%;
    top: -160px;
    left: -120px;
  }

  .best-services-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -150px;
    right: -120px;
  }

  .best-services-title-box {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 55px;
  }

  .best-services-subtitle {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
  }

  .best-services-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
  }

  .best-services-title span {
    color:#ffd400;
  }

  .best-services-text {
    max-width: 780px;
    margin: auto;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
  }

  .best-service-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 50px 24px 30px;
    text-align: center;
    box-shadow: 0 15px 38px rgba(0,0,0,0.32);
    border: 3px solid rgba(255, 212, 0, 0.65);
    transition: 0.35s ease;
    overflow: hidden;
    z-index: 2;
  }

  .best-service-card:hover {
    transform: translateY(-10px);
    border-color: #ffd400;
  }

  .best-service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #7a0000, #d00000);
    left: 0;
    top: 0;
    border-radius: 0 0 50% 50%;
  }

  .best-service-img {
    position: relative;
    
    width: 100%;
   
    border-radius: 50%;
    padding: 6px;
    
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0,0,0,0.30);
  }

  .best-service-img img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
  }

  .best-service-card h3 {
    font-size: 23px;
    font-weight: 900;
    color: #7a0000;
    margin: 25px 0 13px;
    line-height: 1.25;
  }

  .best-service-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .best-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #7a0000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 900;
    transition: 0.3s ease;
  }

  .best-service-btn:hover {
    background: #ffd400;
    color: #000;
  }

  @media (max-width: 991px) {
    .best-services-section {
      padding: 60px 0;
    }

    .best-services-title {
      font-size: 36px;
    }
  }

  @media (max-width: 575px) {
    .best-services-section {
      padding: 45px 0;
    }

    .best-services-title {
      font-size: 29px;
    }

    .best-services-text {
      font-size: 16px;
    }

    .best-service-card {
      padding: 60px 18px 26px;
    }

    .best-service-card h3 {
      font-size: 21px;
    }
  }
 .client-feedback-section {
    position: relative;
    padding: 85px 0;
    background:
      linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.86)),
      url("images/bg1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .feedback-title-box {
    text-align: center;
    margin-bottom: 55px;
  }

  .feedback-subtitle {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
  }

  .feedback-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
  }

  .feedback-title span {
    color: #ffd400;
  }

  .feedback-desc {
    max-width: 760px;
    margin: auto;
    color: #f1f1f1;
    font-size: 18px;
    line-height: 1.7;
  }

  .feedback-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 3px solid rgba(255, 212, 0, 0.55);
    transition: 0.35s ease;
    overflow: hidden;
  }

  .feedback-card:hover {
    transform: translateY(-10px);
    border-color: #ffd400;
  }

  .feedback-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: #7a0000;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.12;
  }

  .client-img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin: 0 auto 18px;
    padding: 5px;
    background: #ffd400;
  }

  .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
  }

  .feedback-stars {
    color: #ffd400;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0 #9b7300;
  }

  .feedback-text {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .client-name {
    font-size: 22px;
    font-weight: 900;
    color: #7a0000;
    margin-bottom: 4px;
  }

  .client-location {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    margin: 0;
  }

  .quote-icon {
    position: absolute;
    left: 22px;
    top: 20px;
    font-size: 42px;
    color: rgba(122, 0, 0, 0.12);
  }

  @media (max-width: 991px) {
    .client-feedback-section {
      padding: 60px 0;
    }

    .feedback-title {
      font-size: 36px;
    }
  }

  @media (max-width: 575px) {
    .client-feedback-section {
      padding: 45px 0;
    }

    .feedback-title {
      font-size: 29px;
    }

    .feedback-desc {
      font-size: 16px;
    }

    .feedback-card {
      padding: 32px 18px 26px;
    }
  }
.main-footer {
    position: relative;
    background:#000;
    background-size: cover;
    background-position: center;
    padding: 70px 0 0;
    color: #fff;
    overflow: hidden;
  }

  .footer-widget {
    margin-bottom: 35px;
  }

  .footer-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffd400;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
  }

  .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #ffd400;
    border-radius: 10px;
  }

  .footer-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #eeeeee;
    margin-bottom: 20px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    background: #ffd400;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .footer-social a:hover {
    background: #7a0000;
    color: #fff;
    transform: translateY(-4px);
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: #eeeeee;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
  }

  .footer-links a i {
    color: #ffd400;
    font-size: 15px;
  }

  .footer-links a:hover {
    color: #ffd400;
    padding-left: 5px;
  }

  .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #eeeeee;
    font-size: 16px;
    line-height: 1.6;
  }

  .footer-contact-list i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: #ffd400;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .footer-contact-list a {
    color: #eeeeee;
    text-decoration: none;
  }

  .footer-contact-list a:hover {
    color: #ffd400;
  }

  .footer-bottom {
    background: #7a0000;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 0;
    text-align: center;
    margin-top: 25px;
  }

  .footer-bottom p {
    margin: 0;
    color: #dddddd;
    font-size: 15px;
  }

  .footer-bottom span {
    color: #ffd400;
    font-weight: 800;
  }

  @media (max-width: 767px) {
    .main-footer {
      padding: 50px 0 0;
      text-align: center;
    }

    .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contact-list li {
      justify-content: center;
      text-align: left;
    }
  }  
.hindi-cta-section {
    position: relative;
    padding: 75px 0;
    background:#7a0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .hindi-cta-box {
    max-width: 980px;
    margin: auto;
    text-align: center;
    color: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    border: 3px solid #ffd400;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  }

  .hindi-cta-label {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 18px;
  }

  .hindi-cta-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
  }

  .hindi-cta-title span {
    color: #ffd400;
  }

  .hindi-cta-text {
    max-width: 820px;
    margin: 0 auto 30px;
    color: #f5f5f5;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 600;
  }

  .hindi-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hindi-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 900;
    transition: 0.3s ease;
  }

  .hindi-call-btn {
    background: #ffd400;
    color: #000;
  }

  .hindi-call-btn:hover {
    background: #fff;
    color: #7a0000;
    transform: translateY(-4px);
  }

  .hindi-whatsapp-btn {
    background: #25d366;
    color: #fff;
  }

  .hindi-whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-4px);
  }

  @media (max-width: 767px) {
    .hindi-cta-section {
      padding: 45px 12px;
    }

    .hindi-cta-box {
      padding: 32px 18px;
      border-radius: 20px;
    }

    .hindi-cta-title {
      font-size: 30px;
    }

    .hindi-cta-text {
      font-size: 17px;
      line-height: 1.7;
    }

    .hindi-cta-btn {
      width: 100%;
      max-width: 320px;
      font-size: 17px;
      padding: 13px 20px;
    }
  }
  .promo-cta-section {
    position: relative;
    padding: 85px 0;
    background:
      linear-gradient(120deg, rgba(0,0,0,0.88), rgba(122,0,0,0.85)),
      url("images/bg1.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .promo-cta-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 212, 0, 0.16);
    border-radius: 50%;
    top: -90px;
    left: -80px;
  }

  .promo-cta-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px dashed rgba(255, 212, 0, 0.35);
    border-radius: 50%;
    right: -120px;
    bottom: -130px;
  }

  .promo-cta-card {
    position: relative;
    z-index: 2;
    background: rgb(255 255 255 / 0%);
    border: 2px solid rgba(255, 212, 0, 0.8);
    border-radius: 30px;
    padding: 50px 45px;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  }

  .promo-badge {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 9px 26px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 18px;
  }

  .promo-title {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .promo-title span {
    color: #ffd400;
  }

  .promo-text {
    font-size: 20px;
    line-height: 1.8;
    color: #f5f5f5;
    margin-bottom: 28px;
    max-width: 850px;
  }

  .promo-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .promo-list span {
    background: #fff;
    color: #7a0000;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .promo-list span i {
    color: #25d366;
  }

  .promo-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 900;
    transition: 0.3s ease;
  }

  .promo-call-btn {
    background: #ffd400;
    color: #000;
  }

  .promo-call-btn:hover {
    background: #fff;
    color: #7a0000;
    transform: translateY(-4px);
  }

  .promo-whatsapp-btn {
    background: #25d366;
    color: #fff;
  }

  .promo-whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-4px);
  }

  .promo-phone-box {
    text-align: center;
    background: #fff;
    border-radius: 22px;
    padding: 28px 20px;
    border: 4px solid #ffd400;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  }

  .promo-phone-box i {
    width: 78px;
    height: 78px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 15px;
  }

  .promo-phone-box h3 {
    font-size: 24px;
    font-weight: 900;
    color: #7a0000;
    margin-bottom: 10px;
  }

  .promo-phone-box a {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 1.2;
  }

  .promo-phone-box p {
    margin: 12px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: #444;
  }

  @media (max-width: 991px) {
    .promo-cta-section {
      padding: 60px 0;
      text-align: center;
    }

    .promo-cta-card {
      padding: 38px 25px;
    }

    .promo-title {
      font-size: 36px;
    }

    .promo-text {
      margin-left: auto;
      margin-right: auto;
    }

    .promo-list,
    .promo-buttons {
      justify-content: center;
    }

    .promo-phone-box {
      margin-top: 30px;
    }
  }

  @media (max-width: 575px) {
    .promo-cta-section {
      padding: 45px 0;
    }

    .promo-cta-card {
      padding: 30px 18px;
      border-radius: 22px;
    }

    .promo-title {
      font-size: 29px;
    }

    .promo-text {
      font-size: 16px;
    }

    .promo-list span {
      width: 100%;
      justify-content: center;
    }

    .promo-btn {
      width: 100%;
      font-size: 17px;
      padding: 13px 20px;
    }

    .promo-phone-box a {
      font-size: 25px;
    }
  }
 .list-style-section {
    position: relative;
    padding: 80px 0;
    background:#7a0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .list-title-box {
    text-align: center;
    margin-bottom: 50px;
  }

  .list-subtitle {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
  }

  .list-main-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
  }

  .list-main-title span {
    color: #ffd400;
  }

  .list-desc {
    max-width: 760px;
    margin: auto;
    color: #f1f1f1;
    font-size: 18px;
    line-height: 1.7;
  }

  .list-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 32px 26px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.28);
    border: 3px solid rgba(255, 212, 0, 0.65);
    transition: 0.3s ease;
  }

  .list-card:hover {
    transform: translateY(-8px);
    border-color: #ffd400;
  }

  .list-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: #7a0000;
    margin-bottom: 22px;
  }

  .list-card-title i {
    width: 52px;
    height: 52px;
    background: #7a0000;
    color: #ffd400;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid #ffd400;
  }

  .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16.5px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
  }

  .service-list li:last-child {
    border-bottom: none;
  }

  .service-list li i {
    color: #7a0000;
    font-size: 18px;
    margin-top: 3px;
  }

  @media (max-width: 991px) {
    .list-style-section {
      padding: 60px 0;
    }

    .list-main-title {
      font-size: 35px;
    }
  }

  @media (max-width: 575px) {
    .list-style-section {
      padding: 45px 0;
    }

    .list-main-title {
      font-size: 29px;
    }

    .list-desc {
      font-size: 16px;
    }

    .list-card {
      padding: 28px 20px;
    }

    .list-card-title {
      font-size: 22px;
    }
  }  
.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .float-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    transition: 0.3s ease;
  }

  .float-btn:hover {
    color: #fff;
    transform: translateX(-6px) scale(1.05);
  }

  .float-call {
    background: linear-gradient(135deg, #ffcc00, #ff7a00);
  }

  .float-whatsapp {
    background: linear-gradient(135deg, #25d366, #078c45);
  }

  .float-btn::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.35;
    animation: pulseRing 1.6s infinite;
  }

  .float-call::before {
    color: #ffcc00;
  }

  .float-whatsapp::before {
    color: #25d366;
  }

  @keyframes pulseRing {
    0% {
      transform: scale(0.85);
      opacity: 0.6;
    }
    100% {
      transform: scale(1.25);
      opacity: 0;
    }
  }

  .float-label {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }

  .float-label::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #111;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  .float-btn:hover .float-label {
    opacity: 1;
    visibility: visible;
    right: 82px;
  }

  /* Mobile Bottom Bar */
  @media (max-width: 767px) {
	  
    .floating-contact {
      left: 0;
      right: 0;
      bottom: 0;
      flex-direction: row;
      gap: 0;
      background: #111;
      padding: 8px;
      box-shadow: 0 -8px 25px rgba(0,0,0,0.35);
    }

    .float-btn {
      width: 50%;
      height: 52px;
      border-radius: 12px;
      font-size: 22px;
      gap: 10px;
	          margin: 0px 2px;
    }

    .float-btn::before {
      display: none;
    }

    .float-btn:hover {
      transform: none;
    }

    .float-label {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: transparent;
      padding: 0;
      font-size: 15px;
      box-shadow: none;
    }

    .float-label::after {
      display: none;
    }
  }