/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1D4ED8;
    --primary-dark: #2563EB;
    --secondary: #1D4ED8;
    --accent: #60A5FA;
    --dark: #0f172a;
    --light: #e2e8f0;
    --gradient: linear-gradient(135deg, #1D4ED8 0%, #1D4ED8 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --text-muted:  #374151;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
}

/* ===== RESET & BASE ===== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid #93c5fd !important;
  outline-offset: 2px;
  box-shadow: none !important;
}


/* ===== TOP BAR ===== */
.top-bar {
     background: #0f172a !important;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: #1d4ed8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    width: 160px;
    height: auto;
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1d4ed8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .btn-primary-custom {
    padding: 10px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* ===== HOVER DROPDOWN ===== */
.hover-dropdown .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 260px;
}

.hover-dropdown .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    white-space: normal;
}

.hover-dropdown .dropdown-item:hover,
.hover-dropdown .dropdown-item:focus {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    padding-left: 26px;
}

.hover-dropdown .dropdown-toggle.no-caret {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.hover-dropdown .dropdown-toggle.no-caret:focus {
    outline: none;
    box-shadow: none;
}

.hover-dropdown .dropdown-toggle.no-caret::after {
    display: none !important;
}

.hover-dropdown .dropdown-toggle.no-caret::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1d4ed8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hover-dropdown .dropdown-toggle.no-caret:hover::before,
.hover-dropdown .dropdown-toggle.no-caret.active::before,
.hover-dropdown:hover .dropdown-toggle.no-caret::before,
.hover-dropdown.show .dropdown-toggle.no-caret::before {
    width: 100%;
}

.hover-dropdown .dropdown-arrow {
    font-size: 0.8rem;
    line-height: 1;
    color: #000;
    font-weight: 700;
    -webkit-text-stroke: 1px #000;
    transition: transform 0.3s ease;
    display: inline-block;
}

@media (min-width: 992px) {
    .hover-dropdown:hover .dropdown-arrow,
    .hover-dropdown:focus-within .dropdown-arrow {
        transform: rotate(-180deg);
    }
}

.hover-dropdown.show .dropdown-arrow {
    transform: rotate(-180deg);
}

@media (min-width: 992px) {
    .hover-dropdown .dropdown-menu {
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        display: block;
        pointer-events: none;
    }

    .hover-dropdown:hover .dropdown-menu,
    .hover-dropdown:focus-within .dropdown-menu,
    .hover-dropdown .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .hover-dropdown .dropdown-toggle.no-caret {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .hover-dropdown .dropdown-menu {
        box-shadow: none;
        padding: 5px 0 5px 15px;
        min-width: 100%;
        width: 100%;
        background: transparent;
        border-radius: 0;
    }

    .hover-dropdown .dropdown-item {
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .hover-dropdown .dropdown-item:hover,
    .hover-dropdown .dropdown-item:focus {
        padding-left: 20px;
    }
}

/* ===== BUTTONS ===== */
.btn-whatsapp {
   background: #13823c;
    color: var(--white);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-whatsapp:hover {
     background-color: #0f6d32;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary-custom {
    background: #1d4ed8 !important;
  color: #ffffff !important;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    background: #1e40af !important;
  color: #ffffff !important;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    padding: 10px 26px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #1d4ed8;
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233B82F6;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%231D4ED8;stop-opacity:0.1"/></linearGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23g)"/><circle cx="80" cy="40" r="3" fill="url(%23g)"/><circle cx="40" cy="80" r="2" fill="url(%23g)"/><circle cx="90" cy="90" r="2" fill="url(%23g)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: #f59e0b !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.about-content h2,
.about-feature h3,
.stats-card h2 {
    color: #0f172a !important;
    opacity: 1 !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
}
.hero p {
    font-size: 1.2rem;
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(14, 165, 233, 0.1);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(245, 158, 11, 0.1);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== DEMO FORM ===== */
.demo-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.demo-form h2 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 1.75rem;
    text-align: center;
}
.demo-form h3 {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: start;
    font-size: 1rem;
}

.demo-form h3 i {
    color: var(--accent);
}

/* ===== FORM CONTROLS ===== */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
     color: #111827 !important;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-label {
     color: #111827 !important;
  font-weight: 500;
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
     color: #111827 !important;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
      font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}



.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #334155;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
     display: inline-block;
    background: #1e40af !important;
    color: #ffffff !important;
     border: 2px solid #1e40af !important;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* ===== SERVICE CARDS ===== */
.services {
    background: var(--light);
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1d4ed8;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #1d4ed8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.service-card.featured {
    background: #0f1f4d;
    border: none;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured p {
    opacity: 0.8;
}

.service-card.featured .service-icon {
    background: var(--white);
    color: var(--primary);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}


.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-content p {
   color: #111827 !important;
   font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: #1d4ed8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}



.about-feature h3 {
    font-weight: 600;
    color: var(--dark);
        font-size: 1.25rem;
    margin-bottom: 5px;
}
.sebi-card p {
  color: #111827 !important;
  font-weight: 600;
}
.about-badge {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  border: none !important;
}
.about-badge span,
.about-badge p {
  color: #ffffff !important;
}
/* ABOUT SECTION WCAG FIX */

.about-section p,
.about-section span,
.about-section strong,
.about-feature p {
  color: #1e293b !important;
  opacity: 1 !important;
}

.about-section .badge,
.about-badge {
  background: #1d4ed8 !important;
  color: #ffffff !important;
}
.about-feature p {
   margin: 0;
    font-size: 0.95rem;
  color: #111827 !important;
   font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stats-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    bottom: -30px;
    left: -30px;
}

.stats-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
     background: none !important;
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;

      color: #1d4ed8 !important;
   
    -webkit-text-fill-color: unset !important;
    
}
small,
p {
    opacity: 1 !important;
}
.stats-card p {
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
}



/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.why-us .section-title h2,
.why-us .section-title p {
    color: var(--white);
}
/* WCAG WHY SECTION FINAL */

.why-us .section-title p,
.why-us .section-title h2,
.why-us .section-title span {
  color: #ffffff !important;
  opacity: 1 !important;
}

.why-us .section-title p {

    color: #ffffff !important;
  font-weight: 600 !important;
  opacity: 1 !important;

}


.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.why-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
            font-size: 1.5rem;
}

.why-card p,
.feature-card p,
.why-us p {
  color: rgba(255,255,255,0.98) !important;
  opacity: 1 !important;
}

.why-us .section-title {
  background: transparent !important;
}

/* WHY SECTION WCAG FIX */

.about-content p,
.about-feature p,
.about-feature span,
.about-feature strong,
.about-feature li,
.sebi-card p,
.stats-card p {
    color: #111827 !important;
    opacity: 1 !important;
    font-weight: 500;
}
.about-feature h3,
.about-content h2,
.about-content h3 {
    color: #0f172a !important;
    opacity: 1 !important;
}


.why-card,
.feature-card {
  background: #243b63 !important;
}

.why-card p {
    line-height: 1.7;
}

/* ===== BLOG SECTION ===== */
.blog {
    background: var(--light);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    background: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.blog-content {
    padding: 30px;
}

.blog-content .date {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-content h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h4 {
    color: var(--primary);
}

.blog-content p {
     color: #334155;
    line-height: 1.7;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-read-more:hover {
    gap: 15px;
    color: var(--primary-dark);
}

/* ===== COMPLIANCE SECTION ===== */
.compliance {
    background: var(--light);
    position: relative;
}

/* Compliance Stat Cards */
.compliance-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
}

.compliance-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.compliance-stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.compliance-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.compliance-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 6px;
}

/* Compliance Table */
.compliance-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.compliance-table-header {
    background: #1d4ed8;
    color: var(--white);
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.compliance-table-header h3{
    font-size: 1rem;
}

.compliance-table-header i {
    font-size: 1.2rem;
}

.compliance-table thead {
    background: #f1f5f9;
}

.compliance-table thead th {
    color: var(--dark);
    font-weight: 600;
    padding: 16px 20px;
    border: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.compliance-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border-color: #f1f5f9;
    font-size: 0.95rem;
}

.compliance-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.compliance-total-row {
    background: #e2e8f0;
    border-top: 2px solid var(--border-color);
}

.compliance-source-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Legacy table-modern support */
.table-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.table-modern thead {
    background: #1d4ed8;
}

.table-modern thead th {
    color: var(--white);
    font-weight: 600;
    padding: 20px;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table-modern tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border-color: #f1f5f9;
}

.table-modern tbody tr:hover {
    background: #e2e8f0;
}

/* ===== CONTACT SECTION ===== */
.contact a {
    color: #1d4ed8 !important;
    font-weight: 600;
}

.contact p,
.contact label,
.contact a,
.contact small,
.content-section p,
.content-section label,
.content-section a,
.info-card p,
.info-card small {
    color: #111827 !important;
    opacity: 1 !important;
    font-weight: 500;
}
.contact h2,
.contact h3,
.content-box h2,
.info-card h3 {
    color: #0f172a !important;
    opacity: 1 !important;
}
.business-hours-text {
    color: #111827 !important;
    font-size: 0.95rem;
    font-weight: 500;
}
.contact {
    background: var(--light);
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    width: 80px;
    height: 80px;
    background: #1d4ed8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 25px;
}

.contact-card h2 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
         
}
.contact-card h3 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
       font-size: 1.5rem;
}

.contact-card p {
   color: #334155;
    margin: 0;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.disclaimer-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.2rem;
}

.disclaimer h3 {
    color: #1e3a8a !important;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}
.disclaimer h3 i {
    color: #1e3a8a !important;
}
.new-dis h2 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.disclaimer p {
    color: #1e3a5f;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: #1d4ed8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #E5E7EB;

    line-height: 1.8;
    margin-bottom: 25px;
}

.footer h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #1d4ed8;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
   color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #1d4ed8;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    color: #E5E7EB;
    margin: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background:  #0f1f4d;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.95);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: #dbeafe !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.pricing-card.featured {
    background: var(--gradient-dark);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured * {
    color: var(--white);
}

.pricing-card .badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-card.featured .price {
    color: var(--accent);
}

.pricing-card .duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card.featured ul li {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card ul li i {
    color: var(--success);
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.info-card h3 i {
    color: var(--primary);
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    background: var(--white);
}

.content-section.alt {
    background: var(--light);
}

.content-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     color: #111827;
}

.content-box h3 {
    font-weight: 700;
     color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}
.content-box h2 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
            font-size: 1.75rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-box h4 {
    font-weight: 600;
    color: var(--dark);
    margin: 25px 0 15px;
}

.content-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 20px;
}

.content-box ul li {
    margin-bottom: 10px;
}

/* ===== TEAM CARD ===== */
.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-card .avatar {
    width: 120px;
    height: 120px;
    background: #1d4ed8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--white);
}

.team-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .position {
    margin-bottom: 15px;
    color: #111827 !important;
    font-size: 1.1rem;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.team-card .credentials {
    background: var(--light);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.team-card .credentials p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== PAYMENT SECTION ===== */
.payment-card {
    background: #1d4ed8;
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    text-align: center;
}

.payment-card h4 {
    font-weight: 700;
    margin-bottom: 25px;
}

.payment-details {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    color: var(--dark);
    text-align: left;
}

.payment-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.payment-details .detail-row:last-child {
    border-bottom: none;
}

.payment-details .label {
    color: var(--text-muted);
    font-weight: 500;
}

.payment-details .value {
    color: var(--dark);
    font-weight: 600;
}

.upi-box {
    background: var(--light);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.upi-box p {
    margin: 10px 0;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--dark);
}

/* ===== KYC FORM ===== */
.kyc-form {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.kyc-form h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.file-upload {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.file-upload i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.file-upload p {
    color: var(--text-muted);
    margin: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1d4ed8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== ALERTS ===== */
.alert-custom {
    border-radius: 16px;
    padding: 20px 25px;
    border: none;
}

.alert-warning-custom {
    background: #fef3c7;
    color: #92400e;
}

.alert-info-custom {
    background: #dbeafe;
    color: #1e40af;
}

.alert-danger-custom {
    background: #fee2e2;

}
.alert-danger-custom h3{
    font-size: 1rem;
        color: #991b1b;
        border-bottom: none !important;
            padding-bottom: 0px !important;
}
.new h3{
    font-size: 1rem;
}
/* ===== RESPONSIVE ===== */

/* XXL - Large desktops (1400px+) */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .service-card {
        padding: 45px 35px;
    }

    .compliance-stat-number {
        font-size: 3rem;
    }

    .footer {
        padding: 100px 0 40px;
    }
}

/* XL - Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .compliance-stat-card {
        padding: 28px 20px;
    }
}

/* LG - Large tablets / Small desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .navbar-brand img {
        width: 150px !important;
    }

    .compliance-stat-card {
        padding: 24px 18px;
    }

    .compliance-stat-number {
        font-size: 2.2rem;
    }
}

/* MD - Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .demo-form {
        margin-top: 50px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .navbar .btn-primary-custom {
        margin-top: 15px;
        margin-left: 10px;
    }

    .navbar-brand img {
        width: 130px !important;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image {
        margin-bottom: 40px;
    }

    /* Compliance */
    .compliance-stat-card {
        padding: 22px 16px;
    }

    .compliance-stat-number {
        font-size: 2rem;
    }

    .compliance-stat-label {
        font-size: 0.85rem;
    }

    .compliance-table thead th {
        padding: 14px 16px;
        font-size: 0.75rem;
    }

    .compliance-table tbody td {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer .col-lg-4,
    .footer .col-lg-3 {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }
}

/* SM - Small tablets / Large phones (576px - 767px) */
@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        text-align: center;
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .top-bar .col-md-6:first-child {
        margin-bottom: 8px;
    }

    .top-bar .col-md-6:first-child a {
        display: inline-block;
        margin-bottom: 4px;
        font-size: 0.8rem;
    }

    .top-bar .me-4 {
        margin-right: 10px !important;
    }

    .top-bar .btn-whatsapp {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        width: 120px !important;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-link {
        margin: 2px 0;
        padding: 10px 15px;
        border-radius: 8px;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(59, 130, 246, 0.08);
    }

    .navbar .nav-link::after {
        display: none;
    }

    .navbar .btn-primary-custom {
        margin: 10px 0 5px;
        width: 100%;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero p {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .section-badge {
        margin-bottom: 15px;
    }

    .demo-form {
        margin-top: 35px;
        padding: 25px 18px;
    }

    .demo-form h3 {
        font-size: 1.2rem;
    }

    /* Floating Shapes */
    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-card h4 {
        font-size: 1.15rem;
    }

    /* About Section */
    .about-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-content .section-badge {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }

    .about-feature i {
        margin: 0 auto 15px;
    }

    .stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        text-align: center;
          background: #ffffff !important;
    }
.stats-card p {
    color: #111827 !important;
    font-weight: 600;
}
    /* Prevent AOS horizontal overflow */
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        overflow: visible !important;
    }

    .hero,
    .services,
    .about,
    .why-us,
    .compliance,
    .contact {
        overflow: hidden;
    }

    /* Why Choose Us */
    .why-card {
        padding: 25px 20px;
    }

    .why-card i {
        font-size: 2.5rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    /* Blog Section */
    .blog-img {
        height: 150px;
        font-size: 3rem;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h4 {
        font-size: 1.1rem;
    }

    /* Compliance */
    .compliance-stat-card {
        padding: 20px 16px;
    }

    .compliance-stat-number {
        font-size: 1.8rem;
    }

    .compliance-stat-icon {
        font-size: 1.6rem;
    }

    .compliance-table-header {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .compliance-table thead th {
        padding: 12px 14px;
        font-size: 0.72rem;
    }

    .compliance-table tbody td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    /* Disclaimer */
    .disclaimer,
.new-dis {
    background: #dbeafe !important;
    border-left: 4px solid #1d4ed8;
}

.disclaimer h2,
.new-dis h2 {
    color: #111827 !important;
    font-weight: 700;
}

.disclaimer p,
.new-dis p {
    color: #111827 !important;
    font-weight: 500;
    line-height: 1.8;
}

.disclaimer i,
.new-dis i {
    color: #1d4ed8 !important;
}

    .disclaimer {
        padding: 20px;
        gap: 15px;
    }

    .disclaimer-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .disclaimer p {
        font-size: 0.85rem;
    }

    /* Table Modern */
    .table-modern thead th {
        padding: 15px 10px;
        font-size: 0.75rem;
    }

    .table-modern tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    /* Contact Cards */
    .contact-card {
        padding: 30px 20px;
    }

    .contact-card i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
        text-align: center;
         background: #0f172a;
    }
.footer p,
.footer a,
.footer li {
  color: #e5e7eb !important;
}

.footer a:hover {
  color: #ffffff !important;
}

    .footer h5 {
        margin-top: 30px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Content Box */
    .content-box {
        padding: 25px;
    }

    .content-box h3 {
        font-size: 1.3rem;
    }

    /* KYC Form */
    .kyc-form {
        padding: 30px 20px;
    }

    /* Pricing Cards */
    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }

    /* Scroll to Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Buttons */
    .btn-primary-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* XS - Small phones (< 576px) */
@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Top Bar */
    .top-bar {
        padding: 6px 0;
        font-size: 0.75rem;
    }

    .top-bar .col-md-6:first-child a {
        font-size: 0.75rem;
    }

    .top-bar .btn-whatsapp {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    /* Navbar */
    .navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        width: 100px !important;
    }

    .navbar-collapse {
        padding: 12px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero .gap-3 {
        gap: 8px !important;
    }

    .demo-form {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .demo-form h3 {
        font-size: 1.1rem;
    }

    .demo-form h6 {
        font-size: 0.85rem;
    }

    .demo-form small {
        font-size: 0.75rem;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* Service Cards */
    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        border-radius: 15px;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* About */
    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-feature i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Why Cards */
    .why-card {
        padding: 20px 15px;
    }

    .why-card i {
        font-size: 2rem;
    }

    .why-card h3 {
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Blog */
    .blog-img {
        height: 120px;
        font-size: 2.5rem;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h4 {
        font-size: 1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    /* Compliance */
    .compliance-stat-card {
        padding: 16px 12px;
    }

    .compliance-stat-number {
        font-size: 1.5rem;
    }

    .compliance-stat-icon {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .compliance-stat-label {
        font-size: 0.75rem;
    }

    .compliance-table-wrapper {
        border-radius: 12px;
    }

    .compliance-table-header {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .compliance-table thead th {
        padding: 8px 6px;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .compliance-table tbody td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }

    .compliance-source-dot {
        width: 8px;
        height: 8px;
    }

    /* Disclaimer */
    .disclaimer {
        flex-direction: column;
        padding: 16px 14px;
        gap: 10px;
    }

    .disclaimer-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .disclaimer h6 {
        font-size: 0.85rem;
    }

    .disclaimer p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    /* Contact */
    .contact-card {
        padding: 22px 15px;
    }

    .contact-card i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
        word-break: break-word;
    }

    /* Table Modern */
    .table-modern {
        font-size: 0.8rem;
    }

    .table-modern thead th {
        padding: 12px 8px;
        font-size: 0.7rem;
    }

    .table-modern tbody td {
        padding: 10px 8px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-brand img {
        width: 100px !important;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-top: 25px;
    }

    .footer-links li a {
        font-size: 0.85rem;
        padding: 3px 0;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card h4 {
        font-size: 1.2rem;
    }

    /* Content Box */
    .content-box {
        padding: 20px 15px;
    }

    .content-box h3 {
        font-size: 1.2rem;
    }

    .content-box h4 {
        font-size: 1.1rem;
    }

    .content-box p {
        font-size: 0.9rem;
    }

    /* KYC Form */
    .kyc-form {
        padding: 25px 15px;
    }

    .file-upload {
        padding: 20px;
    }

    .file-upload i {
        font-size: 2rem;
    }

    /* Payment */
    .payment-card {
        padding: 25px 15px;
    }

    .payment-details {
        padding: 20px 15px;
    }

    .payment-details .detail-row {
        flex-direction: column;
        gap: 4px;
    }

    /* Team Card */
    .team-card {
        padding: 30px 20px;
    }

    .team-card .avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    /* Scroll Top */
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }

    /* Buttons */
    .btn-primary-custom {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-whatsapp {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Info Cards */
    .info-card {
        padding: 22px 18px;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    /* Floating shapes - hide on small phones */
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

/* XXS - Extra small devices (< 375px) */
@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .top-bar {
        font-size: 0.7rem;
        padding: 5px 0;
    }

    .top-bar .col-md-6:first-child a {
        font-size: 0.7rem;
    }

    .navbar-brand img {
        width: 85px !important;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.25rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    .demo-form {
        padding: 18px 12px;
    }

    .demo-form h3 {
        font-size: 1rem;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .compliance-stat-card {
        padding: 14px 10px;
    }

    .compliance-stat-number {
        font-size: 1.3rem;
    }

    .compliance-stat-label {
        font-size: 0.7rem;
    }

    .btn-primary-custom {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .btn-whatsapp {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .about-content h2 {
        font-size: 1.25rem;
    }

    .why-card h3 {
        font-size: 0.95rem;
    }

    .contact-card h3 {
        font-size: 0.95rem;
    }
        .contact-card h4 {
        font-size: 1rem;
    }

    .footer-desc {
        font-size: 0.8rem;
    }

    .footer-links li a {
        font-size: 0.8rem;
    }
}

/* ===== UTILITIES ===== */
.bg-gradient-custom {
    background: #1d4ed8;
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

.text-gradient {
    background: #1d4ed8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.rounded-custom {
    border-radius: 20px;
}


.text-374151{
    color: #374151;
}

.error-msg{
   color:#dc2626;
  display:block;
   font-size: 13px;
  margin-top: 5px;
  font-weight: 500;
}


.skip-link {
  position: absolute;
  top: -50px;
  left: 10px;
  background: #0057d3;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 10px;
}
 .dis .h3{
    font-size: 1rem;
        color: #1e40af;
}
 .dis .h4{
    font-size: 1rem;
        color: #1e40af;
}
 .help .h3{
        font-size: 1rem;
            color: #1e40af;
}
.acc .h1{
        font-weight: 700;
    color: var(--dark);
            font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

::placeholder {
    color: #4b5563 !important;
    opacity: 1 !important;
}


/* Complaint Board Section */
.complaint-board-section {
  background: #f8faff;
}

/* Cards */
.complaint-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

/* Intro */
.complaint-icon {
  font-size: 42px;
  color: #2563eb;
}


/* Headings */
.content-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.sub-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2563eb;
  margin-top: 20px;
  margin-bottom: 15px;
}

.helpline-box .sub-heading {
  color: #e2e8f0;
}
/* Content */

.custom-list {
  padding-left: 20px;
}

.custom-list li {
  margin-bottom: 14px;
  color: #334155;
   line-height: 1.7;
   padding-left: 20px;
}


/* Two Column */
.two-column-list {
  columns: 2;
}

/* Address */
.address-box {
  background: #f1f5f9;
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
}

/* Do Card */
.do-card {
  background: #ecfdf5;
  padding: 25px;
  border-radius: 16px;
  height: 100%;
}

.do-title {
   color: #027759;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Don't Card */
.dont-card {
  background: #fef2f2;
  padding: 25px;
  border-radius: 16px;
  height: 100%;
}

.dont-title {
   color: #b91c1c;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Links */
.guidance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.guidance-links a {
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.guidance-links a:hover {
  background: #1d4ed8;
}





/* Mobile */
@media (max-width: 768px) {

  .section-title {
    font-size: 1.6rem;
  }

  .content-heading {
    font-size: 1.3rem;
  }

  .two-column-list {
    columns: 1;
  }

  .complaint-card {
    padding: 25px;
  }

}

/* Complaint Table Section */
.complaint-table-section {
  background: #f8faff;
}

/* Cards */


/* Heading */
.table-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.table-subtitle {
  color: #334155;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Table */
.complaint-table {
  margin-bottom: 0;
}
.complaint-table thead th {
  background: #0f172a !important;
  color: #ffffff !important;
   font-weight: 600;
  padding: 16px;
  border: none;
  vertical-align: middle;
}



.complaint-table tbody td {
  padding: 16px;
  color: #334155;
  border-color: #e2e8f0;
  vertical-align: middle;
}

.complaint-table tbody tr:hover {
  background: #e2e8f0;
}

/* Total Row */
.table-total {
  background: #eff6ff;
  font-weight: 700;
}

.table-total td {
  color: #1e3a8a;
}

/* Mobile */
@media (max-width: 768px) {

  .complaint-card {
    padding: 25px;
  }

  .table-title {
    font-size: 1.4rem;
  }

  .complaint-table thead th,
  .complaint-table tbody td {
    padding: 12px;
    font-size: 14px;
  }

}




/* Card */
.disclosure-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
   border: 1px solid #e2e8f0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}


/* Icon */
.disclosure-icon {
  font-size: 42px;
  color: #dc2626;
}




.sub-section-heading {
  font-size: 1.2rem;
  color: #2563eb;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Warning Box */
.warning-box {
  background: #fff7ed;
  border-left: 5px solid #f97316;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.warning-box p {
  margin-bottom: 0;
  color: #9a3412;
  font-weight: 500;
}

/* Danger */
.danger-box {
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.danger-box p {
  margin-bottom: 0;
  color: #991b1b;
  font-weight: 500;
}

/* List */



/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.info-item {
  background: #e2e8f0;
  padding: 25px;
  border-radius: 16px;
}

.info-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* Ratings */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


.rating-card h3 {
  font-size: 1.2rem;
  color: #1d4ed8;
  margin-bottom: 12px;
}











/* Mobile */
@media (max-width: 768px) {

  .disclosure-card {
    padding: 25px;
  }

  .disclosure-title {
    font-size: 1.5rem;
  }

  .content-heading {
    font-size: 1.3rem;
  }

}

/* =========================
   MITC SECTION
========================= */

.mitc-section {
  background: #e2e8f0;
}

.mitc-wrapper {
  max-width: 1100px;
  margin: auto;
}

.mitc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.mitc-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.mitc-subtitle {
  color: #2563eb;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 35px;
}

.mitc-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mitc-point {
  background: #e2e8f0;
  border-left: 4px solid #2563eb;
  padding: 22px 24px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.mitc-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.mitc-point p {
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.8;
  font-size: 1rem;
}

.mitc-point ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.mitc-point ul li {
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.7;
}

.mitc-point a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.mitc-point a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.mitc-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 20px;
  margin-top: 18px;
}

.mitc-note h3 {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin-bottom: 14px;
  font-weight: 700;
}

.mitc-point h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.contact-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  padding: 25px;
  margin: 20px 0;
  border: 1px solid #bfdbfe;
}

.contact-box h4 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-box p {
  margin-bottom: 12px;
  color: #1e293b;
}

.contact-box strong {
  color: #0f172a;
}

.helpline-number {
  display: inline-block;
  background: #dc2626;
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 12px;
  margin-top: 12px;
  font-size: 2rem !important;
  letter-spacing: 2px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
   margin-bottom: 10px;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .mitc-card {
    padding: 25px;
  }

  .mitc-title {
    font-size: 1.5rem;
  }

  .mitc-point {
    padding: 18px;
  }

  .contact-box {
    padding: 18px;
  }

  .helpline-number {
    font-size: 1.5rem !important;
    padding: 10px 22px;
  }

}
/* =========================
   FRAUD AWARENESS SECTION
========================= */

.fraud-awareness-section {
  background: #e2e8f0;
}

.fraud-wrapper {
  max-width: 1150px;
  margin: auto;
}

.fraud-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.fraud-top {
  margin-bottom: 45px;
}

.fraud-icon-wrap {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}

.fraud-main-icon {
  color: #ffffff;
  font-size: 38px;
}

.fraud-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.fraud-subtitle {
  color: #334155;
  line-height: 1.8;
  max-width: 850px;
  margin: auto;
}

.fraud-box {
  background: #e2e8f0;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #2563eb;
}


.cyber-box {
  background: #eff6ff;
}

.fraud-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.fraud-text {
  color: #334155;
  line-height: 1.8;
}

.fraud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.fraud-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.fraud-item h4 {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.fraud-item p {
  color: #334155;
  line-height: 1.7;
}

.fraud-list {
  padding-left: 20px;
}

.fraud-list li {
  margin-bottom: 14px;
  color: #334155;
  line-height: 1.7;
}

.steps-wrap {
  display: grid;
  gap: 20px;
}

.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.step-number {
  min-width: 42px;
  height: 42px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-card p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.7;
}

.fraud-links,
.cyber-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fraud-links a,
.cyber-links a {
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.fraud-links a:hover,
.cyber-links a:hover {
  background: #1d4ed8;
}

.helpline-box {
  margin-top: 35px;
  background: #0f172a;
  border-radius: 18px;
  padding: 35px;
   color: #ffffff;
  text-align: center;
}




.helpline-title {
  color: #dbeafe;
  margin-bottom: 15px;
}



.helpline-text {
  color: #cbd5e1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .fraud-card {
    padding: 25px;
  }

  .fraud-title {
    font-size: 1.6rem;
  }

  .fraud-box {
    padding: 20px;
  }

  .fraud-heading {
    font-size: 1.2rem;
  }

  .helpline-number {
    font-size: 2.2rem;
  }

}

/* =========================
   DISCLOSURE SECTION
========================= */

.disclosure-section {
  background: #e2e8f0;
}

.disclosure-wrapper {
  max-width: 1150px;
  margin: auto;
}



/* =========================
   TOP
========================= */

.disclosure-top {
  margin-bottom: 45px;
}

.disclosure-icon-wrap {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}

.disclosure-main-icon {
  color: #ffffff;
  font-size: 38px;
}

.disclosure-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}



.disclosure-subtitle {
  color: #2563eb;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.disclosure-reg {
  color: #334155;
  font-size: 0.95rem;
}

/* =========================
   BOXES
========================= */

.disclosure-box {
  background: #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #2563eb;
}



.risk-box {
  background: #fef2f2;
  border-left-color: #dc2626;
}


/* =========================
   HEADINGS
========================= */

.disclosure-heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
}

.disclosure-text {
  color: #334155;
  line-height: 1.8;
  margin-bottom: 0;
}

/* =========================
   LISTS
========================= */

.disclosure-list {
  padding-left: 22px;
  margin-bottom: 0;
}

.disclosure-list li {
  color: #334155;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* =========================
   RATINGS GRID
========================= */

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.rating-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}




.rating-card:hover {
  transform: translateY(-4px);
}

.rating-card h4 {
  color: #1e3a8a;
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.rating-card p {
  color: #334155;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================
   CONTACT BOX
========================= */



.contact-box a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* =========================
   LINKS GRID
========================= */

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.links-grid a {
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  font-weight: 500;
}

.links-grid a:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}



.helpline-box h3 {
  color: #dbeafe;
  margin-bottom: 18px;
  font-size: 1.3rem;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .disclosure-card {
    padding: 25px;
  }

  .disclosure-title {
    font-size: 1.6rem;
  }

  .disclosure-box {
    padding: 22px;
  }

  .disclosure-heading {
    font-size: 1.2rem;
  }

  .helpline-number {
    font-size: 1.8rem;
  }

  .links-grid {
    flex-direction: column;
  }

  .links-grid a {
    text-align: center;
  }

}

/* =========================
   CLIENT CONSENT SECTION
========================= */

.client-consent-section {
  background: #e2e8f0;
}

.client-consent-wrapper {
  max-width: 1150px;
  margin: auto;
}

.client-consent-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

/* =========================
   TOP SECTION
========================= */

.client-consent-top {
  margin-bottom: 45px;
}

.consent-icon-wrap {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}

.consent-main-icon {
  color: #ffffff;
  font-size: 38px;
}

.consent-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.consent-subtitle {
  color: #2563eb;
  font-size: 1rem;
  font-weight: 600;
}

/* =========================
   BOXES
========================= */

.consent-box {
  background: #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #2563eb;
}


.mitc-box {
  background: #eff6ff;
  border-left-color: #2563eb;
}

.grievance-box {
  background: #e2e8f0;
  border-left-color: #0f172a;
}

/* =========================
   HEADINGS
========================= */

.consent-heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
}

.consent-note {
  background: #dbeafe;
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.consent-note h4 {
  margin: 0;
  color: #1e3a8a;
  font-size: 1rem;
  font-weight: 700;
}

/* =========================
   LISTS
========================= */

.consent-list {
  padding-left: 22px;
  margin-bottom: 0;
}

.consent-list li {
  color: #334155;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* =========================
   CONTACT BOX
========================= */


/* =========================
   LINKS
========================= */

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.consent-links a {
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  font-weight: 500;
}

.consent-links a:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* =========================
   SIGNATURE SECTION
========================= */

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.signature-item {
  background: #ffffff;
  border: 1px dashed #94a3b8;
  border-radius: 14px;
  min-height: 90px;
  padding: 20px;
  color: #334155;
  display: flex;
  align-items: flex-start;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .client-consent-card {
    padding: 25px;
  }

  .consent-title {
    font-size: 1.6rem;
  }

  .consent-box {
    padding: 22px;
  }

  .consent-heading {
    font-size: 1.2rem;
  }

  .consent-links {
    flex-direction: column;
  }

  .consent-links a {
    text-align: center;
  }

}


.form-control::placeholder,
.form-select::placeholder {
  color: #6b7280 !important;
  opacity: 1;
}

.form-control,
.form-select {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: #cbd5e1 !important;
}
.form-check-label {
  color: #374151 !important;
}
#callback-status,
#agreement-status {
  font-weight: 600;
  color: #065f46;
}

/* FINAL WCAG FIXES */

.text-muted,
.text-secondary,
.text-body-secondary {
  color: #334155 !important;
}

small,
.form-text {
  color: #475569 !important;
}

.opacity-75,
.opacity-50 {
  opacity: 1 !important;
}



.hero p,
.page-header p,
.why-us p,
.footer p {
  color: rgba(255,255,255,0.96) !important;
}
.complaint-table-header,
.complaint-table-header h3,
.complaint-table-header span,
.complaint-table-header i {
  color: #ffffff !important;
}
.disclaimer-box h3{
     color: #1e40af !important;
}
.disclaimer-box strong {
  color: #0f172a !important;
  
}
.disclaimer-box p {
  color: #1e293b !important;
   font-weight: 500;
}
.complaint-table td,
.complaint-table th,
.complaint-table span,
.complaint-table strong {
  color: #111827 !important;
}
/* FINAL TABLE WCAG FIX */

.complaint-section p,
.complaint-section span,
.complaint-section td,
.complaint-section th,
.disclaimer-box p,
.disclaimer-box strong {
  color: #111827 !important;
}

.complaint-section .card,
.disclaimer-box {
  background: #e2e8f0 !important;
}

.disclaimer-box h3,
.disclaimer-box p,
.disclaimer-box span,
.disclaimer-box strong {
  color: #111827 !important;
}

/* WCAG FINAL OVERRIDE */

.disclaimer-box,
.disclaimer-box * {
  color: #111827 !important;
}

.hero-badge,
.sebi-badge {
  background: #2563eb !important;
  color: #ffffff !important;
  border: 1px solid #60a5fa !important;
}
.hero-badge span,
.hero-badge p,
.hero-badge small {
  color: #ffffff !important;
}
.hero-content p,
.hero-description {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 500;
    font-size: 1.15rem;
  line-height: 1.8;
}
.feature-content p,
.why-choose-card p {
  color: #334155 !important;
}

/* HERO WCAG FIX */

.hero-section *,
.hero-content *,
.hero-text * {
  color: #ffffff !important;
  opacity: 1 !important;
}
/* FINAL WCAG FIX */

.about-section p,
.about-section li,
.about-section span,
.contact p,
.contact span,
.compliance p,
.compliance span,
.disclaimer p {
  color: #111827 !important;
  opacity: 1 !important;
}

.hero *,
.why-us *,
.footer * {
  opacity: 1 !important;
}

.footer p,
.footer a,
.footer li,
.footer span {
  color: #ffffff !important;
}

/* FINAL WCAG FIX */

span,
small,
p,
a,
li {
  opacity: 1 !important;
}

.about-content p,
.about-feature p,
.about-feature span,
.about-feature a {
  color: #111827 !important;
}

.section-badge,
.about-badge,
.hero-badge {
  background: #1e40af !important;
  color: #ffffff !important;
}

.about-feature h3,
.about-content h2 {
  color: #0f172a !important;
}

/* ABOUT SECTION WCAG FIX */



.about-content h2,
.about-content h3 {
    color: #0f172a !important;
}

.about-content p,
.about-feature p,
.stats-card p {
    color: #1e293b !important;
    opacity: 1 !important;
}





/* REMOVE LIGHT TEXT */

.about-content *,
.about-feature *,
.stats-card * {
    opacity: 1 !important;
}
.about-content p,
.about-feature p,
.stats-card p,
.section-badge {
    font-weight: 600 !important;
}

/* HERO SECTION WCAG FIX */



.hero small,
.hero .text-374151 {
    color: #334155 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

.hero h1,
.hero h2,
.hero h3 {
    color: #ffffff !important;
}

.hero .demo-form h2,
.hero .demo-form h3 {
    color: #0f172a !important;
}

.hero .demo-form small {
    color: #334155 !important;
}

.hero .section-badge {
    background: #1d4ed8 !important;
    color: #ffffff !important;
    border: 2px solid #1e40af !important;
}

/* REMOVE FADED TEXT */

.hero * {
    opacity: 1 !important;
}


/* ABOUT PAGE WCAG FIX */

.content-section p,
.team-card p,
.credentials p,
.position,
.section-title p {
    color: #111827 !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* remove bootstrap muted issue */
.text-muted {
    color: #111827 !important;
    opacity: 1 !important;
}

/* team role */
.position {
    color: #1f2937 !important;
    font-weight: 600;
}

/* credentials box */
.credentials p {
    color: #111827 !important;
    background: #e2e8f0;
    padding: 8px 12px;
    border-radius: 8px;
}

/* headings */
.team-card h3,
.section-title h2 {
    color: #0f172a !important;
}



/* table text */
.table td,
.table th {
    color: #111827 !important;
}

/* FINAL WCAG FIX */



.team-card p {
    color: #111827 !important;
    opacity: 1 !important;
}

.credentials {
    background: #e2e8f0 !important;
}

.credentials p,
.credentials strong {
    color: #111827 !important;
    font-weight: 600;
}
.approach-section p,
.approach-section h1,
.approach-section h2,
.approach-section h3 {
    color: #ffffff !important;
    opacity: 1 !important;
}
.section-title.what-sets-apart h2,
.section-title.what-sets-apart p {
    color: #ffffff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #ffffff !important;
}




.input-error {
  border: 1px solid #d92d20 !important;
}

.input-success {
  border: 1px solid #12b76a !important;
}

.alert-success {
  background: #ecfdf3;
  color: #027a48;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.alert-danger {
  background: #fef3f2;
  color: #b42318;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}