
/* =========================================================
   RESET & GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #073b70;
  background: #ffffff;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 50, 90, 0.06);
}

.topbar {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.emblem img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.gov-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
}

.gov-brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}

.gov-brand span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

.emblem {
  font-size: 46px;
  color: #555;
}


.campaign-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 100px;
}

.campaign-brand h1 {
    margin: 0;
    color: #064177;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
}

.campaign-brand h1 b {
    color: #73c92d;
}

.campaign-brand small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #164d80;
}

.stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.stat-icon.blue {
    background: #e8f6ff;
    color: #008fd5;
}

.stat-icon.green {
    background: #e9f8ef;
    color: #159447;
}

.stat-icon i {
    line-height: 1;
}
/* =========================================================
   CAMPAIGN BRAND MARK
========================================================= */

.brand-mark {
    width: 68px;
    height: 68px;
/*
    border: 2px solid #28a947;
    border-radius: 50%;*/

    display: grid;
    place-items: center;

    position: relative;

/*    color: #1688ce;*/
    font-size: 36px;
}
/*
.brand-mark i {
    position: absolute;

    left: 9px;
    right: 9px;
    bottom: 7px;

    height: 9px;

    border-radius: 50%;

    background: #1688ce;

    transform: rotate(-8deg);
}*/


/* =========================================================
   HEADER RIGHT SIDE
========================================================= */

.campaign-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 30px;

    margin-left: auto;
}


/* =========================================================
   AZADI KA AMRIT MAHOTSAV LOGO
========================================================= */

.azadi {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.azadi img {
    width: 110px;
    height: 65px;

    display: block;

    object-fit: contain;
    object-position: center;
}


/* =========================================================
   OCEAN / CLEAN BEACHES MARK
========================================================= */

.ocean-mark {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #0878c9;

    flex-shrink: 0;
}

.ocean-mark > span {
    font-size: 52px;
    line-height: 1;

    color: #0878c9;
}

.ocean-mark small {
    display: block;

    font-size: 11px;
    line-height: 1.4;

    font-weight: 600;

    color: #0560a2;

    white-space: nowrap;
}


/* =========================================================
   CAMPAIGN HEADER CONTAINER
========================================================= */

.campaign-header {
    width: 100%;
    background: #ffffff;
}

.campaign-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 90px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 992px) {

    .campaign-header .container {
        min-height: 80px;
    }

    .campaign-brand h1 {
        font-size: 22px;
    }

    .campaign-brand small {
        font-size: 11px;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    .campaign-side {
        gap: 18px;
    }

    .azadi img {
        width: 90px;
        height: 55px;
    }

    .ocean-mark > span {
        font-size: 42px;
    }

    .ocean-mark small {
        font-size: 10px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .campaign-header .container {
        min-height: auto;

        padding-top: 12px;
        padding-bottom: 12px;

        flex-wrap: wrap;

        gap: 12px;
    }

    .campaign-brand {
        gap: 10px;
    }

    .campaign-brand h1 {
        font-size: 19px;
    }

    .campaign-brand small {
        font-size: 10px;
    }

    .brand-mark {
        width: 50px;
        height: 50px;

        font-size: 26px;
    }

    .brand-mark i {
        left: 7px;
        right: 7px;
        bottom: 6px;
        height: 7px;
    }

    .campaign-side {
        width: 100%;

        justify-content: center;

        gap: 20px;
    }

    .azadi img {
        width: 85px;
        height: 50px;
    }

    .ocean-mark > span {
        font-size: 38px;
    }

    .ocean-mark small {
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .campaign-brand {
        width: 100%;
    }

    .campaign-brand h1 {
        font-size: 17px;
    }

    .campaign-brand small {
        font-size: 9px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;

        font-size: 22px;
    }

    .campaign-side {
        justify-content: space-between;
        gap: 10px;
    }

    .azadi img {
        width: 75px;
        height: 45px;
    }

    .ocean-mark {
        gap: 6px;
    }

    .ocean-mark > span {
        font-size: 32px;
    }

    .ocean-mark small {
        font-size: 8px;
        line-height: 1.3;
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    min-height: 52px;
    border-top: 2px solid #c7e5ff;
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
    position: relative;
    z-index: 1000;
}

.nav-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
}

/* =========================================================
   NAV LINKS
========================================================= */
.nav-link {
    min-height: 52px;
    padding: 0 18px;

    display: flex;
    align-items: center;

    text-decoration: none;

    color: #003e78;
    background: #ffffff;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


/* Mouse hover */
.nav-link:hover {
    background: #f0f8ff;
    color: #0071c9;
}


/* ONLY SELECTED MENU */
.nav-link.active {
    background: #0074c8;
    color: #ffffff;
}


/* Selected menu hover */
.nav-link.active:hover {
    background: #0065ad;
    color: #ffffff;
}

.nav-link:first-child {
    gap: 8px;
    font-size: 15px;
}

/* =========================================================
   DASHBOARD DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
    height: 52px;
}

/* Dashboard link */
.nav-dropdown .dropdown-toggle {
    cursor: pointer;
    gap: 6px;
}

/* Arrow */
.nav-dropdown .arrow {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.2s ease;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 52px;
    left: 0;

    min-width: 200px;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-top: 3px solid #0071c9;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 6px 6px;

    display: none;
    z-index: 9999;
}

/* Dropdown items */
.dropdown-menu a {
    display: block;
    padding: 12px 16px;

    color: #003e78;
    background: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: background 0.2s ease, color 0.2s ease;
}

/* Dropdown hover */
.dropdown-menu a:hover {
    background: #f0f8ff;
    color: #0071c9;
}

/* Show dropdown */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* Rotate arrow */
.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* =========================================================
   NAV ACTION BUTTONS
========================================================= */

.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    border: 0;
    border-radius: 24px;
    padding: 11px 22px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Outline button */
.btn-outline {
    background: #ffffff;
    border: 1px solid #0874d1;
    color: #0068bd;
}

.btn-outline:hover {
    background: #f0f8ff;
}

/* Green button */
.btn-green {
    background: #25a944;
    color: #ffffff;
}

.btn-green:hover {
    background: #1d9239;
    box-shadow: 0 5px 15px rgba(37, 169, 68, 0.25);
}

/* Blue button */
.btn-blue {
    background: #0875d1;
    color: #ffffff;
}

.btn-blue:hover {
    background: #0665b7;
    box-shadow: 0 5px 15px rgba(8, 117, 209, 0.25);
}

/* Small button */
.btn.small {
    padding: 7px 13px;
    border-radius: 6px;
    font-size: 12px;
}


.mobile-menu {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;

    border: 0;
    background: transparent;

    color: #064177;
    cursor: pointer;

    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;

    z-index: 10001;
}

/* Hamburger icon */
.mobile-menu span,
.mobile-menu::before,
.mobile-menu::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background: #064177;
    border-radius: 3px;

    position: absolute;
    transition: 0.25s ease;
}

.mobile-menu {
    position: relative;
}

.mobile-menu span {
    transform: translateY(0);
}

.mobile-menu::before {
    transform: translateY(-8px);
}

.mobile-menu::after {
    transform: translateY(8px);
}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 992px) {

    .navbar {
        min-height: 52px;
    }

    .nav-inner {
        min-height: 52px;
        position: relative;
    }

    /* Hide desktop navigation */
    .nav-link,
    .nav-dropdown,
    .nav-actions {
        display: none;
    }

    /* Show hamburger */
    .mobile-menu {
        display: flex;
    }

    /* Open mobile menu */
    .nav-inner.mobile-open {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-inner.mobile-open .nav-link {
        display: flex;
        width: 100%;
        min-height: 48px;

        padding: 12px 18px;

        border-top: 1px solid #eeeeee;
        background: #ffffff;

        font-size: 15px;
    }

    .nav-inner.mobile-open .nav-dropdown {
        display: block;
        width: 100%;
        height: auto;

        border-top: 1px solid #eeeeee;
    }

    .nav-inner.mobile-open .nav-dropdown > .dropdown-toggle {
        display: flex;
        width: 100%;
        min-height: 48px;

        padding: 12px 18px;
    }

    .nav-inner.mobile-open .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        border: 0;
        border-top: 1px solid #eeeeee;
        border-radius: 0;

        box-shadow: none;

        background: #f7fbff;
    }

    .nav-inner.mobile-open .dropdown-menu a {
        padding: 11px 30px;
        font-size: 14px;
    }

    /* Mobile action buttons */
    .nav-inner.mobile-open .nav-actions {
        display: flex;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 8px;

        padding: 14px 18px;

        border-top: 1px solid #eeeeee;
        background: #ffffff;
    }

    .nav-inner.mobile-open .nav-actions .btn {
        width: 100%;
    }

    /* Hamburger -> X */
    .mobile-menu.active::before {
        transform: rotate(45deg);
    }

    .mobile-menu.active span {
        opacity: 0;
    }

    .mobile-menu.active::after {
        transform: rotate(-45deg);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .nav-inner {
        padding: 0 12px;
    }

    .mobile-menu {
        width: 42px;
        height: 42px;
    }

    .nav-inner.mobile-open .nav-link {
        padding: 13px 14px;
        font-size: 14px;
    }

    .nav-inner.mobile-open .dropdown-menu a {
        padding: 11px 26px;
    }

    .nav-inner.mobile-open .nav-actions {
        padding: 12px 14px;
    }
}
/* =========================================================
   RESPONSIVE NAVBAR
========================================================= */



.hero {
    height: 630px;
    position: relative;
    overflow: hidden;
    background: #075486;
}

.slides {
    height: 100%;
    width: 100%;
}
.slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity 0.7s ease;

    background-image: var(--bg);

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    height: 100%;
    position: relative;

    display: flex;
    align-items: center;

    z-index: 2;

    color: #fff;
    text-transform: uppercase;

    /* Premium layered shadow */
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.95),
        0 2px 4px rgba(0, 0, 0, 0.75),
        0 0 2px rgba(180, 180, 180, 0.9),
        0 0 6px rgba(80, 80, 80, 0.55);
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
    max-width: 650px;
    color: #fff;

    position: relative;
    z-index: 3;

    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.95),
        0 2px 4px rgba(0, 0, 0, 0.75),
        0 0 2px rgba(180, 180, 180, 0.9),
        0 0 6px rgba(80, 80, 80, 0.55);
}


/* =========================================================
   GREEN ACCENT
========================================================= */

.accent,
.section-title > span {
    display: block;

    width: 55px;
    height: 4px;

    margin-bottom: 18px;

    background: #7bd233;
    border-radius: 5px;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.4),
        0 0 5px rgba(123, 210, 51, 0.25);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h2 {
    margin: 0 0 16px;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;

    font-weight: 800;

    color: #fff;

    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.95),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 2px rgba(190, 190, 190, 0.95),
        0 0 7px rgba(70, 70, 70, 0.6);
}


/* =========================================================
   GREEN EMPHASIS
========================================================= */

.hero h2 em {
    color: #7bd233;
    font-style: normal;

    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.95),
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 0 2px rgba(190, 190, 190, 0.8),
        0 0 6px rgba(70, 70, 70, 0.5);
}


/* =========================================================
   HERO PARAGRAPH
========================================================= */

.hero-copy p {
    color: #fff;

    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.65),
        0 0 2px rgba(170, 170, 170, 0.75);
}


/* =========================================================
   BUTTONS / LINKS
========================================================= */

.hero-copy .btn,
.hero-copy a {
    text-shadow: none;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.tagline {
    max-width: 580px;

    margin: 0 0 28px;

    font-size: 17px;
    line-height: 1.6;

    font-weight: 500;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   CAMPAIGN DATE
========================================================= */

.campaign-date {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 26px;

    font-size: 15px;
}

.campaign-date b,
.campaign-date strong {
    display: block;
}

.campaign-date strong {
    margin-top: 3px;
    font-size: 16px;
}

.calendar {
    font-size: 34px;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-btn {
    padding: 13px 25px;
    font-size: 15px;
}


/* =========================================================
   HERO NOTE
========================================================= */

.hero-note {
    position: absolute;

    right: 3%;
    top: 85px;

    color: #ffffff;

    text-align: center;

    font-size: 18px;
    font-style: italic;

    line-height: 1.2;

    transform: rotate(-4deg);

    z-index: 3;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-note b {
    font-size: 26px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 992px) {

    .hero {
        height: 560px;
    }

    .hero-copy {
        max-width: 570px;
    }

    .hero h2 {
        font-size: 42px;
    }

    .tagline {
        font-size: 16px;
    }

    .hero-note {
        right: 4%;
        top: 60px;
        font-size: 16px;
    }

    .hero-note b {
        font-size: 22px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        height: 520px;
    }

    .slide {
        /*
         * Keep image visible on mobile.
         */
        background-image:
            linear-gradient(
                90deg,
                rgba(0, 52, 92, 0.65) 0%,
                rgba(0, 62, 101, 0.40) 60%,
                rgba(0, 80, 110, 0.12) 100%
            ),
            var(--bg);

        background-position: center center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-copy {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .tagline {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .campaign-date {
        font-size: 14px;
    }

    .campaign-date strong {
        font-size: 15px;
    }

    .calendar {
        font-size: 28px;
    }

    .hero-note {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {
        height: 500px;
    }

    .hero h2 {
        font-size: 31px;
    }

    .tagline {
        font-size: 14px;
    }

    .hero-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
}

/* =========================================================
   HERO SLIDER CONTROLS
========================================================= */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);

  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;

  font-size: 32px;
  line-height: 1;

  cursor: pointer;
  transition: 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.4);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 18px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 10px;

  border: 0;
  border-radius: 50%;

  background: #ffffff;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

/* ================================
   Dashboard Year Selector
   ================================ */

.dashboard-year-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 auto 25px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.dashboard-year-wrapper label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}


/* Select container */
.year-select-box {
    position: relative;
    width: 150px;
}


/* Select */
#dashboardYear {
    width: 100%;
    height: 46px;

    padding: 0 42px 0 16px;

    border: 1px solid #dbe3ef;
    border-radius: 12px;

    background-color: #ffffff;

    color: #1e293b;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    outline: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.07);

    transition: all 0.25s ease;
}


/* Hover */
#dashboardYear:hover {
    border-color: #3b82f6;

    box-shadow:
        0 5px 18px rgba(59, 130, 246, 0.12);
}


/* Focus */
#dashboardYear:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* Dropdown options */
#dashboardYear option {
    background: #ffffff;
    color: #1e293b;

    font-size: 15px;
    font-weight: 500;

    padding: 10px;
}


/* Custom arrow */
.year-select-box::after {
    content: "";

    position: absolute;

    right: 17px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;

    transform: translateY(-65%) rotate(45deg);

    pointer-events: none;
}


/* Mobile */
@media (max-width: 576px) {

    .dashboard-year-wrapper {
        justify-content: space-between;
        padding: 0 10px;
    }

    .dashboard-year-wrapper label {
        font-size: 14px;
    }

    .year-select-box {
        width: 125px;
    }

    #dashboardYear {
        height: 42px;
        font-size: 14px;
        padding-left: 13px;
    }

}
/* =========================================================
   STATISTICS
========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 25px 0;
}

.stat-card {
  min-height: 115px;

  border: 1px solid #e3ebf2;
  border-radius: 10px;

  background: #ffffff;

  box-shadow: 0 4px 15px rgba(0, 35, 70, 0.08);

  display: flex;
  align-items: center;

  padding: 20px;
  gap: 17px;

  transition: 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 35, 70, 0.12);
}

.stat-icon {
  width: 65px;
  height: 65px;

  flex: 0 0 65px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  font-size: 30px;
  font-weight: 700;
}

.stat-icon.blue {
  background: #e5f5ff;
  color: #0875d1;
}

.stat-icon.green {
  background: #e9f9e9;
  color: #22a849;
}

.stat-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.2;
  color: #06467f;
}

.stat-card span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
  color: #375879;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-title {
  display: flex;
  flex-direction: column;
}

.section-title h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
  color: #073e70;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-heading .section-title {
  margin: 0;
}

.section-heading > a {
  color: #0072cf;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.section-heading > a:hover {
  text-decoration: underline;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 35px;
  padding: 20px 0 45px;
}

.about-copy > p {
  margin: 16px 0 20px;

  color: #506b89;
  font-size: 15px;
  line-height: 1.7;
}

.learn-btn {
  border-radius: 7px;
  padding: 10px 17px;
}


/* =========================================================
   PILLARS
========================================================= */

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

.pillars div {
  text-align: center;
  font-size: 13px;
}

.pillars i {
  width: 65px;
  height: 65px;

  margin: 0 auto 10px;

  border-radius: 50%;

  background: #e7f7eb;
  color: #0a9741;

  display: grid;
  place-items: center;

  font-size: 30px;
  font-style: normal;
}

.pillars b {
  display: block;
  line-height: 1.3;
}

/* =========================================================
   MAP
========================================================= */

.map-card {
    overflow: hidden;
    border: 1px solid #e1eaf1;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 40, 80, 0.08);
}

.map-head {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    background: #ffffff;

    font-size: 15px;
    font-weight: 700;
}

.map-head a {
    color: #0072cf;
    font-size: 13px;
    text-decoration: none;
}

.map-body {
    height: 330px;
    position: relative;
    overflow: hidden;
    background: #a8d8ee;
}

/* Real ArcGIS map */
.fake-map {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 0;
}

/* IMPORTANT:
   Remove the fake map overlay.
   It was sitting over the iframe and could block clicks.
*/
.fake-map::before {
    display: none !important;
}

.fake-map iframe {
    display: block;

    width: 100%;
    height: 500px;

    border: none;

    position: relative;
    z-index: 10;

    pointer-events: auto;
}
/* =========================================================
   VOLUNTEER
========================================================= */

.volunteer {
  position: relative;
  overflow: hidden;
  padding: 45px 0;
  background: linear-gradient(90deg, #dff3ff, #c8ebff);
}

.volunteer::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -20px;
  height: 55px;
  background: rgba(83, 179, 216, 0.32);
  border-radius: 50% 50% 0 0;
}

.volunteer-inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 50px;
}

.volunteer-copy {
  max-width: 420px;
  flex-shrink: 0;
}

.volunteer-copy h3 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.2;
  color: #073e70;
}

.volunteer-copy p {
  margin: 0 0 20px;
  color: #3c617d;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   VOLUNTEER LIST
========================================================= */

.volunteer-types {
  flex: 1;
  max-width: 750px;
}
.sop-title {
  margin: 0 0 15px;

  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;

  color: #073e70;
}
.volunteer-list {
  margin: 0;
  padding: 0;

  list-style: none;
  counter-reset: volunteer-counter;

  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 10px 15px;
}

.volunteer-list li {
  position: relative;

  min-height: 55px;
  padding: 12px 14px 12px 50px;

  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;

  color: #315b76;
  font-size: 13px;
  line-height: 1.45;

  box-shadow: 0 3px 12px rgba(0, 70, 110, 0.08);

  display: flex;
  align-items: center;

  counter-increment: volunteer-counter;
}

.volunteer-list li::before {
  content: counter(volunteer-counter);

  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);

  width: 25px;
  height: 25px;

  border-radius: 50%;

  background: #0069bd;
  color: #fff;

  font-size: 12px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   SOP DOWNLOAD
========================================================= */

.sop-download {
  margin-top: 18px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  background: #0069bd;
  color: #fff;

  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.sop-download i {
  font-size: 12px;
}

.sop-download:hover {
  background: #005596;
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 5px 15px rgba(0, 70, 110, 0.18);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

  .volunteer-inner {
    flex-direction: column;
    gap: 30px;
  }

  .volunteer-copy {
    max-width: 100%;
  }

  .volunteer-types {
    width: 100%;
    max-width: 100%;
  }

}

@media (max-width: 600px) {

  .volunteer {
    padding: 35px 0;
  }

  .volunteer-list {
    grid-template-columns: 1fr;
  }

  .volunteer-list li {
    min-height: auto;
  }

}

/* =========================================================
   EVENTS
========================================================= */

.events {
  padding: 50px 0;
}

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

.event-card {
  overflow: hidden;

  border: 1px solid #e3e9ee;
  border-radius: 10px;

  background: #ffffff;

  box-shadow: 0 3px 12px rgba(0, 40, 80, 0.08);

  transition: 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 8px 22px rgba(0, 40, 80, 0.13);
}

.event-card img {
  width: 100%;
  height: 170px;

  display: block;

  object-fit: cover;
}

.event-info {
  padding: 16px;
}

.event-info h4 {
  margin: 0 0 10px;

  font-size: 16px;
  line-height: 1.35;

  color: #073e70;
}

.event-info small {
  display: block;

  margin: 6px 0;

  font-size: 12px;
  line-height: 1.4;

  color: #4e6c88;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
  padding: 0 0 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 190px;

  display: block;

  object-fit: cover;

  border-radius: 9px;

  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}


/* =========================================================
   FOOTER
========================================================= */

.footer-main {
  padding: 35px 0;

  background: #034b7c;
  color: #ffffff;
}

.footer-inner {
  display: grid;

  grid-template-columns:
    1.25fr
    1.25fr
    2fr
    auto;

  align-items: center;

  gap: 30px;
}

.footer-gov,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
}

.footer-gov span {
  font-size: 11px;
  line-height: 1.5;
}

.footer-brand {
  font-size: 15px;
  font-weight: 600;
}

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

.footer-links a {
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials span {
  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: #0871b8;

  display: grid;
  place-items: center;

  font-size: 14px;

  transition: 0.2s ease;
}

.socials span:hover {
  background: #168bd3;
}

.footer-bottom {
  min-height: 45px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 11px;
  color: #56728d;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .container {
    width: min(100% - 30px, 1000px);
  }

  .gov-brand {
    display: none;
  }

  .campaign-side {
    gap: 15px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .volunteer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .volunteer-types {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 24px);
  }


  /* Header */

  .topbar {
    min-height: 78px;
  }

  .campaign-brand {
    margin: auto;
  }

  .campaign-brand h1 {
    font-size: 21px;
  }

  .campaign-brand small {
    font-size: 10px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .campaign-side {
    display: none;
  }


  /* Navigation */

  .navbar {
    min-height: 50px;
  }

  .nav-inner {
    min-height: 50px;
  }

  .nav-link {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn:first-child {
    display: none;
  }


  /* Hero */

  .hero {
    height: 470px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 75px;
  }

  .hero-copy {
    max-width: 85%;
  }

  .hero h2 {
    font-size: 36px;
  }

  .tagline {
    font-size: 15px;
  }

  .campaign-date {
    font-size: 13px;
  }

  .campaign-date strong {
    font-size: 14px;
  }

  .hero-note {
    top: auto;
    right: 20px;
    bottom: 70px;
    font-size: 13px;
  }

  .hero-note b {
    font-size: 18px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 27px;
  }

  .slider-arrow.prev {
    left: 8px;
  }

  .slider-arrow.next {
    right: 8px;
  }


  /* Statistics */

  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .stat-card {
    min-height: 95px;
    padding: 15px;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
    font-size: 25px;
  }

  .stat-card strong {
    font-size: 24px;
  }

  .stat-card span {
    font-size: 12px;
  }


  /* About */

  .about-section {
    gap: 30px;
    padding: 15px 0 35px;
  }

  .section-title h3 {
    font-size: 23px;
  }

  .about-copy > p {
    font-size: 14px;
  }

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


  /* Map */

  .map-body {
    height: 400px;
  }

  .india-shape {
    width: 160px;
    height: 225px;
    left: 5%;
  }

  .search-box {
    width: 220px;
    right: 10px;
    top: 10px;
    padding: 14px;
  }


  /* Volunteer */

  .volunteer {
    padding: 35px 0;
  }

  .volunteer-copy h3 {
    font-size: 23px;
  }

  .volunteer-copy p {
    font-size: 13px;
  }

  .volunteer-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .volunteer-types div {
    min-height: 120px;
  }


  /* Events */

  .events {
    padding: 35px 0;
  }

  .event-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .event-card img {
    height: 190px;
  }

  .event-info h4 {
    font-size: 16px;
  }


  /* Gallery */

  .gallery {
    padding-bottom: 35px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-grid img {
    height: 140px;
  }


  /* Footer */

  .footer-main {
    padding: 30px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links {
    display: flex;
  }

  .footer-bottom {
    min-height: 55px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .campaign-brand h1 {
    font-size: 18px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .hero {
    height: 500px;
  }

  .hero h2 {
    font-size: 31px;
  }

  .hero-copy {
    max-width: 90%;
  }

  .hero-note {
    display: none;
  }

  .hero-btn {
    width: 100%;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-body {
    height: 450px;
  }

  .search-box {
    position: relative;
    top: auto;
    right: auto;

    width: calc(100% - 20px);

    margin: 10px;
  }

  .india-shape {
    left: 25%;
    top: 155px;
  }

  .volunteer-types {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img {
    height: 120px;
  }
  
}
/* =========================================================
   COMMON BREADCRUMB
   ========================================================= */

.breadcam-bg {
    border-bottom: 1px solid #e4e9ed;
}

.breadcam {
    padding: 13px 0;
}

.breadcam .container {
    max-width: 1200px;
}


/* Breadcrumb */

.common-breadcrumb {
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;
}


/* Items */

.common-breadcrumb li {
    position: relative;

    font-family: "Open Sans", sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: #666;
}


/* Separator */

.common-breadcrumb li:not(:last-child)::after {
    content: "›";

    display: inline-block;

    margin: 0 12px;

    color: #9ba5ad;

    font-size: 18px;
    font-weight: 400;

    line-height: 1;
    vertical-align: middle;
}


/* Links */

.common-breadcrumb li a {
    text-decoration: none;

    color: #555;

    transition: color 0.3s ease;
}


/* Home */

.common-breadcrumb li:first-child a {
    color: #008fd5;

    font-weight: 600;
}


/* Hover */

.common-breadcrumb li a:hover {
    color: #006fa8;
}


/* Current page */

.common-breadcrumb li:last-child a {
    color: #555;
    font-weight: 500;
}

