/* ===== RESET ===== */
body {
  font-family: 'Poppins', sans-serif;
  background:  #ffffff;;
  color: #0d3b66;;
  
}

/* =========================
FOCUS STATES (WCAG AA)
========================= */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #1e293b;
  outline-offset: 2px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1c8aa0;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .right {
  background: #1e293b;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 16px;
}

.announcement-bar {
  background: #0f172a;
  color: #fff;
  padding: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MARQUEE EFFECT */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 25s linear infinite;
}

/* ANIMATION */
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* BUTTON */
#pauseBtn {
  background: #00c6ff;
  border: none;
  padding: 6px 12px;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #ffffff;
}

.navbar-brand {
  font-weight: bold;
  color: #1c8aa0 !important;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 10px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #1c8aa0;
}

.logo {
	    height: 70px;
}

/* Card Style */
.card-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.card-box:hover {
    transform: translateY(-5px);
}

/* Pricing Table */
.pricing-table {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th {
    background: #eef1f5;
    font-weight: 600;
    text-align: center;
}

.pricing-table td {
    text-align: center;
    font-weight: 500;
}

/* Risk Text */
.risk-text {
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

/* Section Titles */
.section-titlee {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 4px solid #0d6efd;
    padding-left: 10px;
}

.nav-link:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.navbar-brand:focus {
  
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}


/* ===== ACCESSIBILITY FOCUS ===== */
:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

h1{
  font-size: 2rem;
}

/* List Styling */
ul {
    padding-left: 18px;
}

ul li {
    margin-bottom: 10px;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .card-box {
        margin-bottom: 20px;
    }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('../images/background.jpg') center/cover no-repeat;
  min-height: 590px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 60px 20px;
}

/* OVERLAY FOR CONTRAST */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* WCAG contrast improve */
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero h1 {
  font-size: 36px;
  font-weight: 600;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
}

/* FORM */
.hero-form {
  background: #fff;
  color: #000;
      text-align: justify;
  padding: 25px;
  border-radius: 10px;
}

/* INPUT */
.hero-form input,
.hero-form textarea {
     margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* FOCUS (IMPORTANT WCAG) */
.hero-form input:focus,
.hero-form textarea:focus {
  outline: 3px solid #00c6ff;
  outline-offset: 2px;
}

/* BUTTON */
.hero-form button {
  width: 100%;
  background: linear-gradient(45deg,#1e293b,#00c6ff);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* BUTTON FOCUS */
.hero-form button:focus {
  outline: 3px solid #000;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 50px 15px;
    text-align: center;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-form {
    margin-top: 25px;
  }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 1000;
}
.skip-link:focus {
    top: 10px;
}


/* ===== SERVICE BAR ===== */
.service-bar {
  background: #1c8aa0;
  color: #fff;
}

.service-bar .col {
  text-align: center;
  padding: 15px;
  border-right: 1px solid rgba(255,255,255,0.2);
  font-weight: 500;
}

.service-bar .col:last-child {
  border-right: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .hero {
    padding: 60px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
    margin-top: 1rem;
  }

  .footer-premium {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #cbd5e1;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.footer-premium::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 150, 0.1);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

/* LOGO */
.footer-logo {
  width: 180px;
}

/* HEADINGS */
.footer-premium h5 {
  color: #00ffae;
  font-weight: 600;
  margin-bottom: 20px;
}

/* HIGHLIGHT TEXT */
.highlight {
  color: #00ffae;
  font-weight: 500;
}

/* SMALL TEXT */
.small-text {
  font-size: 13px;
  color: #94a3b8;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-links li:hover {
  color: #00ffae;
  transform: translateX(5px);
}

/* CONTACT ROW */
.contact-row {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
}

.social-icons i {
  font-size: 18px;
  margin-right: 10px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.social-icons i:hover {
  background: #00ffae;
  color: #000;
  transform: scale(1.1);
}



.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00b894, #0984e3);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* ===== PERFORMANCE ===== */
.performance {
  background: linear-gradient(135deg, #f0f9ff, #ecfeff);
  padding: 70px 0;
}

.stat-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00b894, #0984e3);
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #00b894;
}

.stat-box p {
  color: #64748b;
  margin-top: 8px;
  font-weight: 500;
  font-size: 15px;
}

/* ===== TESTIMONIAL ===== */
.testimonials {
  background: #ffffff;
  padding: 70px 0;
}

.testimonial-box {
  background: #f8fafc;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.testimonial-box::before {
  content: "“";
  font-size: 60px;
  position: absolute;
  top: 10px;
  left: 15px;
  color: #00b89420;
}

.testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.testimonial-box p {
  font-style: italic;
  color: #334155;
  font-size: 15px;
  margin-top: 15px;
}

.testimonial-box h6 {
  margin-top: 15px;
  color: #00b894;
  font-weight: 600;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #1e293b, #20c997);
  color: #fff;
  border-radius: 12px;
  margin: 40px auto;
}

.cta-section h2 {
  font-weight: 700;
}

.cta-section .btn {
  background: #fff;
  color: #1e293b;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
}

.

.cta-section p {
  opacity: 0.9;
  margin-bottom: 20px;
}




.cta-section .btn:hover {
  background: #0f172a;
  color: #fff;
  transform: scale(1.05);
}


/* FAQ Section */
.faq-section {
  background: #f8fbff;
  padding: 60px 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Question */
.faq-question {
  background: #fff;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Answer hidden by default */
.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fff;
  color: #555;
  border-top: 1px solid #eee;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

/* Plus rotation */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
/* ===== DISCLAIMER ===== */
.disclaimer {
  background: #fff3cd;
  padding: 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1100px;
  font-size: 14px;
  color: #856404;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.disclaimer p {
  margin-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .section-title {
    font-size: 24px;
  }

  .stat-box {
    margin-bottom: 20px;
  }

  .cta-section {
    border-radius: 10px;
    padding: 50px 20px;
  }

}

  .top-bar {
    text-align: center;
  }

  .top-bar .right {
    display: block;
    margin-top: 5px;
  }

}

.service-item {
  padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.service-item:last-child {
  border-right: none;
}

.service-item i {
  font-size: 30px;
  margin-bottom: 8px;
  display: block;
}

.service-item p {
  margin: 0;
  font-weight: 500;
}


.why-us {
  padding: 70px 0;
  background: #f8fafc;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0c798f;
}

/* CARD */
.why-card {
  background: #eaf2f7;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
}

/* GREEN VARIANT */
.why-card.active {
  background: #cfe8d6;
}

/* ICON BOX */
.icon-box {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-box i {
  font-size: 28px;
  color: #0c798f;
}

/* TEXT */
.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0c798f;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mission-vision {
  padding: 50px 0;
  background: linear-gradient(180deg, #f4f7fb, #eef3f8);
}

/* ROW SPACING */
.mv-row {
  margin-bottom: 80px;
}

/* IMAGE BOX */
.mv-img-box {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.mv-img-box img {
  width: 100%;
  transition: 0.4s;
}

.mv-img-box:hover img {
  transform: scale(1.08);
}

/* GLASS CARD */
.mv-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
}

/* TITLE */
.mv-glass h2 {
  font-size: 32px;
  color: #1c8aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TEXT */
.mv-glass p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* PREMIUM SIDE LINE */
.mv-glass::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: linear-gradient(#1c8aa0, #00c6ff);
  border-radius: 5px;
}


/* =========================
PERFORMANCE SECTION
========================= */
.performance {
  background: #ffffff;
}

.performance .stat-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #e6ecf2;
}

.performance .stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.performance .stat-box h3 {
  font-size: 38px;
  font-weight: 700;
  color: #1b8da3;
}

.performance .stat-box p {
  margin-top: 8px;
  color: #6c757d;
}

/* =========================
TESTIMONIALS
========================= */
.testimonials {
  background: #f8fbff;
}

.testimonial-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e6ecf2;
  transition: 0.3s;
  height: 100%;
}

.testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.testimonial-box p {
  font-style: italic;
  color: #555;
}

.testimonial-box h6 {
  margin-top: 15px;
  font-weight: 600;
  color: #1c8ca2;
}

/* =========================
CTA SECTION
========================= */
.cta-section {
  background: linear-gradient(135deg, #1c8aa0, #0dcaf0);
  color: #fff;
}

.cta-section h2 {
  font-weight: 700;
  font-size: 32px;
}

.cta-section p {
  margin: 10px 0 20px;
  color: #eaf4ff;
}

.cta-section .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  background: #fff;
  color: #1c8ca3;
  border: none;
  transition: 0.3s;
}

.cta-section .btn:hover {
  background: #0d3b66;
  color: #fff;
}

/* =========================
DISCLAIMER
========================= */
.disclaimer {
  background: #ffffff;
  font-size: 14px;
  color: #6c757d;
  border-top: 1px solid #e6ecf2;
}

.disclaimer p {
  margin-bottom: 8px;
}

/* =========================
RESPONSIVE FIX
========================= */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .performance .stat-box h3 {
    font-size: 28px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .mv-glass {
    margin-top: 25px;
  }
}

.trust-section {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.footer-dark {
  background: #0b0f1a;
  color: #cbd5e1;
  padding: 60px 0;
}

.footer-dark h5 {
  color: #00e676;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.highlight {
  color: #00e676;
  font-weight: 500;
}

.small-text {
  font-size: 14px;
  color: #94a3b8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li:hover {
  color: #00e676;
}

.contact-icons i {
  margin-right: 10px;
  color: #00e676;
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  font-size: 18px;
  margin-right: 12px;
  background: #1e293b;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #00e676;
  color: #000;
}

.advisory-section {
  background: #ead7c9;
  padding: 60px 0;
}

.advisory-card {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advisory-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.upi-box {
  background: #d6f5e3;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin: 10px 0;
}

.upi-box span {
  background: #28a745;
  color: #fff;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.warning {
  padding-left: 20px;
}

.warning.red li {
  color: #e74c3c;
}

.warning.orange li {
  color: #e67e22;
}

/* COMPLIANCE */
.compliance-box {
  background: #eaf2ff;
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #2f80ed;
}

.badges span {
  background: #dbeafe;
  padding: 5px 10px;
  margin-right: 8px;
  border-radius: 20px;
  font-size: 12px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #ddd;
  background: #ead7c9;
}

.footer-bottom .links a {
  margin-right: 15px;
  text-decoration: none;
  color: #333;
}

.footer-bottom .links a:hover {
  color: #2f80ed;
}


/* flex */
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

/* topbar */
.topbar {
  background: #1e293b;
  color: #fff;
  padding: 8px 0;
}

.badge {
  background: #28a745;
  padding: 5px 10px;
  border-radius: 4px;
}

/* navbar */
.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar li {
  margin-left: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar a.active {
  color: #1e293b;
}

/* hero */
.about-hero {
  background: #1c8aa0;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* breadcrumb */
.breadcrumb-section {
  background: #f1f5f9;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb li {
  color: #6b7280;
}

.breadcrumb li a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 8px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb .active {
  color: #111;
  font-weight: 600;
}

.about-section {
  padding: 30px 0;
}

/* LIST STYLE */
.offer-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.offer-list li {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
  border-left: 4px solid #1e293b;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER */
.offer-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.offer-list .icon {
  font-size: 26px;
  color: #1e293b;
  min-width: 40px;
}

/* TEXT */
.offer-list h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.offer-list p {
  margin: 5px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
  .offer-list li {
    flex-direction: column;
  }
}

.methodology-section {
  padding: 80px 0;
  background: #ffffff;
}

.method-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.7;
}

/* LIST */
.method-list {
  list-style: none;
  max-width: 900px;
  margin: auto;
  padding: 0;
}

/* ITEM */
.method-list li {
  padding: 20px 25px;
  margin-bottom: 15px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 5px solid #1e293b;
  transition: 0.3s;
}

/* HOVER */
.method-list li:hover {
  background: #eef4ff;
  transform: translateX(8px);
}

/* HEADING */
.method-list h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0d3b66;
}

/* TEXT */
.method-list p {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid #1e293b;
  outline-offset: 2px;
}

.investor-charter.premium {
  padding: 70px 0;
  background: linear-gradient(135deg, #f6f9fc, #eef5ff);
}

.page-title {
  text-align: center;
  font-weight: 700;
  font-size: 34px;
  color: #0a2540;
}

.subtitle {
  text-align: center;
  color: #6c757d;
  margin-bottom: 40px;
}

/* CARD PREMIUM */
.card-premium {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-premium.full {
  margin-top: 20px;
}

.card-premium h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.card-premium ul {
  padding-left: 20px;
}

.card-premium ul li {
  margin-bottom: 8px;
}

/* ICON */
.card-premium .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* SUCCESS BOX */
.card-premium.success {
  background: #e9f7ef;
}

.card-premium.success h3 {
  color: #198754;
}

/* DANGER BOX */
.card-premium.danger {
  background: #fdecea;
}

.card-premium.danger h3 {
  color: #dc3545;
}

/* LINK */
.card-premium a {
  color: #1e293b;
  font-weight: 500;
}

.services-page {
  padding: 70px 0;
  background: #f8fbfd;
}

.section-title {
  font-weight: 700;
  color: #0a2540;
}

.subtitle {
  color: #6c757d;
}

/* CARD */
.service-card {
  background: linear-gradient(135deg, #1e293b, #20c997);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 70px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 15px;
}

/* PLAN BUTTON */
.plan-btn {
  display: block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #fff;
  color: #1e293b;
}

/* CTA */
.service-cta {
  background: linear-gradient(135deg, #1e293b, #20c997);
  color: #fff;
  padding: 60px 0;
}

.btn-main {
  background: #fff;
  color: #1e293b;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* DISCLAIMER */
.service-disclaimer {
  padding: 20px 0;
  font-size: 14px;
  background: #f1f1f1;
}

.payment-section {
  padding: 60px 0;
  background: #f8fbfd;
}

/* CARD */
.payment-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.payment-card h2 {
  color: #1e293b;
  margin-bottom: 20px;
}

.bank-list {
  list-style: none;
  padding: 0;
}

.bank-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* QR */
.qr-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.qr-img {
  width: 220px;
  margin: 15px 0;
}

.upi-id {
  font-weight: 600;
  color: #333;
}

/* SECURITY BADGE */
.secure-badge {
  margin-top: 15px;
  background: #e9f7ef;
  color: #198754;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

.privacy-section {
  padding: 60px 0;
  background: #f8fbfd;
}

.page-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.privacy-card {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.privacy-card:hover {
  transform: translateY(-5px);
}

.privacy-card h2 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 22px;
}

.privacy-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-card ul {
  padding-left: 18px;
}

.privacy-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
  }

  .privacy-card {
    padding: 18px;
  }
}

.about-img-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
}

/* IMAGE FIX */
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER EFFECT (premium feel) */
.about-img-box:hover img {
  transform: scale(1.05);
}

/* TEXT */
.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0d3b66;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .about-text {
    text-align: center;
  }
}



/* cards */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.terms-section {
  padding: 60px 0;
  background: #f4f8fb;
}

.page-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e293b;
}

.terms-card {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.terms-card:hover {
  transform: translateY(-5px);
}

.terms-card h2 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 22px;
}

.terms-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.terms-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.terms-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

/* Highlight warning */
.highlight {
 background: #1c8aa0;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
  }

  .terms-card {
    padding: 20px;
  }
}

.accessibility-section {
  padding: 60px 0;
  background: #f6f9fc;
}

.page-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.access-card {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.access-card:hover {
  transform: translateY(-5px);
}

.access-card h2 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 22px;
}

.access-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.access-card ul {
  padding-left: 18px;
}

.access-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
  }

  .access-card {
    padding: 18px;
  }
}

.career-section {
  padding: 60px 0;
  background: #f5f9fc;
}

/* HERO */
.career-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
}

.career-hero p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

.career-points {
  list-style: none;
  padding: 0;
}

.career-points li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

.career-img {
  width: 100%;
  border-radius: 12px;
}

/* FORM */
.career-form-box {
  margin-top: 50px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.career-form-box h2 {
  text-align: center;
  color: #1e293b;
}

.career-form-box p {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}

.career-form-box label {
  font-weight: 500;
  margin-bottom: 5px;
}

.career-form-box input,
.career-form-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 5px;
  font-size: 14px;
}

.career-form-box textarea {
  height: 120px;
}

/* UPLOAD */
.upload-box {
  border: 2px dashed #1e293b;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.upload-box input {
  margin-top: 10px;
}

.upload-box p {
  font-size: 12px;
  color: #888;
}

/* BUTTON */
.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #1e293b, #00c6ff);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .career-hero h1 {
    font-size: 26px;
  }

  .career-form-box {
    padding: 20px;
  }
}


.contact-section {
  padding: 60px 0;
  background: #f5f9fc;
}

/* HEADER */
.contact-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
}

.contact-header p {
  color: #666;
  margin-top: 10px;
}

/* TABLE */
.contact-table {
  margin-top: 40px;
  overflow-x: auto;
}

.contact-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.contact-table th {
  background: #1e293b;
  color: #fff;
  padding: 12px;
  font-size: 14px;
}

.contact-table td {
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.contact-table tr:hover {
  background: #f1f7ff;
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* FORM */
.contact-form-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box label {
  font-weight: 500;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-top: 5px;
}

.contact-form-box textarea {
  height: 120px;
}

/* BUTTON */
.contact-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #1e293b, #00c6ff);
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 26px;
  }
}

.complaint-full-section {
  padding: 60px 0;
  background: #f5f9fc;
}

/* HEADER */
.section-header h1 {
  font-size: 36px;
  color: #1e293b;
  font-weight: 700;
}

.section-header p {
  color: #666;
}

/* BLOCK */
.complaint-block {
  margin-top: 40px;
}

/* TABLE */
.complaint-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.complaint-table th {
  background: linear-gradient(45deg, #1e293b, #1c8aa0);
  color: #fff;
  padding: 12px;
  font-size: 14px;
}

.complaint-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.complaint-table tr:hover {
  background: #f1f7ff;
}

.total-row {
  background: #eaf4ff;
  font-weight: 600;
}

/* NOTE */
.note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  background: #fff;
  padding: 12px;
  border-left: 4px solid #1e293b;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .complaint-table th,
  .complaint-table td {
    font-size: 12px;
    padding: 8px;
  }
}

/* CTA */
.cta {
  background: linear-gradient(45deg, #1e293b, #20c997);
  color: #fff;
  padding: 60px 20px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #fff;
  color: #1e293b;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}