﻿html, body {
    width: 100%;
    overflow-x: hidden; /* 🔥 horizontal scroll बंद */
}

:root {
    --primary: #1e40af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;
}

body {
    background: #ffffff;
    color: #111827;
    line-height: 1.7;
}

/* ================= HEADER ================= */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent; /* normal background */
    /* backdrop-filter:blur(6px); */
    border-bottom: 0px solid #e5e7eb;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

    /* Transparent only on hero */
    .header.transparent {
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
    }

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-top {
    font-size: 14px;
    font-weight: 600;
    color: white; /* saffron touch */
}

.logo-bottom {
    font-size: 16px;
    font-weight: 700;
    /* color:#f97316; */
    color: white;
}


/* .logo{
  font-weight:600;
  font-size:17px;
  color:white;
} */

nav {
    display: flex;
    gap: 30px;
}

    nav a {
        text-decoration: none;
        /* color:#374151; */
        color: white;
        font-size: 15px;
        font-weight: 900;
    }

        nav a:hover {
            color: white;
        }

/* Mobile menu button */
.menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

/* ================= HERO ================= */
.hero {
    min-height: 85vh;
    background: linear-gradient(to right, rgb(0 0 0), rgb(255 255 255 / 1%)), url(/Assets/Images/RAOBG.png) center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-content {
    max-width: 560px;
    animation: fadeUp .9s ease;
}

.hero-tag {
    font-size: 15px;
    font-weight: 900;
    /* letter-spacing:1px; */
    /* color:var(--primary); */
    color: White;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 50px;
    font-weight: 800;
    color: white;
}

.hero p {
    margin: 22px 0 32px;
    font-weight: 700;
    color: white;
}

/* ================= BUTTON ================= */
.btn-primary {
    padding: 14px 32px;
    background: #FF7350;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

    .btn-primary:hover {
        background: #1e3a8a;
    }

/* ================= SECTION ================= */
.section {
    padding: 50px 80px;
}

    .section h2 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
    }

.section-sub {
    text-align: center;
    margin-top: 12px;
    color: #6b7280;
}

/* ================= STAFF (UNCHANGED) ================= */
/* ================= STAFF SECTION (CORPORATE) ================= */
/* ================= GRAMPANCHAYAT SECTION ================= */

.gp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.gp-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
}

.gp-content .section-sub {
    text-align: left;
    margin: 14px 0 22px;
    color: #6b7280;
}

.gp-text {
    font-size: 18px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 600; /* 🔥 800 → 600 */
}

/* MOBILE FIX */
@media(max-width:768px) {
    .gp-text {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.7;
    }
}


/* RIGHT IMAGE */
.gp-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    /* background:var(--primary); */
    background: #00296b;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
    .gp-container {
        grid-template-columns: 1fr;
    }

    .gp-image {
        order: -1;
    }
}


/* ================= FORM ================= */
/* ================= SPLIT SECTION ================= */
.split-section {
    padding: 100px 80px;
    display: flex;
    align-items: center;
    gap: 70px;
}

    /* Reverse */
    .split-section.reverse {
        flex-direction: row-reverse;
    }

/* ================= FORM ================= */
.form-wrapper {
    width: 100%;
    max-width: 520px;
}

/* Card */
.form-card-layer {
    background: #ffffff;
    padding: 42px 38px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-top: 6px solid var(--primary);
}

/* Right accent */
.right-accent {
    border-top: none;
    border-right: 6px solid var(--primary);
}

/* Headings */
.form-card-layer h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.form-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 26px;
}

/* Inputs */
.form-card-layer input {
    width: 100%;
    padding: 14px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: all .25s ease;
}

    .form-card-layer input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    }

/* Button */
.full-btn {
    width: 100%;
    margin-top: 10px;
}

/* ================= IMAGE ================= */
.image-box img,
.image-box2 img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
    .split-section {
        flex-direction: column;
        padding: 70px 30px;
        gap: 40px;
    }

    .image-box img,
    .image-box2 img {
        max-width: 100%;
    }
}

.section-bg {
    position: relative;
    background: linear-gradient( rgba(255,255,255,0.92), rgba(255,255,255,0.92) ), url("/Assets/Images/bgnd.jpg") center / cover no-repeat;
}

/* Optional darker overlay for better contrast */
@media (max-width: 768px) {
    .section-bg {
        background: linear-gradient( rgba(255,255,255,0.96), rgba(255,255,255,0.96) ), url("form-bg.jpg") center / cover no-repeat;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 28px;
    font-size: 13px;
}

.image-box img {
    width: 50%;
    border-radius: 18px;
    margin-left: 50%;
}

.image-box2 img {
    width: 80%;
    border-radius: 18px;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {

    .header {
        padding: 15px 30px;
    }

    nav {
        position: absolute;
        top: 65px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-left: 1px solid #e5e7eb;
        display: none;
    }

        nav.show {
            display: flex;
        }

    .menu-btn {
        display: block;
    }

    .hero,
    .section,
    .split-section {
        padding: 60px 30px;
    }

        .hero h1 {
            font-size: 34px;
        }

    .split-section {
        flex-direction: column;
    }

    .form-wrapper {
        width: 100%;
    }
}
/* ================= CORPORATE WELCOME POPUP ================= */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17,24,39,0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}

    /* SHOW */
    .welcome-popup.show {
        opacity: 1;
        visibility: visible;
    }

/* CARD */
.welcome-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}

/* IMAGE */
.welcome-img {
    width: 90px;
    margin-bottom: 14px;
    align-items: center;
}

/* BADGE */
.welcome-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #f97316;
    background: #fff7ed;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

/* TEXT */
.welcome-card h2 {
    font-size: 15px;
    color: #6b7280;
}

.welcome-card h1 {
    font-size: 22px;
    color: #ea580c;
    margin: 6px 0;
}

.welcome-card h3 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 14px;
}

.wish-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

/* ENTRY ANIMATION */
.animate-in {
    animation: zoomSlide .8s ease forwards;
}

@keyframes zoomSlide {
    from {
        transform: translateY(40px) scale(.9);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

/* MOBILE */
@media(max-width:480px) {
    .welcome-card {
        max-width: 92%;
    }
}
/* ================= COMPANY INFO SECTION ================= */
.company-info-section {
    padding: 90px 80px;
    background: #f9fafb;
    text-align: center;
}

    .company-info-section h2 {
        font-size: 32px;
        font-weight: 600;
        color: #111827;
    }

    .company-info-section .section-sub {
        margin-top: 10px;
        color: #6b7280;
    }

/* Grid */
.info-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 35px;
}

/* Card */
.info-card {
    background: #ffffff;
    padding: 36px 26px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all .35s ease;
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,0.12);
    }

/* Icon */
/* ================= COMPANY INFO IMAGE FIX ================= */
.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 16px;
}

    /* Image inside icon */
    .info-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }


/* Title */
.info-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

/* Text */
.info-card p {
    font-size: 14px;
    color: #4b5563;
}

.info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

@media(max-width:480px) {
    .info-icon {
        width: 60px;
        height: 60px;
    }
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
    .company-info-section {
        padding: 70px 30px;
    }
}

.tricolor-ribbon {
    height: 6px;
    width: 100%;
    background: linear-gradient( to right, #00296b 0%, #00296b 33%, #ffffff 33%, #ffffff 66%, #00296b 66%, #00296b 100% );
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.marquee-wrapper {
    width: 100%;
    background: #0f172a;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    padding: 12px 0;
    animation: marqueeMove 18s linear infinite;
}

    .marquee-content img {
        width: 40px;
        height: auto;
    }

    .marquee-content span {
        font-family: "Noto Sans Devanagari","Segoe UI",sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
    }

/* Animation: Right to Left */
@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Mobile */
@media(max-width:600px) {
    .marquee-content span {
        font-size: 14px;
    }

    .marquee-content img {
        width: 30px;
    }
}
.animate-left,
.animate-right {
    opacity: 0;
    transform: translateX(0);
    transition: all .9s ease;
}

/* Initial off-screen position */
.animate-left {
    transform: translateX(-80px);
}

.animate-right {
    transform: translateX(80px);
}

    /* Animate only when class added */
    .animate-left.show,
    .animate-right.show {
        opacity: 1;
        transform: translateX(0);
    }
:root {
    --bg: #f4f6f9;
    --card: #ffffff;
    --primary: #0f172a;
    --muted: #6b7280;
}

/* Section */
.corp-section {
    max-width: 1770px;
    margin: auto;
    padding: 11px 16px;
}

.corp-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 45px;
}

/* Grid */
.corp-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

/* Card */
.corp-card {
    background: var(--card);
    border-radius: 16px;
    padding: 22px 24px 26px;
    box-shadow: 0 18px 35px rgba(0,0,0,.08), 0 6px 14px rgba(0,0,0,.05);
    position: relative;
    transition: .35s ease;
    border-top: 4px solid var(--accent);
}

    /* Large cards */
    .corp-card.large {
        grid-column: span 2;
    }

/* Number badge */
.num {
    position: absolute;
    top: -18px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent) 40%, transparent);
}

/* Text */
.label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 10px;
}

.value {
    font-size: 22px;
    font-weight: 800;
}

/* Hover */
.corp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,.12), 0 12px 30px rgba(0,0,0,.08);
}

/* Tablet */
@media(max-width:1024px) {
    .corp-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .corp-card.large {
        grid-column: span 2;
    }
}

/* Mobile – exactly 2 per row */
@media(max-width:600px) {
    .corp-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }

    .corp-card.large {
        grid-column: span 2;
    }

    .corp-title {
        font-size: 26px;
    }
}
/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 90px 80px;
    background: #f9fafb;
    text-align: center;
}

.services-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.services-subtitle {
    margin-top: 12px;
    color: #6b7280;
    font-size: 16px;
}

/* Grid */
.services-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all .35s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 65px rgba(0,0,0,0.14);
    }

/* Icon */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: #e0e7ff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon svg {
        width: 36px;
        height: 36px;
        stroke: #00296b;
        stroke-width: 2;
    }

/* Text */
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.service-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .services-section {
        padding: 70px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}
.map-section {
    max-width: 1770px;
    margin: auto;
    padding: 80px 16px;
    text-align: center;
    background: #f5f7fb;
}

.map-title {
    font-size: 32px;
    font-weight: 800;
}

.map-subtitle {
    margin: 12px auto 50px;
    font-size: 16px;
    color: #6b7280;
}

/* Card */
.map-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    overflow: hidden;
}

/* Map iframe */
.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}

/* Info */
.map-info {
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .map-info h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #00296b;
    }

    .map-info p {
        color: #4b5563;
        font-size: 15px;
        line-height: 1.6;
    }

/* Button */
.map-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg,#2563eb,#60a5fa);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

/* Responsive */
@media(max-width:900px) {
    .map-card {
        grid-template-columns: 1fr;
    }

    .map-info {
        text-align: center;
    }

    .map-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:600px) {
    .map-title {
        font-size: 24px;
    }

    .map-frame iframe {
        min-height: 300px;
    }
}
:root {
    --footer-bg: #0f172a; /* deep blue */
    --footer-light: #1e293b;
    --footer-text: #e5e7eb;
    --footer-muted: #9ca3af;
    --accent: white; /* subtle green */
}

/* Footer Base */
.gp-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    font-family: "Noto Sans Devanagari","Segoe UI",sans-serif;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
}

/* Columns */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
}

    .footer-col h4::after {
        content: "";
        width: 36px;
        height: 3px;
        background: var(--accent);
        display: block;
        margin-top: 6px;
        border-radius: 3px;
    }

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: var(--footer-muted);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--footer-muted);
        text-decoration: none;
        font-size: 14px;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 4px;
        }

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-contact li {
        font-size: 14px;
        margin-bottom: 8px;
        color: var(--footer-muted);
    }

/* Bottom Bar */
.footer-bottom {
    background: var(--footer-light);
    padding: 18px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--footer-muted);
}

.footer-credit {
    margin-top: 6px;
}

/* Mobile */
@media(max-width:600px) {
    .footer-container {
        padding: 40px 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
/* WATERMARK */
.gp-footer {
    position: relative;
    overflow: hidden;
}

    /* SATYAMEV JAYATE WATERMARK */
    .gp-footer::before {
        content: "SOVIJITRAO";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-size: 120px;
        font-weight: 900;
        color: #ffffff;
        opacity: 0.05; /* 🔥 watermark opacity */
        white-space: nowrap;
        pointer-events: none; /* text select / click disable */
        z-index: 0;
        letter-spacing: 4px;
    }

/* Make sure footer content stays above watermark */
.footer-container,
.footer-bottom {
    position: relative;
    z-index: 1;
}

/* Mobile adjustment */
@media(max-width:600px) {
    .gp-footer::before {
        font-size: 60px;
    }
}

nav.show a {
    color: black;
}