@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* ============ VARIABLES ============ */
:root{
  --maroon-dark: #3a0a0a;
  --maroon: #6b0f10;
  --maroon-light: #8a1414;
  --gold: #d4a017;
  --gold-bright: #f0c419;
  --gold-pale: #f9ebb2;
  --cream: #fdf6e3;
  --text-dark: #2b1010;
  --grey-bg: #efefef;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
  background:#fff;
  color: var(--text-dark);
  
}

a{text-decoration:none;color:inherit;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

/* ============ SBA TOP STRIP ============ */
.sba-top-strip {
  background: #620404;
  color: #E19C00;
  text-align: center;
  font-family: 'Cinzel', 'Poppins', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 4px 12px;
}

/* ============ SBA GOLD HEADER ============ */
.sba-header {
  background: #ECBD00;

}

.sba-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 12px;
}

.sba-om-circle{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
}

.sba-om-img{
    width:90px;
    height:90px;
    object-fit:contain;
}

.sba-title-block {
  flex: 1;
  text-align: center;
}

.sba-temple-name {
  font-family: 'Poppins', Georgia, serif;
  font-size: clamp(14px, 2vw, 26px);
  font-weight: 800;
  color: #620404;
  margin: 0;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.5px #c9a100;
  line-height: 1.2;
}

.sba-logo-right {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sba-logo-right img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* ============ SBA MAROON NAV BAR ============ */
.sba-navbar {
  background: #620404;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.sba-main-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   DROPDOWN MENU
=========================== */

.menu-item {
  position: relative;
}

.menu-item > a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ECBD00;
  text-decoration: none;
  font-family: 'Open Sans', 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.menu-item > a .arrow {
  font-size: 10px;
  opacity: 0.8;
  margin-left: 3px;
}

.menu-item:hover > a {
  background: #7a0505;
  color: #ffe082;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border-top: 3px solid #620404;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s;
  z-index: 999;
}

.menu-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 9px 14px;
  color: #3a0a0a;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
}

.submenu a:last-child { border-bottom: none; }

.submenu a:hover {
  background: #fdf3d0;
  color: #620404;
  padding-left: 20px;
  transition: padding-left 0.15s;
}

/* Flyout submenu */
.submenu-item {
  position: relative;
}

.submenu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fly-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #fff;
  border-top: 3px solid #620404;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: 0.2s;
  z-index: 1000;
}

.submenu-item:hover .fly-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hamburger (mobile) */
.sba-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.sba-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #ECBD00;
  border-radius: 2px;
  transition: 0.3s;
}

.sba-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.sba-hamburger.active span:nth-child(2) { opacity: 0; }
.sba-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .sba-header { padding: 8px 12px; }
  .sba-temple-name { font-size: 14px; }
  .sba-om-circle, .sba-logo-right { width: 44px; height: 44px; }
  .sba-om-symbol { font-size: 24px; }
  .sba-logo-right img { height: 44px; }

  .sba-hamburger { display: flex; }

  .sba-main-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #620404;
    padding-bottom: 8px;
  }

  .sba-main-menu.mobile-open { display: flex; }

  .menu-item > a {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: #7a0505;
    display: none;
    border-radius: 0;
  }

  .menu-item.mob-open .submenu { display: block; }

  .submenu a {
    color: #ffe082;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 28px;
  }

  .submenu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding-left: 32px;
  }

  .fly-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: #8a0606;
    display: none;
    border-radius: 0;
  }

  .submenu-item.mob-fly-open .fly-menu { display: block; }

  .fly-menu a {
    color: #ffd54f;
    padding: 8px 38px;
  }
}

/* ============ HERO CAROUSEL ============ */
/* .hero-wrap{
  padding:18px 24px 0;
  background:#fff;
} */
.hero-slide{
  position:relative;
  width:100%;
  margin:0 auto;
  background:#fff;
}
.hero-slide img{
  display:block;
  width:100%;
  height:auto;
}
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(255,255,255,0.85);
  color:var(--maroon);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  z-index:5;
  box-shadow:0 2px 8px rgba(0,0,0,0.25);
  transition:background .2s;
}
.hero-arrow:hover{background:#fff;}
.hero-arrow.left{left:10px;}
.hero-arrow.right{right:10px;}

/* .hero-dots {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-dots .dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#9c857b;
    border:none;
}

.hero-dots .dot.active{
    background:#e2a700;
} */

/* ============ NEWS TICKER ============ */
.news-strip{
    display:flex;
    align-items:center;
    width:100%;
    height:42px;
    background:#7b0909;
    border-top:3px solid #b32000;
    border-bottom:3px solid #f5e28b;
}

.news-title{
    display:flex;
    align-items:center;
    gap:8px;
    padding:0 16px;
    min-width:160px;
    color:#f2b705;
    font-size:13px;
    font-weight:700;
    border-right:1px solid rgba(255,255,255,.2);
}

.news-title svg{
    flex-shrink:0;
}

.news-marquee{
    flex:1;
    overflow:hidden;
}

.news-marquee marquee{
    line-height:42px;
}

.news-marquee a{
    color:#ffffff;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
}

.view-all-btn{
    height:42px;
    padding:0 18px;
    border:none;
    border-left:1px solid rgba(255,255,255,.2);
    background:transparent;
    color:#f2b705;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
}

.view-all-btn:hover{
    background:rgba(255,255,255,.08);
}

.view-all-btn span{
    font-size:12px;
}
/* ============ SECTION HEADINGS ============ */
.section-heading{
  text-align:center;
  padding:24px 0 8px;
}
.section-heading h2{
  color:var(--maroon);
  font-size:22px;
  font-weight:800;
}
.gold-divider{
  width:100px;
  height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin:10px auto 0;
  position:relative;
}
.gold-divider::before{
  content:'';
  position:absolute;
  left:50%;top:50%;
  width:8px;height:8px;
  background:var(--gold);
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.gold-divider.left{margin:10px 0 0;}

/* ============ DEVOTEE SERVICES ============ */
.services-section{
    background:#fff1b8;
    padding:28px 24px 48px;
}

.section-heading{
    text-align:center;
    margin-bottom:24px;
}

.section-heading h2{
    color:#a51400;
    font-size:28px;
    font-weight:500;
    margin-bottom:10px;
}

/* Divider */

.divider-design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
}


.divider-design .ornament {
    width: 70px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-design .ornament img {
    width: 300%;
    height: 500%;
    object-fit: contain;
}

/* Cards */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    max-width:1400px;
    margin:auto;
}

.service-card{
    background:#fff;
    border-radius:14px;
    text-align:center;
    padding:22px 16px;
    min-height:240px;
}

.service-icon{
    width:52px;
    height:52px;
    object-fit:contain;
    margin-bottom:14px;
}

.service-card h3{
    color:#111;
    font-size:15px;
    font-weight:600;
    margin-bottom:12px;
}

.service-card p{
    color:#222;
    font-size:13px;
    line-height:1.5;
    margin-bottom:18px;
}

.service-btn{
    background:#b01f00;
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 14px;
    border-radius:8px;
    font-weight:600;
}

.service-btn span{
    color:#ffcc00;
}

/* Responsive */

@media(max-width:1200px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:22px;
    }
}
.service-card{
    background:#fff;
    border-radius:14px;
    text-align:center;
    padding:22px 16px;
    min-height:240px;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 22px rgba(0,0,0,0.15);
}

.service-icon{
    width:60px;
    height:60px;
    object-fit:contain;
    margin:0 auto 16px;
    display:block;
}

.service-card p{
    min-height:60px;
}

.service-btn{
    background:#b01f00;
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:8px 16px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#8f1800;
}

/* ============ PAROKSHA SEVA / LIVE TV ============ */
.seva-section{
  display:flex;
  align-items:center;
  gap:28px;
  max-width:1400px;
  margin:30px auto;
  padding:0 20px;
  flex-wrap:wrap;
}
.seva-deity{
  flex:0 0 200px;
  display:flex;
  justify-content:center;
}
.seva-deity img{
  width:100%;
  max-width:200px;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}
.seva-cards{
  display:flex;
  gap:16px;
  flex:1;
  flex-wrap:wrap;
}
.seva-card{
  flex:1;
  min-width:220px;
  border:1px solid #e2e2e2;
  border-radius:10px;
  padding:14px;
  text-align:center;
}
.seva-card img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:6px;
  margin-bottom:10px;
}
.seva-card h3{color:var(--maroon);margin-bottom:7px;font-size:15px;}
.seva-card p{font-size:12px;color:#555;line-height:1.5;margin-bottom:12px;}

/* ============ PHOTO GALLERY ============ */
.gallery-section{
  max-width:1400px;
  margin:0 auto 36px;
  padding:0 20px;
  text-align:center;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:20px;
}
.gallery-grid img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:8px;
}
.gal-1{grid-row:span 2;height:100%;}

/* ============ ABOUT TEMPLE ============ */
.about-section{
  display:flex;
  align-items:center;
  gap:36px;
  max-width:1400px;
  margin:0 auto 40px;
  padding:0 20px;
  flex-wrap:wrap;
}
.about-image{
  flex:0 0 340px;
}
.about-image img{
  width:100%;
  border-radius:10px;
  box-shadow:0 8px 22px rgba(0,0,0,0.15);
}
.about-content{flex:1;min-width:240px;}
.about-content h2{color:var(--maroon);font-size:22px;margin-bottom:5px;}
.about-content p{
  font-size:13px;
  color:#444;
  line-height:1.7;
  margin:12px 0;
}
.about-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:8px;
}
.about-links a{
  color:var(--gold);
  font-weight:700;
  font-size:13px;
}


/* HERO */
.about-hero{
    background:#b60011;
    padding:20px 0;
    min-height:160px;
    display:flex;
    align-items:center;
}

.hero-content h1{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:4px;
}

.hero-content p{
    color:#fff;
    font-size:14px;
}

.hero-img{
    max-width:100%;
    width:700px;
}

/* BREADCRUMB */
.about-breadcrumb{
    background:#efefef;
    padding:8px 0;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}

.about-breadcrumb a{
    text-decoration:none;
    color:#b60011;
}

.about-breadcrumb span{
    margin:0 4px;
}

/* OVERVIEW */
.overview-section{
    padding:48px 0;
    text-align:center;
}

.section-title h2{
    color:#b60011;
    font-size:26px;
    font-weight:300;
}

.section-title strong{
    font-weight:700;
}

.divider{
    width:100px;
    height:3px;
    background:#e0b400;
    margin:10px auto 28px;
}

.overview-section p{
    max-width:1200px;
    margin:0 auto 14px;
    line-height:1.8;
    color:#333;
}

/* CARDS */
.cards-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:30px;
}

.about-card{
    border:1px solid #ddd;
    background:#fff;
    padding:18px;
    text-align:left;
}

.card-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    border-bottom:1px solid #ddd;
    padding-bottom:10px;
}

.card-head i{
    font-size:28px;
    color:#222;
}

.card-head h3{
    margin:0;
    font-size:20px;
}

.about-card ul{
    padding-left:16px;
}

.about-card li{
    margin-bottom:8px;
    color:#c86c00;
}

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

    .about-hero{
        text-align:center;
        padding:28px 0;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-img{
        margin-top:14px;
        width:100%;
    }

    .cards-row{
        grid-template-columns:1fr;
    }
}



.faq-section{
    padding:48px 0;
    background:#fff;
}

.faq-section h2{
    color:#a71f08;
    font-size:26px;
    font-weight:600;
}

.divider{
    width:100px;
    height:3px;
    background:#e8b300;
    margin:10px auto 28px;
    position:relative;
}

.faq-accordion .accordion-item{
    border:none;
    border-top:1px solid #e6e6e6;
    border-radius:0;
}

.faq-accordion .accordion-button{
    background:#fff;
    box-shadow:none;
    padding:14px 0;
    font-size:15px;
    font-weight:500;
    color:#111;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#111;
}

.faq-accordion .accordion-button::after{
    transform:scale(.8);
}

.faq-no{
    width:24px;
    height:24px;
    border:1px solid #b32011;
    border-radius:50%;
    color:#b32011;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    font-size:12px;
    flex-shrink:0;
}

.accordion-body{
    padding:0 0 14px 36px;
    font-size:13px;
    line-height:1.7;
}

.view-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 16px;
    background:#a71f08;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
}

.view-btn:hover{
    color:#fff;
    background:#8f1703;
}




/* PHOTO GALLERY */

.photo-gallery-section{
    padding:48px 0;
    background:#fff;
}

.photo-gallery-section .section-title h2{
    color:#a71f08;
    font-size:26px;
    font-weight:600;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:14px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.large{
    height:200px;
}

.wide{
    height:160px;
}

.gallery-item:not(.large):not(.wide){
    height:96px;
}

/* Button */

.gallery-btn{
    background:#7c0808;
    color:#fff;
    padding:8px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    gap:7px;
    align-items:center;
}

.gallery-btn:hover{
    background:#5d0505;
    color:#fff;
}

/* Mobile */

@media(max-width:991px){

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

    .large,
    .wide,
    .gallery-item{
        height:200px !important;
    }
}




.sevas-section{
    padding:48px 0;
    background:#fff;
}

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

.seva-card{
    border:1px solid #d9d9d9;
    background:#fff;
    border-radius:4px;
    overflow:hidden;
    transition:.3s;
}

.seva-card:hover{
    box-shadow:0 6px 16px rgba(0,0,0,.08);
    transform:translateY(-4px);
}

.seva-card img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.seva-content{
    padding:10px;
    text-align:center;
}

.seva-content h3{
    color:#a51d08;
    font-size:16px;
    font-weight:600;
    margin-bottom:7px;
}

.seva-content p{
    font-size:12px;
    line-height:1.6;
    color:#333;
    min-height:65px;
}

.view-link{
    color:#a51d08;
    text-decoration:none;
    font-weight:600;
    display:block;
    margin-bottom:9px;
}

.book-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#a51d08;
    color:#fff;
    padding:7px 14px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.book-btn:hover{
    background:#7e1302;
    color:#fff;
}

@media(max-width:1200px){
    .sevas-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .sevas-grid{
        grid-template-columns:1fr;
    }
}




.faq-section{
    padding:48px 0;
    background:#fff;
}

.faq-heading{
    text-align:center;
    margin-bottom:28px;
}

.faq-heading h2{
    color:#a61d08;
    font-size:26px;
    font-weight:600;
}

.faq-heading span{
    font-weight:700;
}

.faq-divider{
    width:100px;
    height:3px;
    background:#e5b000;
    margin:10px auto;
    position:relative;
}

.faq-divider::before,
.faq-divider::after{
    content:'';
    width:10px;
    height:10px;
    border:2px solid #e5b000;
    border-radius:50%;
    position:absolute;
    top:-4px;
}

.faq-divider::before{
    left:16px;
}

.faq-divider::after{
    right:16px;
}

.faq-number{
    width:24px;
    height:24px;
    border:1px solid #b41e0c;
    color:#b41e0c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    font-size:12px;
}

.accordion-item{
    border:none;
    border-bottom:1px solid #ececec;
}

.accordion-button{
    font-weight:600;
    font-size:15px;
    padding:14px 0;
    box-shadow:none !important;
    background:#fff !important;
}

.accordion-button:not(.collapsed){
    color:#111;
}

.accordion-body{
    padding-left:36px;
    font-size:13px;
    line-height:1.7;
}

.faq-btn-wrap{
    text-align:center;
    margin-top:22px;
}

.faq-btn{
    background:#a61d08;
    color:#fff;
    border:none;
    padding:8px 16px;
    border-radius:8px;
    font-weight:600;
}
/* ============ NEWSLETTER STRIP ============ */
.newsletter-strip{
  background: linear-gradient(180deg, #e0b020, #c89414);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  padding:16px 28px;
}
.newsletter-left p, .newsletter-right p{
  color:#4a0c0c;
  font-weight:700;
  margin-bottom:7px;
  font-size:13px;
}
.subscribe-box{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:6px;
  padding:8px 12px;
  gap:8px;
  max-width:300px;
}
.subscribe-box input{
  border:none;outline:none;flex:1;font-size:13px;
}
.subscribe-box button{color:var(--maroon);font-size:14px;}
.mail-ico{color:var(--maroon);}
.app-buttons{display:flex;gap:8px;flex-wrap:wrap;}
.store-btn{
  background:#000;
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
  font-size:12px;
  font-weight:600;
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--maroon-dark);
  color:#eee;
  padding-top:28px;
}
.footer-columns{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:16px;
  max-width:1400px;
  margin:0 auto;
  padding:0 20px 22px;
}
.footer-col h4{
  color:#fff;
  font-size:13px;
  margin-bottom:10px;
}
.footer-col a{
  display:block;
  color:#d8c2c2;
  font-size:12px;
  margin-bottom:7px;
}
.footer-col a:hover{color:var(--gold-bright);}

.footer-info{
  max-width:1400px;
  margin:0 auto;
  padding:14px 20px;
  border-top:1px solid rgba(255,255,255,0.15);
  position:relative;
  font-size:12px;
}
.footer-address{margin-bottom:10px;line-height:1.5;}
.footer-address span{color:#d8c2c2;}
.footer-contacts{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:#d8c2c2;
  margin-bottom:10px;
}
.footer-visitors{
  display:flex;
  gap:16px;
}
.footer-visitors b{
  background:#fff;
  color:var(--maroon-dark);
  padding:2px 6px;
  border-radius:4px;
  margin-left:4px;
}
.scroll-top{
  position:absolute;
  right:20px;
  bottom:16px;
  width:32px;height:32px;
  border-radius:50%;
  background:#fff;
  color:var(--maroon-dark);
  font-size:15px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding:12px 20px;
  font-size:11.5px;
  color:#cdb6b6;
}
.footer-bottom-left{display:flex;gap:8px;}
.footer-bottom-left a{
  width:22px;height:22px;border-radius:50%;
  background:rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
}
.footer-bottom-mid{display:flex;gap:12px;flex-wrap:wrap;align-items:center;}
.footer-bottom-mid a{color:var(--gold-bright);}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px){
  .services-grid{grid-template-columns:repeat(2, 1fr);}
  .footer-columns{grid-template-columns:repeat(3, 1fr);}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);}
  .gal-1{grid-row:auto;height:180px;}
}
@media (max-width: 900px){
  .menu-row{
    justify-content:flex-start;
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    transition:max-height .3s ease;
  }
  .menu-row.open{
    max-height:400px;
    padding:10px 20px;
  }
  .menu-item{padding:8px 0;border-bottom:1px solid #f0f0f0;width:100%;}
  .nav-utils a, .nav-utils .icon-circle{display:none;}
  .hamburger{display:flex;}
  .topbar-right a span:not(.ico){display:none;}
  .about-section{flex-direction:column;}
  .about-image{flex:0 0 auto;width:100%;max-width:340px;}
}
@media (max-width: 600px){
  .brand-name{font-size:13px;}
  .brand-logo{height:40px;}
  .menu-row{gap:10px;font-size:12px;}
  .hero-arrow{width:28px;height:28px;font-size:14px;}
  .services-grid{grid-template-columns:1fr;}
  .footer-columns{grid-template-columns:repeat(2, 1fr);}
  .gallery-grid{grid-template-columns:1fr;}
  .section-heading h2{font-size:18px;}
}
  /* ============ INNER PAGE ADDITIONS ============ */
  .page-hero{background:linear-gradient(135deg,var(--maroon-dark) 0%,var(--maroon) 60%,var(--gold) 100%);color:#fff;padding:36px 28px;text-align:center;}
  .page-hero h1{font-size:26px;font-weight:700;margin-bottom:7px;}
  .page-hero p{font-size:13px;opacity:.85;max-width:600px;margin:0 auto;}
  .breadcrumb-bar{background:#f9f3e3;border-bottom:1px solid #e8d8a0;padding:7px 28px;font-size:12px;color:#888;}
  .breadcrumb-bar a{color:var(--maroon);font-weight:600;}
  .breadcrumb-bar span{margin:0 5px;}
  .inner-content{max-width:1200px;margin:32px auto;padding:0 22px;}
  .inner-content h2{color:var(--maroon);font-size:20px;margin-bottom:12px;}
  .inner-content h3{color:var(--maroon-light);font-size:16px;margin:14px 0 8px;}
  .inner-content p{font-size:13px;color:#444;line-height:1.8;margin-bottom:14px;}
  .inner-content ul{padding-left:18px;margin-bottom:14px;}
  .inner-content ul li{font-size:13px;color:#444;line-height:1.9;}
  .info-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px;margin:24px 0;}
  .info-card{background:#fff;border:1px solid #eee;border-radius:10px;padding:18px 14px;box-shadow:0 3px 10px rgba(0,0,0,.06);text-align:center;}
  .info-card .card-icon{font-size:26px;margin-bottom:10px;}
  .info-card h3{color:var(--maroon);font-size:14px;margin-bottom:7px;}
  .info-card p{font-size:12px;color:#555;line-height:1.5;}
  .btn-maroon{background:var(--maroon);color:#fff;padding:8px 20px;border-radius:8px;font-weight:600;font-size:13px;display:inline-block;}
  .btn-maroon:hover{background:var(--maroon-light);color:#fff;}
  .center-btn{display:block;width:fit-content;margin:22px auto 0;}
  .timing-table{width:100%;border-collapse:collapse;margin:14px 0;}
  .timing-table th{background:var(--maroon);color:#fff;padding:9px 13px;text-align:left;font-size:13px;}
  .timing-table td{padding:8px 13px;border-bottom:1px solid #eee;font-size:13px;color:#444;}
  .timing-table tr:nth-child(even) td{background:#faf6f0;}
  .contact-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px;margin:20px 0;}
  .contact-card{background:#fff;border:1px solid #eee;border-radius:10px;padding:16px;box-shadow:0 3px 10px rgba(0,0,0,.06);}
  .contact-card h4{color:var(--maroon);font-size:14px;margin-bottom:7px;}
  .contact-card p{font-size:13px;color:#555;line-height:1.6;}
  .form-wrap{background:#fff;border:1px solid #eee;border-radius:10px;padding:22px;box-shadow:0 3px 12px rgba(0,0,0,.07);max-width:680px;margin:22px auto;}
  .form-wrap label{display:block;font-size:13px;font-weight:600;color:#333;margin-bottom:5px;margin-top:14px;}
  .form-wrap input,.form-wrap select,.form-wrap textarea{width:100%;border:1px solid #ddd;border-radius:8px;padding:9px 12px;font-size:13px;outline:none;font-family:inherit;}
  .form-wrap textarea{resize:vertical;min-height:100px;}
  .form-wrap button{margin-top:18px;background:var(--maroon);color:#fff;border:none;padding:10px 28px;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;}
  .highlight-box{background:#f9f3e3;border-radius:10px;padding:18px;margin-top:18px;border-left:4px solid var(--gold);}
  
/* ============ SHARED GALLERY SECTION (all pages) ============ */
.shared-gallery-section {
  background: #fff8ee;
  padding: 36px 0 30px;
  border-top: 3px solid #e5b400;
}
.shared-gallery-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.shared-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 24px;
}
.sg-item {
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
  height: 140px;
}
.sg-item.sg-large {
  grid-row: span 2;
  height: 100%;
  min-height: 292px;
}
.sg-item.sg-wide {
  grid-column: span 2;
}
.sg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sg-item:hover img {
  transform: scale(1.06);
}
.sg-btn {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: background .25s;
}
.sg-btn:hover { background: var(--maroon-light); color: #fff; }

@media (max-width: 900px) {
  .shared-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .sg-item.sg-large { grid-row: auto; height: 160px; min-height: unset; }
  .sg-item.sg-wide  { grid-column: auto; }
  .sg-item          { height: 160px; }
}
@media (max-width: 600px) {
  .shared-gallery-grid { grid-template-columns: 1fr; }
  .sg-item, .sg-item.sg-large { height: 180px; min-height: unset; }
}

/* ============ HAMBURGER BUTTON ============ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  z-index: 200;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ DROPDOWN ARROW ============ */
.menu-item .arrow {
  font-size: 9px;
  margin-left: 3px;
  vertical-align: middle;
  pointer-events: none;
}

/* ============ MOBILE MENU ============ */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .top-actions { display: none; }

  .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    padding: 70px 0 32px;
    box-shadow: 4px 0 20px rgba(0,0,0,.25);
    z-index: 1000;
  }
  .main-menu.mobile-open { display: flex; }

  .menu-item { width: 100%; border-bottom: 1px solid #f0f0f0; }
  .menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--maroon-dark);
  }
  .menu-item > a::after { display: none; }
  .menu-item .arrow { font-size: 11px; }

  .submenu {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    transition: max-height .3s ease, visibility 0s .3s;
    background: #fdf6e3;
    border-radius: 0;
  }
  .menu-item.mob-open .submenu {
    visibility: visible;
    max-height: 400px;
    transition: max-height .3s ease;
  }
  .submenu a {
    padding: 8px 26px;
    font-size: 13px;
    border-bottom: 1px solid #f3ead8;
    color: var(--maroon-dark);
  }
  .menu-item:hover > a { background: none; }
  .menu-item:hover .submenu { opacity: 1; visibility: visible; transform: none; }

  .temple-navbar { padding: 0 16px; flex-wrap: wrap; height: auto; min-height: 60px; }
  .logo-section { margin-right: 0; }
  .logo-section img { height: 50px; }
  .logo-text h2 { font-size: 12px; }
}

/* ============ FLYOUT (2ND LEVEL) SUBMENU ============ */
.submenu-item {
  position: relative;
}

.submenu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  color: #333;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
  transition: background .2s;
}

.submenu-item > a:last-child {
  border-bottom: none;
}

.submenu-item > a:hover {
  background: #fdf6e3;
  color: #6b0f10;
}

.fly-arrow {
  font-size: 9px;
  color: #888;
  flex-shrink: 0;
  margin-left: 6px;
}

/* The 3rd-level flyout panel */
.fly-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 4px 8px 24px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity .22s, transform .22s, visibility 0s .22s;
  z-index: 1100;
  border-left: 3px solid #e5b400;
}

.submenu-item:hover .fly-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .22s, transform .22s;
}

.fly-menu a {
  display: block;
  padding: 9px 13px;
  color: #333;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
}

.fly-menu a:last-child {
  border-bottom: none;
}

.fly-menu a:hover {
  background: #fff8e6;
  color: #6b0f10;
  padding-left: 18px;
}

/* Mobile: show flyout as accordion below parent */
@media (max-width: 1024px) {
  .fly-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    border-left: none;
    border-top: 1px solid #f0e8d0;
    background: #fffbf0;
    transition: max-height .3s ease, visibility 0s .3s;
  }
  .submenu-item.mob-fly-open .fly-menu {
    visibility: visible;
    max-height: 400px;
    transition: max-height .3s ease;
  }
  .submenu-item > a {
    padding: 9px 30px;
    background: #fdf6e3;
    color: #3a0a0a;
    font-weight: 500;
  }
  .fly-menu a {
    padding: 7px 42px;
    font-size: 12px;
  }
}




html{
    scroll-behavior:smooth;
}

.temple-layout{
    max-width:1200px;
    margin:32px auto;
    padding:0 16px;
    display:flex;
    gap:28px;
}

.temple-sidebar{
    width:220px;
    flex-shrink:0;
    position:sticky;
    top:100px;
    height:max-content;
    background:#f8f8f8;
    border-radius:8px;
    padding:14px;
}

.temple-sidebar h4{
    color:#8b1e1e;
    font-weight:700;
    margin-bottom:14px;
}

.temple-sidebar a{
    display:block;
    padding:9px 12px;
    text-decoration:none;
    color:#444;
    border-left:3px solid transparent;
    transition:.3s;
    font-weight:500;
    font-size:13px;
}

.temple-sidebar a:hover,
.temple-sidebar a.active{
    color:#8b1e1e;
    background:#fff3e0;
    border-left:3px solid #c59d5f;
}

.temple-content{
    flex:1;
    background:#fff;
}

.temple-content section{
    margin-bottom:48px;
}

.temple-content h2{
    color:#8b1e1e;
    font-size:22px;
    font-weight:700;
}

.section-divider{
    width:60px;
    height:3px;
    background:#c59d5f;
    margin:10px 0 20px;
    border-radius:10px;
}

.temple-content p{
    color:#555;
    line-height:1.8;
    font-size:14px;
}

.temple-content ol{
    padding-left:18px;
}

.temple-content li{
    margin-bottom:10px;
    line-height:1.7;
}

@media(max-width:991px){

    .temple-layout{
        flex-direction:column;
    }

    .temple-sidebar{
        width:100%;
        position:relative;
        top:0;
    }
}



/* ========================story======================== */



.story-layout{
    max-width:1400px;
    margin:32px auto;
    display:flex;
    gap:32px;
    padding:0 16px;
    font-family:sans-serif !important;
    font-size:smaller;
}

.story-sidebar{
    width:220px;
    background:#f3f3f3;
    border-radius:4px;
    padding:18px;
    min-height:400px;
}

.story-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.story-sidebar li{
    margin-bottom:14px;
}

.story-sidebar li::before{
    content:"•";
    color:#999;
    margin-right:8px;
}

.story-sidebar a{
    text-decoration:none;
    color:#b52a0e;
    font-weight:600;
}

.story-sidebar a.active{
    color:#f0c000;
}

.story-content{
    flex:1;
}

.story-content h2{
    text-align:center;
    color:#b52a0e;
    font-weight:700;
}

.gold-divider{
    width:100px;
    height:3px;
    background:#f0c000;
    margin:8px auto 22px;
}

.story-img{
    width:200px;
    float:left;
    margin-right:22px;
    margin-bottom:12px;
    border-radius:8px;
}

.story-content p{
    line-height:1.9;
    color:#333;
    text-align:justify;
}

.tab-content{
    display:none;
}

.active-content{
    display:block;
}

@media(max-width:991px){

    .story-layout{
        flex-direction:column;
    }

    .story-sidebar{
        width:100%;
        min-height:auto;
    }

    .story-img{
        width:100%;
        float:none;
        margin-right:0;
    }
}



/* ===============================darshnam============= */
.darshan-page{
    max-width:1200px;
    margin:36px auto;
    padding:0 14px;
}

.darshan-desc{
    text-align:center;
    color:#333;
    line-height:1.8;
    margin-bottom:28px;
}

.section-title{
    text-align:center;
    margin-bottom:28px;
}

.section-title h2{
    color:#a41f00;
    font-weight:600;
}

.gold-divider{
    width:100px;
    height:3px;
    background:#e6b400;
    margin:9px auto;
    position:relative;
}

.gold-divider:before{
    content:'';
    width:12px;
    height:12px;
    border:2px solid #e6b400;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:-5px;
    transform:translateX(-50%);
    background:#fff;
}

.darshan-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.darshan-card{
    border:1px solid #ddd;
    background:#fff;
    text-align:center;
    padding:22px 16px 0;
    position:relative;
}

.card-number{
    width:36px;
    height:36px;
    border:1px solid #ff8c2f;
    border-radius:50%;
    margin:0 auto 16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#3b4a99;
}

.darshan-card h3{
    color:#a41f00;
    font-size:18px;
    font-weight:600;
    line-height:1.2;
    margin-bottom:10px;
}

.darshan-card p{
    color:#444;
    min-height:50px;
}

.card-footer{
    margin-top:14px;
    padding:10px;
    background:#f2f2f2;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.card-footer span{
    font-size:18px;
    color:#222;
}

.book-btn{
    background:#a41f00;
    color:#fff;
    text-decoration:none;
    padding:6px 14px;
    border-radius:16px;
    font-size:12px;
}

.book-btn:hover{
    color:#fff;
}

@media(max-width:991px){

    .darshan-cards{
        grid-template-columns:1fr;
    }

    .darshan-card h3{
        font-size:16px;
    }
}


.sba-temple-name{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.title-icon{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.title-center-icon{
    width: 70px;
    height: 70px;
    object-fit: contain;
}


.gallery-img{
    cursor:pointer;
    transition:.3s;
}

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