/* JSM TRADER - MASTER STYLESHEET (COMPACT REFERENCE MATCH) */
:root {
    --navy: #0b2545;
    --navy-dark: #071e3d;
    --blue-card: #09346d;
    --orange: #ff7300;
    --orange-hover: #e66000;
    --bg-light: #f7f8fa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Caveat', 'Dancing Script', cursive;
    --radius: 6px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.35;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 4px 0;
}

.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.site-logo-img {
    height: 38px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    transition: transform 0.2s;
}

.header-gstin {
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.4px;
    margin-top: 2px;
    padding: 1px 5px;
    background: #f1f5f9;
    border-radius: 3px;
    border: 1px solid #dcebfa;
    display: inline-block;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.brand-logo:hover .site-logo-img {
    transform: scale(1.02);
}

.brand-logo:hover .header-gstin {
    background: #e2e8f0;
    color: var(--orange);
}

.footer-logo-img {
    height: 52px;
    max-width: 210px;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    padding: 3px 0;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link.active {
    color: var(--navy);
    font-weight: 700;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-quote {
    background: var(--orange);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(255, 115, 0, 0.25);
}

.btn-quote:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.35rem;
    color: var(--navy);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 30, 61, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background: #ffffff;
    z-index: 1999;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 16px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #64748b;
    cursor: pointer;
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    color: #334155;
}

.drawer-link:hover,
.drawer-link.active {
    background: #f1f5f9;
    color: var(--orange);
}

.drawer-cta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-contact-info p {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 4px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #031530 0%, #08295b 45%, #0f3d7c 100%);
    color: #ffffff;
    padding: 24px 0 26px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 115, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    align-items: center;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    max-width: 460px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: var(--orange);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-hero-primary:hover {
    background: var(--orange-hover);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 7px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
}

.hero-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-img-box {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.hero-cursive-badge {
    position: absolute;
    top: 10px;
    right: 14px;
    text-align: right;
    font-family: var(--font-script);
    color: #ffffff;
    line-height: 1.05;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    transform: rotate(-3deg);
}

.hero-cursive-badge .script-line-1 {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
}

.hero-cursive-badge .script-line-2 {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.hero-slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-slider-dots .dot.active {
    background: var(--orange);
    transform: scale(1.15);
}

/* Features Strip */
.features-strip {
    background: #f2f6fc;
    border-bottom: 1px solid var(--border);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 6px;
    border-right: 1px solid var(--border);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-title {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
    line-height: 1.15;
}

.feature-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}

/* Section Headings */
.section-heading-bar {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.accent-dash {
    display: inline-block;
    width: 18px;
    height: 3.5px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Products Section */
.products-section {
    padding: 16px 0 18px;
    background: #ffffff;
}

.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.view-all-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b4594;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.view-all-link:hover {
    color: var(--orange);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(7, 30, 61, 0.12);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    background: #f1f5f9;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-label-bar {
    background: var(--blue-card);
    color: #ffffff;
    text-align: center;
    padding: 6px 3px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Standalone About Section (Top-Down) */
.about-section {
    background-color: #eaf3fc;
    border-top: 1px solid #dcebfa;
    border-bottom: 1px solid #dcebfa;
    padding: 24px 0;
    margin-bottom: 12px;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: stretch;
}

.about-main-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #334155;
    margin: 8px 0 6px;
}

.about-subtext {
    font-size: 0.81rem;
    line-height: 1.45;
    color: #475569;
    margin-bottom: 12px;
}

.about-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: auto;
}

.about-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 10px 4px;
    border-radius: var(--radius);
    border: 1px solid #dcebfa;
    box-shadow: 0 1px 3px rgba(7, 30, 61, 0.04);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.about-feat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(7, 30, 61, 0.08);
    border-color: var(--orange);
}

.feat-icon-round {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaf3fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 4px;
    transition: all 0.2s;
}

.about-feat-item:hover .feat-icon-round {
    background: var(--orange);
    color: #ffffff;
}

.feat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
}

/* Managing Director Card */
.about-md-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid #dcebfa;
    box-shadow: 0 2px 8px rgba(7, 30, 61, 0.06);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.md-badge-pill {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 115, 0, 0.1);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.md-card-body {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.md-photo-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    background: #f8fafc;
}

.md-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.about-md-card:hover .md-photo {
    transform: scale(1.04);
}

.md-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.md-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
}

.md-designation {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 6px;
    display: block;
}

.md-quote {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #475569;
    font-style: italic;
    border-left: 2.5px solid var(--orange);
    padding-left: 8px;
    margin: 0;
}

/* Standalone Our Working Process Section (Top-Down) */
.process-section {
    background-color: #fef8ee;
    border-top: 1px solid #faebd0;
    border-bottom: 1px solid #faebd0;
    padding: 22px 0;
    margin-bottom: 12px;
}

.process-header-group {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.process-intro {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.process-steps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 14px 10px;
    border-radius: var(--radius);
    border: 1px solid #faebd0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 115, 0, 0.1);
    border-color: var(--orange);
}

.step-header {
    position: relative;
    display: inline-flex;
    margin-bottom: 8px;
}

.step-badge {
    position: absolute;
    top: -4px;
    left: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef8ee;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    border: 1px solid #fae1b8;
    transition: all 0.2s;
}

.step-card:hover .step-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
}

.step-title {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 3px;
}

.step-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.25;
}

.step-arrow {
    font-size: 1.2rem;
    color: #d1b180;
    font-weight: bold;
    flex-shrink: 0;
}

/* Single Unified Section: Our Vision & Trusted By (No space between them with gradient background) */
.vision-trusted-section {
    width: 100%;
    background: linear-gradient(135deg, #eaf3fc 0%, #f4f9fd 50%, #ebf4fb 100%);
    border-top: 1px solid #dcebfa;
    border-bottom: 1px solid #dcebfa;
    padding: 14px 24px;
    margin-bottom: 14px;
}

.vision-trusted-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.vision-block {
    display: flex;
    align-items: center;
}

.vision-content-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.vision-img-holder {
    flex-shrink: 0;
    width: 90px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.vision-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-text-holder {
    flex: 1;
}

.vision-quote {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.4;
    margin-top: 4px;
    font-style: italic;
}

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

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trusted-icon {
    font-size: 1.35rem;
    color: #0b2e63;
    margin-bottom: 4px;
    transition: transform 0.2s, color 0.2s;
}

.trusted-item:hover .trusted-icon {
    color: var(--orange);
    transform: translateY(-2px);
}

.trusted-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
}

/* Footer */
.site-footer {
    background: #061935;
    color: #ffffff;
    padding: 28px 0 0;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.95fr 1fr;
    gap: 24px;
    padding-bottom: 22px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 48px;
    max-width: 190px;
    object-fit: contain;
}

.footer-gstin {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 4px;
    font-size: 0.62rem;
}

.footer-tagline {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.45;
    margin-top: 8px;
    max-width: 240px;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 0.94rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

.footer-contact-list,
.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-contact-list li i {
    color: var(--orange);
    width: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    text-align: center;
    font-size: 0.88rem;
}

.footer-contact-list li a {
    color: #cbd5e1;
    transition: color 0.2s;
    word-break: break-word;
}

.footer-contact-list li a:hover {
    color: var(--orange);
}

.footer-contact-list li span {
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
}

.footer-nav-list li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #cbd5e1;
    transition: color 0.2s, transform 0.2s;
    padding: 1px 0;
}

.footer-nav-list li a i {
    font-size: 0.55rem;
    color: var(--orange);
    transition: transform 0.2s;
}

.footer-nav-list li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social-desc {
    font-size: 0.76rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 12px;
}

.social-links-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.social-btn.fb-btn {
    background: #1877f2;
}

.social-btn.insta-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.wa-btn {
    background: #25d366;
}

.social-btn.yt-btn {
    background: #ff0000;
}

.footer-bottom {
    background: #041226;
    padding: 12px 0;
    text-align: center;
    font-size: 0.74rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 25, 53, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

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

.modal-dialog {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(14px);
    transition: all 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    background: var(--navy);
    color: #ffffff;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
}

.modal-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-subtitle {
    font-size: 0.76rem;
    color: #cbd5e1;
    margin-top: 2px;
}

.modal-close-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
}

.modal-body {
    padding: 14px 16px;
    overflow-y: auto;
}

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

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: #1e293b;
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #ffffff;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 16px 14px;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.btn-secondary {
    background: #e2e8f0;
    color: #334155;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.btn-block {
    width: 100%;
}

.toast-notification {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: #064e3b;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    z-index: 3000;
    transform: translateY(70px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 400px;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

/* ===================================================
   RESPONSIVE MEDIA QUERIES
   =================================================== */

/* Tablet & Smaller Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .hero-container {
        gap: 18px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-img {
        height: 230px;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-item {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .feature-item:nth-child(3n) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }
}

/* Medium Tablets (max-width: 900px) */
@media (max-width: 900px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-trusted-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-header-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }
}

/* Mobile & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
        background: #f1f5f9;
        border-radius: var(--radius);
        color: var(--navy);
    }

    .header-container {
        min-height: 56px;
        padding: 4px 0;
    }

    .site-logo-img {
        height: 34px;
        max-width: 155px;
    }

    .header-gstin {
        font-size: 0.58rem;
        letter-spacing: 0.3px;
        padding: 1px 4px;
    }

    .btn-quote {
        padding: 6px 12px;
        font-size: 0.82rem;
    }

    /* Mobile Drawer */
    .mobile-drawer {
        width: 280px;
        max-width: 82vw;
        padding: 18px 16px;
    }

    .drawer-link {
        padding: 9px 12px;
        font-size: 0.9rem;
    }

    .drawer-contact-info p {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-bottom: 6px;
        align-items: flex-start;
        word-break: break-word;
    }

    .drawer-contact-info p i {
        margin-top: 2px;
        color: var(--orange);
        flex-shrink: 0;
    }

    /* Hero Section */
    .hero-section {
        padding: 18px 0 22px;
    }

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

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

    .hero-badge {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 6vw, 2.4rem);
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
        line-height: 1.3;
        margin-bottom: 8px;
        max-width: 520px;
    }

    .hero-desc {
        font-size: 0.84rem;
        line-height: 1.45;
        max-width: 480px;
        margin: 0 auto 14px;
    }

    .hero-cta-group {
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 380px;
    }

    .hero-img-box {
        max-width: 440px;
        margin: 0 auto;
    }

    .hero-img {
        height: 210px;
    }

    .hero-cursive-badge {
        top: 8px;
        right: 10px;
    }

    .hero-cursive-badge .script-line-1 {
        font-size: 1.3rem;
    }

    .hero-cursive-badge .script-line-2 {
        font-size: 1.45rem;
    }

    /* Section Headings */
    .section-heading-bar {
        font-size: 1.18rem;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .section-header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        gap: 8px;
    }

    .view-all-link {
        font-size: 0.82rem;
    }

    /* Features Strip */
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 10px 8px;
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .feature-icon {
        font-size: 1.4rem;
        margin-bottom: 3px;
    }

    .feature-title {
        font-size: 0.82rem;
    }

    .feature-desc {
        font-size: 0.68rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-label-bar {
        font-size: 0.76rem;
        min-height: 34px;
        padding: 5px 4px;
        line-height: 1.2;
    }

    /* About Section */
    .about-section {
        padding: 18px 0 20px;
    }

    .about-main-info {
        text-align: center;
        align-items: center;
    }

    .about-text {
        font-size: 0.82rem;
        line-height: 1.45;
        max-width: 540px;
        margin: 8px auto 6px;
    }

    .about-subtext {
        font-size: 0.78rem;
        line-height: 1.4;
        max-width: 520px;
        margin: 0 auto 12px;
    }

    .about-features-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 500px;
        margin: 10px auto 0;
    }

    .about-feat-item {
        padding: 8px 4px;
    }

    .feat-icon-round {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .feat-label {
        font-size: 0.68rem;
    }

    .about-md-card {
        max-width: 480px;
        margin: 0 auto;
        padding: 14px;
    }

    .md-badge-pill {
        align-self: center;
        font-size: 0.68rem;
    }

    .md-card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .md-photo-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .md-details {
        align-items: center;
        text-align: center;
    }

    .md-name {
        font-size: 1rem;
    }

    .md-designation {
        font-size: 0.72rem;
    }

    .md-quote {
        border-left: none;
        border-top: 2px solid rgba(255, 115, 0, 0.35);
        padding-left: 0;
        padding-top: 6px;
        text-align: center;
        font-size: 0.76rem;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Process Section */
    .process-section {
        padding: 18px 0 20px;
    }

    .process-intro {
        text-align: center;
        font-size: 0.78rem;
    }

    .process-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        width: 100%;
    }

    .step-card {
        width: 100%;
        max-width: 300px;
        padding: 12px 10px;
        margin: 0 auto;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 2px auto;
        font-size: 1rem;
    }

    .step-title {
        font-size: 0.8rem;
    }

    .step-desc {
        font-size: 0.7rem;
    }

    /* Vision & Trusted Section */
    .vision-trusted-section {
        padding: 16px 12px;
    }

    .vision-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vision-content-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        max-width: 460px;
        margin: 0 auto;
    }

    .vision-img-holder {
        width: 100px;
        height: 75px;
        margin: 0 auto;
    }

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

    .vision-text-holder .section-heading-bar {
        justify-content: center;
    }

    .vision-quote {
        text-align: center;
        font-size: 0.8rem;
        margin-top: 4px;
        max-width: 400px;
    }

    .trusted-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 12px;
        border-top: 1px solid #dcebfa;
    }

    .trusted-block .section-heading-bar {
        justify-content: center;
    }

    .trusted-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 460px;
        margin: 10px auto 0;
    }

    .trusted-icon {
        font-size: 1.25rem;
    }

    .trusted-label {
        font-size: 0.68rem;
    }

    /* Footer on Mobile */
    .site-footer {
        padding: 22px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        padding-bottom: 16px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .footer-col.brand-col,
    .footer-col.contact-col,
    .footer-col.quick-links-col {
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-logo {
        align-items: center;
        margin: 0 auto;
    }

    .footer-logo-img {
        height: 42px;
        max-width: 170px;
    }

    .footer-gstin {
        margin-top: 3px;
        font-size: 0.58rem;
    }

    .footer-tagline {
        text-align: center;
        margin: 6px auto 0;
        max-width: 320px;
        font-size: 0.74rem;
    }

    .footer-heading {
        font-size: 0.92rem;
        margin-bottom: 10px;
        display: inline-block;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 22px;
    }

    /* Contact List - Perfectly Padded, Non-overflowing */
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        padding: 0 8px;
        list-style: none;
    }

    .footer-contact-list li {
        display: inline-flex;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        gap: 8px;
        width: auto;
        max-width: 100%;
        font-size: 0.8rem;
        color: #cbd5e1;
        line-height: 1.4;
    }

    .footer-contact-list li i {
        color: var(--orange);
        font-size: 0.9rem;
        width: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        text-align: center;
    }

    .footer-contact-list li a {
        color: #cbd5e1;
        font-size: 0.8rem;
        word-break: break-all;
    }

    .footer-contact-list li span {
        flex: 0 1 auto;
        display: inline-block;
        max-width: calc(100% - 24px);
        word-break: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        font-size: 0.8rem;
        line-height: 1.42;
        text-align: left;
    }

    /* Quick Links */
    .footer-nav-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 12px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        list-style: none;
        text-align: left;
    }

    .footer-nav-list li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-nav-list li a {
        font-size: 0.78rem;
        white-space: nowrap;
        padding: 2px 0;
    }

    /* Follow Us */
    .footer-social-desc {
        font-size: 0.74rem;
        max-width: 300px;
        margin: 0 auto 10px;
        text-align: center;
    }

    .social-links-row {
        justify-content: center;
        gap: 12px;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 10px 8px;
        font-size: 0.72rem;
        line-height: 1.4;
    }

    /* Modals on Mobile */
    .modal-overlay {
        padding: 10px;
        align-items: center;
    }

    .modal-dialog {
        max-width: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    .modal-header {
        padding: 10px 14px;
        flex-shrink: 0;
    }

    .modal-title {
        font-size: 1.05rem;
    }

    .modal-body {
        padding: 12px 14px;
        overflow-y: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents auto-zoom in mobile Safari */
        padding: 8px 10px;
    }

    .modal-footer {
        padding: 8px 14px 12px;
        flex-shrink: 0;
    }

    .toast-notification {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        max-width: 380px;
        margin: 0 auto;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
    }
}

/* Small Screen Phones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .site-logo-img {
        height: 30px;
        max-width: 135px;
    }

    .header-gstin {
        font-size: 0.54rem;
        padding: 1px 3px;
    }

    .header-actions {
        gap: 6px;
    }

    .btn-quote {
        padding: 5px 9px;
        font-size: 0.76rem;
    }

    .mobile-menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 1.15rem;
    }

    /* Hero */
    .hero-section {
        padding: 16px 0 20px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-desc {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 7px 14px;
        font-size: 0.84rem;
    }

    .hero-img {
        height: 175px;
    }

    .hero-cursive-badge .script-line-1 {
        font-size: 1.15rem;
    }

    .hero-cursive-badge .script-line-2 {
        font-size: 1.3rem;
    }

    /* Section Header */
    .section-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .section-heading-bar {
        font-size: 1.1rem;
        justify-content: center;
    }

    .view-all-link {
        font-size: 0.78rem;
    }

    /* Features */
    .feature-item {
        padding: 8px 4px;
    }

    .feature-icon {
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 0.76rem;
    }

    .feature-desc {
        font-size: 0.64rem;
    }

    /* Products */
    .products-grid {
        gap: 8px;
    }

    .product-label-bar {
        font-size: 0.72rem;
        min-height: 32px;
        padding: 4px 2px;
    }

    /* About */
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
        gap: 8px;
    }

    .about-md-card {
        padding: 12px 10px;
    }

    .md-photo-wrapper {
        width: 85px;
        height: 85px;
    }

    .md-name {
        font-size: 0.92rem;
    }

    .md-quote {
        font-size: 0.72rem;
    }

    /* Process */
    .step-card {
        max-width: 260px;
        padding: 10px 8px;
    }

    /* Vision & Trusted */
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
        gap: 10px;
    }

    /* Footer */
    .footer-container {
        gap: 16px;
    }

    .footer-contact-list {
        max-width: 100%;
        gap: 8px;
        padding: 0 4px;
    }

    .footer-contact-list li {
        font-size: 0.76rem;
    }

    .footer-contact-list li a,
    .footer-contact-list li span {
        font-size: 0.76rem;
        text-align: left;
    }

    .footer-nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
        max-width: 270px;
        margin: 0 auto;
    }

    .footer-nav-list li a {
        font-size: 0.76rem;
        white-space: normal;
    }

    .social-btn {
        width: 34px;
        height: 34px;
        font-size: 0.92rem;
    }

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

/* Extra Small Screen Phones (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .site-logo-img {
        height: 27px;
        max-width: 120px;
    }

    .header-gstin {
        font-size: 0.5rem;
        padding: 0 2px;
    }

    .btn-quote span {
        display: none;
    }

    .btn-quote {
        padding: 6px 9px;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 8px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .footer-contact-list li a,
    .footer-contact-list li span {
        font-size: 0.72rem;
    }

    .footer-nav-list {
        max-width: 230px;
        gap: 6px 10px;
    }

    .footer-nav-list li a {
        font-size: 0.72rem;
    }

    .social-links-row {
        gap: 8px;
    }

    .social-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}