/* -------------------------------------------------------------------------- */
/* Design Tokens & CSS Variables                                              */
/* -------------------------------------------------------------------------- */
:root {
    --primary-dark: #1A365D;      /* Deep Navy Blue */
    --primary: #2B6CB0;           /* Steel Blue */
    --primary-light: #EBF8FF;     /* Soft Blue Tint */
    --accent-gold: #D69E2E;       /* Warm Gold */
    --accent-gold-light: #FEFCBF; /* Gold Tint */
    --accent-green: #28A745;      /* Success Green */
    --accent-red: #E53E3E;        /* Alert Red */
    
    --text-main: #2D3748;         /* Charcoal Gray */
    --text-muted: #718096;        /* Slate Muted */
    --text-dark: #1A202C;         /* Near Black */
    
    --bg-body: #F7FAFC;           /* Clean Off-white */
    --bg-surface: #FFFFFF;        /* Pure White */
    --bg-alt: #EDF2F7;            /* Cool Light Gray */
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(26, 54, 93, 0.08);
    --shadow-lg: 0 10px 25px rgba(26, 54, 93, 0.12);
    --shadow-gold: 0 8px 20px rgba(214, 158, 46, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------------------- */
/* Reset & Base Styles                                                        */
/* -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.25;
    font-weight: 700;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Section Common Layouts */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 600;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 10px auto 0;
}

/* -------------------------------------------------------------------------- */
/* Buttons & UI Controls                                                      */
/* -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #102A43 0%, #1F518B 100%);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    margin-top: 15px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* -------------------------------------------------------------------------- */
/* Header & Navigation                                                        */
/* -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary-dark);
    letter-spacing: 0.5px;

}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-dark);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    padding: 8px 14px;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
}

.phone-link:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
}

/* -------------------------------------------------------------------------- */
/* Hero Section                                                               */
/* -------------------------------------------------------------------------- */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #102A43 0%, #1A365D 60%, #2B6CB0 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(214, 158, 46, 0.08);
    filter: blur(80px);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 45px;
}

.hero-cta-group .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.hero-cta-group .btn-outline:hover {
    background: #FFFFFF;
    color: var(--primary-dark);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: #CBD5E0;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-img {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(26, 54, 93, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-badge .dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

/* -------------------------------------------------------------------------- */
/* Philosophy Section                                                         */
/* -------------------------------------------------------------------------- */
.philosophy-section {
    background-color: var(--bg-surface);
}

.philosophy-card-main {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-alt);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.philosophy-visual-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 24px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.visual-item {
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.item-safety {
    background: var(--primary-light);
    border: 1px solid rgba(43, 108, 176, 0.2);
}

.item-growth {
    background: var(--accent-gold-light);
    border: 1px solid rgba(214, 158, 46, 0.3);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.shadow-blue {
    box-shadow: 0 4px 14px rgba(43, 108, 176, 0.2);
}

.shadow-gold {
    box-shadow: 0 4px 14px rgba(214, 158, 46, 0.3);
}

.visual-item h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.visual-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vs-divider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #FFFFFF;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.philosophy-quote {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--bg-alt);
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.point-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-info h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

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

/* -------------------------------------------------------------------------- */
/* Service Focus Areas                                                        */
/* -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.service-subtext {
    font-size: 0.88rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-bullets {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.service-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

/* -------------------------------------------------------------------------- */
/* About Us Section                                                           */
/* -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--bg-surface);
}

.about-card-wrapper {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 45px;
    align-items: center;
}

.profile-image-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
}

.profile-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
}

.profile-title-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(26, 54, 93, 0.95) 0%, rgba(26, 54, 93, 0) 100%);
    color: #FFFFFF;
}

.profile-title-tag h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
}

.profile-title-tag p {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    gap: 16px;
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.detail-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.detail-text span {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.msme-badge-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--accent-gold-light);
    border: 1px solid rgba(214, 158, 46, 0.4);
    border-radius: var(--radius-md);
}

.msme-badge-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    flex-shrink: 0;
}

.msme-badge-text h4 {
    color: #744210;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.msme-badge-text p {
    font-size: 0.88rem;
    color: #975A16;
}

/* -------------------------------------------------------------------------- */
/* Website Disclaimer Card                                                    */
/* -------------------------------------------------------------------------- */
.site-disclaimer-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 108, 176, 0.2);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 45px;
    box-shadow: var(--shadow-sm);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.disclaimer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.disclaimer-text {
    font-size: 0.93rem;
    color: var(--text-main);
    line-height: 1.65;
    text-align: justify;
}

/* -------------------------------------------------------------------------- */
/* Operational Ethics Grid                                                    */
/* -------------------------------------------------------------------------- */
.ethics-section {
    background-color: var(--bg-body);
}

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ethic-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--bg-alt);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ethic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.ethic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ethic-card h4 {
    font-size: 1.02rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.ethic-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* -------------------------------------------------------------------------- */
/* Terminology & Timelines Section                                            */
/* -------------------------------------------------------------------------- */
.terminology-section {
    background-color: var(--bg-surface);
}

.terminology-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    background: var(--bg-body);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.term-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid var(--bg-alt);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.accordion-btn.active {
    background: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.accordion-btn.active svg {
    transform: rotate(90deg);
}

.timeline-display-card {
    display: none;
    background: #FFFFFF;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-alt);
}

.timeline-display-card.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.display-card-title {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.display-card-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Timeline Stepper */
.timeline-stepper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-alt);
}

.highlight-step {
    border-color: var(--accent-gold);
    background: var(--accent-gold-light);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-tag {
    display: inline-block;
    padding: 2px 10px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.tag-gold {
    background: #FEFCBF;
    color: #744210;
}

.tag-green {
    background: #C6F6D5;
    color: #22543D;
}

.tag-red {
    background: #FED7D7;
    color: #742A2A;
}

.step-connector {
    width: 2px;
    height: 16px;
    background: var(--bg-alt);
    margin-left: 43px;
}

.advisor-disclaimer-callout {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--accent-gold-light);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: #744210;
    margin-top: 20px;
}

.term-info-box {
    background: var(--bg-body);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* Contact & Locations                                                        */
/* -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--bg-body);
}

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

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

.location-card {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-alt);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.loc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.loc-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.direct-call-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}

.call-icon-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px rgba(214, 158, 46, 0.3);
}

.call-text span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold-light);
    display: block;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    margin: 2px 0;
}

.phone-number:hover {
    color: var(--accent-gold);
}

.call-text p {
    font-size: 0.88rem;
    color: #CBD5E0;
}

/* Consultation Form Card */
.consultation-form-card {
    background: var(--bg-surface);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-alt);
}

.consultation-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.consultation-form-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid #CBD5E0;
    border-radius: var(--radius-sm);
    background-color: var(--bg-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
}

.form-success-alert {
    padding: 14px 18px;
    background-color: #C6F6D5;
    color: #22543D;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hidden {
    display: none !important;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--primary-dark);
    color: #E2E8F0;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

.footer-brand-tag {
    font-size: 0.8rem;
    color: #A0AEC0;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: #CBD5E0;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #A0AEC0;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.footer-grievance-box {
    margin-bottom: 30px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(214, 158, 46, 0.4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #E2E8F0;
}

.irdai-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
    word-break: break-all;
    transition: var(--transition);
}

.irdai-link:hover {
    color: #FFFFFF;
}

.irdai-inline-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    word-break: break-all;
}

.irdai-inline-link:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
}

/* -------------------------------------------------------------------------- */
/* Hit Counter / Visitor Counter                                             */
/* -------------------------------------------------------------------------- */
.hit-counter-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.hit-counter-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(214, 158, 46, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hit-counter-box:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 6px 25px rgba(214, 158, 46, 0.25);
    transform: translateY(-2px);
}

.hit-counter-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(214, 158, 46, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hit-counter-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hit-counter-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #A0AEC0;
    text-transform: uppercase;
}

.hit-counter-digits {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: var(--font-heading), 'Outfit', monospace;
}

.digit {
    background: rgba(15, 23, 42, 0.85);
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 2px 7px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 23px;
    text-align: center;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, color 0.2s ease;
}

.digit.comma {
    background: transparent;
    border: none;
    padding: 0 1px;
    color: #A0AEC0;
    min-width: auto;
    box-shadow: none;
}

.hit-counter-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(72, 187, 120, 0.15);
    border: 1px solid rgba(72, 187, 120, 0.4);
    color: #48BB78;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #48BB78;
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(72, 187, 120, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}

/* -------------------------------------------------------------------------- */
/* Modals                                                                     */
/* -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 42, 67, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-service-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* Responsive Media Queries                                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .ethics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .ethics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .terminology-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .location-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ethics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .phone-link span {
        display: none;
    }
}
