
  h2 {
   font-size: 38px !important;
   font-weight: 700;
   font-family: 'Domine', serif !important;
  }

   p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif !important;
  }

  .textheader{
    margin-top: 20px;
  }
.font-paragraph {
    font-family: 'Inter', sans-serif;
  }

    .font-heading {
    font-family: 'Domine', serif !important;
  }

.buttonorg {
  background: linear-gradient(45deg, #f0c674, #d4af37) !important;
  color: #333333 !important;
  font-size: 20px;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  padding: 12px 40px !important;
  box-shadow: 0 4px 15px rgba(240, 198, 116, 0.3) !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px !important;
}



.fullwidth-header {
      width: 100%;
      background-color: #7f4aa3;   
      padding: 20px 0;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .header-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      text-align: center;
    }
    .header-item i {
      font-size: 1.3rem;
    }
    @media (max-width: 768px) {
      .fullwidth-header {
        flex-direction: column;
        gap: 12px;
      }
    }
     /* Media query: mobile devices (max-width: 767px) */
  @media (max-width: 767px) {
    .fullwidth-header {
      display: none; /* hide header on mobile */
    }
  }
   /* Mobile header style */
  .mobile-header {
    width: 100%;
    background: #7f4aa3; /* attractive pink background */
    padding: 15px 0;
    display: none; /* default hide on desktop */
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }

  /* Show only on mobile (max-width: 767px) */
  @media (max-width: 767px) {
    .mobile-header {
      display: block;
    }
  }

  /* hero section */
     .hero-section {
      padding: 100px 15px; /* top-bottom 100px, left-right 15px */
      text-align: center;
    }
    .hero-underline {
      width: 80px;
      height: 4px;
      background-color: #000;
      margin: 15px auto 0;
      border-radius: 2px;
    }
    .hero-section h1{
        font-size: 3.5rem;
        margin-bottom: 10px;
        color: #333;
       
    }

    .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #333;
  
        font-family: 'Domine', serif;
font-weight: 700;

}

.hero-section p {
    font-size: 24px;
    margin-top: 0;
    font-weight: 400;
    
}
@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
        padding: 0px;
    }
    .hero-section p {
    font-size: 18px;
    margin-top: 0;
    font-weight: 400;
}
  .hero-section {
      padding: 30px 15px; /* top-bottom 100px, left-right 15px */
      text-align: center;
    }
}

.servicesecond{
   padding: 35px; 
           background-color: #ECEBE6;
           border-radius: 10px;

}
.services-section {
    padding: 10px 10px;
}
    .services-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
      
    }
    .services-list p {
      margin-bottom: 10px;
      font-weight: 500;
          font-family: 'Inter', sans-serif;

    }
    .services-section img {
      width: 100%;
      border-radius: 10px;
    }
    @media (max-width: 768px) {
      .services-section .row {
        flex-direction: column-reverse;
      }
      .services-section {
    
        background-color: #ECEBE6;
}
      .services-list p {
      margin-bottom: 10px;
      font-weight: 400;
      font-size: 18px;
          font-family: 'Inter', sans-serif;

    }
    .servicesecond{
padding: 18px;
}
      .services-section img {
        margin-bottom: 20px;
      }
    }

     .slider {
      background: white;
      box-shadow: 0 10px 20px -5px rgba(0,0,0,0.125);
      height: 100px;
      margin: auto;
      overflow: hidden;
      position: relative;
      width: 1200px;
      display: flex;
      align-items: center;
    }
    .slide-track {
      display: flex;
      width: calc(250px * 14);
      animation: scroll 20s linear infinite;
    }
    .slide {
      width: 250px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* Remove margin on right for seamless scroll */
    }
    .slide img {
      width: 250px;
      height: 100px;
      object-fit: contain;
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-250px * 7)); }
    }
    /* Gradient masking on edges for nice fade (optional) */
    .slider::before,
    .slider::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 100px;
      z-index: 2;
      top: 0;
      pointer-events: none;
    }
    .slider::before {
      left: 0;
      background: linear-gradient(to right, white 0%, transparent 100%);
    }
    .slider::after {
      right: 0;
      background: linear-gradient(to left, white 0%, transparent 100%);
    }
    /* Responsive adjustment for mobile */
    @media (max-width: 600px) {
      .slider {
        width: 100vw;
        height: 60px;
      }
      .slide,
      .slide img {
        width: 120px;
        height: 60px;
      }
      .slider::before,
      .slider::after {
        height: 60px;
        width: 60px;
      }
      .slide-track {
        width: calc(120px * 14);
      }
      @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-120px * 7)); }
      }
    }


 .stats-section {
      padding: 60px 20px;
      text-align: center;
    }
    .stats-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
      color: #002855;
          font-family: 'Inter', sans-serif;

    }
    .stat-card {
      background:#7f4aa3ff;
      border-radius: 5px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 10px 15px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .stat-number {
      font-size: 36px;
      font-weight: 800;
      color: white;
    }
    .stat-label {
      font-size: 15px;
      color: white;
    }
    @media (max-width: 991px) {
      .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }


.clients-section h2{
  
    font-family: 'Domine', serif !important;
}

@media (max-width: 480px) {
  .clients-section h2 {
    font-family: 'Domine', serif !important;
    font-size: 28px;
    font-weight: 700;
  }
  .clients-section .para {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
  }
}


     .review-card {
      border: 1px solid #ddd;
      border-radius: 15px;
      padding: 20px;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: left;
      height: 100%;
      margin-top: 20px !important;
    }

    .review-stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; }
    .review-text { flex-grow: 1; margin-bottom: 10px;
      font-family: 'Inter', sans-serif !important;
      font-style: italic !important;
      font-size: 16px;
     }

    .read-more-btn { font-weight: 600; padding: 0; margin: 0 0 10px 0; 
    text-decoration: none;
  color: rgb(160, 160, 156);
font-style: italic;}

    .review-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .profile-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .verified { color: green; font-size: 0.85rem; display:block; 
    font-weight: 600;}

    @media (max-width: 767px){
      /* On small devices, 1 card per row */
      .col-md-6 { flex: 0 0 100%; max-width: 100%; }
      .profile-img { width: 40px; height: 40px; }
      .review-stars { font-size: 1rem; }
    }

    .modal-card {
      border: 1px solid #ddd;
      border-radius: 15px;
      padding: 20px;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      text-align: left;
    }



    .servicesec{
      background-color: #e0e0e0ee;
      padding-top: 20px;
    }
.servicesec h2{
   font-family: 'Domine', serif !important;
   font-weight: 700 !important;
   font-size: 28px;
}
    .service-divider {
  border: none;
  border-top: 1px solid #e41616; /* thin gray line */
  margin: 10px 0;
}
    .service-card {
      border: 1px solid #ddd; /* thin border */
      border-radius: 15px;
      padding: 20px;
      margin: 15px 0;
      background: #fff;
      text-align: center;
      transition: transform 0.3s;
      height: 100%;
   
    }
    .service-card:hover { transform: translateY(-5px); }
    .service-icon { font-size: 2.5rem; color: #ff6f91; margin-bottom: 15px; }
    .service-title { font-weight: 600; font-size: 1.2rem; margin-bottom: 10px; }
    .service-desc { flex-grow: 1; margin-bottom: 15px; color: #555; font-size: 0.95rem; }
    .service-btn { font-weight: 500; }

    @media (max-width: 767px){
      .service-card { margin: 15px; }

      .servicesec h2{
   font-family: 'Domine', serif !important;
   font-weight: 700 !important;
   font-size: 28px;
}}

.servicesec p{
font-family: 'Inter', sans-serif;   font-weight: 400 !important;
   font-size: 18px;
}

.servicesec .service-title{
    font-size: 24px !important;
    font-weight: 700;
}

.servicesec .service-desc{
    font-size: 20px !important;
    }

.cta-section {
  position: relative;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.btn-gradient {
  background: linear-gradient(90deg, #ff6f91, #ff8fb1);
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #ff8fb1, #ff6f91);
  transform: translateY(-2px);
}
@media (max-width: 767px){
  .cta-section h2 {
    font-size: 1.75rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
}


.footer a{
  text-decoration: none !important;
}

@media (max-width: 480px) {
  .about-section h2 {
   font-size: 28px;
   font-weight: 700;
   font-family: 'Domine', serif !important;
  }
  .about-section h5{
    font-size: 22px;
    font-weight: 700;
       font-family: 'Domine', serif !important;
color: #7f4aa3ff !important;
  }
  .about-section p {
    font-size: 16px !important;
    font-weight: 400;
    font-family: 'Inter', sans-serif !important;
  }


}

@media (max-width: 480px) {
   h2 {
   font-size: 28px !important;
   font-weight: 700;
   font-family: 'Domine', serif !important;
  }
   h5{
    font-size: 22px;
    font-weight: 700;
       font-family: 'Domine', serif !important;
color: #7f4aa3ff !important;
  }
   p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif !important;
  }


}

.faq p{
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: 'Inter', sans-serif !important;
}


