
:root {
    --primary: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary: #fbc02d;
    --accent: #ffeb3b;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --bg-light: #f5f7ff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --whatsapp: #25d366;
    --scroll-top: #333333;
    --section-padding: 60px 0;
}

.info-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--scroll-top);
    color: #FFF;
    border-radius: 50px;
    border: none;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    margin : 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.office-info{
    padding-bottom: 25px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-badge {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 12px;
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition);
}

.logo:hover .logo-badge {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.logo span span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Menu Toggle Active State */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Utils */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.w-full {
    width: 100%;
}

.bg-light {
    background: var(--bg-light);
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.info-item .text-white
{
    color: var(--white) !important;
}

.info-item .text-muted
{
    color: var(--white) !important;
}

.text-white {
    color: var(--primary-dark) !important;
}

.text-pure-white {
    color: var(--white) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-white {
    background: var(--white) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.py-70 {
    padding: 70px 0;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* .hero.secondary {
    padding: 103px 0 60px;
    background: radial-gradient(circle at top right, #e8eaf6, var(--white));
    text-align: center;
} */

.hero.secondary h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero.secondary p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero.s {
    padding: 41px 0 0px;
    background: radial-gradient(circle at top right, #e8eaf6, var(--white));
    text-align: center;
}

.hero.s h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero.s p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item.local {
    background: var(--secondary);
    padding: 30px;
    border-radius: 15px;
}

.reason-item.local i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.doc-card.white {
    background: var(--white);
    color: var(--primary);
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}

/* Online Application Portal Components */
/* Special Hero Components - Digital Portal */
.hero-rect {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    border-bottom: 5px solid var(--primary);
}

.hero-rect-content {
    padding: 80px 10%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at top right, #e8eaf6, var(--white));
}

.hero-rect-visual {
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rect-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(white 1px, transparent 0);
    background-size: 30px 30px;
}

.glass-float {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: white;
    transform: rotate(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    background: #e8eaf6;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dot-loader {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dot-loader span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.dot-loader span:first-child {
    background: var(--secondary);
}

.duration-badge {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 4px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    padding: 15px;
    flex-shrink: 0;
}

.duration-badge .time {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    display: block;
}

.duration-badge .label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.duration-badge.success {
    border-color: #4caf50;
}

.duration-badge.info {
    border-color: #2196f3;
}

.duration-badge.warning {
    border-color: #ff9800;
}

.duration-badge.danger {
    border-color: #f44336;
}

.step-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-card.active {
    background: var(--primary);
    color: white;
}

.step-card.active h3 {
    color: white;
}

.help-grid {
    background: white;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.help-content {
    padding: 60px;
}

.help-visual {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-card {
    width: 80%;
    height: 70%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 30px;
    position: relative;
}

/* Pricing Page Components */
.pricing-hero .pricing-container {
    text-align: center;
}

.calc-total-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.calc-checklist {
    text-align: left;
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    padding: 0;
    list-style: none;
}

.calc-checklist li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-checklist i {
    color: #28a745;
}

.form-trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    font-size: 0.85rem;
    color: #666;
}

.form-trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Speed Option JS Toggle Class */
.speed-option.selected {
    border-color: var(--secondary) !important;
    background: #fffde7 !important;
    color: var(--primary) !important;
}

/* Required Documents Page Components */
.affidavit-box {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 8px solid var(--primary);
}

.affidavit-box ul {
    list-style: none;
    padding: 0;
}

.affidavit-box li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.affidavit-note {
    margin-top: 30px;
    padding: 20px;
    background: #fffde7;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #856404;
}

.reason-item.special {
    background: #fbc02d;
    padding: 30px;
    border-radius: 15px;
}


/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-rect {
        grid-template-columns: 1fr;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .detailed-steps {
        margin-top: 30px;
    }
}

.hero {
    padding-top: 120px;
    padding-bottom: 50px;
    background: radial-gradient(circle at top right, #e8eaf6, var(--white));
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    width: 450px;
    height: 450px;
    background: var(--primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    animation: blob 8s infinite alternate;
}

@keyframes blob {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.glass-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 200px;
    top: 50px;
    left: -30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card.secondary {
    top: auto;
    bottom: 50px;
    left: auto;
    right: -30px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Services */
.services {
    padding: 70px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

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

.service-card.active h3 {
    color: var(--white);
}

.service-card.active .icon-box {
    background: var(--secondary);
    color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

/* Process */
.process {
    padding: 70px 0;
}

.step-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: #e0e6ed;
    line-height: 1;
    margin-bottom: -15px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* FAQ */
.faq {
    padding: 70px 0;
    background: var(--bg-light);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.accordion-header {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    list-style: none;
}

.accordion-header::-webkit-details-marker {
    display: none;
    /* Hide default summary marker for Safari */
}

.accordion-header h3 {
    font-size: 1.05rem;
}

.accordion-item[open] .accordion-header {
    background: #f8faff;
    border-bottom: 1px solid #eee;
}

.accordion-content {
    padding: 0 25px 25px;
}

.accordion-item[open] .accordion-header i {
    transform: rotate(180deg);
}

/* Contact */
.contact {
    padding: 70px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--primary);
    border-radius: 30px;
    padding: 60px;
    color: var(--white);
}


.contact .contact-info {
    padding-top: 13%;
}


.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--secondary);
}

/* contact form code */

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
}

/* ✅ Added select here */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    background-color: #fff;
}

/* Make select height same as input */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    background-color: #fff;
    box-sizing: border-box;
}

.form-group input,
.form-group select {
    height: 54px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 40px;
    line-height: 1.4;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.w-full {
    width: 100%;
}


/* Modern Footer Redesign */
.footer {
    padding: 100px 0 30px;
    background: linear-gradient(180deg, #0a0e27 0%, #050714 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(26, 35, 126, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 25px;
    display: inline-flex;
    color: var(--white);
    font-size: 1.8rem;
}

.footer-brand .logo-badge {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4::after {
    content: '';
    flex-grow: 0;
    width: 25px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

@media (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-col h4 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* call to action start */

/* CTA FULL WIDTH */
.cta-section {
  width: 100%;
  background-color: #2c2f83; /* Screenshot ke exact dark blue ke close */
  padding: 28px 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Container */
.cta-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Text */
.cta-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

/* Button */
.cta-button {
  background-color: #FFD400;
  color: #000;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 1.8s infinite;
}

/* Hover */
.cta-button:hover {
  background-color: #ffffff;
}

/* Pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Desktop */
@media (min-width: 768px) {
  .cta-button {
    position: absolute;
    right: 20px;
  }
}
/* call to action end */

/* Google Review Section */
.google-review {
  width: 100%;
  padding: 16px 0; /* py-4 */
  background: linear-gradient(to right, #dbeafe, #eff6ff, #dbeafe); /* blue-100 -> blue-50 -> blue-100 */
}

.google-review__container {
  max-width: 1280px; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 24px; /* px-6 */
}

/* Main Grid */
.google-review__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; /* gap-8 */
  align-items: center;
}

/* Left / Right spacing */
.google-review__left,
.google-review__right {
  display: flex;
  flex-direction: column;
  gap: 12px; /* space-y-3 / space-y-4 approx */
}

/* Typography */
.google-review__title,
.google-review__subtitle {
  margin: 0;
  color: #111827; /* gray-900 */
  font-weight: 600;
  line-height: 1.3;
}

.google-review__title,
.google-review__subtitle {
  font-size: 18px; /* text-lg */
}

/* Logos row */
.google-review__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* gap-3 */
  flex-wrap: wrap;
}

.google-review__google-logo {
  height: 32px; /* h-8 */
  width: auto;
  display: block;
}

.google-review__stars {
  height: 16px; /* h-4 */
  width: auto;
  display: block;
}

/* Rating */
.google-review__rating {
  font-size: 14px; /* text-sm */
  color: #374151; /* gray-700 */
}

/* Counters grid */
.google-review__counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px; /* gap-6 */
}

/* Counter card */
.google-review__counter {
  text-align: center;
}

.google-review__count {
  margin: 0;
  font-size: 24px; /* text-2xl */
  font-weight: 700; /* font-bold */
  color: #1d4ed8; /* blue-700 */
}

.google-review__label {
  margin: 6px 0 0;
  font-size: 14px; /* text-sm */
  color: #1f2937; /* gray-800 */
  font-weight: 500;
}

/* Responsive */
@media (min-width: 640px) {
  /* sm:grid-cols-4 */
  .google-review__counters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  /* lg:grid-cols-2 */
  .google-review__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* lg:text-left */
  .google-review__left,
  .google-review__right {
    text-align: left;
  }

  /* lg:justify-start */
  .google-review__logos {
    justify-content: flex-start;
  }
}


/* Reasons */
.reasons {
    padding: 70px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    text-align: center;
}

.reason-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.reason-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.reason-item:hover i {
    color: var(--secondary);
}

.reason-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Features */
.features {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

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

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Documents */
.documents {
    padding: 70px 0;
    background: var(--bg-light);
}

.docs-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.docs-text {
    flex: 1.2;
}

.docs-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.docs-list {
    list-style: none;
    margin-top: 30px;
}

.docs-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.docs-list li i {
    color: #4caf50;
    font-size: 1.2rem;
}

.docs-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.doc-card {
    width: 280px;
    height: 380px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.doc-card i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.doc-card span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.doc-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
}

/* Benefits */
.benefits {
    padding: 70px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 25px;
}

/* --- Pricing Page Specific Styles --- */
.hero.secondary.pricing-hero {
    padding: 130px 0 60px;
    background: radial-gradient(circle at top right, #fffdf0, var(--white));
    text-align: center;
}

.hero.secondary.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero.secondary.pricing-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-calculator-section {
    padding: 70px 0;
    background: var(--white);
}

.calculator-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.calc-input-field {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.calc-speed-options {
    display: flex;
    gap: 15px;
}

.speed-option-wrapper {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.speed-option-wrapper input {
    position: absolute;
    opacity: 0;
}

.speed-option {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.speed-option:hover {
    border-color: var(--secondary) !important;
}

.calc-results-box {
    background: radial-gradient(circle at top right, #fff9e6, #fff);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ffeeba;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.calc-results-box h4 {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.calc-total-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.comparison-table-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.comparison-table thead tr {
    background: var(--primary);
    color: var(--white);
}

.comparison-table th {
    padding: 25px;
    text-align: left;
    font-size: 1.2rem;
}

.comparison-table th.diy-col {
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
}

.comparison-table th.pro-col {
    text-align: center;
    background: var(--secondary);
    color: var(--primary);
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tr:nth-child(even) td {
    background: #fafafa;
}

.comparison-table .feature-name {
    font-weight: 600;
}

.comparison-table .diy-val {
    text-align: center;
    color: var(--text-muted);
}

.comparison-table .pro-val {
    text-align: center;
    font-weight: 700;
    color: #2e7d32;
}

.comparison-table .total-row td {
    background: #fff9e6 !important;
    padding: 25px;
}

.comparison-table .total-label {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
}

.comparison-table .total-diy {
    font-weight: 600;
    text-align: center;
}

.comparison-table .total-pro {
    text-align: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

.trust-badges-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed #ccc;
}

.price-guarantee-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary), #000);
    color: var(--white);
}

.price-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-faq-section {
    padding: 70px 0;
    background: var(--white);
}

.faq-pricing-grid {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-faq-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}

.pricing-faq-btn:hover {
    background: #fdfdfd;
}

.pricing-faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none;
}

.value-item {
    background: var(--secondary);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-item h4 {
    margin-bottom: 10px;
}

.cta-bar {
    padding: 40px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-bar p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.cta-bar a {
    color: var(--secondary);
    font-weight: 700;
}

.contact-section-alt {
    padding: 70px 0;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .calc-results-box {
        margin-top: 20px;
    }

    .trust-badges-grid div {
        width: 45%;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 10px;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right !important;
        padding: 15px !important;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        text-align: left;
    }
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Why Us */
.why-us {
    padding: 70px 0;
    background: var(--bg-light);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=1000') center/cover no-repeat;
    border-radius: 30px;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.why-points {
    margin-top: 40px;
}

.why-point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-point i {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-point h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Pricing Plans Section */
#pricing.pricing-plans {
    padding: 70px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex !important;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 25px 0;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.pricing-features li i {
    color: #2e7d32;
    font-size: 1.1rem;
}

/* Detailed Process Section */
#detailed-process.step-details {
    padding: 70px 0;
    background: var(--bg-light);
}

.detailed-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 40px;
}

.detailed-step {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    gap: 30px !important;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    align-items: center;
    transition: var(--transition);
}

.detailed-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 8px 15px rgba(26, 35, 126, 0.2);
}

.step-content-text h4 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.step-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.info-badge {
    background: #f0f2f5;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fees Comparison Component */
.comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.comparison-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.comparison-card.active {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.08);
}

.comp-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comp-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 25px;
}

.comp-header h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.comp-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.comp-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comp-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.comp-list li i.fa-check-circle {
    color: #2e7d32;
    font-size: 1.1rem;
}

.comp-list li i.fa-times-circle {
    color: #d32f2f;
    font-size: 1.1rem;
    opacity: 0.7;
}

.comp-price {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.comparison-card.active .comp-price {
    background: #f1f3ff;
}

.comp-price span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.comp-price h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.comp-price h3 span {
    display: inline;
    font-size: 1rem;
    color: var(--text-muted);
}

.comp-price small {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .docs-wrapper {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .docs-list li {
        justify-content: center;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
    }

    .why-image {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 80px 40px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .menu-open {
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .step-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Sticky Mobile Conversion Bar */
.sticky-conversion-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
    /* Hidden on desktop */
}

.sticky-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.sticky-bar-item.call {
    background: var(--primary);
    color: var(--white);
}

.sticky-bar-item.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

/* Visibility Utilities */
.mobile-only-nav {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only-nav {
        display: none !important;
    }

    .mobile-only-nav {
        display: block !important;
    }

    .sticky-conversion-bar {
        display: grid;
    }

    /* Adjust scroll top and whatsapp float to not overlap with sticky bar */
    .whatsapp-float {
        bottom: 80px;
    }

    .scroll-top {
        bottom: 150px;
    }
}

/* New Refactored Utilities */
.py-70 {
    padding: 70px 0;
}

.bg-bg-light {
    background: var(--bg-light);
}

.bg-white {
    background: var(--white);
}

.bg-primary-pure {
    background: var(--primary) !important;
}

.bg-soft-blue {
    background: #f1f3ff;
}

.bg-off-white {
    background: #f8f9ff;
}

.text-gray {
    color: gray;
}

.mt-5 {
    margin-top: 5px;
}

.mt-20 {
    margin-top: 20px;
}

.p-50 {
    padding: 50px;
}

.gap-50 {
    gap: 50px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Special Hero Backgrounds */
.hero-baby {
    background: radial-gradient(circle at top right, #f3e5f5, var(--white));
}

.hero-tatkal {
    background: radial-gradient(circle at top right, #fff8e1, var(--white));
}

/* Component Cards */
.card-amber {
    background: #fbc02d;
    padding: 30px;
    border-radius: 15px;
}

.card-purple-visual {
    background: #ce93d8;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-purple-visual i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.card-white-primary {
    background: white;
    color: var(--primary);
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}

.icon-xl {
    font-size: 5rem;
}

.icon-lg {
    font-size: 4rem;
}

.icon-md {
    font-size: 2.5rem;
}

/* Pricing/Stat Utilities */
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Text & Spacing Utilities */
.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-60 {
    margin-bottom: 60px;
}

.fs-1 {
    font-size: 1rem;
}

.fs-1-5 {
    font-size: 1.5rem;
}

.fs-2-25 {
    font-size: 2.25rem;
}

.opacity-9 {
    opacity: 0.9;
}

/* Form Utilities */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    background: white;
    font-family: inherit;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Mockup Card Utilities */
.mockup-bar {
    width: 40px;
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 20px;
}

.mockup-line-full {
    width: 100%;
    height: 2px;
    background: #f1f5f9;
    margin-bottom: 20px;
}

.mockup-line-80 {
    width: 80%;
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
}

.mockup-line-60 {
    width: 60%;
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
}

.mockup-upload {
    width: 90%;
    height: 40px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.8rem;
}

.mockup-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 35px;
    border-radius: 8px;
}

/* Hero Variants */
.hero-south-delhi {
    background: radial-gradient(circle at top right, #e1f5fe, var(--white));
}

/* Local Colors */
.text-light-blue {
    color: #03a9f4 !important;
}

.bg-light-blue {
    background: #03a9f4 !important;
}

.hero-rohini {
    background: radial-gradient(circle at top right, #e8eaf6, var(--white));
}


/* .hero-padding-lg {
    padding: 130px 0 60px;
} */

.hero-religion {
    background: radial-gradient(circle at top right, #fff3e0, var(--white));
}

.hero-rejection {
    background: radial-gradient(circle at top right, #fffde7, var(--white));
}

.hero-comparison {
    background: radial-gradient(circle at top right, #e0f2f1, var(--white));
}

.hero-online {
    background: radial-gradient(circle at top right, #e3f2fd, var(--white));
}

.hero-neutral {
    background: radial-gradient(circle at top right, #fafafa, var(--white));
}

/* .hero-lavender {
    background: radial-gradient(circle at top right, #e8eaf6, var(--white));
} */

.hero-minor {
    background: radial-gradient(circle at top right, #fff0f0, var(--white));
}

.hero-timeline {
    background: radial-gradient(circle at top right, #e8f5e9, var(--white));
}

.hero-faq {
    background: radial-gradient(circle at top right, #f3e5f5, var(--white));
}

.hero-comparison-alt {
    background: radial-gradient(circle at top right, #eceff1, var(--white));
}

.hero-agencies {
    background: radial-gradient(circle at top right, #f1f8e9, var(--white));
}

.hero-documents {
    background: radial-gradient(circle at top right, #fff8e1, var(--white));
}

.hero-pricing {
    background: radial-gradient(circle at top right, #e8f5e9, var(--white));
}

.hero-baby {
    background: radial-gradient(circle at top right, #fce4ec, var(--white));
}

.hero-aadhaar {
    background: radial-gradient(circle at top right, #e1f5fe, var(--white));
}

.hero-tatkal {
    background: radial-gradient(circle at top right, #fbe9e7, var(--white));
}

.btn-accent-color {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}

.btn-white-color {
    background: var(--white) !important;
    color: var(--primary) !important;
}


.card-agency {
    background: var(--secondary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}



.btn-whatsapp {
    background: var(--whatsapp) !important;
    color: var(--white) !important;
}


.bg-success-pure {
    background-color: #4caf50;
}

.bg-info-pure {
    background-color: #2196f3;
}

.bg-warning-pure {
    background-color: #ff9800;
}

.bg-danger-pure {
    background-color: #f44336;
}




.card-dashed {
    background: #eceff1;
    border: 2px dashed #cfd8dc;
    border-radius: 20px;
    padding: 40px;
}

.text-slate {
    color: #455a64;
}

.text-slate-light {
    color: #90a4ae;
}


/* gazette-office-in-delhi */

.card-interactive {
    transition: background 0.3s, color 0.3s;
}

.card-interactive:hover {
    background: var(--primary) !important;
    color: white !important;
}

.card-interactive:hover i {
    color: var(--secondary) !important;
}

.card-interactive:hover p {
    color: white !important;
}

.reason-item:hover .text-inherit {
    color: var(--white);
}

.card-step {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge-step {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.card-testimonial {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.card-rejection {


    background: #fff8f8;
    border-left: 5px solid #f44336;
    padding: 30px;
    border-radius: 10px;
    color: black;
}



/* Generic Layout Utilities */
.fs-3-5 {
    font-size: 3.5rem;
}

.fs-1-1 {
    font-size: 1.1rem;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-40 {
    margin-top: 40px;
}

.mr-10 {
    margin-right: 10px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-15 {
    gap: 15px;
}

.block {
    display: block;
}

/* Benefits of Gazette Notification for Change */

/* SECTION BACKGROUND */
.benefits-section {
    background: linear-gradient(to right, #eaf3ff, #ffffff, #e6f0ff);
    padding: 60px 20px;
}

/* CONTAINER */
.benefits-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* HEADINGS */
.benefits-left h2,
.benefits-right h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* LEFT BENEFITS LIST */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.benefits-list .icon {
    font-size: 22px;
    margin-top: 3px;
}

.benefits-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #111;
}

.benefits-list p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* TABLE OF CONTENTS */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    background: #ffffff;
    border: 1px solid #dbeafe;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.toc-list li:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.toc-list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* Required Documents for Name Change Process */
/* SECTION BACKGROUND */
.documents-section {
    background: #f9fafb;
    padding: 60px 20px;
}

/* CONTAINER */
.documents-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TITLE */
.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1f2937;
}

/* GRID LAYOUT */
.documents-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD STYLE */
.document-card {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* ICON CIRCLE */
.icon-circle {
    width: 50px;
    height: 50px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* TEXT */
.document-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
}

.document-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* FULL WIDTH CARD */
.full-width {
    grid-column: span 3;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .full-width {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* Steps to Online Gazette Application for Name Change in Delhi */
/* SECTION */
/* CONTAINER */
/* SECTION */
#detailed-process.step-details {
    padding: 80px 0;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* STEPS */
.detailed-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* STEP CARD */
.detailed-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

.detailed-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* STEP NUMBER */
.step-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    flex-shrink: 0;
}

/* COLORS */
.step-icon-large.blue   { background:#e0e7ff; color:#1e3a8a; }
.step-icon-large.green  { background:#d1fae5; color:#065f46; }
.step-icon-large.purple { background:#ede9fe; color:#5b21b6; }
.step-icon-large.orange { background:#ffedd5; color:#9a3412; }
.step-icon-large.pink   { background:#fce7f3; color:#9d174d; }
.step-icon-large.teal   { background:#ccfbf1; color:#0f766e; }

/* TEXT */
.step-content-text h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.step-content-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .detailed-step {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .step-icon-large {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 16px;
    }
}


/* Required Documents for Delhi Gazette Name Change */

/* SECTION */
/* SECTION */
.documents-section {
    background: transparent;   /* removed section bg */
    padding: 70px 20px;
}

/* CONTAINER */
.documents-container {
    max-width: 1200px;
    margin: 0 auto;
}

.w-100{
    width: 100%;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* WRAPPER */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* CARD */
.document-card {
    background: transparent;   /* removed white bg */
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: none;          /* removed shadow */
    transition: none;
}

/* FLEX */
.card-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* NUMBER */
.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;   /* removed number bg */
    color: #1e3a8a;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #1e3a8a;  /* optional clean outline look */
}

/* CONTENT */
.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 6px;
}

.card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: transparent;   /* removed highlight bg */
    padding: 18px;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

.highlight-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.highlight-box ul {
    padding-left: 18px;
}

.highlight-box li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .card-flex {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 16px;
    }
}
/* =========================================
   NO BACKGROUND VERSION (NEW CLASS)
========================================= */

.documents-no-bg {
    background: transparent !important;
}

.documents-no-bg .document-card {
    background: transparent !important;
    box-shadow: none !important;
}

.documents-no-bg .highlight-box {
    background: transparent !important;
}

.documents-no-bg .step-number {
    background: transparent !important;
    border: 2px solid #1e3a8a;
}



/* Cost for Name Change in Delhi Gazette */

/* SECTION */
.cost-section {
    background: #f9fafb;
    padding: 20px 20px;
    margin-top: 40px;
}

/* CONTAINER */
.cost-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADING */
.cost-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 25px;
}

/* TABLE WRAPPER */
.table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* TABLE */
.cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

/* HEADER */
.cost-table thead {
    background: #1e3a8a;
    color: #ffffff;
}

.cost-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
}

/* BODY */
.cost-table td {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    color: #444;
}

.cost-table tbody tr:hover {
    background: #f3f4f6;
    transition: 0.3s ease;
}

.item {
    font-weight: 600;
    color: #111827;
}

/* TOTAL ROW */
.total-row {
    background: #f1f5f9;
    font-weight: 700;
    color: #111827;
}

/* TIMELINE BOX */
.timeline-box {
    margin-top: 30px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 25px;
}

.timeline-box p {
    font-size: 15px;
    color: #1f2937;
    line-height: 1.7;
}

.timeline-title {
    font-weight: 700;
    color: #1e3a8a;
}

/* NOTE */
.cost-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cost-heading h3 {
        font-size: 22px;
    }

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

    .timeline-box {
        padding: 18px;
    }
}

/* How long does Delhi Gazette publication take */

/* SECTION */
.timeline-section {
    background: #f9fafb;
    padding: 70px 20px;
}

/* CONTAINER */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* INTRO */
.section-intro {
    margin-bottom: 25px;
}

.section-intro h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.section-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* CARD */
.timeline-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.timeline-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

/* LIST */
.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.arrow {
    color: #15803d;
    font-weight: bold;
}

/* FACTORS HEADING */
.factors-heading h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

/* TABLE */
.table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
}

.timeline-table thead {
    background: #1e3a8a;
    color: #ffffff;
}

.timeline-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.timeline-table td {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #444;
}

.timeline-table tbody tr:hover {
    background: #f3f4f6;
    transition: 0.3s ease;
}

/* NOTE BOX */
.note-box {
    background: #e0f2fe;
    border-left: 4px solid #1e3a8a;
    padding: 20px;
    border-radius: 8px;
}

.note-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-intro h3 {
        font-size: 22px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-table th,
    .timeline-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* faq section */

/* SECTION */
.faq-section {
    background: #f3f4f6;
    padding: 70px 20px;
}

/* CONTAINER */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADING */
.faq-heading {
    font-size: 30px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    border-bottom: 4px solid #3b82f6;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 50px;
}

/* WRAPPER */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* SUMMARY */
.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    list-style: none;
    cursor: pointer;
    position: relative;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s;
}

/* When open */
.faq-item[open] summary::after {
    content: "−";
}

/* ANSWER */
.faq-item p {
    margin-top: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 22px;
        text-align: left;
    }

    .faq-item {
        padding: 18px;
    }

    .faq-item summary {
        font-size: 16px;
    }
}


/* Online Name Change in Gazette Documents Required Start */
/* Section */
.documents-section {
  background-color: #f9fafb; /* gray-50 */
  padding: 60px 20px;
}

.documents-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.documents-header {
  text-align: center;
  margin-bottom: 40px;
}

.documents-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1e3a8a; /* blue-900 */
}

.documents-header p {
  margin-top: 10px;
  font-size: 15px;
  color: #4b5563; /* gray-600 */
}

/* Grid */
.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Card */
.document-card {
  background: #ffffff;
  border: 1px solid #e5e7eb; /* gray-200 */
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.document-card h4 {
  font-weight: 600;
  color: #111827; /* gray-900 */
  margin-bottom: 6px;
}

.document-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Icon Circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Icon Colors */
.blue { background: #dbeafe; color: #1d4ed8; }
.green { background: #d1fae5; color: #047857; }
.indigo { background: #e0e7ff; color: #4338ca; }
.orange { background: #ffedd5; color: #c2410c; }
.purple { background: #f3e8ff; color: #7e22ce; }
.teal { background: #ccfbf1; color: #0f766e; }
.red { background: #fee2e2; color: #b91c1c; }

/* Full width card */
.full-width {
  grid-column: 1 / -1;
}

/* Responsive */
@media (min-width: 768px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .documents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Online Name Change in Gazette Documents Required end */

/* What Does Gazette Name Change Mean in Delhi? Start */
/* Section */
.gazette-info-section {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Box */
.gazette-info-box {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Grid */
.gazette-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Heading */
.gazette-info-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a; /* blue-900 */
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

/* Icon Circle */
.heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dbeafe; /* blue-100 */
  color: #1e40af; /* blue-800 */
  font-weight: 700;
  font-size: 16px;
}

/* Text Content */
.gazette-info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #374151; /* gray-700 */
}

.bold-text {
  font-weight: 600;
  color: #111827;
}

/* Highlight Boxes */
.highlight-blue {
  background: #f9fafb;
  border-left: 4px solid #2563eb; /* blue-600 */
  padding: 10px 15px;
  border-radius: 6px;
}

.highlight-green {
  background: #f9fafb;
  border-left: 4px solid #16a34a; /* green-600 */
  padding: 10px 15px;
  border-radius: 6px;
}

/* Image */
.gazette-info-image {
  display: flex;
  justify-content: center;
}

.gazette-info-image img {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .gazette-info-grid {
    grid-template-columns: 7fr 3fr; /* 7/3 split */
  }

  .gazette-info-image {
    justify-content: flex-end;
  }
}

/* What Does Gazette Name Change Mean in Delhi? End */

/* 3 Step Name Change Process in Delhi Start */
/* Section */
.process-section {
  margin-top: 60px;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e3a8a; /* blue-900 */
}

.process-subtitle {
  font-size: 18px;
  color: #374151;
  margin-top: 12px;
  font-weight: 500;
}

.process-small {
  font-size: 14px;
  color: #6b7280;
  margin-top: 8px;
}

/* Card */
.process-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.process-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e40af; /* blue-800 */
  margin-bottom: 16px;
}

.process-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-top: 20px;
  margin-bottom: 10px;
}

.process-card p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Custom List */
.custom-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.custom-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
  color: #374151;
}

.custom-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #1e3a8a;
  font-weight: bold;
}

/* Highlight Box */
.highlight-box {
  background: #f9fafb;
  border-left: 4px solid #2563eb;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.important-box {
  background: #fefce8;
  border-left: 4px solid #eab308;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
}

.important-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.italic {
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .process-header h2 {
    font-size: 28px;
  }

  .process-card {
    padding: 20px;
  }
}

/* 3 Step Name Change Process in Delhi End */

/* Fees - Timeline for Delhi Start */
/* Section */
.fees-section {
  margin-top: 60px;
}

.fees-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.fees-header {
  text-align: center;
  margin-bottom: 40px;
}

.fees-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e3a8a; /* blue-900 */
}

.fees-subtitle {
  font-size: 18px;
  color: #374151;
  margin-top: 12px;
  font-weight: 500;
}

/* Fee Box */
.fees-box {
  background: #eff6ff; /* blue-50 */
  border: 1px solid #bfdbfe; /* blue-200 */
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
}

.fees-box p {
  color: #1f2937;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Table Wrapper */
.fees-table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Table */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 15px;
}

.fees-table thead {
  background: #1e3a8a; /* blue-900 */
  color: #ffffff;
}

.fees-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.fees-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

/* Stage Title */
.stage-title {
  font-weight: 600;
  color: #1e40af; /* blue-800 */
}

/* Hover Effect */
.fees-table tbody tr:hover {
  background: #f9fafb;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .fees-header h2 {
    font-size: 28px;
  }

  .fees-box {
    padding: 20px;
  }

  .fees-table {
    font-size: 14px;
  }
}

/* Fees - Timeline for Delhi End */

/* Updating Your Documents After Gazette Publication Start */
.update-section {
  padding: 40px 20px;
}

.update-container {
  max-width: 1280px;
  margin: 0 auto;
}

.update-header {
  text-align: center;
  margin-bottom: 60px;
}

.update-header h3 {
  font-size: 34px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.update-header p {
  font-size: 18px;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

.update-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

.update-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.update-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.card-flex {
  display: flex;
  gap: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Colors */
.blue { background: #dbeafe; color: #2563eb; }
.green { background: #dcfce7; color: #16a34a; }
.purple { background: #f3e8ff; color: #9333ea; }
.amber { background: #fef3c7; color: #d97706; }
.red { background: #fee2e2; color: #dc2626; }
.indigo { background: #e0e7ff; color: #4f46e5; }
.cyan { background: #cffafe; color: #0891b2; }
.teal { background: #ccfbf1; color: #0f766e; }

.card-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  color: #475569;
}

.detail-link {
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
}

.download-box {
  background: #1e3a8a;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .update-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Updating Your Documents After Gazette Publication End */

/* Gazette name change FAQs Start */
.faq-section {
  padding: 70px 20px;
  background: #f3f4f6;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  border-bottom: 4px solid #3b82f6;
  padding-bottom: 10px;
  display: inline-block;
  margin: 0 auto 50px auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-item summary {
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 25px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }
}

/* Gazette name change FAQs End */

.consult-btn {
  display: inline-block;
  background-color: #2c2f8f;   /* Dark Blue */
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.consult-btn:hover {
  background-color: #24276f;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.h-btn {
  display: inline-block;
  background-color: #2c2f8f;   /* Dark Blue */
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.h-btn:hover {
  background-color: #24276f;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}