body {
    font-family: 'Outfit', sans-serif;
    background-image: linear-gradient(to right, #ffcb5b26, #ffeded, #ffcb5b26);
}
h1, h2. h3, h4, h5{font-family: 'Oswald', sans-serif;}
img{max-width: 100%;}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


 .city-content-main{
    --bh-purple-1:#540048;
    --bh-purple-2:#830060;
    --bh-gold-1:#ffca4c;
    --bh-gold-2:#ffdd98;
    --bh-text:#1a1a1a;
    --bh-muted:#5a5a5a;
  }

  /* ---------- H1 : Page Title ---------- */
  .city-content-main h1{
    font-family:outfit;
    font-weight:700 !important;
    font-size:40px;
    line-height:1.25;
    text-transform:capitalize;
    color:var(--bh-purple-1);
    background:none !important;
    -webkit-text-fill-color:currentColor !important;
    margin:14px 0 10px;
    position:relative;
    padding-bottom:16px;
  }
  .city-content-main h1::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:90px;
    height:5px;
    border-radius:10px;
    background:linear-gradient(to right, var(--bh-gold-1), var(--bh-gold-2), var(--bh-gold-1));
  }

  /* ---------- H2 : Section Titles ---------- */
  .city-content-main h2{
    font-family:outfit;
    font-weight:700;
    font-size:29px;
    line-height:1.3;
    text-transform:capitalize;
    color:#ffffff;
    background:linear-gradient(45deg, var(--bh-purple-1), var(--bh-purple-2));
    -webkit-text-fill-color:#ffffff !important;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border-radius:10px;
    margin:42px 0 20px;
    box-shadow:0 6px 16px rgba(84,0,72,0.18);
  }
  .city-content-main h2::before{
    content:"";
    flex-shrink:0;
    width:10px;
    height:10px;
    border-radius:50%;
    background:linear-gradient(to right, var(--bh-gold-1), var(--bh-gold-2));
    box-shadow:0 0 0 4px rgba(255,202,76,0.35);
  }

  /* ---------- H3 : Sub-headings ---------- */
  .city-content-main h3{
    font-family:outfit;
    font-weight:600;
    font-size:20px;
    line-height:1.3;
    text-transform:capitalize;
    color:var(--bh-purple-2);
    display:flex;
    align-items:center;
    gap:10px;
    margin:26px 0 8px;
    padding-left:14px;
    border-left:4px solid var(--bh-gold-1);
  }

  @media (max-width:767px){
    .city-content-main h1{ font-size:28px; padding-bottom:12px; }
    .city-content-main h1::after{ width:64px; height:4px; }
    .city-content-main h2{ font-size:21px; padding:12px 16px; gap:9px; margin:32px 0 16px; }
    .city-content-main h3{ font-size:17px; margin:20px 0 6px; }
  }

  /* ---------- Content Bullet Lists ---------- */
  .city-content-main ul.content-bullet-list{
    list-style:none;
    margin:16px 0 26px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .city-content-main ul.content-bullet-list li{
    position:relative;
    font-size:16px;
    line-height:1.6;
    color:var(--bh-text);
    padding:10px 16px 10px 38px;
    background:#fffaf0;
    border:1px solid #f2e6c4;
    border-radius:8px;
  }
  .city-content-main ul.content-bullet-list li::before{
    content:"\2726";
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:var(--bh-purple-2);
    font-size:13px;
  }
  @media (max-width:767px){
    .city-content-main ul.content-bullet-list li{
      font-size:15px;
      padding:9px 14px 9px 34px;
    }
  }

  /* ---------- Comparison Table ---------- */
  .city-content-main table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    margin:18px 0 30px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(84,0,72,0.12);
    border:1px solid #f0dcae;
  }
  .city-content-main table thead th{
    font-family:outfit;
    font-weight:600;
    font-size:16px;
    letter-spacing:.3px;
    text-transform:uppercase;
    color:#ffffff;
    background:linear-gradient(45deg, var(--bh-purple-1), var(--bh-purple-2));
    padding:16px 18px;
    text-align:left;
  }
  .city-content-main table tbody td{
    font-family:'Outfit', ;
    font-size:15.5px;
    line-height:1.5;
    color:var(--bh-text);
    padding:14px 18px;
    background:#ffffff;
    border-bottom:1px solid #f2e6c4;
  }
  .city-content-main table tbody tr:nth-child(even) td{
    background:#fffaf0;
  }
  .city-content-main table tbody tr:last-child td{
    border-bottom:none;
  }
  .city-content-main table tbody tr{
    transition:background .2s ease;
  }
  .city-content-main table tbody tr:hover td{
    background:#fff3d6;
  }
  .city-content-main table tbody td:first-child{
    font-weight:600;
    color:var(--bh-purple-2);
  }

  @media (max-width:767px){
    .city-content-main table{
      display:block;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      white-space:nowrap;
    }
    .city-content-main table thead th,
    .city-content-main table tbody td{
      font-size:14px;
      padding:12px 14px;
    }
  }
/* ============================================================
     FAQ + TESTIMONIAL THEME
     Uses the same fonts already loaded on the page (Outfit for
     headings, Outfit for body) and a gold/yellow accent to match
     the existing "yellow-back" CTA buttons and "light-yellow" text.
     Adjust --faq-accent below if the site's exact gold shade differs.
     ============================================================ */
  :root{
    --faq-accent:#f2b705;
    --faq-accent-dark:#c98f00;
    --faq-dark-bg:#1a1a2e;
    --faq-text-muted:#6b6b7b;
    --faq-card-bg:#ffffff;
    --faq-border:#eee2c2;
  }

  .faq-sections, .testimonial-sections{
    padding:60px 0;
    position:relative;
  }

  .faq-accordion .accordion-item.faq-item{
    background:var(--faq-card-bg);
    border:1px solid var(--faq-border);
    border-radius:12px;
    margin-bottom:16px;
    overflow:hidden;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
  }

  .faq-accordion .accordion-button.faq-btn{
    font-family:'Outfit', sans-serif;
    font-weight:600;
    font-size:17px;
    letter-spacing:.3px;
    color:#222;
    padding:18px 20px;
    background:var(--faq-card-bg);
  }

  .faq-accordion .accordion-button.faq-btn:not(.collapsed){
    color:var(--faq-accent-dark);
    background:#fff9e8;
    box-shadow:none;
  }

  .faq-accordion .accordion-button.faq-btn:focus{
    box-shadow:0 0 0 3px rgba(242,183,5,0.25);
  }

  .faq-accordion .accordion-button.faq-btn::after{
    filter:sepia(1) saturate(4) hue-rotate(3deg) brightness(0.95);
  }

  .faq-accordion .accordion-body.faq-body{
    font-family:'Outfit', sans-serif;
    font-size:15px;
    line-height:1.7;
    color:var(--faq-text-muted);
    padding:4px 20px 20px;
  }

  .testimonial-card{
    background:var(--faq-card-bg);
    border:1px solid var(--faq-border);
    border-top:3px solid var(--faq-accent);
    border-radius:12px;
    padding:26px 22px;
    height:100%;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
    transition:transform .25s ease, box-shadow .25s ease;
  }

  .testimonial-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,0.09);
  }

  .testimonial-stars{
    color:var(--faq-accent);
    font-size:14px;
    margin-bottom:12px;
  }

  .testimonial-text{
    font-family:'Outfit', sans-serif;
    font-size:14.5px;
    line-height:1.7;
    color:#4a4a4a;
    min-height:110px;
  }

  .testimonial-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:16px;
    padding-top:14px;
    border-top:1px dashed var(--faq-border);
  }

  .testimonial-avatar{
    font-size:38px;
    color:var(--faq-accent-dark);
  }

  .testimonial-author h5{
    font-family:'Outfit', sans-serif;
    font-size:15px;
    font-weight:600;
    margin:0;
    color:#222;
  }

  .testimonial-author span{
    font-family:'Outfit', sans-serif;
    font-size:12.5px;
    color:var(--faq-text-muted);
  }

  @media (max-width:767px){
    .faq-accordion .accordion-button.faq-btn{
      font-size:15px;
      padding:14px 16px;
    }
    .testimonial-card{
      margin-bottom:16px;
    }
    .testimonial-text{
      min-height:auto;
    }
  }


  .city-content-img{
        border-radius:16px;
        overflow:hidden;
        margin:14px 0 22px;
        box-shadow:0 10px 30px rgba(84,0,72,.15);
        border:2px solid #ffca4c;
      }
      .city-content-img img{
        width:100%;
        display:block;
        max-height:380px;
        object-fit:cover;
      }
      @media (max-width:767px){
        .city-content-img img{ max-height:220px; }
      }

      /* ---------- Content + Sidebar ---------- */
      .city-content-section{ padding:55px 0; }
      .city-content-main p{ line-height:1.7; }
      .city-content-cta{
        display:flex;
        flex-wrap:wrap;
        gap:14px;
        margin:22px 0 10px;
      }
      .whatsapp-btn{
        background:linear-gradient(45deg,#1da851,#25d366) !important;
        color:#fff !important;
      }
      .whatsapp-btn:hover{ background:linear-gradient(45deg,#540048,#830060) !important; }

      .sidebar-box{
        background:#ffffff;
        border-radius:16px;
        box-shadow:0 0 15px 0px #c9c9c95e;
        border:1px solid #ffca4c;
        padding:22px 20px;
        margin-bottom:22px;
      }
      .sidebar-box h4.sidebar-title{
        font-family:'Oswald', sans-serif;
        font-size:20px;
        font-weight:700;
        color:#540048;
        margin:6px 0 14px;
      }
      .contact-now-box{
        background:#ffecba;
        border-left:solid 3px #ffc936;
        border-color:#ffca4c;
      }
      .contact-now-box p{ font-size:15px; margin-bottom:16px; }
      .contact-now-box .btn-link{
        width:100%;
        text-align:center;
        display:block;
        margin-bottom:10px;
        font-size:16px;
      }

      .sidebar-tag{
        display:inline-block;
        font-size:12px;
        text-transform:uppercase;
        font-weight:700;
        letter-spacing:.5px;
        color:#1a1a1a;
        background:linear-gradient(to right,#ffca4c,#ffdd98,#ffca4c);
        padding:5px 16px;
        border-radius:40px;
        margin-bottom:10px;
      }
      ul.sidebar-list{ list-style:none; margin:0; padding:0; }
      ul.sidebar-list li{
        border-bottom:1px dashed #ffd994;
      }
      ul.sidebar-list li:last-child{ border-bottom:none; }
      ul.sidebar-list li a{
        display:flex;
        align-items:center;
        gap:10px;
        padding:12px 2px;
        transition:.3s;
      }
      ul.sidebar-list li a:hover{
        padding-left:8px;
      }
      ul.sidebar-list li a:hover span{ color:#830060; }
      ul.sidebar-list li a:hover .sidebar-arrow{
        color:#830060;
        transform:translateX(4px);
      }
      .sidebar-icon{
        flex-shrink:0;
        font-size:13px;
        color:#ffca4c;
        -webkit-text-stroke:.5px #830060;
      }
      ul.sidebar-list li span{
        flex:1;
        font-size:14.5px;
        font-weight:600;
        color:#1a1a1a;
        line-height:1.3;
        transition:.3s;
      }
      .sidebar-arrow{
        flex-shrink:0;
        font-size:12px;
        color:#830060;
        transition:.3s;
      }
p {
    color: #000000;
    font-size: 18px;
}
a{text-decoration: none;}
.m-auto{
    margin: 0 auto;
}

/**/
.zoom-in-zoom-out { 
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}
.fa-spin {
    -webkit-animation: fa-spin 9s linear infinite !important;
    animation: fa-spin 15s linear infinite !important;
}

/**/


.white-text{color: #fff;} 
.align{
    align-items: center;
} 
.light-back {
    background:#fff;
}
.ic-r {
    text-align: center;
    padding: 4px 0;
}
.ic-r img {
    width: 29px;
    margin-right: 5px;
}

/**/
.top-head li {
    display: inline-block;
}
.top-head {
    background: linear-gradient(45deg, #540048, #830060);
    padding: 5px 0;
}
.top-head-cta ul li {
    display: inline-block;
    padding: 5px 9px 5px 13px;
}
.top-head-cta ul li a {
    color: #000000;
    display: inline-block;
    text-align: right;
    position: relative;
    background: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 17px;
    padding: 5px 15px 5px 30px;
    border-radius: 50px;
    letter-spacing: 1px;
}
.top-head-cta ul li a i {
    display: inline-block;
    border-radius: 12px 0 0 12px;
    width: 34px;
    height: 36px;
    line-height: 37px;
    position: absolute;
    left: -7px;
    text-align: center;
    top: 0px;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    fill: #ffffff;
}
.center-top-head {
    background: #ffffff;
    padding: 5px 8px;
    font-size: 16px;
    text-align: center;
    position: relative;
    border-radius: 100px;
}
.ic-r p {
    color: #ff2f0d;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.light-back {
    background: #fff;
    border-radius: 45px;
}
.center-top-head marquee {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    top: 2px;
}
/**/

.nav-menu {
    text-align: end;
}
.nav-menu ul li {
    padding: 0 !important;
    border: unset !important;
}
.nav-menu ul li a {
    color: #fff;
    transition: 0.6s;
    padding: 12px 17px;
    display: block;
    margin-left: 3px;
}
.nav-menu ul li a:hover {
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    color: #000;
}


/**/
.headline-section {
    border-top: 1px solid #ffca4c;
    border-bottom: 1px solid #ffca4c;
}
.main {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: linear-gradient(45deg, #540048, #830060);
}
.headerline-section1 ul li {
    color: #ffffffd6;
    font-size: 18px;
    text-transform: capitalize;
    display: inline-block;
    font-weight: 600;  
}


/**/
.container-fluid {
    max-width: 1400px !important;
}
.ic-r {
    overflow: hidden !important;
}
.mar-part marquee {
    margin-bottom: -6px;
    padding: 3px 0;
}
.mar-part {
    padding: 5px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #540048, #830060);
}
.vid-part video {
    border: solid 2px #7718e8;
    border-radius: 20px;
    background: #000000;
}
/**/
.sab-title {
   font-size: 19px;
    text-transform: capitalize;
    font-weight: 700;
    padding: 11px 26px 11px;
    border-radius: 10px;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    color: #1a1a1a;
    margin-bottom: 12px;
}
.center-title {
    margin: 0 auto;
    width: fit-content;
}
.about-part .sab-title {
    width: fit-content;
}
.title-h2 {
    font-size: 42px;
    line-height: 1.2;
    text-transform: capitalize;
    background: linear-gradient(45deg, #540048, #830060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700 !important;
    margin-top: 15px;
}
.about-list-btn li {
    display: inline-block;
    margin-right: 10px;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 8px 25px;
    border-radius: 100px;
    color: #000000;
    border: solid 1px #ffcc5d;
    font-size: 16px;
    font-weight: 500;
}
.about-list-btn {
    margin: 11px  0;
}
.light-yellow {
    background: #ffecba;
    border-left: solid 3px #ffc936;
    padding: 15px 15px;
}
.legacy-section  .light-yellow {
    border-left: solid 3px #78005a;
}
.about-list-btn li i {
    color: #911243;
}
.title-h3 {
    line-height: 1.2;
    text-transform: capitalize;
    color: #8d0d45;
    font-weight: 700;
    font-size: 30px;
}
.cta-card {
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 15px 25px;
    border-radius: 8px;
    border: solid 1px #ffcc5d;
    text-align: center;
}
.cta-card a {
    font-size: 50px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #8d0d45;
    font-weight: 700;
}
.cta-card a i {
    font-size: 40px;
}
.sab-change {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 26px 5px;
    border-radius: 40px;
    background: #24013e;
    color: #ffffff;
    position: relative;
    top: -15px;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 25px;
}
.ser-sections {
    margin-top: 60px;
    padding: 60px 0;
    background-image: url(https://jaiprakshsharma.online/images/color-backss.webp);
    background-attachment: fixed;
    background-size: cover;
}
.ser-sections h2.title-h2 {
    color: #fff !important;
    -webkit-text-fill-color: unset;
}
.ser-card {
    overflow: hidden;
    position: relative;
    z-index: 9;
    border-radius: 12px;
    box-shadow: 0 0 15px 0px #c9c9c95e;
    border: 2px solid #ffffff;
    background: #ffffff;
    padding: 0 20px 20px 20px;
    margin-bottom: 25px;
}
.ser-card img {
    padding: 0px;
    text-align: center;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
    box-shadow: 0 5px 11px #00000038;
    border: solid 1px #fff;
}
.ser-card h4 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    color: #820060;
    text-align: center;
}
.ser-card h3 {
    text-align: center;
    font-size: 19px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 5px;
    background: linear-gradient(to right, #a881fe, #6629ea, #9362ff, #692ce7, #a881fe);
    color: #ffffff;
    border-radius: 72px;
}
.ser-card p {
    color: #000000;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
}
.cta-card-link {
    color: #ffffff;
    padding: 10px 19px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    border-radius: 100px;
    font-size: 18px; 
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 1px;
}
.cta-card-link:hover {
    background: linear-gradient(45deg, #540048, #830060);
    color: #ffffff;
    
}
li.active {
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c); 
}
li.active a { 
    color: #000 !important;
}
.what-we-do {
    background: #fff;
}
.card-icon-flex {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    text-align: center;
}
.card-icon img {
    width: 90%;
    margin-bottom: 6px;
}
.card-icon p {
    font-weight: 500;
    color: #112033;
}
.card-title-inn {
    text-align: center;
    background: linear-gradient(45deg, #540048, #830060);
    color: #fff;
    padding: 27% 0;
}
.card-title-inn h2 {
    font-size: 38px;
    text-transform: capitalize;
    font-weight: 700;
}
.what-we-do .container-fluid {
    max-width: 2000px!important;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/**/
.hindi-text {
    font-weight: 600;
    padding: 21px;
    border-radius: 40px;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
}
.hindi-text h2.title-h2 { 
    line-height: 1.4;
}
.hindi-text p {
    font-size: 25px;
}
.hindi-text  a.cta-card-link {
    margin: 0 auto;
    background: #720057;
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
}


/**/
.testimonial {
    padding: 0 10px;
    text-align: center;
}
.testimonial .pic {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0px;
    overflow: hidden;
    border: solid 4px #820060;
}

.testimonial-prt .testimonial-title {
    margin: 0;
    color: #820060;
    font-size: 18px;
    font-weight: 600;
}
.testimonial-prt {
    padding: 45px 0; 
}
.testimonial .description {
    color: #111;
    border-radius: 10px;
    box-shadow: 0 0 15px 0px #c9c9c95e;
    border: 2px solid #820060;
    background: #ffffff;
    padding: 60px 20px 20px 20px;
    margin-top: 15px;
    font-size: 18px;
}
.testimonial .pic {
    margin-bottom: -68px;
}
.owl-theme .owl-controls .owl-page span {
    background: #820060 !important;
}
.banner-4 {
    border-top: solid 2px #ffce5c;
    border-bottom: solid 2px #ffce5c;
}
.testimonial-prt h3 {
    color: #000000;
    font-size: 18px;
}
.testimonial-prt .line-style {
    background: #860747;
}
.testimonial-prt   .sab-title {
    background: linear-gradient(45deg, #540048, #830060);
    color: #fff;
}
/**/
.why-chose {
    padding: 50px 0; 
}
.why-c {
    box-shadow: 0 0 15px 0px #c9c9c95e;
    border: 1px solid #ffca4c;
    border-radius: 12px;
}
ul.list-li li {
    color: #000000;
    font-size: 18px;
    margin: 12px 0;
    padding-left: 28px;
    position: relative;
}
ul.list-li li i {
    position: absolute;
    left: 2px;
    top: 0px;
}
ul.list-li li i {
    margin-right: 4px;
    padding: 5px 0;
    color: #b7171d;
}
.cta-card-link.left-align {
    margin: 25px 0 0 0;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    color: #1a1a1a;
    font-weight: 600;
    padding: 14px 36px;
    transition: 0.6s; 
}
.cta-card-link:hover {
    background: linear-gradient(45deg, #540048, #830060);
    color: #ffffff;
}
.bg-white-sab {
    background: #fff !important;
    color: #000;
}
.payment-option {
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 9px;
    box-shadow: 0 0 15px 0px #c9c9c95e;
    border: 1px solid #eda700;
    border-radius: 12px;
}
.faculties.text-center {
    padding: 40px 0;
    border-bottom: solid 2px #ffce5c;
}
.fac-1 {
    margin: 0;
    border-right: dashed 1px #8a0d45;
    padding: 0 5px;
}
.fac-1 img {
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    border-radius: 41px;
    padding: 10px 10px;
    margin-bottom: 11px;
}
.fac-1 h3 {
    margin: 5px;
    padding: 0;
    font-size: 20px;
    color: #911243;
}
.fac-1 p {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}
.card-services {
    border: solid 1px #fcd108;
}
.cta-part {
    background: linear-gradient(45deg, #540048, #830060);
    padding: 50px 0;
    background-image: url(https://jaiprakshsharma.online/images/color-backss.webp);
    background-attachment: fixed;
    background-size: cover;
}
.cta-part h2 {
    font-size: 40px;
    line-height: 1.5;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 700;
}
.cta-part p {
    font-size: 20px;
    line-height: 1.4;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 600;
    background: #00000057;
    width: fit-content;
    margin: 15px auto;
    padding: 16px 18px;
    border-radius: 8px;
    max-width: 900px;
}
.btn-link {
    padding: 10px 25px;
    display: block;
    width: fit-content;
    border-radius: 100px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    color: #1a1a1a;
    font-weight: 600;
    border: solid 1px #ffffff; s
}
.btn-link:hover {
    background: #fff;
}
.btn-link:hover {
    color: #111;
}
.insta {
    width: 190px;
    background: #fff;
    padding: 5px 13px;
    border-radius: 57px;
    margin-bottom: 10px;
}
/**/

.marquee-bar { 
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    font-style: italic;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: #101010;
}
.dot {
    width: 8px;
    height: 8px;
    background: #850a66;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate content for seamless loop */
.marquee-inner {
    display: flex;
}


/**/
.ftr-sec {
    text-align: center;
    display: block;
    padding: 20px 0;
    border-top: solid 1px #ffd994;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
}
.white-text {
    color: #fff;
}
.ftr-sec .dsclmr span {
    display: block;
    text-align: center;
    border-top: 1px solid #7e0562;
    padding: 10px 0;
}
.awards {
    box-shadow: 0 0 15px 0px #c9c9c95e;
    border: 1px solid #ffca4c;
    border-radius: 12px;
    margin-bottom: 20px;
}

/**/
.legacy-section {
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 40px 0;
}
/**/
.call-part ul li {
    position: fixed;
    z-index: 999;
    right: -166px;
    width: 220px;
    list-style: none;
    transition: 1.7s;
    bottom: 30px;
}
.call-part ul li a {
    background: linear-gradient(45deg, #540048, #830060);
    padding: 0 0 6px 0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: solid 1px #000000;
    box-shadow: 0 0 1px 2px #00000073;
}
.call-part ul li a i {
    width: 45px;
    height: 50px;
    background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 12px 11px;
    font-size: 25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #000000;
    margin-right: 10px;
}
.call-part ul li.whats {
    margin-top: 79px;
}
.call-part ul li.whats {
    bottom: 100px;
}
.call-part ul li.whats i {
    background: #129122;
    color: #fff;
}
.call-part ul li:hover {
    right: 0;
}
/**/

.card-why {
    background-color: #ffffff;
    box-shadow: 0px 10px 50px rgba(204, 204, 204, 0.32);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    margin: 10px 0;
    align-items: center;
}
.con-why {
    color: #000000;
    font-weight: 600;
    font-size: 20px;
}

/**/




.about-list-btn li { 
    margin-bottom: 10px; 
}
@media (min-width:992px) and (max-width:1199px) {
    .top-head-cta ul li a { 
        font-size: 10px; 
    }
    .center-top-head li { 
        font-size: 13px;
    }
    .ic-r p {
        color: #ff2f0d;
        font-size: 12px; 
    }
    
    
    
}

@media (max-width:1199px){ 
    .headerline-section1 ul li { 
        font-size: 15px; 
    }
    .headerline-section1 ul li {
        font-size: 11px;
    }
    
    
}


@media (max-width:991px){ 
    .top-head-cta {
        text-align: center;
        margin: 0 0 5px 0;
    }
    .top-head {
        background: linear-gradient(45deg, #540048, #830060);
        padding: 8px 0;
    }
    .top-head-cta ul li { 
        padding: 3px 9px 7px 13px;
    }
    .headerline-section1 ul li {
        font-size: 18px;
    }
    
    .title-h2 {
        font-size: 30px;  
    }
    .title-h3 { 
        font-size: 25px;
    }
    .nav-menu ul li a { 
        padding: 10px 10px; 
    }
    .card-title-inn { 
        padding: 2% 0;
    }
    .card-icon p { 
        font-size: 14px;
    }
    .headerline-section1 ul {
        text-align: center;
        padding: 8px 0;
    }
    
    
    
}

@media (min-width:767px){ 
    .logo-mobile{
        display: none !important;
    }
    
}

@media (max-width:767px){ 
    .m-none{
        display: none !important;
    }
    #achievements {
        margin-top: 24px !important;
    }
    .logo-mobile {
        margin-top: -4px;
    }
    .mobile-margin-0 {
        margin-top: 11px !important;
    }
    .logo-center-head {
        border-top: dotted 1px #24013e;
        border-bottom: dotted 1px #24013e;
        padding: 4px 0;
        margin: 7px 0;
    }
    .card-title-inn {
        text-align: center;
        color: #78005a;
        background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    }
    .top-head-cta ul li a {
        font-size: 15px;
        padding: 3px 9px 5px 26px;
    }
    .top-head-cta ul li a i {
        width: 25px;
        height: 31px;
        line-height: 30px;
        left: -3px;
        top: 0px;
    }
    .top-head-cta ul li {
        padding: 3px 6px 6px 0px;
    }
    .center-top-head li {
        margin: 0 4px; 
        font-size: 12px;
    }
    .center-top-head li i { 
        width: 22px;
        height: 22px;
        font-size: 12px;
        padding: 5px 0; 
    }
    .center-top-head li { 
        font-size: 14px;
    }
    .center-top-head { 
        z-index: 5;
    }
    
    .center-top-head:before { 
        right: -5px;
        top: 5px;
        z-index: -1; 
    }
    .ic-r p { 
        font-size: 18px; 
    }
    .ic-r { 
        padding: 4px 0;
        margin: 8px 0 0 0;
    }
    .headerline-section1 ul li:first-child {
        border-left: unset;
    }
    .headerline-section1 ul li { 
        border-right: unset; 
        border-bottom: 1px solid #ffca4c47; 
        padding: 5px 15px 5px;
    }
    .headerline-section1 ul li:nth-child(2) {
        background-image: linear-gradient(to right, #ffcb5b6b, #ffd6d6, #ffcb5b6b); 
        width: 100%;
    }
    
    .d-none-m{display: none;}
    
    .about-list-btn li {
        width: 100%;
        margin: 4px 0;
        font-size: 18px;
    }
    .cta-card { 
        padding: 10px 15px; 
    }
    .sab-change {
        font-size: 12px; 
        padding: 8px 13px 5px; 
    }
    .cta-card a {
        font-size: 35px; 
    }
    .cta-card a i {
        font-size: 25px;
    }
    .payment-option {
        margin: 0 0 12px 0;
    }
    .fac-1 { 
        border-right: unset;
        border-bottom: dashed 1px #8a0d45;
        padding: 20px 14px;
    }
    .cta-part h2 {
        font-size: 25px; 
    }
    br.mnone {
        display: none;
    }
    .cta-part p {
        font-size: 17px; 
        margin: 18px 0;
    }
    .btn-link { 
        font-size: 20px; 
    }
    .ftr-sec p {
        font-size: 15px;
    }
    .center-top-head { 
        padding: 1px 8px; 
    }
    .headerline-section1 ul li {
        font-size: 17px;
        text-align: center;
    }
    .nav-menu {
        display: none;
    }
    .headerline-section1 ul {
        display: flex;
        justify-content: center;
    }
    .about-part h2.title-h2 {
        font-size: 40px;
    }
    section.why-chose h2.title-h2 {
        font-size: 26px;
    }
    .row-reverse {
        flex-direction: column-reverse;
    }
    .cta-part h2 {
        font-size: 23px;
    }
    .cta-part p {
        font-size: 16px;
        margin: 18px auto;
        line-height: 1.5;
        font-weight: 500;
    }
    .cta-part { 
        padding: 30px 0; 
    }
    img.why-choose-us {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .headerline-section1 ul li { 
        border-bottom: unset; 
    }
    .card-title-inn h2 {
        font-size: 35px;
        margin: 0; 
    }
    .card-icon-flex {
        flex-wrap: wrap;
    }
    .card-icon {
        width: 30%;
    }
    .card-icon-flex { 
        gap: 10px;
        justify-content: center; 
    }
    .card-icon p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .card-title-inn h2 {
        font-size: 30px; 
    }
    p { 
        font-size: 16px;
    }
    .ser-card h4 br {
        display: none;
    }
    .card-icon img {
        width: 75%; 
    }
    .why-chose {
        padding: 28px 0;
    }
    .ser-sections { 
        padding: 30px 0; 
    }
    .why-chose section.cta-part h2 {
        font-size: 22px;
    }
    .why-chose .cta-part p {
        font-size: 22px; 
        line-height: 1.7; 
    }
    .cta-part.mt-5 {
        margin-top: 9px !important;
        margin-bottom: 25px;
    }
    .hindi-text h2.title-h2 { 
        font-size: 28px !important; 
    }
    .hindi-text p {
        font-size: 22px !important;
    }
    .hindi-text  a.cta-card-link { 
        font-size: 18px; 
    }
    
    
    
}

@media (max-width:400px){ 
    .headerline-section1 ul li {
        font-size: 16px; 
        padding: 0 0;
    }
    .about-part h2.title-h2 {
        font-size: 35px;
    }
    
}


@media (max-width:355px){ 
    .headerline-section1 ul li { 
        padding: 8px 0;
    }
    .top-head-cta ul li a {
        font-size: 11px;
        padding: 4px 8px 5px 22px;
    }
    .top-head-cta {
        padding: 0 5px;
    }
    .headerline-section1 ul li {
        font-size: 14px;
    }
    .center-top-head li {
        font-size: 12px;
    }
    .main-services2 strong {
        font-size: 17px;
    }
    .main-services2 p {
        font-size: 12px;
        line-height: 16px;
    }
    .about-list-btn li { 
        font-size: 15px;
    }
    .cta-card a {
        font-size: 28px; 
    }
    .cta-card a i {
        font-size: 20px;
    }
    .cta-part p {
        font-size: 13px;
        margin: 18px auto;
    }
    .card-icon p {
        font-size: 12px; 
    }
    
    
}