
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F7FA !important;
    color: #333 !important;
  }
  
  h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif !important;
    color: #1F6F8B !important;
  }
  
  .btn-primary {
    background-color: #2F9DB5;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #1F6F8B;
  }

  /* Navbar */
.custom-navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  /* Logo */
  .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1F6F8B !important;
    font-size: 22px;
  }
  
  .navbar-brand span {
    color: #2F9DB5;
  }
  
  /* Nav Links */
  .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 10px;
    transition: 0.3s;
  }
  
  .nav-link:hover {
    color: #2F9DB5 !important;
  }
  
  /* Dropdown */
  .dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .dropdown-item:hover {
    background-color: #f5f7fa;
    color: #2F9DB5;
  }
  
  /* Contact Button */
  .btn-contact {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff !important;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 500;
    border: none;
  }
  
  .btn-contact:hover {
    background: #1F6F8B;
    color: #fff;
  }
  /* HERO SECTION */
.hero-section {
    background: url('../images/banner.jpg') no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
    color: #fff;
  }
  
  /* Dark overlay */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  
  /* TEXT */
  .hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
  }
  
  .hero-section p {
    font-size: 16px;
    margin-top: 15px;
    color: #ddd;
  }
  
  /* FORM CARD */
  .form-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }
  
  .form-card h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    color: #1F6F8B;
  }
  
  /* INPUTS */
  .form-control {
    height: 45px;
    border-radius: 8px;
  }
  
  /* BUTTON */
  .btn-submit {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
    padding: 10px;
    border-radius: 25px;
    border: none;
  }
  
  .btn-submit:hover {
    background: #1F6F8B;
    color: #fff;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-section {
      text-align: center;
      padding: 70px 0;
    }
  
    .hero-section h1 {
      font-size: 28px;
    }
  }


  /* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background-color: #F5F7FA;
  }
  
  /* IMAGE */
  .about-img img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }
  
  /* CONTENT */
  .about-content {
    padding-left: 20px;
  }
  
  /* SMALL TAG */
  .about-tag {
    font-size: 14px;
    font-weight: 600;
    color: #2F9DB5;
    letter-spacing: 1px;
  }
  
  /* HEADING */
  .about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin: 10px 0 20px;
    color: #1F6F8B;
  }
  
  .about-content h2 span {
    color: #2F9DB5;
  }
  
  /* TEXT */
  .about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  
  /* BUTTON */
  .btn-about {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
  }
  
  .btn-about:hover {
    background: #1F6F8B;
    color: #fff;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .about-content {
      padding-left: 0;
      text-align: center;
    }
  
    .about-content h2 {
      font-size: 28px;
    }
  }

  /* SECTION */
.complaint-section {
    padding: 80px 0;
    background: #F5F7FA;
  }
  
  /* HEADING */
  .complaint-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #1F6F8B;
    font-weight: 700;
  }
  
  .complaint-section p {
    color: #666;
  }
  
  /* TABLE */
  .complaint-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  /* HEADER */
  .complaint-table thead {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
  }
  
  .complaint-table th {
    font-weight: 600;
    font-size: 14px;
    padding: 14px;
    text-align: center;
  }
  
  /* BODY */
  .complaint-table td {
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #444;
  }
  
  /* ROW HOVER */
  .complaint-table tbody tr:hover {
    background-color: #f1f7f9;
  }
  
  /* TOTAL ROW */
  .total-row {
    background: #e9f6fa;
    font-weight: 600;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .complaint-table th,
    .complaint-table td {
      font-size: 12px;
      padding: 8px;
    }
  }


  /* SECTION */
.core-values {
    padding: 80px 0;
    background: #F5F7FA;
  }
  
  /* HEADING */
  .core-values h2 {
    font-family: 'Poppins', sans-serif;
    color: #1F6F8B;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  /* CARD */
  .value-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  /* ICON */
  .value-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  /* TITLE */
  .value-card h5 {
    font-family: 'Poppins', sans-serif;
    color: #1F6F8B;
    margin-bottom: 10px;
  }
  
  /* TEXT */
  .value-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* HOVER EFFECT */
  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  /* OPTIONAL GRADIENT HOVER BORDER */
  .value-card:hover {
    border: 1px solid #2F9DB5;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .value-card {
      padding: 25px 20px;
    }
  }


  /* FOOTER */
.footer {
    background: #0f172a;
    color: #ccc;
    padding: 60px 0 20px;
  }
  
  /* LOGO */
  .footer-about h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
  }
  
  .footer-about span {
    color: #2F9DB5;
  }
  
  /* TEXT */
  .footer p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  /* HEADINGS */
  .footer h5 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
  }
  
  /* LINKS */
  .footer ul {
    list-style: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 8px;
  }
  
  .footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .footer ul li a:hover {
    color: #2F9DB5;
    padding-left: 5px;
  }
  
  /* SOCIAL */
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ccc;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #2F9DB5;
  }
  
  /* BOTTOM */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  }

  /* SECTION */
.differentiator-section {
    padding: 80px 0;
    background: #F5F7FA;
  }
  
  /* HEADING */
  .differentiator-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #1F6F8B;
    font-weight: 700;
  }
  
  /* TEXT */
  .desc {
    color: #555;
    margin: 15px 0 25px;
    line-height: 1.6;
  }
  
  /* STATS */
  .stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 150px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .stat-box h3 {
    color: #2F9DB5;
    font-weight: 700;
  }
  
  .stat-box p {
    font-size: 13px;
    color: #666;
  }
  
  /* ACCORDION */
  .custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .custom-accordion .accordion-button {
    background: #fff;
    font-weight: 500;
    color: #333;
    border-radius: 10px;
  }
  
  .custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
  }
  
  .custom-accordion .accordion-body {
    background: #fff;
    font-size: 14px;
    color: #555;
  }
  
  /* REMOVE DEFAULT ARROW BG */
  .accordion-button:focus {
    box-shadow: none;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .stats {
      flex-direction: column;
    }
  
    .stat-box {
      width: 100%;
    }
  }
  /* HERO */
.about-hero {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
    padding: 80px 0;
  }
  
  .about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  /* TAG */
  .tag {
    color: #2F9DB5;
    font-weight: 600;
    font-size: 14px;
  }
  
  /* BUTTON */
  .btn-main {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
  }
  
  .btn-main:hover {
    background: #1F6F8B;
    color: #fff;
  }
  
  /* CORE VALUES */
  .card-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .card-box i {
    font-size: 35px;
    color: #2F9DB5;
  }
  
  .card-box:hover {
    transform: translateY(-5px);
  }
  
  /* CTA */
  .cta-section {
    background: #1F6F8B;
    color: #fff;
    padding: 60px 0;
  }


  /* HERO */
.service-hero {
    background: #eaf4f7;
    padding: 60px 0;
  }
  
  .service-hero h1 {
    font-family: 'Poppins', sans-serif;
  }
  
  /* SIDEBAR */
  .service-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .service-sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .service-sidebar ul li {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f5f7fa;
    cursor: pointer;
  }
  
  .service-sidebar ul li:hover {
    background: #2F9DB5;
    color: #fff;
  }
  
  /* HELP BOX */
  .help-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    color: #fff;
    text-align: center;
  }
  
  /* IMAGE */
  .service-img {
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  /* CARDS */
  .service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .service-card h3 {
    color: #1F6F8B;
    margin-bottom: 10px;
  }
  
  /* PRICING */
  .price-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .price-card:hover {
    transform: translateY(-5px);
  }
  
  .price {
    color: green;
    font-weight: bold;
    font-size: 20px;
  }
  
  /* BUTTON */
  .btn-pay {
    background: linear-gradient(135deg, #2F9DB5, #5BC0DE);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
  }
  
  .btn-pay:hover {
    background: #1F6F8B;
  }

  /* SECTION */
.payment-section {
    padding: 80px 0;
    background: #F5F7FA;
  }
  
  /* QR CARD */
  .qr-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
  /* QR IMAGE */
  .qr-img {
    max-width: 280px;
    border-radius: 10px;
  }
  
  /* UPI TEXT */
  .upi-id {
    font-weight: 600;
    color: #333;
  }
  
  .scan-text {
    color: #666;
    font-size: 14px;
  }
  
  /* ICONS */
  .payment-icons {
    margin-top: 15px;
  }
  
  .payment-icons img {
    height: 35px;
    margin: 0 8px;
    object-fit: contain;
  }
  
  /* BANK CARD */
  .bank-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
  .bank-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .qr-img {
      max-width: 200px;
    }
  
    .bank-card {
      text-align: center;
    }
  }

  /* SECTION */
.compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  /* TABLE STYLE (DOCUMENT LOOK) */
  .complaint-table {
    border: 2px solid #000;
    border-collapse: collapse;
  }
  
  .complaint-table th,
  .complaint-table td {
    border: 1px solid #000;
    padding: 10px;
    font-size: 14px;
  }
  
  /* HEADER */
  .complaint-table thead th {
    background: #f1f1f1;
    font-weight: bold;
  }
  
  /* TOTAL ROW */
  .total-row {
    font-weight: bold;
  }
  
  /* ALIGNMENT */
  .complaint-table td,
  .complaint-table th {
    text-align: center;
    vertical-align: middle;
  }

  /* SECTION */
.compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  /* TITLE */
  .compliance-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #000;
  }
  
  /* LIST */
  .disclaimer-list {
    padding-left: 20px;
  }
  
  .disclaimer-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #222;
    font-size: 15px;
  }
  /* SECTION */
.compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  /* TEXT */
  .compliance-section p {
    line-height: 1.7;
    color: #222;
    margin-bottom: 10px;
  }
  
  /* MAIN LIST */
  .disclosure-list {
    padding-left: 20px;
  }
  
  .disclosure-list > li {
    margin-bottom: 25px;
  }
  
  /* INNER LIST */
  .inner-list {
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .inner-list li {
    margin-bottom: 10px;
    list-style-type: "➤ ";
  }

  /* TABLE (DOCUMENT STYLE) */
.complaint-table {
    border: 2px solid #000;
    border-collapse: collapse;
  }
  
  .complaint-table th,
  .complaint-table td {
    border: 1px solid #000;
    padding: 10px;
    font-size: 14px;
    vertical-align: middle;
  }
  
  .complaint-table th {
    background: #f1f1f1;
    font-weight: bold;
    text-align: center;
  }
  .compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  .compliance-section h5 {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  
  .compliance-section ul {
    padding-left: 20px;
  }
  
  .compliance-section li {
    margin-bottom: 8px;
    line-height: 1.6;
  }
  
  .compliance-section p {
    margin-bottom: 10px;
  }
  /* SECTION */
.compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  /* TITLE */
  .compliance-section h2 {
    font-family: 'Poppins', sans-serif;
  }
  
  /* LIST */
  .privacy-list {
    list-style: none;
    padding-left: 0;
  }
  
  /* DIAMOND BULLETS */
  .privacy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #222;
    font-size: 15px;
  }
  
  /* CUSTOM ICON */
  .privacy-list li::before {
    content: "❖";
    position: absolute;
    left: 0;
    top: 2px;
    color: #000;
    font-size: 14px;
  }
  /* SECTION */
.compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  /* TEXT */
  .compliance-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #222;
  }
  
  /* LIST */
  .refund-list {
    padding-left: 20px;
  }
  
  .refund-list li {
    margin-bottom: 10px;
  }
  .compliance-section {
    padding: 60px 0;
    background: #fff;
  }
  
  .compliance-section h3 {
    font-family: 'Poppins', sans-serif;
  }
  
  .warning-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
  }
  
  .compliance-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #222;
  }
  /* SECTION */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  /* CARD */
  .contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  
  /* ICON */
  .contact-icon {
    font-size: 30px;
    color: #7a3d4a;
    margin-bottom: 15px;
  }
  
  /* TEXT */
  .contact-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .contact-card h6 {
    font-weight: 600;
  }
  
  .contact-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
  }
  /* MODAL BOX */
.custom-modal {
    border-radius: 12px;
    padding: 20px;
  }
  
  /* CLOSE BUTTON */
  .custom-close {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  
  /* TITLE */
  .custom-modal h2 {
    font-weight: 600;
  }
  
  /* LIST */
  .notice-list {
    list-style: disc;
    padding-left: 20px;
  }
  
  .notice-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
  }
  
  /* BUTTON */
  .custom-modal .btn {
    background: linear-gradient(to right, #1e73be, #00bcd4);
    border: none;
    border-radius: 8px;
  }