/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    background: #f5f7fb;
    color: #1b2430;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: #f8f8f8;
    color: black;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.logo span {
    color: #4f46e5;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #4f46e5;
    color: #ffffff;
    opacity: 1;
}

/* Slider wrapper */
.slider {
    position: relative;
    height: 70vh;
    min-height: 380px;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

/* Dark overlay on top of images */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,23,42,0.25), rgba(15,23,42,0.8));
    z-index: 0;              /* behind slides and text */
    pointer-events: none;    /* does not block clicks */
}

/* Slides with background images */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
    opacity: 0;
    animation: sliderFade 18s infinite;
}

/* your images */
.slide1 {
    background-image: url("b1.jpg");
    animation-delay: 0s;
}

.slide2 {
    background-image: url("b2.jpg");
    animation-delay: 6s;
}

.slide3 {
    background-image: url("b3.jpg");
    animation-delay: 12s;
}

/* fade + slight zoom animation */
@keyframes sliderFade {
    0%   { opacity: 0; transform: scale(1.03); }
    5%   { opacity: 1; transform: scale(1); }
    30%  { opacity: 1; transform: scale(1.02); }
    35%  { opacity: 0; transform: scale(1.03); }
    100% { opacity: 0; transform: scale(1.03); }
}

/* Text container on top of slide */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.65);   /* dark glass behind text */
    backdrop-filter: blur(4px);
}

/* make text brighter and bolder */
.slide-content h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 18px;
    opacity: 0.96;
    font-weight: 500;
    color: #e5e7eb;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

/* responsive height tweak */
@media (max-width: 768px) {
    .slider {
        height: 60vh;
        min-height: 320px;
    }

    .slide-content {
        max-width: 100%;
        padding: 18px 18px;
    }
}


.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.55);
}

.btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(229, 231, 235, 0.8);
    margin-left: 8px;
}

.btn-secondary:hover {
    background: #e5e7eb;
    color: #111827;
}

/* Intro section on home */
.intro {
    padding: 50px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.intro-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.intro-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Page banner */
.page-banner {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #111827, #020617);
    color: #e5e7eb;
    text-align: left;
}

.page-banner h1 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

/* Page sections */
.page-section {
    padding: 40px 0 60px;
}

/* About layout */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 30px;
}

.page-section h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-section p {
    margin-bottom: 12px;
}

.list {
    list-style: disc;
    padding-left: 18px;
}

.list li {
    margin-bottom: 6px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Contact layout */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
}

.contact-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font: inherit;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.3);
    background: #ffffff;
}

/* Footer */
.site-footer {
    background: #020617;
    color: #e5e7eb;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 28px 0;
    font-size: 0.92rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 10px 0 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .slider {
        height: 60vh;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        max-width: 100%;
    }
}




/* Product Range Section */
.product-range-section {
    padding: 60px 0;
    background: radial-gradient(circle at top, #0b1220, #020617);
    color: #e5e7eb;
}

.pr-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 32px auto;
}

.pr-header h2 {
    font-size: 1.9rem;
    margin-bottom: 8px;
}

.pr-header p {
    font-size: 0.98rem;
    opacity: 0.9;
}

/* Grid of cards */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Individual card */
.pr-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 0.96));
    border-radius: 18px;
    padding: 18px 18px 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.5);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border 0.18s ease;
}

.pr-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.6), transparent 60%);
    opacity: 0.7;
}

.pr-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.pr-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hover effect */
.pr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.9);
}

/* Responsive design */
@media (max-width: 992px) {
    .pr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pr-grid {
        grid-template-columns: 1fr;
    }

    .product-range-section {
        padding: 45px 0;
    }
}
/* Light Theme – Product Range Section */
.product-range-light {
    padding: 60px 0;
    background: #f4f7fb;
    color: #1d2533;
}

.prl-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.prl-header h2 {
    font-size: 3rem;
    color: #01497c;
    letter-spacing: 0.5rem;
}

.prl-header p {
    font-size: 1rem;
    color: #03045e;
    opacity: 0.9;
    margin-top: 6px;
}

/* Grid Structure */
.prl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Card Styles */
.prl-card {
    background: #014f86;
    border-radius: 14px;
    ;
    padding: 20px 22px;
    border: 1px solid #e7ecef;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.prl-card h3 {
    font-size: 1.05rem;
    color: #f4d35e;
    margin-bottom: 8px;
}

.prl-card p {
    font-size: 0.9rem;
    color: #bbdefb;
}

/* Hover Effects */
.prl-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 28px rgba(96, 165, 250, 0.25);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
    .prl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .prl-grid {
        grid-template-columns: 1fr;
    }

    .product-range-light {
        padding: 45px 0;
    }
}
/* Channel Partner Banks – Light + Blue Premium Theme */
.partners-light {
    padding: 60px 0;
    background: #f0f6ff; /* light blue background */
    color: #1e293b;
}

.pl-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px auto;
}

.pl-header h2 {
    font-size: 1.9rem;
    color: #0f172a;
}

.pl-header p {
    font-size: 1rem;
    color: #475569;
    opacity: 0.9;
    margin-top: 6px;
}

/* Highlight Pill */
.pl-highlight {
    text-align: center;
    margin-bottom: 28px;
}

.pl-pill {
    display: inline-block;
    padding: 10px 20px;
    background: #dbeafe; /* soft blue */
    color: #1e40af; 
    border: 1px solid #93c5fd;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Grid for bank cards */
.pl-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

/* Individual card */
.pl-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.pl-card span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

/* Hover effect */
.pl-card:hover {
    border-color: #60a5fa;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.35);
    transform: translateY(-4px);
    background: #f8fbff;
}

/* Responsive */
@media (max-width: 992px) {
    .pl-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-light {
        padding: 45px 0;
    }
}
/* Channel Partner Banks – Light + Blue Premium Theme */
.partners-light {
    padding: 60px 0;
    background: #f0f6ff; /* light blue background */
    color: #1e293b;
}

.pl-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px auto;
}

.pl-header h2 {
    font-size: 1.9rem;
    color: #0f172a;
}

.pl-header p {
    font-size: 1rem;
    color: #475569;
    opacity: 0.9;
    margin-top: 6px;
}

/* Highlight Pill */
.pl-highlight {
    text-align: center;
    margin-bottom: 28px;
}

.pl-pill {
    display: inline-block;
    padding: 10px 20px;
    background: #dbeafe; /* soft blue */
    color: #1e40af; 
    border: 1px solid #93c5fd;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Grid for bank cards */
.pl-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

/* Individual card */
.pl-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.pl-card span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

/* Hover effect */
.pl-card:hover {
    border-color: #60a5fa;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.35);
    transform: translateY(-4px);
    background: #f8fbff;
}

/* Responsive */
@media (max-width: 992px) {
    .pl-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-light {
        padding: 45px 0;
    }
}



/* Non Banking Finance Company section styled like screenshot */
.nbfc-section {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #07408f, #0b61c1);
    color: #ffffff;
}

.nbfc-heading {
    max-width: 780px;
    margin: 0 auto 30px auto;
}

.nbfc-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.nbfc-heading p {
    font-size: 0.98rem;
    opacity: 0.9;
}

/* Block wrapper */
.nbfc-block {
    margin-top: 26px;
    background: rgba(15, 23, 42, 0.14);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
    padding: 14px 18px 18px;
    backdrop-filter: blur(6px);
}

/* Block header bar */
.nbfc-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px 10px;
    margin-bottom: 14px;
}

.nbfc-block-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    font-weight: 700;
}

.nbfc-block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #facc15;
    font-size: 0.9rem;
}

.nbfc-block-count span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f59e0b;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.55);
}

/* Grid for partner cards */
.nbfc-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

/* Partner card */
.nbfc-card {
    background: #efcb68;
    color: #111827;
   
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
    border: 1px solid #e5e7eb;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border 0.15s ease;
    cursor: default;
}

/* Hover effect similar to UI in screenshot */
.nbfc-card:hover {
    transform: translateY(-3px);
    background: #f9fafb;
    border-color: #0ea5e9;
    box-shadow: 0 14px 32px rgba(14, 165, 233, 0.4);
}

/* Responsive behaviour */
@media (max-width: 992px) {
    .nbfc-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nbfc-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nbfc-section {
        padding: 45px 0 55px;
    }
}

@media (max-width: 520px) {
    .nbfc-card-grid {
        grid-template-columns: 1fr;
    }

    .nbfc-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nbfc-block-count span {
        align-self: flex-end;
    }
}



/* About Company section */
.about-section {
    padding: 70px 0 60px;
    background: radial-gradient(circle at top left, #eef2ff, #f9fafb);
    color: #0f172a;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 36px;
    align-items: flex-start;
}

/* Main text */
.about-title {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.about-lead {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
}

.about-block {
    margin-top: 18px;
    padding: 16px 18px 18px;
    border-radius: 16px;
    background: #124e78;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.about-block h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #e3f2fd;
}

.about-block p {
    font-size: 0.95rem;
    color: #e3f2fd;
}

.about-list {
    margin-top: 8px;
    padding-left: 18px;
    font-size: 0.95rem;
    color: #e3f2fd;
}

.about-list li {
    margin-bottom: 6px;
}

/* Right panel */
.about-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Industry pill */
.about-pill {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: #dbeafe;
    border: 1px solid #60a5fa;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Info cards grid */
.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-card {
    background: #124e78;
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.about-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    margin-bottom: 2px;
}

.about-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Address block */
.about-address {
    background: #eff6ff;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #bfdbfe;
}

.about-address h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #1d4ed8;
}

.about-address p {
    font-size: 0.88rem;
    color: #1f2937;
}

/* Stats */
.about-stats {
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #e5e7eb;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
}

.about-stat-number {
    font-size: 1.6rem;
    font-weight: 700;
}

.about-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 55px 0 50px;
    }
}

@media (max-width: 600px) {
    .about-card-grid {
        grid-template-columns: 1fr;
    }
}
/* Contact page hero */
.contact-hero {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #e5e7eb;
    padding: 60px 0 40px;
}

.contact-hero-content {
    max-width: 720px;
}

.contact-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-hero-content p {
    font-size: 0.98rem;
    opacity: 0.9;
}

.contact-hero-badges {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ch-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: #facc15;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(250, 204, 21, 0.45);
}

.ch-badge-soft {
    background: rgba(15, 23, 42, 0.2);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: none;
}

/* Main contact area */
.contact-section {
    padding: 40px 0 60px;
    background: #f4f7fb;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 26px;
}

/* Form card */
.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.contact-card-header h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.contact-card-header p {
    font-size: 0.9rem;
    color: #64748b;
}

/* New form layout */
.contact-form-new {
    margin-top: 14px;
}

.contact-form-new .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-form-new .form-group {
    margin-bottom: 12px;
}

.contact-form-new label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #4b5563;
}

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 9px 11px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font: inherit;
    background: #f9fafb;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.3);
    background: #ffffff;
}

/* Option chips */
.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-chip {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.15s ease, border 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.option-chip:hover {
    background: #e0f2fe;
    border-color: #38bdf8;
    color: #0f172a;
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.35);
}

/* Form footer */
.form-footer {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.form-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
}

.form-note .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

/* Right side cards */
.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-card {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 16px;
    padding: 16px 16px 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.6);
}

.contact-info-card.light {
    background: #e0f2fe;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(148, 163, 184, 0.35);
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.mini-text {
    font-size: 0.8rem;
    color: #475569;
}

.contact-info-line {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
}

.info-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Quick actions */
.contact-quick-actions h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.qa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qa-btn {
    flex: 1;
    padding: 8px 10px;
    border-radius: 999px;
    border: none;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.qa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.65);
}

.qa-btn-outline {
    background: #ffffff;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    box-shadow: 0 8px 18px rgba(148, 163, 184, 0.4);
}

.qa-btn-outline:hover {
    background: #dbeafe;
}

/* Responsive for contact page */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding-bottom: 50px;
    }
}

@media (max-width: 640px) {
    .contact-form-new .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-hero {
        padding: 45px 0 30px;
    }
}


/* Intro section background */
.intro {
    padding: 60px 0;
    background: #020617;
}

/* Grid for cards */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* Base card style inspired by dashboard look */
.intro-card {
    border-radius: 24px;
    padding: 16px 16px 18px;
    color: #0f172a;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Different card colors */
.intro-yellow {
    background: #fde68a;
}

.intro-orange {
    background: #fed7aa;
}

.intro-blue {
    background: #bfdbfe;
}

/* Top row with icon and small tag */
.intro-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.intro-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.1);
    font-size: 1.1rem;
}

.intro-tag {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.16);
}

/* Main text */
.intro-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.intro-card p {
    font-size: 0.9rem;
    color: #111827;
    opacity: 0.9;
}

/* Bottom meta row */
.intro-meta {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.intro-label {
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.intro-value {
    font-weight: 600;
}

/* Hover effect */
.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.7);
}

/* Responsive */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
}
/* Footer - improved UI */
.site-footer {
    background: radial-gradient(circle at top left, #020617, #020617 45%, #020617);
    color: #e5e7eb;
    margin-top: 50px;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 32px 0 26px;
    font-size: 0.94rem;
}

/* Brand block in first column */
.site-footer .footer-brand {
    max-width: 320px;
}

.site-footer .footer-brand-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.site-footer .footer-brand-text {
    color: #9ca3af;
    font-size: 0.88rem;
    margin-top: 4px;
}

/* Column titles */
.site-footer h4 {
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* Links list */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    font-size: 0.9rem;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #4f46e5, #38bdf8);
    transition: width 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(2px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Subtle icon circle if you use icons in links */
.footer-link-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Social row (optional) */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: background 0.2s ease, border 0.2s ease, transform 0.15s ease, opacity 0.15s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #4f46e5, #38bdf8);
    border-color: transparent;
    opacity: 1;
    transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
    padding: 10px 0 16px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-bottom span {
    opacity: 0.85;
}

.footer-bottom a {
    font-size: 0.8rem;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.footer-bottom a:hover {
    opacity: 1;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

