* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hind', sans-serif; 
  background-color: #f9f9f9; 
  color: #333;
}

/* ================= HEADER CSS ================= */
.ms-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  font-family: 'Mukta', sans-serif;
}

.ms-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 75px; /* Fixed Header Height */
}

/* Logo */
.ms-logo { display: flex; align-items: center; height: 100%; text-decoration: none; }
.ms-logo img { max-height: 50px; width: auto; display: block; }

/* Desktop Navigation */
.ms-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ms-nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0; padding: 0;
}
.ms-nav-links a {
  text-decoration: none;
  color: #0f1c2e;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.3s;
}
.ms-nav-links a:hover, .ms-nav-links a.active {
  color: #eb5e00;
}

/* Contact Button */
.ms-contact-btn {
  display: flex; align-items: center; gap: 8px;
  background-color: #eb5e00; color: #ffffff;
  padding: 10px 24px; border-radius: 6px;
  font-size: 1.05rem; font-weight: 700; text-decoration: none;
  transition: 0.3s;
}
.ms-contact-btn:hover { background-color: #0f1c2e; }

/* Hide Mobile Elements on Desktop */
.ms-hamburger-btn, .ms-close-btn, .ms-overlay { display: none; }

/* ================= MOBILE NAVIGATION ================= */
@media (max-width: 992px) {
  
  .ms-hamburger-btn {
    display: block; background: transparent; border: none; cursor: pointer; padding: 5px;
  }

  /* Side Drawer Settings */
  .ms-nav {
    position: fixed; top: 0; left: -100%; /* Hidden offscreen */
    width: 280px; height: 100vh;
    background-color: #ffffff;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; padding: 0;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    z-index: 100001; /* Very High Z-index */
    transition: left 0.4s ease;
    overflow-y: auto;
  }

  /* When JS adds .show class */
  .ms-nav.show { left: 0; }

  /* Close Button Inside Drawer */
  .ms-close-btn {
    display: block; background: transparent; border: none; cursor: pointer;
    width: 100%; text-align: right; padding: 20px;
  }

  /* Mobile Links */
  .ms-nav-links { flex-direction: column; width: 100%; }
  .ms-nav-links li { width: 100%; }
  .ms-nav-links a {
    display: block; width: 100%; padding: 15px 25px;
    border-bottom: 1px solid #f1f5f9; box-sizing: border-box;
  }
  .ms-nav-links a.active {
    background-color: #fff4ed; border-left: 4px solid #eb5e00; padding-left: 21px;
  }

  /* Mobile Contact Button */
  .ms-contact-btn {
    margin: 25px; width: calc(100% - 50px); justify-content: center; box-sizing: border-box;
  }

  /* Dark Background Overlay */
  .ms-overlay {
    display: block; position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh; background: rgba(0,0,0,0.6);
    z-index: 100000; opacity: 0; visibility: hidden; transition: 0.4s ease;
  }
  .ms-overlay.show { opacity: 1; visibility: visible; }
}

/* header  */
/* sectone  */

:root {
    --neta-orange: #eb5e00;
    --neta-orange-hover: #c94c00;
    --neta-blue: #0f1c2e;
    --neta-text: #1f2937;
    --neta-gray: #6b7280;
}

.neta-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-color: #f8fafc;
}

.neta-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.neta-hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.neta-hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
    width: 100%;
    flex-grow: 1;
}

.neta-hero-content {
    flex: 1;
    max-width: 620px;
    align-self: center;
    padding-bottom: 2rem;
}

.neta-main-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
}

.neta-text-dark { color: var(--neta-blue); }
.neta-text-orange { color: var(--neta-orange); }

.neta-sub-title {
    font-size: 1.75rem;
    color: var(--neta-blue);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.neta-line { width: 40px; height: 3px; background-color: var(--neta-blue); }

.neta-tagline {
    font-size: 1.3rem; font-weight: 700; color: var(--neta-blue);
    display: flex; align-items: center; gap: 15px; margin-bottom: 2.5rem;
}

.neta-dot { width: 6px; height: 6px; background-color: var(--neta-orange); border-radius: 50%; }

.neta-features-wrap { display: flex; gap: 20px; margin-bottom: 3rem; flex-wrap: wrap; }
.neta-feature-box { display: flex; align-items: center; gap: 10px; }
.neta-icon-circle {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0;
}

.neta-bg-orange { background-color: var(--neta-orange); color: white; box-shadow: 0 4px 12px rgba(235, 94, 0, 0.25); }
.neta-border-gray { background-color: white; border: 1px solid #d1d5db; color: var(--neta-gray); }

.neta-feature-text { display: flex; flex-direction: column; }
.neta-feature-text strong { font-size: 1rem; color: var(--neta-text); line-height: 1.2; }
.neta-feature-text span { font-size: 0.75rem; color: var(--neta-gray); }

.neta-btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
.neta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 6px;
    font-size: 1.05rem; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; cursor: pointer;
}

.neta-btn-primary { background-color: var(--neta-orange); color: white; box-shadow: 0 6px 15px rgba(235, 94, 0, 0.3); }
.neta-btn-primary:hover { background-color: var(--neta-orange-hover); transform: translateY(-2px); }
.neta-btn-outline { background-color: white; color: var(--neta-text); border: 2px solid #d1d5db; }
.neta-btn-outline:hover { border-color: var(--neta-orange); color: var(--neta-orange); }

/* Desktop Right Side Layout (Original) */
.neta-hero-image {
    flex: 1;
    display: flex; 
    justify-content: center; 
    align-self: flex-end; 
    position: relative;
    z-index: 10; 
}

.neta-hero-image img {
    max-height: 85vh;
    object-fit: contain;
    display: block;
    margin-bottom: -45px; 
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

.neta-hero-card {
    background: linear-gradient(145deg, #0f1c2e, #1a2a40);
    padding: 30px; border-radius: 12px; text-align: center; color: white;
    width: 250px;
    align-self: center; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 10;
}

.neta-card-badge { font-size: 0.85rem; color: #cbd5e1; }
.neta-card-ward { font-size: 2.2rem; color: #facc15; font-weight: 800; margin: 5px 0 10px; }
.neta-card-loc { font-size: 0.85rem; color: #94a3b8; line-height: 1.4; margin-bottom: 20px; }

.neta-party-logo {
    width: 60px; height: 60px; background-color: white; border-radius: 50%;
    margin: 0 auto 10px; display: flex; justify-content: center; align-items: center; padding: 8px;
}
.neta-party-logo img { width: 100%; height: 100%; object-fit: contain;}
.neta-party-name { font-size: 1.05rem; font-weight: 600; }

.neta-bottom-bar-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
}
.neta-wave {
    display: block; width: 100%; height: 65px;
    margin-bottom: -1px;
}
.neta-bottom-bar {
    background-color: var(--neta-blue);
    padding-bottom: 25px;
}

.neta-bottom-grid {
    max-width: 1440px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem;
}
.neta-info-item { display: flex; align-items: center; gap: 15px; }
.neta-info-text { display: flex; flex-direction: column; }
.neta-info-text strong { color: white; font-size: 0.95rem; font-weight: 600; line-height: 1.2; }
.neta-info-text span { color: #94a3b8; font-size: 0.75rem; }
.neta-divider { width: 1px; height: 40px; background-color: rgba(255,255,255,0.1); }


/* --- MOBILE RESPONSIVE (768px se niche tera bataya hua exact order) --- */
@media (max-width: 1024px) {
    .neta-hero-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 2rem 1rem 0;
    }

    .neta-hero-content {
        order: 1;
        max-width: 100%;
        padding-bottom: 1rem;
    }

    .neta-sub-title, .neta-tagline, .neta-features-wrap, .neta-btn-group {
        justify-content: center;
    }

    .neta-line { display: none; }

    /* Tera bataya hua order: Pehle Content -> Fir Card -> Fir Netaji ki Photo (bottom se chipki hui) */
    .neta-hero-card {
        order: 2;
        margin: 1.5rem 0;
        width: 100%;
        max-width: 300px;
    }

    .neta-hero-image {
        order: 3;
        width: 100%;
        justify-content: center;
        align-self: center;
        margin-top: 1rem;
    }

    .neta-hero-image img {
        max-height: 50vh;
        margin-bottom: -50px; /* Bottom se chipki rahegi */
    }

    /* Bottom grid items ko mobile ke liye set kiya */
    .neta-bottom-grid {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 0 1.5rem;
    }

    .neta-info-item {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        padding: 12px 15px;
        border-radius: 8px;
    }

    .neta-divider { display: none; }
}





/* sectione */

.neta-about-intro {
    background-color: #ffffff; /* Clean white background */
    padding: 80px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.neta-about-container {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Top Badge (Pill) */
.neta-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1.5px solid #eab308; /* Subtle yellow/gold border */
    border-radius: 50px;
    color: #b45309; /* Darker warm text */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Main Heading */
.neta-about-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f1c2e; /* Dark Blue from your theme */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Highlighted Text in Heading */
.neta-about-highlight {
    color: #eb5e00; /* Signature Orange */
    /* If you have a serif font loaded, you can use it here for that elegant look */
    /* font-family: 'Merriweather', serif; */ 
}

/* Description Text */
.neta-about-desc {
    font-size: 1.1rem;
    color: #64748b; /* Slate Gray for soft reading */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.neta-about-desc strong {
    color: #0f1c2e;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .neta-about-intro {
        padding: 50px 20px;
    }
    .neta-about-desc {
        font-size: 1rem;
    }
}





















/* 
sectione 3*/
/* =========================================================
   ABOUT SECTION
   FULL RESPONSIVE CSS
========================================================= */

.ms-about-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fcf9f5;
    padding: 80px 20px 100px;
    font-family: 'Mukta', sans-serif;
    box-sizing: border-box;
}

.ms-about-section *,
.ms-about-section *::before,
.ms-about-section *::after {
    box-sizing: border-box;
}

/* =========================================================
   BOTTOM SKYLINE
========================================================= */

.ms-bottom-skyline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;

    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 100%;

    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.ms-about-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1350px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 60px;
}

/* =========================================================
   LEFT COLUMN
========================================================= */

.ms-about-left {
    flex: 1.1;
    min-width: 0;

    display: flex;
    flex-direction: column;
}

/* =========================================================
   TOP BADGE
========================================================= */

.ms-badge-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    font-weight: 700;
    color: #111;
    font-size: 1rem;

    margin-bottom: 25px;
    position: relative;
}

.ms-badge-top > span {
    display: inline-block;
}

.ms-badge-top .ms-line {
    width: 40px;
    height: 3px;
    background-color: #eb5e00;
    margin: 4px 0;
}

.ms-badge-lotus {
    width: 24px;
    margin-top: 5px;
    margin-left: 25px;
}

.ms-badge-lotus img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   TITLE
========================================================= */

.ms-title {
    margin: 0 0 15px;

    color: #0f1c2e;

    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -1px;
}

.ms-text-orange {
    color: #eb5e00;
}

/* =========================================================
   TAGLINE
========================================================= */

.ms-tagline-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 25px;

    color: #0f1c2e;

    font-size: 1.25rem;
    font-weight: 700;
}

.ms-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    background-color: #eb5e00;
    border-radius: 50%;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.ms-desc {
    max-width: 95%;

    margin: 0 0 40px;

    color: #4b5563;

    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================================================
   USP GRID
========================================================= */

.ms-usp-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 50px;
}

.ms-usp-card {
    position: relative;

    min-width: 0;

    padding: 25px 15px 35px;

    background: #ffffff;
    border-radius: 12px;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ms-usp-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(235, 94, 0, 0.10);
}

.ms-usp-card::after {
    content: "";

    position: absolute;

    bottom: -5px;
    left: 50%;

    width: 10px;
    height: 10px;

    background-color: #eb5e00;

    transform: translateX(-50%) rotate(45deg);
}

/* =========================================================
   USP ICON
========================================================= */

.ms-usp-icon {
    width: 50px;
    height: 50px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff4ed;
    border-radius: 50%;
}

.ms-usp-icon img {
    width: 24px;
    height: auto;
}

.ms-usp-card h4 {
    margin: 0 0 8px;

    color: #0f1c2e;

    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 700;
}

.ms-usp-card p {
    margin: 0;

    color: #6b7280;

    font-size: 0.75rem;
    line-height: 1.5;
}

/* =========================================================
   STATS
========================================================= */

.ms-stats-wrapper {
    width: 100%;

    padding: 25px 30px;

    background: #ffffff;

    border: 1px solid #f3f4f6;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.ms-stats-title {
    margin: 0 0 20px;

    color: #0f1c2e;

    font-size: 1.2rem;
    font-weight: 800;
}

.ms-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ms-stat-item {
    min-width: 0;

    padding: 0 15px;

    border-right: 1px solid #e5e7eb;
}

.ms-stat-item:first-child {
    padding-left: 0;
}

.ms-stat-item:last-child {
    padding-right: 0;
}

.ms-border-none {
    border-right: none;
}

.ms-stat-head {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 5px;
}

.ms-stat-head img {
    width: 30px;
    height: 30px;

    padding: 5px;

    background: #fff4ed;
    border-radius: 50%;

    object-fit: contain;
}

.ms-stat-head span {
    color: #eb5e00;

    font-size: 1.4rem;
    font-weight: 800;
}

.ms-stat-item p {
    margin: 0;

    color: #6b7280;

    font-size: 0.8rem;
    line-height: 1.4;
}

/* =========================================================
   RIGHT COLUMN
========================================================= */

.ms-about-right {
    flex: 0.9;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;

    padding-top: 30px;
}

/* =========================================================
   GRAPHIC AREA
========================================================= */

.ms-graphic-area {
    position: relative;

    width: 100%;
    max-width: 500px;

    min-height: 520px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* =========================================================
   DASHED RING
========================================================= */

.ms-dashed-ring {
    position: absolute;

    top: 5%;
    right: -10%;

    width: 480px;
    height: 480px;

    border: 2px dashed #eb5e00;
    border-radius: 50%;

    opacity: 0.4;

    z-index: 1;

    pointer-events: none;
}

/* =========================================================
   SOLID CIRCLE
========================================================= */

.ms-solid-circle {
    position: absolute;

    top: 12%;
    right: -2%;

    width: 420px;
    height: 420px;

    background-color: #eb5e00;
    background-blend-mode: soft-light;

    background-size: cover;
    background-position: center;

    border-radius: 50%;

    z-index: 2;

    pointer-events: none;
}

/* =========================================================
   FLOATING BADGE
========================================================= */

.ms-floating-badge {
    position: absolute;

    top: 35%;
    right: -40px;

    width: 140px;
    height: 140px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 10px;

    background: #ffffff;

    border: 2px solid #eb5e00;
    border-radius: 50%;

    text-align: center;

    z-index: 4;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ms-fb-title {
    color: #eb5e00;

    font-size: 0.9rem;
    font-weight: 700;
}

.ms-fb-num {
    margin-bottom: 2px;

    color: #eb5e00;

    font-size: 2.2rem;
    line-height: 1;
    font-weight: 800;
}

.ms-fb-text {
    margin-bottom: 5px;

    color: #111;

    font-size: 0.55rem;
    line-height: 1.2;
    font-weight: 600;
}

.ms-fb-logo {
    width: 25px;
    height: 25px;
}

.ms-fb-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

/* =========================================================
   NETA IMAGE
   IMPORTANT:
   IMAGE ALWAYS STAYS AT BOTTOM OF GRAPHIC
========================================================= */

.ms-neta-img {
    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    z-index: 3;

    width: 90%;
    max-width: 450px;
    height: auto;
    max-height: 500px;

    object-fit: contain;
    object-position: bottom center;

    display: block;

    margin: 0;

    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* =========================================================
   QUOTE CARD
========================================================= */

.ms-quote-card {
    position: relative;

    z-index: 5;

    width: 90%;

    margin-left: -10%;

    padding: 35px 40px;

    background-color: #0b1828;

    color: #ffffff;

    border-radius: 12px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.15) 2px,
            transparent 2px
        );

    background-size: 15px 15px;
    background-position: top right;
}

.ms-quote-mark {
    position: absolute;

    top: 10px;
    left: 20px;

    color: #eb5e00;

    font-family: serif;
    font-size: 4rem;
    line-height: 1;
}

.ms-quote-text {
    position: relative;
    z-index: 2;

    margin: 0 0 25px 30px;

    color: #cbd5e1;

    font-size: 1.05rem;
    line-height: 1.6;
}

.ms-quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-left: 30px;
}

.ms-author {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.ms-sig-eng {
    margin-bottom: 5px;

    color: #eb5e00;

    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    line-height: 1;
}

.ms-sig-hin {
    color: #cbd5e1;

    font-size: 0.9rem;
    font-weight: 600;
}

.ms-quote-bjp {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;

    background: #ffffff;
    border-radius: 50%;
}

.ms-quote-bjp img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   LARGE TABLET
   1200px
========================================================= */

@media (max-width: 1200px) {

    .ms-about-container {
        gap: 35px;
    }

    .ms-title {
        font-size: clamp(2.4rem, 4vw, 3.3rem);
    }

    .ms-usp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 25px;
    }

    .ms-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px;
    }

    .ms-stat-item {
        border-right: none;
    }

    .ms-dashed-ring {
        width: 400px;
        height: 400px;
        right: -5%;
    }

    .ms-solid-circle {
        width: 360px;
        height: 360px;
        right: 0;
    }

    .ms-floating-badge {
        right: -5px;
        width: 120px;
        height: 120px;
    }

    .ms-fb-num {
        font-size: 1.9rem;
    }

    .ms-quote-card {
        width: 100%;
        margin-left: 0;
    }
}


/* =========================================================
   TABLET
   992px
========================================================= */

@media (max-width: 992px) {

    .ms-about-section {
        padding: 70px 20px 90px;
    }

    .ms-about-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .ms-about-left {
        width: 100%;
        max-width: 900px;
    }

    .ms-about-right {
        width: 100%;
        max-width: 560px;

        margin-top: 10px;

        padding-top: 0;
    }

    .ms-desc {
        max-width: 100%;
    }

    .ms-graphic-area {
        width: 100%;
        max-width: 560px;
        min-height: 520px;
    }

    .ms-dashed-ring {
        width: 390px;
        height: 390px;

        top: 5%;
        right: 50%;

        transform: translateX(50%);
    }

    .ms-solid-circle {
        width: 350px;
        height: 350px;

        top: 10%;
        right: 50%;

        transform: translateX(50%);
    }

    .ms-floating-badge {
        right: 10px;
        top: 30%;
    }

    .ms-neta-img {
        width: 82%;
        max-width: 430px;
        max-height: 500px;

        bottom: 0;
    }

    .ms-quote-card {
        width: 100%;
        margin-left: 0;
    }
}


/* =========================================================
   768px
   TABLET / SMALL TABLET
========================================================= */

@media (max-width: 768px) {

    .ms-about-section {
        padding: 60px 16px 75px;
    }

    .ms-about-container {
        gap: 40px;
    }

    /* ---------- LEFT ---------- */

    .ms-about-left {
        width: 100%;
    }

    .ms-badge-top {
        margin-bottom: 20px;
    }

    .ms-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .ms-tagline-text {
        font-size: 1.15rem;
        gap: 12px;
        margin-bottom: 20px;
    }

    .ms-desc {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 30px;
    }

    /* ---------- USP ---------- */

    .ms-usp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
        margin-bottom: 35px;
    }

    .ms-usp-card {
        padding: 22px 14px 30px;
    }

    /* ---------- STATS ---------- */

    .ms-stats-wrapper {
        padding: 22px 20px;
    }

    .ms-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 25px;
    }

    .ms-stat-item {
        padding: 0 10px;
        border-right: none;
    }

    .ms-stat-item:nth-child(odd) {
        padding-left: 0;
    }

    .ms-stat-item:nth-child(even) {
        padding-right: 0;
    }

    /* ---------- RIGHT ---------- */

    .ms-about-right {
        width: 100%;
        max-width: 520px;
    }

    .ms-graphic-area {
        width: 100%;
        min-height: 480px;
    }

    .ms-dashed-ring {
        width: 350px;
        height: 350px;
    }

    .ms-solid-circle {
        width: 310px;
        height: 310px;
    }

    .ms-floating-badge {
        width: 105px;
        height: 105px;

        right: 5px;
    }

    .ms-fb-title {
        font-size: 0.75rem;
    }

    .ms-fb-num {
        font-size: 1.7rem;
    }

    .ms-fb-text {
        font-size: 0.48rem;
    }

    .ms-fb-logo {
        width: 21px;
        height: 21px;
    }

    .ms-neta-img {
        width: 82%;
        max-width: 400px;
        max-height: 470px;

        bottom: 0;
    }

    /* ---------- QUOTE ---------- */

    .ms-quote-card {
        width: 100%;
        margin: 0;

        padding: 32px 25px;
    }

    .ms-quote-text {
        margin-left: 25px;

        font-size: 1rem;
        line-height: 1.6;
    }

    .ms-quote-footer {
        margin-left: 25px;
    }
}


/* =========================================================
   MOBILE
   576px
========================================================= */

@media (max-width: 576px) {

    .ms-about-section {
        padding: 50px 14px 65px;
    }

    .ms-about-container {
        gap: 35px;
    }

    /* ---------- BADGE ---------- */

    .ms-badge-top {
        margin-bottom: 18px;
    }

    .ms-badge-top .ms-line {
        width: 32px;
        height: 2px;
    }

    .ms-badge-lotus {
        width: 22px;
        margin-left: 20px;
    }

    /* ---------- TITLE ---------- */

    .ms-title {
        font-size: 2.2rem;
        line-height: 1.15;

        margin-bottom: 14px;
    }

    .ms-tagline-text {
        font-size: 1rem;
        gap: 10px;

        margin-bottom: 18px;
    }

    .ms-dot {
        width: 5px;
        height: 5px;
        flex-basis: 5px;
    }

    .ms-desc {
        font-size: 0.95rem;
        line-height: 1.65;

        margin-bottom: 28px;
    }

    /* ---------- USP 1 COLUMN ---------- */

    .ms-usp-grid {
        grid-template-columns: 1fr;
        gap: 14px;

        margin-bottom: 30px;
    }

    .ms-usp-card {
        width: 100%;

        padding: 20px 18px 25px;

        text-align: center;
    }

    .ms-usp-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 12px;
    }

    .ms-usp-card h4 {
        font-size: 1rem;
    }

    .ms-usp-card p {
        font-size: 0.78rem;
    }

    /* ---------- STATS ---------- */

    .ms-stats-wrapper {
        padding: 20px 16px;
        border-radius: 13px;
    }

    .ms-stats-title {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .ms-stats-grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .ms-stat-item,
    .ms-stat-item:nth-child(odd),
    .ms-stat-item:nth-child(even) {
        padding: 0;

        border: none;
    }

    .ms-stat-head span {
        font-size: 1.25rem;
    }

    .ms-stat-item p {
        font-size: 0.78rem;
    }

    /* =====================================================
       RIGHT SIDE
       IMAGE ALWAYS BOTTOM
    ===================================================== */

    .ms-about-right {
        width: 100%;
        max-width: 100%;

        margin-top: 0;
    }

    .ms-graphic-area {
        width: 100%;
        min-height: 420px;

        overflow: visible;
    }

    /* Circle stays behind image */

    .ms-dashed-ring {
        width: 290px;
        height: 290px;

        top: 7%;
        right: 50%;

        transform: translateX(50%);
    }

    .ms-solid-circle {
        width: 255px;
        height: 255px;

        top: 12%;
        right: 50%;

        transform: translateX(50%);
    }

    /* Badge */

    .ms-floating-badge {
        width: 90px;
        height: 90px;

        top: 28%;
        right: 0;

        padding: 7px;
    }

    .ms-fb-title {
        font-size: 0.65rem;
    }

    .ms-fb-num {
        font-size: 1.45rem;
    }

    .ms-fb-text {
        font-size: 0.42rem;
    }

    .ms-fb-logo {
        width: 18px;
        height: 18px;
    }

    /* IMAGE */
    /* It will NEVER move to top of section */

    .ms-neta-img {
        position: absolute;

        left: 50%;
        bottom: 0;

        transform: translateX(-50%);

        width: 88%;
        max-width: 360px;
        max-height: 410px;

        object-fit: contain;
        object-position: bottom center;

        margin: 0;
    }

    /* ---------- QUOTE ---------- */

    .ms-quote-card {
        width: 100%;

        margin: 0;

        padding: 30px 20px;

        border-radius: 12px;
    }

    .ms-quote-mark {
        top: 8px;
        left: 15px;

        font-size: 3.2rem;
    }

    .ms-quote-text {
        margin: 0 0 22px 20px;

        font-size: 0.95rem;
        line-height: 1.6;
    }

    .ms-quote-footer {
        margin-left: 20px;

        align-items: center;
        gap: 15px;
    }

    .ms-sig-eng {
        font-size: 1.5rem;
    }

    .ms-sig-hin {
        font-size: 0.78rem;
    }

    .ms-quote-bjp {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        padding: 7px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   400px
========================================================= */

@media (max-width: 400px) {

    .ms-about-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ms-title {
        font-size: 2rem;
    }

    .ms-desc {
        font-size: 0.9rem;
    }

    .ms-graphic-area {
        min-height: 370px;
    }

    .ms-dashed-ring {
        width: 255px;
        height: 255px;
    }

    .ms-solid-circle {
        width: 225px;
        height: 225px;
    }

    .ms-floating-badge {
        width: 78px;
        height: 78px;
        right: -2px;
    }

    .ms-fb-title {
        font-size: 0.58rem;
    }

    .ms-fb-num {
        font-size: 1.25rem;
    }

    .ms-fb-text {
        font-size: 0.37rem;
    }

    .ms-fb-logo {
        width: 16px;
        height: 16px;
    }

    .ms-neta-img {
        width: 92%;
        max-height: 360px;
    }

    .ms-quote-card {
        padding: 27px 16px;
    }

    .ms-quote-text {
        margin-left: 15px;

        font-size: 0.88rem;
    }

    .ms-quote-footer {
        margin-left: 15px;
    }

    .ms-sig-eng {
        font-size: 1.35rem;
    }

    .ms-sig-hin {
        font-size: 0.7rem;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   350px
========================================================= */

@media (max-width: 350px) {

    .ms-title {
        font-size: 1.8rem;
    }

    .ms-tagline-text {
        font-size: 0.9rem;
    }

    .ms-graphic-area {
        min-height: 330px;
    }

    .ms-dashed-ring {
        width: 225px;
        height: 225px;
    }

    .ms-solid-circle {
        width: 195px;
        height: 195px;
    }

    .ms-neta-img {
        width: 95%;
        max-height: 320px;
    }

    .ms-floating-badge {
        width: 70px;
        height: 70px;
    }

    .ms-fb-num {
        font-size: 1.1rem;
    }

    .ms-fb-text {
        display: none;
    }

    .ms-quote-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}





















/* 

4 section  */
/* --- Ward Vision & Demographics Section --- */
/* --- Problem & Solution Section --- */
.ms-ps-section {
    background-color: #fcf9f5;
    padding: 80px 20px;
    font-family: 'Mukta', sans-serif;
}

.ms-ps-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.ms-ps-header {
    text-align: center;
    margin-bottom: 60px;
}
.ms-ps-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #eb5e00;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}
.ms-ps-line {
    width: 60px;
    height: 1px;
    background-color: #eb5e00;
}
.ms-ps-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #0f1c2e;
    font-weight: 800;
    margin-bottom: 10px;
}
.ms-text-orange { color: #eb5e00; }
.ms-ps-lotus { margin-bottom: 10px; }
.ms-ps-desc {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Grid Layout (Left, Center, Right) */
.ms-ps-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

/* Columns Base */
.ms-ps-column {
    flex: 1;
    position: relative;
    max-width: 450px;
}

/* Pill Headings */
.ms-ps-col-heading {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.ms-bg-red { background-color: #eb5e00; }
.ms-bg-green { background-color: #15803d; }

/* Content Boxes */
.ms-ps-list-box {
    padding: 40px 25px 25px;
    border-radius: 12px;
    height: 100%;
}
.ms-box-red { background-color: #fff5f4; }
.ms-box-green { background-color: #f0fdf4; }

/* List Items */
.ms-ps-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.ms-ps-item:last-child { margin-bottom: 0; }

.ms-ps-icon {
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.ms-icon-red { background-color: #eb5e00; }
.ms-icon-green { background-color: #15803d; }

.ms-ps-text h4 {
    font-size: 1.05rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 2px;
}
.ms-ps-text p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

/* ================= CENTER GRAPHIC ================= */
.ms-ps-center {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 400px;
}

.ms-ps-circle-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer Ring */
.ms-ps-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #eb5e00; /* Orange border */
    outline: 1px solid #eb5e00;
    outline-offset: 4px;
}

/* Inner Image */
.ms-ps-image {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

/* Bottom Badge inside center circle */
.ms-ps-center-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50%;
    width: 130px; height: 130px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 5;
    border: 2px solid #f3f4f6;
}
.ms-badge-title { font-size: 1.4rem; font-weight: 800; color: #111; line-height: 1.2; }
.ms-badge-sub { font-size: 0.75rem; font-weight: 700; color: #555; }

/* Arrows on sides */
.ms-ps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 2px 8px rgba(235,94,0,0.3);
    z-index: 3;
}
.ms-arrow-l { left: -15px; }
.ms-arrow-r { right: -15px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .ms-ps-grid {
        flex-direction: column;
        align-items: center;
    }
    .ms-ps-center {
        order: -1; /* Puts the graphic at the top on small screens */
        margin-bottom: 50px;
    }
    .ms-ps-column {
        width: 100%;
        max-width: 600px;
    }
    .ms-ps-arrow { display: none; } /* Hide arrows on mobile stack */
}








/* sectione 5   */
/* ================= WORK AREAS SECTION ================= */
.ms-work-areas-section {
    position: relative;
    background-color: #fcf9f5;
    padding: 80px 20px;
    font-family: 'Mukta', sans-serif;
    overflow: hidden;
}

/* Monument Backgrounds (Left & Right Faded Images) */
.ms-bg-monument {
    position: absolute;
    top: 0;
    width: 400px;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08; /* Very light watermark effect */
    z-index: 1;
}
.ms-bg-left { left: 0; mask-image: linear-gradient(to right, black, transparent); -webkit-mask-image: linear-gradient(to right, black, transparent); }
.ms-bg-right { right: 0; mask-image: linear-gradient(to left, black, transparent); -webkit-mask-image: linear-gradient(to left, black, transparent); }

.ms-work-container {
    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: 0 auto;
}

/* Header */
.ms-work-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.ms-small-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #eb5e00;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.ms-line-sm {
    width: 30px; height: 1px; background-color: #eb5e00; opacity: 0.5;
}
.ms-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f1c2e;
    font-weight: 800;
    margin-bottom: 15px;
}
.ms-text-orange { color: #eb5e00; }
.ms-work-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
}

/* 6 Cards Grid */
.ms-work-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.ms-work-card {
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ms-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(235, 94, 0, 0.1);
}

.ms-w-icon {
    width: 65px; height: 65px;
    background: #fff4ed;
    color: #eb5e00;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 20px;
}
.ms-work-card h4 {
    color: #0f1c2e;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.ms-work-card p {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ================= ACHIEVEMENTS BANNER ================= */
.ms-achiev-section {
    padding: 0 20px 80px;
    background-color: #fcf9f5;
    font-family: 'Mukta', sans-serif;
}

.ms-achiev-container {
    max-width: 1350px;
    margin: 0 auto;
}

.ms-achiev-box {
    position: relative;
    background: #0b1828; /* Dark Navy Blue */
    border-radius: 16px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 24, 40, 0.2);
}

/* Giant Lotus Watermark */
.ms-lotus-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px; height: 350px;
    color: #ffffff;
    opacity: 0.03; /* Extremely faint */
    z-index: 1;
}
.ms-lotus-watermark svg { width: 100%; height: 100%; }

/* Left Content */
.ms-achiev-left {
    flex: 0 0 35%;
    position: relative;
    z-index: 2;
}
.ms-achiev-sub {
    color: #eb5e00;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.ms-achiev-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}
.ms-achiev-desc {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Right Stats Grid */
.ms-achiev-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.ms-stat-box {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ms-stat-box:last-child {
    border-right: none;
}

.ms-stat-icon {
    color: #eb5e00;
    margin-bottom: 15px;
}
.ms-stat-num {
    color: #eb5e00;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}
.ms-stat-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .ms-work-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 1024px) {
    .ms-achiev-box { flex-direction: column; text-align: center; }
    .ms-achiev-left { flex: 1; margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .ms-work-grid { grid-template-columns: repeat(2, 1fr); }
    .ms-achiev-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; width: 100%; }
    .ms-stat-box { border-right: none; }
}

@media (max-width: 480px) {
    .ms-work-grid { grid-template-columns: 1fr; }
    .ms-achiev-right { grid-template-columns: 1fr; gap: 40px; }
    .ms-achiev-box { padding: 40px 20px; }
}