/* =====================================================
   GLOBAL RESET & BASE STYLES
   ===================================================== */
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2b2b2b;
    background-color: #f5f1eb; /* Beige parchment */
    line-height: 1.7;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  /* ===== GLOBAL RESET ===== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* Prevent horizontal scroll */
  img, video {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* =====================================================
     TYPOGRAPHY SYSTEM
     ===================================================== */
  h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 1rem 0;
  }
  
  h1 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
  }
  
  h2 {
    font-size: clamp(22px, 4vw, 36px);
  }

  h3 {
    font-size: clamp(18px, 3vw, 24px);
  }
  
  p {
    margin: 0.5rem 0 1.5rem 0;
    max-width: 680px;
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.6;
  }
  
  /* =====================================================
     LAYOUT UTILITIES
     ===================================================== */
  
  .container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding-inline: 1.5rem;
  }
  
  .soft-bg {
    background-color: #efe7dc; /* subtle section separation */
  }

  /* =====================================================
   GLOBAL SECTION SEPARATION – TRUE UNIVERSAL
   ===================================================== */

  main > * + * {
    margin-top: 30px;
    position: relative;
  }

  main > * + *::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;

    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0)
    );

    pointer-events: none;
  }
  
  /* =====================================================
   GLOBAL CTA – GLASS DESIGN
   ===================================================== */

  .cta-glass {
    display: inline-flex;
    align-items: center;

    height: 50px;
    min-width: 260px;

    padding: 0 28px;

    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 3px solid rgba(0, 0, 0, 0.28);
    border-radius: 30px;

    color: #2b2b2b;
    text-decoration: none;

    font-family: Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 1.5px;

    box-shadow: 0 10px 24px rgba(0,0,0,0.18);

    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-glass:hover {
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  }

  .cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: clamp(14px, 2vw, 18px);
    white-space: nowrap;
  }

  /* =====================================================
   VERTICAL SPACING SYSTEM
   Change numbers once → affects everywhere
   ===================================================== */

  :root {
    --space-xs: 40px;
    --space-sm: 70px;
    --space-md: 100px;
    --space-lg: 130px;
    --h1: clamp(28px, 5vw, 48px);
    --h2: clamp(22px, 4vw, 36px);
    --h3: clamp(18px, 3vw, 24px);
    --body: clamp(15px, 2vw, 18px);
  }

  /* Apply padding using class */

  .pad-xs {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
  }

  .pad-sm {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .pad-md {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .pad-lg {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  html {
    scroll-behavior: smooth;
  }  

  /* ===== RESPONSIVE GRID ===== */

  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  
  @media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 768px) {
    .grid-2,
    .grid-3 {
      grid-template-columns: 1fr;
    }
  }

  /* =========================================
   UNIVERSAL RESPONSIVE FOUNDATION
========================================= */

  /* Prevent overflow everywhere */
  html, body {
    overflow-x: clip;
  }

  /* All sections auto responsive */
  section {
    width: 100%;
    padding: var(--space-md) 0;
    scroll-margin-top: 110px;
  }

  /* All images responsive */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Universal flex behavior */
  .flex {
    display: flex;
    gap: 2rem;
  }

/* =========================================
   UNIVERSAL MOBILE STACKING
========================================= */

  @media (max-width: 992px) {

    /* All flex layouts stack */
    .flex {
      flex-direction: column;
    }

    /* All grids collapse to 1 column */
    .grid-2,
    .grid-3 {
      grid-template-columns: 1fr;
    }

    /* Remove fixed heights automatically */
    [class*="image"],
    [class*="card"] {
      height: auto !important;
    }

  }

  @media (max-width: 992px) {
    [class*="content"] {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      transform: none !important;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: var(--space-sm) 0;
    }
  }
  
  /* =====================================================
   NAVBAR 1 – LANGUAGE BAR (STONE SOLID)
   ===================================================== */

  .lang-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .lang-switch a {
    margin-left: 14px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #333;
  }

  .lang-switch a:hover {
    text-decoration: underline;
  }

  .lang-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 32px;
    background-color: #e6e1da;
  }

  /* =====================================================
    NAVBAR 2 – MAIN NAV (TRANSPARENT OVER HERO)
    ===================================================== */

  .main-nav {
    position: sticky;
    top: 32px;
    z-index: 15;
    
    height: 56px;
    
    background: rgba(245, 241, 235, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
    
  .nav-inner {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
  } 

  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
  }
  
  .nav-logo img {
    height: 40px;   /* ideal for 56px navbar */
    width: auto;
    display: block;
  }

  /* Menu */
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
  }

  .nav-menu a {
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    color: #1E3557;
  
    display: inline-block;
    transition: 
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  
  .nav-menu a:hover {
    transform: translateY(-2px);
    opacity: 0.75;
  }

  /* =====================================================
   ANCHOR OFFSET FOR STICKY NAV
   ===================================================== */


/* ===== MOBILE NAV FIX ===== */

/* Hide by default (Desktop) */  
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
  }

  /* Default desktop */
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
  }

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

    .nav-inner {
      padding: 0 16px;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      position: absolute;
      top: 56px;
      left: 0;
      width: 100%;
      background: #f5f1eb;
  
      flex-direction: column;
      align-items: center;
      gap: 18px;
      padding: 20px 0;
  
      display: none;
    }
  
    .nav-menu.active {
      display: flex;
    }
  }

  /* =====================================================
   HERO SECTION – CLEAN IMAGE & TEXT PLACEMENT
   ===================================================== */

  .hero {
    position: relative;
    min-height: 90vh;
    padding-top: 110px; /* language bar + main nav */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-content {
    position: absolute;
    top: 26%;
    left: 28%;
    transform: translateY(-50%);
    max-width: 520px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta {
    position: absolute;
    right: 0;
    bottom: 20%;

    border-right: none;
    border-radius: 30px 0 0 30px;
  }

  @media (max-width: 768px) {
    .hero {
      background-size: contain;
      background-repeat: no-repeat;
      background-color: #f5f1eb;
    }

    .hero {
      display: flex;
      align-items: flex-start;
    }
  
    .hero-content {
      margin-top: -95px;
    }

    .hero-cta {
      bottom: 25%;   /* increase this number to move it upward */
    }
  }
    
  /* =====================================================
     UNVEILED ODISHA SECTION
     ===================================================== */
  
  #unveiled {
    position: relative;
    background:
    linear-gradient(rgba(239,227,207,0.95), rgba(239,227,207,0.95)),
    url("/images/paper-texture.webp");
    background-size: cover;
  }
  
  /* Remove extra container padding for this section only */
  #unveiled .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  #unveiled p {
    max-width: 720px;
  } 

  .unveiled-cta-position {
    position: absolute;
    right: 0;
    bottom: 40px;

    border-right: none;
    border-radius: 30px 0 0 30px;
  }

  @media (max-width: 900px) {

    .unveiled-wrapper {
      flex-direction: column;
      gap: 40px;
    }
  
    .unveiled-image,
    .unveiled-content {
      flex: 1 1 100%;
    }
  
    .unveiled-image img {
      height: auto;
    }
  
  }
  
  /* =====================================================
   UNVEILED ODISHA – 60/40 SPLIT LAYOUT
   ===================================================== */

  .unveiled-wrapper {
    display: flex;
    align-items: flex-start;  /* stop vertical centering */
    gap: 35px;
  } 
  
  .unveiled-content {
    flex: 0 0 40%;
    padding-top: 35px;  /* align with image top visually */
  }

  /* =====================================================
   UNVEILED ODISHA – IMAGE CONTROL
   ===================================================== */

  .unveiled-image {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
  }

  .unveiled-image img {
    width: 100%;
    max-height: 400px;      /* controls size */
    object-fit: cover;      /* keeps image proportion nice */
    border-radius: 14px;
  }

/* =====================================================
   WHY DISHANK EXISTS – STRUCTURE
   ===================================================== */

   .why-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }  
  
  /* Background image layer */
  .why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .why-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.2) contrast(0.9);
  }    
  
  /* Content above image */
  .why-content {
    position: absolute;
    z-index: 2;
  
    /* ===== CONTROL PANEL ===== */
    top: 15%;          /* Move up/down */
    left: 40%;         /* Move left/right */
    transform: translate(10%, -20%);
  
    max-width: 700px;  /* Text block width */
    text-align: center;
  }  

  .why-cta-position {
    position: absolute;
    right: 0;
    bottom: 20%;

    border-right: none;
    border-radius: 30px 0 0 30px;
  }
  
/* ================================
   TEXT STYLE
   ================================ */

  .why-content h2 {
    color: #111;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;  /* adjust */
  }
  
  .why-content p {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 0.5rem; /* adjust */
    color: #110202;
  }  
  
  /* Subtle readability boost (very soft) */
  .why-content h2,
  .why-content p {
    text-shadow: 0 8px 8px rgba(255,255,255,0.5);
  }

  @media (max-width: 768px) {

    .why-section {
      background-color: #f5f1eb;   /* same fallback tone */
      display: flex;
      align-items: flex-start;
    }
  
    .why-bg img {
      object-fit: contain;
      background-color: #f5f1eb;
      object-position: center 65%;
    }
  
    .why-content {
      margin-top: -100px;   /* adjust like hero */
    }
  
    .why-content {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .why-cta-position {
      bottom: 10%;   /* increase this number to move it upward */
    }
  
  }
    
/* =====================================================
   HOW DISHANK HELPS – PREMIUM STRUCTURE
   ===================================================== */

  .how-header {
    text-align: center;
    margin: 0 auto 3rem auto;
    max-width: 700px;   /* controls centering width */
  }
  
  .how-header h2 {
    margin: 0;
  }
  
  .how-intro {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1rem;
    color: #3b342b;
  }
  
  /* Pillars Layout */
  .how-pillars {
    display: flex;
    justify-content: space-between;  /* instead of center */
    align-items: stretch;
    gap: 60px;
    margin-bottom: 2rem;
  }
  
  .pillar {
    flex: 1;
    padding: 0 1.5rem;
    position: relative;
  } 
  
  /* Perfectly centered divider */
  .pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background: rgba(0,0,0,0.08);
  }  
  
  .pillar h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2f2a23;
  }
  
  .pillar p {
    font-size: 1rem;
    line-height: 1.2;
    color: #4a4338;
  }
  
  .connection-line {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0rem;
    color: #2a241d;
  }

  .how-section {
    position: relative;
    background-color: #f1ebe2;
  }  

  .how-closing {
    text-align: center;
    max-width: 680px;
    margin: 2rem auto 1rem auto;
  }    
  
  /* Ribbon CTA */
  .how-cta-position {
    position: absolute;
    right: 0;
    bottom: 110px;
    border-right: none;
    border-radius: 30px 0 0 30px;
  }  

  .how-watermark {
    position: absolute;
    top: 60px;
    left: 60px;
  
    font-size: 6rem;
    font-family: "Noto Serif Devanagari", serif;
  
    color: #2a241d;
    opacity: 0.05;
  
    letter-spacing: 2px;
  
    transform: rotate(-0deg); /* elegant slant */
    pointer-events: none;

    filter: blur(0.3px);
  }

  @media (max-width: 992px) {

    .how-pillars {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .pillar {
      background: #ffffff;
      padding: 20px 16px;
      border-radius: 12px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.06);
      text-align: center;
    }
  
    .pillar h3 {
      font-size: 1rem;
      margin-bottom: 10px;
    }
  
    .pillar p {
      font-size: 0.85rem;
      line-height: 1.4;
    }
  
    .pillar:not(:last-child)::after {
      display: none;
    }
  
    .connection-line {
      display: none;
    }

    .how-watermark {
      font-size: 3rem;
      top: 30px;
      left: 20px;
      opacity: 0.04;
    }

    .how-cta-position {
      position: static;
      margin-top: 40px;
    
      margin-left: auto;      /* pushes it right */
      margin-right: -1.5rem;  /* cancels container padding */
    
      width: 70%;             /* keeps it half length */
      min-width: unset;
    
      display: flex;
      justify-content: center;
    }
  
  }

  /* =====================================================
   TRAVEL SUPPORT SECTION
   ===================================================== */

  .support-section {
    position: relative;
    background-color: #e8dcc8;   /* perfectly blends with image */
  }

  .support-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    overflow: visible;
  }

  /* LEFT CONTENT 35% */
  .support-content {
    flex: 0 0 30%;
    position: relative;
    z-index: 2;
  }

  .support-content h2 {
    margin-bottom: 1.2rem;
    white-space: nowrap;   /* prevents line break */
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
    /* This makes it extend into image */
    width: max-content;
    margin-right: -140px;  /* adjust number */
  }

  .support-lead {
    font-size: 1rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    color: #2a241d;
  }

  .support-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4338;
  }

  /* RIGHT IMAGE 65% */
  .support-image {
    flex: 0 0 65%;
    height: 520px;          /* fixed height */
    overflow: hidden;
    background-color: #e8dcc8;  /* same as section */
  }

  .support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* THIS removes letterboxing */
    display: block;         /* removes inline gap */
    transform: translateX(40px);
    position: relative;
    top: -2px;
    mask-image: linear-gradient(to left, black 85%, transparent 95%);
  }

  .support-list {
    list-style: none;
    margin: 1rem 0;
  }
  
  .support-list li {
    margin-bottom: 0.9rem;
    font-size: 1rem;
    color: #3f382e;
    position: relative;
    padding-left: 18px;
  }
  
  /* Subtle minimal marker instead of bullets */
  .support-list li::before {
    content: ".";
    position: absolute;
    left: 0;
    color: #3a3328;
    font-weight: 700;
    font-size: 1rem;
  }  
  
  .support-closing {
    margin-top: 1.5rem;
    font-family: Georgia, serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #2a241d;
  }  

  /* CTA Ribbon */
  .support-cta-position {
    position: absolute;
    right: 0;
    bottom: 120px;

    border-right: none;
    border-radius: 30px 0 0 30px;
  }
  
  /* =========================================
   SUPPORT – MOBILE OPTIMIZATION
========================================= */

    @media (max-width: 992px) {

      .support-wrapper {
        flex-direction: column;
        gap: 30px;
      }

      .support-content {
        flex: 1;
        width: 100%;
      }

      .support-content h2 {
        white-space: normal;
        margin-right: 0;
        width: 100%;
        text-shadow: none;
      }

      .support-image {
        flex: 1;
        width: 100%;
        height: auto;
      }

      .support-image img {
        transform: none;
        mask-image: none;
      }

      .support-cta-position {
        position: static;
        margin-top: 40px;

        margin-left: auto;
        margin-right: -1.5rem;

        width: 70%;
        min-width: unset;

        display: flex;
        justify-content: center;
      }
    }
  /* =====================================================
     STORIES SECTION
     ===================================================== */
    
    .stories-section {
      position: relative;
      background: #efe5d6;
      text-align: center;
    }
    
    /* Title */
    .stories-title {
      font-size: 2.6rem;   /* slightly larger */
      margin-bottom: 0.5rem;
      color: #2a241d;
    }
    
    .stories-intro {
      display: block;
      text-align: center;
      font-size: 1.5rem;
      font-style: italic;
      margin-bottom: 0.5rem;
      color: #3b342b;
    }
    
    /* Framed Image */
    .stories-frame {
      width: 100vw;
      margin-left: 50%;
      transform: translateX(-50%);
      margin-bottom: 2.5rem;
      overflow: hidden;
    }
    
    .stories-frame img {
      width: 100%;
      height: auto;          /* keeps full image */
      display: block;
    
      filter: blur(0.4px);   /* very subtle softness */
    
      /* Vertical fade without cutting */
      mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
      );
    }           
    
    /* Body Text */
    .stories-text {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.2rem;
      line-height: 1.5;
      color: #4a4338;
    }

    .stories-inner {
      text-align: center;
    }
    
    .stories-intro,
    .stories-text,
    .stories-title {
      margin-left: auto;
      margin-right: auto;
    }    
    
    /* CTA Ribbon */
    .stories-cta-position {
      position: absolute;
      right: 0;
      bottom: 120px;
    
      border-right: none;
      border-radius: 30px 0 0 30px;
    }

/* =========================================
   STORIES – MOBILE OPTIMIZATION
========================================= */

  @media (max-width: 992px) {

    .stories-frame {
      width: 100%;
      margin-left: 0;
      transform: none;
    }

    .stories-text {
      font-size: 1rem;
      line-height: 1.6;
    }

    .stories-title {
      font-size: 1.8rem;
    }

    .stories-intro {
      font-size: 1.1rem;
    }

    .stories-cta-position {
      position: static;
      margin-top: 40px;

      margin-left: auto;
      margin-right: -1.5rem;

      width: 70%;
      min-width: unset;

      display: flex;
      justify-content: center;
    }

  }

  /* =========================================
    ABOUT DISHANK – MAGAZINE STYLE
  ========================================= */

    .about-section {
      position: relative;
    
      background:
        radial-gradient(
          circle at 80% 20%,
          rgba(255,255,255,0.5),
          transparent 40%
        ),
        radial-gradient(
          circle at 10% 80%,
          rgba(210,195,170,0.3),
          transparent 50%
        ),
        #f5efe6;
    }  

    /* Archival Vertical Line + Year */
    .about-meta {
      position: absolute;
      left: 90px;
      top: 0;
      bottom: 0;
      width: 110px;
      pointer-events: none;
    }
    
    /* Year */
    .about-year {
      position: absolute;
      top: 70%;        /* control vertical placement */
      left: 0;
    
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    
      font-size: 5rem;
      font-weight: 800;
      letter-spacing: 10px;
    
      color: #f1c694;
      opacity: 0.4;
    }
    
    /* Vertical Line – RIGHT of text */
    .about-meta::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;           /* moves line to right side */
      width: 7px;         /* thickness */
      background: #f0d7b0f6; /* theme-aligned color */
    }       

    /* Content Container */
    .about-container {
      max-width: 760px;
      margin: 0 auto;
      padding-left: 140px;  /* increase from previous value */
    }

    /* Section Blocks */
    .about-block h2 {
      font-size: 2.3rem;
      margin-bottom: 1.5rem;
      font-weight: 500;
      color: #2a241d;
    }

    .about-block p {
      line-height: 1.9;
      margin-bottom: 1.2rem;
      color: #3b342b;
      font-size: 1.05rem;
    }

    /* Origin Styling */
    .about-origin {
      margin-top: 4rem;
      padding-left: 1.5rem;
      border-left: 2px solid rgba(0,0,0,0.1);
    }

    .about-origin p {
      line-height: 1.9;
      margin-bottom: 1.2rem;
      color: #3b342b;
      font-size: 1.05rem;
    }

    /* Declaration */
    .about-declaration {
      margin-top: 4rem;
      font-size: 1.4rem;
      font-weight: 300;
      color: #2a241d;
    }

    /* Principles */
    .about-principles {
      margin-top: 4rem;
    }

    .principle {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #2a241d;

      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .principle.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Pull Quote */
    .about-quote {
      margin-top: 6rem;
    }

    .quote-line {
      width: 80px;
      height: 1px;
      background: rgba(0,0,0,0.15);
      margin-bottom: 2rem;
    }

    .about-quote h3 {
      font-size: 2.2rem;
      font-style: italic;
      font-weight: 400;
      margin-bottom: 1.5rem;
      color: #422402;
    }

    .quote-note {
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 1rem;
      color: #3b342b;
    }

    .about-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('/images/grain.png');
      opacity: 0.03;
      pointer-events: none;
    }   
    
/* =========================================
   ABOUT – MOBILE OPTIMIZATION
========================================= */

  @media (max-width: 992px) {

    .about-meta {
      display: none;
    }

    .about-container {
      padding-left: 0;
    }

    .about-block h2 {
      font-size: 1.8rem;
    }

    .about-block p,
    .about-origin p,
    .quote-note {
      font-size: 1rem;
      line-height: 1.7;
    }

    .about-declaration {
      font-size: 1.2rem;
    }

    .about-quote h3 {
      font-size: 1.6rem;
    }

  }
    
/* =====================================================
   CTA SECTION – EDITORIAL SPLIT
   ===================================================== */

  .cta {
    background: linear-gradient(
      to right,
      #f4ede3 0%,
      #efe4d6 100%
    );
    position: relative;
    overflow: hidden;
  }
  
  .cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  
  /* LEFT TEXT */
  .cta-content {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
  
    /* This creates the overlap */
    margin-right: -60px;
  }
  
  .cta-overline {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.7;
  }
  
  .cta-content h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .cta-sub {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.85;
  }
  
  .cta-trust {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
  }
  
  /* RIGHT IMAGE */
  .cta-image {
    flex: 0 0 55%;
  }
  
  .cta-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: contrast(0.97) brightness(1.02);
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .cta-wrapper {
      flex-direction: column;
    }
  
    .cta-content {
      margin-right: 0;
      text-align: center;
    }
  
    .cta-trust {
      margin-left: auto;
      margin-right: auto;
    }
  }  

  /* CTA Button Text Centering */
  .cta .cta-glass {
    display: inline-flex;          /* enables flex centering */
    align-items: center;           /* vertical center */
    justify-content: center;       /* horizontal center */

    text-align: center;
  }
  
/* =========================================
   FORM SECTION – EDITORIAL SPLIT LAYOUT
  ========================================= */

  .form-section {
    background: #f5efe6;
  }

  /* Layout */
  .form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: start;
  }

  /* Left Text */
  .form-intro h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #2a241d;
  }

  .form-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: #3b342b;
  }

  .form-reassurance {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.8;
  }

  /* Form Styling */
  .form-box form {
    max-width: 520px;
  }

  .form-box input,
  .form-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    background: transparent;
    padding: 12px 0;
    margin-bottom: 1.8rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .form-box input:focus,
  .form-box textarea:focus {
    border-bottom: 1px solid #c8a978;
  }

  /* Textarea */
  .form-box textarea {
    min-height: 80px;
    resize: vertical;
  }

  /* Button spacing */
  .form-box .cta-glass {
    margin-top: 1.5rem;
  }

  /* WhatsApp Link */
  .whatsapp {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    color: #3f5f4a;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .whatsapp:hover {
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .form-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

/* Static WhatsApp Text Label */

  .whatsapp-label {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;

    color: #2a241d;
    opacity: 0.8;

    letter-spacing: 0.5px;
  }

/* WhatsApp Logo Button */

  .whatsapp-logo-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin-top: 2rem;

    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.2);

    background: transparent;
    color: #2a241d;

    padding: 0;
    line-height: 0;

    transition: all 0.3s ease;
  }

  .whatsapp-logo-btn svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .whatsapp-logo-btn:hover {
    background: rgba(200,169,120,0.15);
    border-color: #c8a978;
    transform: translateY(-3px);
  }
  
/* =========================================
   CLOSING SECTION – EDITORIAL SIGNATURE
========================================= */

  .closing-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 45%;
    gap: 5rem;
    align-items: center;           /* keeps both sides aligned */
    position: relative;   /* required for divider */
  }

  .closing-wrapper::after {
    content: "";
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
  
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(0,0,0,0.18),
      transparent
    );
  }    

  /* LEFT SIDE */
  .closing-left {
    max-width: 600px;       /* strong reading column */
    margin-left: auto;      /* pushes it slightly right */
    margin-right: auto;     /* centers inside left grid */
  }

  /* Title */
  .closing-title {
    font-size: 2rem;      /* slightly larger */
    font-weight: 500;
    margin-bottom: 2rem;
  }

  /* Text */
  .closing-text p {
    font-size: 1.1rem;     /* bigger */
    line-height: 1.5;       /* tighter than before */
    margin-bottom: 1rem;  /* reduce spacing */
  }

  /* Final line */
  .closing-final {
    margin-top: 2rem;
    font-weight: 500;
  }
  
  /* Right Column – Margin Style */
  .closing-right {
    font-size: 1rem;
    color: rgba(0,0,0,0.6);
    text-align: right;
    line-height: 1.8;
    align-self: center;
  
    margin-right: 9rem;   /* shift content left */
  }    

  .closing-right p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
  }  

  /* Subtle link */
  .closing-link {
    text-decoration: none;
    color: #2a241d;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    transition: border-color 0.3s ease;
  }

  .closing-link:hover {
    border-color: #c8a978;
  }

  /* Divider */
  .closing-divider {
    max-width: 1100px;
    margin: 70px auto 30px auto;
    height: 1px;
    background: rgba(0,0,0,0.1);
  }

  /* Bottom Signature */
  .closing-bottom {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.55);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .closing-wrapper {
      grid-template-columns: 1fr;
    }
  
    .closing-wrapper::after {
      display: none;
    }
  
    .closing-right {
      text-align: left;
      margin-right: 0;
    }
  }

  /* =========================================
   FOOTER BOTTOM STRIP
========================================= */

  .closing-bottom {
    width: 90%;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;
    font-size: 0.9rem;
  }

  /* Remove container padding influence */
  .closing-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .closing-link {
    text-decoration: none;
    color: #2a241d;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
  
  .seo-h1 {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    section {
      padding: 40px 0;
    }
  }

/* FULL SCREEN OVERLAY */
  .lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    /* Lighter translucent layer */
    background: rgba(245, 241, 235, 0.25);

    /* Softer blur */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

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

    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  /* POPUP */
  .lang-popup {
    position: relative;
    max-width: 900px;
    width: 85%;
    padding: 40px 60px;

    text-align: center;
    color: #3b2f26;

    font-family: serif;
    font-style: italic;
    font-weight: 600;
  }

  /* MESSAGE WRAPPER */
  .lang-message-wrapper {
    position: relative;
    width: 100%;
    min-height: 160px;
  }

  /* MESSAGE */
  .lang-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;

    font-size: 1.8rem;
    line-height: 1.9;
  }

  .lang-message.active {
    opacity: 1;
    transform: translateX(0);
  }

  /* ARROWS — ABSOLUTE POSITION */
  .lang-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    background: none;
    border: none;
    font-size: 5.6rem;
    font-weight: bold;
    cursor: pointer;

    color:rgba(5, 5, 5, 0.94);
    transition: transform 0.3s ease;
  }

  .lang-arrow.left {
    left: 0px;
  }

  .lang-arrow.right {
    right: 0px;
  }

  .lang-arrow:hover {
    transform: translateY(-50%) scale(1.2);
  }

  .lang-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .enter-hint {
    margin-top: 26px;
    font-size: 1.1rem;
    opacity: 0.7;
    letter-spacing: 1px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .lang-overlay {
    animation: overlayFade 0.45s ease forwards;
  }
  
  @keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

/* MOBILE */
@media (max-width: 768px) {

    .lang-popup {
      width: 90%;
      padding: 20px 40px;
    }

    .lang-message {
      font-size: 1.2rem;
    }

    .lang-message-wrapper {
      min-height: 250px;
    }

    .lang-arrow {
      font-size: 2rem;
    }
  }

@media (max-width: 1024px) {
    .enter-hint {
      font-size: 1rem;
      max-width: 90%;
      margin-top: 22px;
    }
  }

@media (max-width: 768px) {
    .enter-hint {
      font-size: 0.95rem;
      line-height: 1.5;
      letter-spacing: 0.5px;
      max-width: 95%;
      margin-top: 18px;
    }
  }

@media (max-width: 480px) {
    .enter-hint {
      font-size: 0.9rem;
      line-height: 1.45;
      margin-top: 16px;
    }
  }

/* Vertical Social Ribbon */
  .social-ribbon {
    position: fixed;
    bottom: 120px;
    left: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;

    padding: 20px 15px;

    /* Elegant glass look */
    background: rgba(255, 248, 240, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Stylish edge instead of hard curve */
    border-radius: 0 14px 14px 0;

    /* Highlight accent */
    border-left: 3px solid #a67c52;

    box-shadow: 2px 6px 18px rgba(0,0,0,0.12);
    z-index: 9999;
  }

  .social-ribbon a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    color: #3b2f26;
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .social-ribbon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .social-ribbon a:hover {
    transform: translateX(3px) scale(1.1);
    color: #a67c52; /* brand accent highlight */
  }

/* Brand Colors */
  .social-ribbon a:nth-child(1) { color: #E1306C; } /* Instagram */
  .social-ribbon a:nth-child(2) { color: #1877F2; } /* Facebook*/
  .social-ribbon a:nth-child(3) { color: #FF4500; } /* Reddit*/
  .social-ribbon a:nth-child(4) { color: #FF0000; } /* YouTube */
  .social-ribbon a:nth-child(5) { color: #000000; } /* X */
  
/* Tooltip label beside icon */
  .social-ribbon a::after {
    content: attr(data-label);
    position: absolute;
    left: 42px;
    background: rgba(59,47,38,0.9);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
  }

/* Show label on hover */
  .social-ribbon a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  @media (max-width: 768px) {
    .social-ribbon{
      bottom: 80px;   /* 👈 increase this */
      padding: 10px 6px;
      gap: 10px;
    }
  
    .social-ribbon a {
      width: 22px;
      height: 22px;
    }
  
    .social-ribbon svg {
      width: 18px;
      height: 18px;
    }
  }

  .social-ribbon a::after{
    display:none; /* hide hover labels */
  }

/* Hanging Editorial Flag */
  .editorial-flag {
    position: sticky;
    top: 89px; /* adjust based on navbar height */
    z-index: 999;

    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }

  /* Ribbon shape */
  .editorial-flag a {
    position: relative;
    display: inline-block;
  
    background: linear-gradient(
      135deg,
      #fff6e8 0%,
      #f5e6d3 40%,
      #f1dcc2 70%,
      #fff1df 100%
    );
  
    color: #2c2219; /* deeper cultural brown */
    text-decoration: none;
  
    padding: 8px 80px 8px 80px;
  
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 1rem;
  
    letter-spacing: 2.5px; /* increased spacing for premium feel */
  
    border-left: 4px solid #c69c6d;
    border-radius: 0 0 0 22px;
  
    box-shadow: 0 10px 26px rgba(166,124,82,0.25);
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  
    transition: all 0.35s ease;
  }

  /* subtle highlight glow */
  .editorial-flag a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 0 0 22px;
    background: linear-gradient(120deg, transparent, rgba(166,124,82,0.15), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  /* Hover interaction */
  .editorial-flag a:hover {
    transform: translateX(-4px);
    color: #a67c52;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }

  .editorial-flag a:hover::before {
    opacity: 1;
  }

  .editorial-flag a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.45),
      transparent
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
  }
  
  .editorial-flag a:hover::after {
    left: 120%;
  }

  @media (max-width: 768px) {
    .editorial-flag {
      top: 60px;
    }
  
    .editorial-flag a {
      font-size: 0.75rem;
      padding: 5px 20px;
      border-radius: 0 0 0 20px;
    }
  }

/* ===============================
LOGO ONLY NAVBAR (BLOG PAGE)
================================ */

  .nav-logo-only{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  
  height:80px;
  
  display:flex;
  align-items:center;
  
  padding-left:40px;
  
  background:#f5f1eb;
  
  z-index:1000;
  
  border-bottom:1px solid #e6ded4;
  }
  
  /* LOGO SIZE */
  
  .nav-logo-only img{
  height:34px;
  width:auto;
  }

  .nav-logo-only{
  transition:box-shadow 0.3s ease;
  }
    
  .nav-logo-only.scrolled{
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  }

  .editorial-placeholder{
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .editorial-container{
    text-align: center;
    max-width: 720px;
    margin: auto;
    padding: 120px 20px;
  }
  
  .editorial-content{
    margin-top: 30px;
    line-height: 1.8;
    opacity: 0.9;
  }
    
    .odisha-explorer{
    text-align:center;
    margin-bottom:40px;
    }
    
    #district-select{
    padding:10px 15px;
    font-size:16px;
    margin-top:10px;
    }
    
    .blog-list{
    margin-top:100px;
    }
    
    .blog-list ul{
    list-style:none;
    padding:0;
    }
    
    .blog-list li{
    margin-bottom:12px;
    }

/* ===============================
ODISHA KNOWLEDGE INDEX TABLE
=============================== */

#places-table{
  max-width:1100px;
  margin:50px auto;
  }
  
  /* table */
  .places-table{
  width:100%;
  border-collapse:collapse;
  font-size:0.97rem;
  }
  
  /* header */
  .places-table th{
  text-align:left;
  padding:18px 12px;
  font-size:0.8rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#7a6c60;
  border-bottom:2px solid #e6ded4;
  }
  

  /* rows */
  .places-table td{
  padding:20px 12px;
  vertical-align:top;
  border-bottom:1px solid #f0e9df;
  }
  
  /* row rhythm */
  .places-table tr:nth-child(even){
  background:#faf7f2;
  }
  
  /* hover */
  .places-table tr:hover{
  background:#f5f1eb;
  }
  
  /* place name */
  .place-name{
  font-weight:500;
  font-size:1.02rem;
  color:#2f241c;
  }
  
  /* description */
  .place-desc{
  color:#5a4d42;
  line-height:1.7;
  }

/* ===============================
CATEGORY TAGS
=============================== */

.place-category{
  font-size:0.75rem;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:600;
  }

  /* spiritual */
  .category-spiritual{
  color:#a67c52;
  }

  /* nature */
  .category-nature{
  color:#4f7a5d;
  }

  /* historical */
  .category-historical{
  color:#6a6a86;
  }

/* ==============================
UNFOLD ODISHA EDITORIAL DESIGN
============================== */
  
  /* EXPLORER */
  
  .odisha-explorer{
  margin:70px 0 40px 0;
  text-align:center;
  }
  
  .odisha-explorer h2{
  font-size:1.4rem;
  letter-spacing:1.5px;
  margin-bottom:20px;
  }
  
  #district-select{
  padding:10px 18px;
  font-size:0.95rem;
  border:1px solid #d9d1c6;
  background:#faf7f2;
  border-radius:6px;
  cursor:pointer;
  }
  
  /* ESSAYS */
  
  .blog-list{
  margin-top:90px;
  border-top:1px solid #e6ded4;
  padding-top:40px;
  }
  
  .blog-list h2{
  text-align:center;
  letter-spacing:2px;
  margin-bottom:30px;
  }
  
  .blog-list ul{
  list-style:none;
  padding:0;
  }
  
  .blog-list li{
  margin-bottom:16px;
  font-size:1rem;
  }
  
  .blog-list a{
  text-decoration:none;
  color:#3b2f26;
  border-bottom:1px solid transparent;
  transition:all 0.25s ease;
  }
  
  .blog-list a:hover{
  border-bottom:1px solid #a67c52;
  color:#a67c52;
  }

  .unfold-odisha{
    padding-top:140px;
    }

/* ==============================
UNFOLD ODISHA HEADER
============================== */

.nav-logo-only{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  background:#f5f1eb;
  border-bottom:1px solid #e6ded4;
  z-index:1000;
  }
  
  .logo-left img{
  height:34px;
  }
  
  .page-title{
  font-family:'Playfair Display', serif;  
  font-size:1.35rem;  
  letter-spacing:4px; 
  text-transform:uppercase;  
  color:#2f241c;  
  font-weight:500;
  }

  .page-title::after{
  content:"";
  display:block;
  width:60px;
  height:1px;
  background:#c9b8a5;
  margin-top:6px;
  }
  
  /* prevent page content hiding under header */
  
  .unfold-odisha{
  padding-top:140px;
  }

/* ==============================
UNFOLD ODISHA MASTHEAD
============================== */

.nav-logo-only{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;  
  padding:0 50px;  
  background:#f5f1eb; 
  border-bottom:1px solid #e6ded4;  
  z-index:1000;
  }

  .logo-left img{
  height:54px;
  width:auto;
  } 

  .logo-left{
  display:flex;
  align-items:center;
  }
  
  /* masthead */
  
  .masthead{
  text-align:right;
  }
  
  .masthead-title{ 
  font-family:'Playfair Display', serif;
  font-size:1.6rem;
  letter-spacing:5px;
  font-weight:500;
  color:#2f241c;
  }
  
  .masthead-subtitle{
  font-size:0.8rem;
  letter-spacing:2px;
  color:#7a6c60;
  margin-top:6px;
  text-transform:uppercase;
  }
  
  
  /* push content below masthead */
  
  .unfold-odisha{
  padding-top:140px;
  }

/* ==============================
PRINT STYLE TYPOGRAPHY
============================== */

  .unfold-odisha .container{
  max-width:1100px;
  margin:auto;
  padding:20px;
  }
   
/* ===============================
UNFOLD ODISHA INTRO
=============================== */

.unfold-intro{
  max-width:820px;
  margin:0 auto 90px auto;
  padding-left:18px;
  border-left:2px solid #e6ded4;
  }

  .unfold-intro h3{
  font-family:'Playfair Display', serif;
  font-size:1.1rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#7a6c60;
  margin-bottom:18px;
  }

  .unfold-intro p{
  font-size:1.1rem;
  line-height:1.9;
  color:#3f342c;
  margin-bottom:18px;
  }

  .unfold-intro p:first-of-type::first-letter{
  font-family:'Playfair Display', serif;
  font-size:3.2rem;
  float:left;
  line-height:0.9;
  padding-right:8px;
  padding-top:4px;
  color:#a67c52;
  }

  .unfold-intro{
  margin-top:20px;
  }

  .explorer-intro{
  margin-bottom:20px;
  font-size:1rem;
  line-height:1.8;
  color:#5a4d42;
  }


/* ===============================
DISTRICT EXPLORER
=============================== */

.odisha-explorer{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-top:70px;
  margin-bottom:60px;
  text-align:center;
  }
  
  
  /* title */
  .odisha-explorer h2{
  font-family:'Playfair Display', serif;
  font-size:1.3rem; 
  letter-spacing:2px; 
  margin-bottom:18px;  
  }
  
  
  /* control container */
  .district-control{
  display:flex;
  flex-direction:column;
  align-items:center; 
  gap:10px;
  width:300px;
  }
  
  
  /* label */
  .district-control label{
  font-size:0.85rem;
  letter-spacing:2px; 
  text-transform:uppercase; 
  color:#7a6c60; 
  text-align:center; 
  }
  
  
  /* wrapper */
  
  .district-select-wrapper{ 
  position:relative;
  width:100%;
  }
  
  
  /* dropdown */
  
  #district-select{
  width:100%;
  padding:12px 16px;
  font-size:0.95rem;
  border:1px solid #e6ded4;
  background:#faf7f2;
  border-radius:6px;
  font-family:Georgia, serif;
  cursor:pointer;
  appearance:none;
  text-align:center;
  }
  
  
  /* arrow */
  
  .district-select-wrapper::after{
  content:"▾";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  color:#7a6c60;
  pointer-events:none;
  }
  
  /* hover */
  
  #district-select:hover{
  border-color:#c7b8a4;
  background:#f5f1eb;
  }
  
  /* focus */
  
  #district-select:focus{
  outline:none;
  border-color:#a67c52;
  box-shadow:0 0 0 2px rgba(166,124,82,0.15);
  }

  .odisha-explorer h2::after{
  content:"";
  display:block;
  width:60px;
  height:1px;
  background:#e6ded4;
  margin:10px auto 0;
  }

  #places-table{
  width:100%;
  max-width:1100px;
  margin:50px auto;
  display:block;
  }

  .places-table{
  width:100%;
  table-layout:fixed;
  }

  .places-table td:nth-child(1){
  width:32%;
  }

  .places-table td:nth-child(2){
  width:14%;
  }

  .places-table td:nth-child(3){
  width:54%;
  }

.blog-intro{
  max-width:900px;
  margin:0 auto 35px auto;
  text-align:center;
  font-size:1rem;
  line-height:1.8;
  color:#5a4d42;
  }

.blog-notes{
  margin:60px auto 0 auto;
  max-width:820px;
  font-size:0.95rem;
  line-height:1.8;
  color:#5a4d42;
  }

.blog-disclaimer{
  margin-top:20px;
  font-size:0.85rem;
  color:#7a6c60;
  }

/* =========================================
UNFOLD ODISHA – ARTICLE LIST
========================================= */

.article-list {
  margin: 40px auto;
  max-width: 820px;
}

.article-card {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.article-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.article-card a {
  text-decoration: none;
  color: #2a241d;
}

.article-card a:hover {
  color: #a67c52;
}

.article-desc {
  font-size: 1rem;
  color: #4a4338;
  margin-bottom: 8px;
}

.article-meta {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
}

/* =========================================
ARTICLE PAGE
========================================= */

.article-container {
  max-width: 1100px;
}

.article-header {
  margin-bottom: 40px;
}

.article-date {
  font-size: 0.9rem;
  opacity: 0.6;
}

.article-body h2 {
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 20px;
}

.article-body p {
  max-width: 1200px;
}

.article-footer {
  margin-top: 60px;
  font-style: italic;
  opacity: 0.8;
}

.section-divider {
  margin: 60px 0;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.article-card h3::before{
  content:"👉 ";
  margin-right:6px;
}

.article-body figure{
  text-align:center;
}

.article-body figcaption{
  font-size:0.85rem;
  color:#6a6258;
  margin-top:8px;
}

.blog-note{
  margin-top:50px;
  padding:14px 18px;
  background:#f7f3ed;
  border-left:4px solid #a67c52;
  color:#4a4338;
  font-size:0.95rem;
}

/* ===============================
BLOG PAGINATION
=============================== */

.pagination{
  margin:40px auto 20px auto;
  text-align:center;
  font-size:0.9rem;
  letter-spacing:1px;
}

.pagination a{
  text-decoration:none;
  color:#3b2f26;
  padding:6px 10px;
  margin:0 4px;
  border-radius:4px;
  transition:all 0.25s ease;
}

.pagination a:hover{
  background:#efe7dc;
  color:#a67c52;
}

.pagination .active{
  color:#a67c52;
  font-weight:600;
}

.article-body img{
  display:block;
  margin:40px auto;
  width:100%;
  max-width:600px;   /* 👈 reduced from 720 */
  border-radius:6px;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.article-body em{
  display:block;
  max-width:640px;
  margin:8px auto 0 auto;
  text-align:center;
  font-size:0.85rem;
  color:#6a6258;
}

/* ===== TABLE RESPONSIVE ===== */

@media (max-width: 768px){

  #places-table{
    overflow-x:auto;
  }

  .places-table{
    min-width:600px;
  }

}

/* ===== NAVBAR & MASTHEAD FIX ===== */

@media (max-width: 768px){

  .nav-logo-only{
    height:auto;
    flex-direction:column;
    align-items:flex-start;
    padding:10px 20px;
  }

  .masthead{
    text-align:left;
    margin-top:6px;
  }

  .masthead-title{
    font-size:1.2rem;
    letter-spacing:3px;
  }

  .masthead-subtitle{
    font-size:0.7rem;
  }

  .unfold-odisha{
    padding-top:120px;
  }

}

/* ===== HERO TEXT FIX ===== */

@media (max-width: 768px){

  .hero-content{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    margin:20px auto;
    text-align:center;
    max-width:90%;
  }

}

/* ===== CTA BUTTON FIX ===== */

@media (max-width: 768px){

  .cta-glass{
    width:100%;
    justify-content:center;
  }

}

/* ===== SOCIAL RIBBON MOBILE ===== */

@media (max-width: 768px){

  .social-ribbon{
    bottom:20px;
    padding:8px;
  }

}

/* ===== GENERAL SMALL DEVICE IMPROVEMENTS ===== */

@media (max-width: 480px){

  h1{
    font-size:24px;
  }

  h2{
    font-size:20px;
  }

  p{
    font-size:14px;
  }

  .article-body img{
    max-width:100%;
  }

}

/* ===== HERO FIX FOR MOBILE ===== */

@media (max-width: 768px){

  .article-hero img{
    max-height: none;       /* remove height restriction */
    height: auto;           /* natural height */
    object-fit: contain;    /* show full image */
  }

}