/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Noto+Serif+Devanagari:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #e07020;
  --orange-dk: #b85a10;
  --orange-lt: #fff3e0;
  --green:     #2e7d32;
  --green-lt:  #e8f5e9;
  --blue:      #1565c0;
  --blue-lt:   #e3f2fd;
  --brown:     #3e1f00;
  --cream:     #fdf6ed;
  --gray:      #666;
  --text:      #212121;
  --border:    #e0d5c5;
  --white:     #ffffff;
  --shadow:    0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --radius:    12px;
  --radius-lg: 20px;
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.serif { font-family: 'Noto Serif Devanagari', serif; }

/* ===== Tricolor stripe ===== */
.tricolor {
  height: 5px;
  background: linear-gradient(90deg, #ff9933 33.33%, #fff 33.33% 66.66%, #138808 66.66%);
}

/* ===== Navbar ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,0,0,.10);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9933, #138808);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.2rem;
  font-family: 'Noto Serif Devanagari', serif;
  flex-shrink: 0;
}

.nav-logo .title-wrap { line-height: 1.2; }
.nav-logo .title-wrap span:first-child { display: block; font-size: .78rem; color: var(--orange); font-weight: 600; }
.nav-logo .title-wrap span:last-child  { display: block; font-size: .95rem; color: var(--green);  font-weight: 700; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: #444;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: #fff3e0;
  color: var(--orange);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}

/* ===== Mobile nav ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .9rem;
  color: #444;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: #fff3e0;
  color: var(--orange);
  font-weight: 600;
}

/* ===== Page header ===== */
.page-header {
  position: relative;
  color: #fff;
  padding: 72px 20px;
  text-align: center;
  overflow: hidden;
}
.page-header .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header .content { position: relative; z-index: 1; }
.page-header .badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px 16px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-header p { font-size: 1.05rem; opacity: .88; }

/* ===== Section ===== */
.section { padding: 64px 20px; }
.section-sm { padding: 40px 20px; }
.container { max-width: 1200px; margin: auto; }
.container-md { max-width: 960px; margin: auto; }

.section-title {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.section-subtitle { color: var(--gray); margin-bottom: 36px; font-size: 1rem; }
.divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
  margin: 10px 0 30px;
}
.divider-center { margin: 10px auto 30px; }

/* ===== Grid helpers ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* Stat card */
.stat-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .22s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: 10px; opacity: .9; }
.stat-card .stat-val  { font-size: 2rem; font-weight: 700; margin-bottom: 4px; }
.stat-card .stat-lbl  { font-size: .88rem; opacity: .88; }

/* Gradient presets */
.grad-orange { background: linear-gradient(135deg, #e07020, #f0902a); }
.grad-green  { background: linear-gradient(135deg, #2e7d32, #43a047); }
.grad-blue   { background: linear-gradient(135deg, #1565c0, #1976d2); }
.grad-purple { background: linear-gradient(135deg, #6a1b9a, #8e24aa); }
.grad-pink   { background: linear-gradient(135deg, #c2185b, #e91e63); }
.grad-teal   { background: linear-gradient(135deg, #00695c, #00897b); }
.grad-red    { background: linear-gradient(135deg, #c62828, #e53935); }
.grad-amber  { background: linear-gradient(135deg, #f57f17, #fbc02d); }
.grad-brown  { background: linear-gradient(135deg, #4e342e, #6d4c41); }

/* ===== Badges / Tags ===== */
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tag-orange { background: #fff3e0; color: #e07020; }
.tag-green  { background: #e8f5e9; color: #2e7d32; }
.tag-blue   { background: #e3f2fd; color: #1565c0; }
.tag-purple { background: #f3e5f5; color: #7b1fa2; }
.tag-pink   { background: #fce4ec; color: #c2185b; }
.tag-red    { background: #ffebee; color: #c62828; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn:hover { transform: scale(1.04); box-shadow: 0 4px 20px rgba(0,0,0,.15); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dk); }
.btn-ghost  { background: rgba(255,255,255,.2); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-white  { background: #fff; color: var(--green); }

/* ===== Checklist ===== */
.checklist { display: flex; flex-direction: column; gap: 8px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: #444; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== Info list ===== */
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.info-row .icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.info-row h4 { font-size: .92rem; font-weight: 700; margin-bottom: 2px; }
.info-row p  { font-size: .85rem; color: var(--gray); }

/* ===== Dark banner ===== */
.dark-banner {
  background: linear-gradient(135deg, #1b4d1e, #2e7d32);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.dark-banner h2 { font-family: 'Noto Serif Devanagari', serif; font-size: 2rem; margin-bottom: 16px; }
.dark-banner p  { color: #c8e6c9; font-size: 1rem; max-width: 680px; margin: 0 auto 30px; line-height: 1.8; }

/* ===== Video embed ===== */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== Number list ===== */
.num-list { display: flex; flex-direction: column; gap: 12px; }
.num-item { display: flex; align-items: flex-start; gap: 12px; }
.num-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--orange-lt);
  color: var(--orange);
  font-weight: 700;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.num-item p { font-size: .9rem; color: #444; line-height: 1.6; }

/* ===== Member card ===== */
.member-card {
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1.5px solid;
  transition: transform .2s;
}
.member-card:hover { transform: translateY(-3px); }
.member-card .name { font-weight: 700; font-size: .95rem; }
.member-card .role { font-size: .82rem; margin-top: 2px; }
.mc-orange { background: #fff8f0; border-color: #f5c08a; }
.mc-orange .role { color: var(--orange); }
.mc-green  { background: #f0faf0; border-color: #a5d6a7; }
.mc-green  .role { color: var(--green); }
.mc-blue   { background: #f0f4ff; border-color: #90caf9; }
.mc-blue   .role { color: var(--blue); }
.mc-pink   { background: #fff0f5; border-color: #f48fb1; }
.mc-pink   .role { color: #c2185b; }
.mc-purple { background: #f5f0ff; border-color: #ce93d8; }
.mc-purple .role { color: #7b1fa2; }

/* ===== Sector plan card ===== */
.sector-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .22s; }
.sector-card:hover { transform: translateY(-4px); }
.sector-head { padding: 18px 22px; color: #fff; display: flex; align-items: center; gap: 12px; }
.sector-head span { font-size: 1.8rem; }
.sector-head h3 { font-size: 1.02rem; font-weight: 700; }
.sector-body { background: #fff; padding: 18px 22px; }
.sector-body li { font-size: .88rem; color: #444; padding: 5px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: flex-start; gap: 8px; }
.sector-body li:last-child { border-bottom: none; }
.sector-body li::before { content: "›"; color: var(--green); font-weight: 700; }

/* ===== Timeline (emergency contacts) ===== */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.contact-item:hover { transform: translateY(-2px); }
.contact-item .c-icon { font-size: 1.6rem; }
.contact-item .c-name { font-size: .88rem; font-weight: 600; color: var(--text); }
.contact-item .c-num  { font-size: .95rem; font-weight: 700; color: var(--orange); }

/* ===== Map ===== */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 3px solid var(--border); box-shadow: var(--shadow-lg); }
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }

/* ===== Image rounded ===== */
.img-rounded { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Highlight box ===== */
.highlight-box {
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 4px solid;
}
.hl-orange { background: #fff8f0; border-color: var(--orange); }
.hl-green  { background: #f0faf0; border-color: var(--green); }
.hl-blue   { background: #f0f4ff; border-color: var(--blue); }

/* ===== Footer ===== */
footer {
  background: #2d1a0a;
  color: #f5deb3;
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9933, #138808);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.3rem;
  font-family: 'Noto Serif Devanagari', serif;
  margin-bottom: 12px;
}
.footer-brand .fn  { font-size: 1.1rem; font-weight: 700; color: #ffb74d; }
.footer-brand .fs  { font-size: .82rem; color: #cd853f; margin-bottom: 12px; }
.footer-brand p    { font-size: .85rem; color: #d4a96a; line-height: 1.7; }

footer h4 { color: #ffb74d; font-size: 1rem; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #5c3d1e; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #d4a96a; font-size: .88rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #ffb74d; }
.footer-links a::before { content: "›"; color: #ff9933; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: #d4a96a; }
.footer-contact li .fi { color: #ffb74d; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  border-top: 1px solid #5c3d1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: #a0785a;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-header h1 { font-size: 2rem; }
  .dark-banner { padding: 36px 24px; }
  .dark-banner h2 { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 16px; }
}

@media (max-width: 480px) {
  .btn { padding: 10px 20px; font-size: .88rem; }
  .section-title { font-size: 1.5rem; }
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.visible { animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ===== Hero (home page only) ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('temple.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(180,80,10,.88) 0%,
    rgba(30,90,30,.82) 55%,
    rgba(10,50,90,.78) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; padding: 20px; max-width: 840px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero h1 .highlight { color: #ffd54f; }
.hero .sub { font-size: 1.3rem; color: rgba(255,255,255,.9); margin-bottom: 8px; font-weight: 500; }
.hero .desc { font-size: 1rem; color: rgba(255,255,255,.78); margin-bottom: 32px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.6); font-size: .75rem;
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content:'';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0%,100%{opacity:1;top:6px} 60%{opacity:0;top:18px} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }

@media (max-width: 600px) {
  .hero h1 { font-size: 2.8rem; }
  .hero .sub { font-size: 1.05rem; }
}

