 body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right, #7e0d36, #b51543);
      color: white;
      margin: 0;
      padding: 0;
    }

    .top-bar {
      background-color: #b51543;
      color: white;
      padding: 5px 15px;
      font-size: 14px;
      flex-wrap: wrap;
    }

    .sidebar {
      background-color: white;
      color: #222;
      width: 100%;
      margin-left: 0;
    }

    @media (min-width: 768px) {
      .sidebar {
        width: 250px;
        margin-left: 30px;
        min-height: 30%;
      }
    }

    .sidebar a {
      color: #000;
      text-decoration: none;
    }

    .sidebar .nav-link:hover {
      background-color: #f1f1f1;
    }

    .sidebar .btn {
      border-radius: 0;
    }


    .hero {
      position: relative;
      min-height: 100%;
      max-height: 100%;
    }

    .hero img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .mobile-toggle {
      background-color: #b51543;
      border: none;
      color: white;
      font-size: 18px;
    }

    .logo-img {
      width: 130px;
      height: auto;
    }

    @media (min-width: 768px) {
      .logo-img {
        width: 180px;
      }
    }
    
    
    .service-box {
      transition: background-color 0.3s ease;
      background-color: #fff;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      height: 100%;
    }

    .service-box:hover {
      background-color: #b51543;
      color: white;
    }

    .service-box img {
      max-width: 100px;
      height: auto;
      margin-bottom: 15px;
    }

    .service-box:hover img {
      filter: brightness(0) invert(1);
    }

    .section-heading {
      color: gray;
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 30px;
    }
    
     .section-wrapper {
      padding: 80px 15px;
    }
    .section-title {
      font-size: 2rem;
      font-weight: bold;
      color: #c1126a;
      line-height: 1.3;
    }
    .section-subtext {
      font-size: 20px;
      color: #444;
      margin-top: 20px;
    }
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 25px;
    }
    .icon-card {
      border: 1px solid #f0f0f0;
      border-radius: 12px;
      padding: 30px 15px;
      text-align: center;
      transition: 0.3s;
      background: white;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }
    .icon-card:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .icon-card i {
      font-size: 2rem;
      color: #e0004d;
      margin-bottom: 15px;
    }
    .icon-card p {
      margin: 0;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .section-title {
        font-size: 1.6rem;
      }
    }
    
     .slider-section {
      background: linear-gradient(135deg, #d81b60, #8e24aa);
      color: white;
      position: relative;
      padding: 80px 0 60px;
      overflow: hidden;
    }

    .slider-section::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: white;
      clip-path: polygon(0 0, 100% 0%, 100% 100%);
    }

    .slider-content {
      position: relative;
      z-index: 2;
    }

    .slider-title {
      font-size: 2rem;
      font-weight: 700;
    }

    .slider-subtext {
      font-size: 1rem;
      color: white;
      margin-top: 10px;
    }

    .carousel-inner {
      border-radius: 8px;
    }

    .carousel-item {
      transition: transform 0.5s ease-in-out;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 8px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 100% 100%;
    }

    @media (max-width: 768px) {
      .slider-title {
        font-size: 1.5rem;
      }
      .slider-subtext {
        font-size: 0.95rem;
        color: black;
      }
    }
    
    
    .footer-section {
      background: linear-gradient(to right, #b4136b, #c4143d);
      color: white;
      padding: 30px 15px 10px;
      font-size: 0.9rem;
    }

    .footer-icons a {
      display: inline-block;
      width: 36px;
      height: 36px;
      line-height: 36px;
      margin-right: 10px;
      border-radius: 50%;
      border: 1px solid #fff;
      color: #fff;
      text-align: center;
      font-size: 16px;
      transition: background 0.3s, color 0.3s;
    }

    .footer-icons a:hover {
      background: white;
      color: #b4136b;
    }

    .footer-info {
      text-align: center;
      margin-top: 15px;
      line-height: 1.6;
    }

    .footer-divider {
      border-top: 1px solid rgba(255,255,255,0.3);
      margin: 20px 0;
    }

    .footer-links {
      text-align: center;
      font-size: 0.85rem;
      line-height: 2;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      margin: 0 8px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    @media (max-width: 575px) {
      .footer-icons {
        text-align: center !important;
        margin-bottom: 10px;
      }
    }