/**
* Template Name: Medilab
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #353232; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #262423; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #353232; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3f3c3d;  /* The default color of the main navmenu links */
  --nav-hover-color: #353232; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3f3c3d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #353232; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fffaed;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3f3c3d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #5c5756;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  min-width: 200px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* @media (max-width: 1500px) {
  .menu-navbar .mainnav .navbar-nav .nav-item{
    padding: 15px 20px 5px !important;
    position: relative !important;
  }
}
@media (max-width: 1200px) {
  .menu-navbar .mainnav .navbar-nav .nav-item{
    padding: 15px 20px 5px !important;
    position: relative !important;
  }
} */

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  /* border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%); */
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}
.committe-pic{
    overflow: hidden;
    width: 50%;
    height: 100%;
    border-radius: 10%;
    flex-shrink: 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.utsava-hero img{
    display: block;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}
.utsava-hero {
     width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero {
  width: 100%;
  min-height: calc(100vh - 112px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.anubhanda .content ul {
  list-style: none;
  padding: 0;
  column-count: 3;
  margin-top: 25px;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
  align-items: center;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 26px;
  color: var(--accent-color);
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
  color: var(--accent-color);
}

.departments .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.departments .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.departments .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }

  .departments .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 250px;
  height: 200px;
  border-radius: 10%;
  flex-shrink: 0;
}
.donnar_picture{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctors .team-member .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
  transition: ease-in-out 0.3s;
}
.carousel-inner .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
}
.carousel-item{
  height: 450px;
}
.doctors .team-member:hover {
  transform: translateY(-10px);
}

.doctors .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding-left: 30px;
    text-align: center;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding: 5px 10px;
  position: relative;
  font-weight: 500;
  width: max-content;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member .social {
    justify-content: center;
  }
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.doctors .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.doctors .team-member .social a:hover {
  background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
  color: var(--contrast-color);
}

.doctors .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* .hero .content .why-box{background-color:rgb(25 119 204 / 80%);} */

.hero .content .why-box {
  background-color: rgba(53, 50, 50, 0.8);
}




.event_show .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.event_show .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.book-ticket {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.book-ticket:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/* Bronze tier color */
.bg-bronze {
  background-color: #cd7f32;
  color: #fff;
}

/* Subtle hover effect for rows */
/* .table-hover tbody tr:hover {
  background-color: #f9f9f9;
} */



.toggle-icon {
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

.project-toggle-area {
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.project-toggle-area:hover {
  background-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-item img {
  transition: transform 0.4s ease;
}

.project-item img:hover {
  transform: scale(1.03);
}



.project-dropdown-btn {
  color: var(--accent-color);
}

/* Smaller carousel height, clean rounded corners */
.carousel-inner img {
  border-radius: 10px;
}

/* Round dot indicators below image */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #999;
  margin: 0 4px;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
}

/* Optional: subtle hover for better UX */
.carousel-indicators [data-bs-target]:hover {
  background-color: #555;
}

/* Adjust controls to be smaller & cleaner */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70%;
  filter: invert(1) grayscale(100%);
}


.formatted-text {
  white-space: pre-wrap; /* preserves spaces + wraps lines */
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-family: "Noto Sans Kannada", "Arial", sans-serif;
}

.suddi-santhe-red-text {
  color: #c00000;
  font-weight: 600;
}

.suddi-santhe-blue-text {
  color: #153d63;
  font-weight: 600;
}

.suddi-santhe-pink-text {
  color: #a02b93;
  font-weight: 600;
}

.card:hover h3 {
   color: #dc3545;
}
.card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0px 0px 25px 0px #00000029 !important;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image zoom */
.card .card-img img {
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.verify_ticket .card {
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.verify_ticket .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* News container for context */
.newsletter-container {
    background-color: #0d1b2a; 
    padding: 20px;
    display: flex;
    justify-content: center;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1; 
    background-color: rgba(255, 255, 255, 0.1); 
    border: none;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #a0a0a0; 
}

.newsletter-form button {
    background-color: #ffffff;
    color: #0d1b2a;
    border: none;
    padding: 0 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #e0e0e0;
}

.privileges-section {
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
}

.privileges-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111827;
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.privilege-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f9fafb;
}

.privilege-item input {
    accent-color: #2563eb;
}

.privilege-item span {
    font-size: 14px;
    color: #374151;
}

/* utsava page */
.utsava-container{
  color: #353232;
}


.section-description-utsava{
  margin-bottom: 20px !important;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  color: #153d63;
  font-weight: 500;
}

.celebrate_head{
  color: #D12931;
  font-family: 'Times New Roman', Arial;
  font-weight: 500;
  vertical-align: baseline;
  font-size: 26px;
  margin-bottom: 15px;
  vertical-align: baseline;
}

.celebrate_head .utsava-text{
    margin-bottom: 30px;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
}

.highlight{
  font-weight: bold;
}
.utsava_ticket_info{
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.utsava_ticket_info ul {
  list-style: none;
  padding-left: 0;
}

.utsava_ticket_info ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15px;
}

.utsava_ticket_info ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: #1f2a44;
}

.utsava_ticket_info .day-title{
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 15px;
}
.tickets {
  margin-top: 40px;
}

.ticket-title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c00000;
}

.ticket-note {
  margin-bottom: 15px;
  font-size: 15px;
}

.ticket-section {
  margin-top: 20px;
}
.ticket-section h4 {
  margin-bottom: 5px;
  font-size: 15px;
}

.ticket-section ul li {
  font-size: 14px;
  margin-top: 10px;
  margin-left: 15px;
}

.ticket-link {
  display: inline-block;
  margin-top: 5px;
  font-weight: bold;
  color: #f4b400;
  text-decoration: none;
  margin-left: 15px;
}

.ticket-link:hover {
  text-decoration: underline;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  height: 160vh;
  overflow: hidden;
}

.parallax-section .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}
.eventsliders .slick-list{
  padding: 25px 0;
} 

.eventsliders .slick-track{
  display: flex;
} 

.eventsliders .slick-track .slick-slide{
  margin-bottom: 0 !important;
  height: auto ;
}

.eventsliders .slick-track .slick-slide .card{
  height: 100%;
} 

.reg-membership{
  display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

}
.resend-code{
  display: flex;
    align-items: center;
    justify-content: end;
}
.resend-code .resendbtn{

      background-color: var(--main-site-color);
    border-radius: 8px;
    border: 2px solid transparent;
    padding: 5px 15px;
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.resend-code .resendbtn:hover {
    border-color: var(--main-site-color);
    background-color: transparent;
    color: var(--main-site-color);
}


/* ================= WRAPPER ================= */
.utsava_ticket_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0px 20px;
}

/* ================= DAY CARD ================= */
.utsava_day_card {
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 15px 35px rgba(21, 61, 99, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* Hover lift + glow */
.utsava_day_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 87, 34, 0.25);
}

/* Shimmer overlay */
.utsava_day_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 152, 0, 0.18),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}

.utsava_day_card:hover::before {
  transform: translateX(100%);
}

/* ================= DAY TITLE ================= */
.day-title {
  font-size: 20px;
  font-weight: 700;
  color: #153d63;
  margin-bottom: 18px;
  position: relative;
}

/* Animated underline */
.day-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 55px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff9800, #ff5722);
  transition: width 0.4s ease;
}

.utsava_day_card:hover .day-title::after {
  width: 120px;
}

/* ================= LIST ================= */
.utsava_day_card ul {
  list-style: none;
  padding-left: 0;
}

/* List item */
.utsava_day_card li {
  position: relative;
  padding: 14px 16px 14px 46px;
  margin-bottom: 14px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

/* List hover */
.utsava_day_card li:hover {
  transform: translateX(10px);
  box-shadow: 0 14px 28px rgba(255, 87, 34, 0.3);
}

/* ================= BULLET ================= */
.utsava_day_card li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff9800, #ff5722);
  transform: translateY(-50%);
  animation: pulseBullet 2s infinite;
}

/* Glow bullet on hover */
.utsava_day_card li:hover::before {
  box-shadow: 0 0 18px rgba(255, 87, 34, 0.8);
}

/* ================= HIGHLIGHT ================= */
.highlight {
  font-weight: 700;
  color: #ff5722;
}

.utsava_day_card li:hover .highlight {
  color: #e64a19;
}

/* ================= ANIMATION ================= */
@keyframes pulseBullet {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}

/* community partner desc */
.team-member {
    height: 100%;
}

.member-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-desc {
    flex-grow: 1;
}

.doctors .team-member .picture {
  overflow: hidden;
  width: 100px;
  flex-shrink: 0;
}

.kadak_utsava_link{
  color: #FBBB3B !important;
}

.home_buy_tocket_btn{
  background-color: #FBBB3B !important;
  font-weight: 600;
}


/* Main Events Title */
.events-main-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d62828;
}

/* Year Filter Box */
.year-filter-wrapper {
    max-width: 260px;
    margin: 0 auto;
}

.year-select {
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #ddd;
    cursor: pointer;
}

/* Section Titles */
.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #d62828;
    margin-bottom: 40px;
    position: relative;
}

/* Line Under Title */
.section-heading::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #d62828;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}



/* Advanced Modern Year Filter Tabs - Centered Design */

.year-filter-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
}

.year-filter-tabs {
    display: inline-flex;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.year-tab {
    position: relative;
    padding: 0.75rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.year-tab .tab-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Hover Effect */
.year-tab:hover {
    color: #dc3545;
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-1px);
}

/* Active Tab */
.year-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, #dc3545 0%, #D12931 100%);
    box-shadow: 0 4px 12px dc3545;
    font-weight: 600;
    transform: translateY(-2px);
}

.year-tab.active:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #dc3545 0%, #D12931 100%);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

/* Glassmorphism Effect (Optional Alternative) */
.year-filter-tabs.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Pill Style Variant (Uncomment to use) */
/*
.year-tab {
    padding: 0.65rem 1.75rem;
    border-radius: 30px;
}
*/

/* Responsive Design */
@media (max-width: 992px) {
    .year-filter-tabs {
        max-width: 90%;
        gap: 0.4rem;
    }
    
    .year-tab {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .year-filter-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.75rem 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .year-filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        border-radius: 40px;
        padding: 0.4rem;
        min-width: min-content;
        margin: 0 auto;
    }
    
    .year-tab {
        padding: 0.6rem 1.3rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .year-filter-tabs {
        gap: 0.3rem;
        padding: 0.35rem;
    }
    
    .year-tab {
        padding: 0.55rem 1.1rem;
        font-size: 0.8rem;
    }
}

/* Smooth Scroll for Mobile */
.year-filter-container::-webkit-scrollbar {
    height: 6px;
    margin-top: 8px;
}

.year-filter-container::-webkit-scrollbar-track {
    background: transparent;
}

.year-filter-container::-webkit-scrollbar-thumb {
    background: #D12931;
    border-radius: 10px;
}

.year-filter-container::-webkit-scrollbar-thumb:hover {
    background: #dc3545;
}

/* Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year-filter-tabs {
    animation: fadeInUp 0.5s ease-out;
}

/* Subtle Pulse Effect for Active Tab */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 12px #D12931;
    }
    50% {
        box-shadow: 0 6px 16px #dc3545;
    }
}

.year-tab.active {
    animation: subtlePulse 2s ease-in-out infinite;
}

/* Gallery Page frontend */
.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--main-site-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}
.gallery-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    position: relative;
}

/* Year Filter Tabs */
.year-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.year-filter-tabs {
    display: inline-flex;
    gap: 0.5rem;
    background: var(--white-color);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(209, 41, 49, 0.15);
    border: 1px solid rgba(209, 41, 49, 0.1);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.5s ease-out;
}

.year-tab {
    position: relative;
    padding: 0.75rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--dark-gray-color);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.year-tab:hover {
    color: var(--main-site-color);
    background: rgba(209, 41, 49, 0.08);
    transform: translateY(-1px);
}

.year-tab.active {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--main-site-color) 0%, #DD1C21 100%);
    box-shadow: 0 4px 12px rgba(209, 41, 49, 0.4);
    font-weight: 600;
    transform: translateY(-2px);
}

/* Event Filter Wrapper */
.event-filter-wrapper {
    min-width: 250px;
    max-width: 400px;
    flex: 1;
}

.modern-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--dark-gray-color);
    background: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-select:focus {
    outline: none;
    border-color: var(--main-site-color);
    box-shadow: 0 0 0 3px rgba(209, 41, 49, 0.1);
}

.modern-select:hover {
    border-color: var(--main-site-color);
}

/* Results Info Badge */
.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--main-site-color) 0%, #DD1C21 100%);
    color: var(--white-color);
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(209, 41, 49, 0.3);
    font-size: 0.95rem;
}

.results-badge .count {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Gallery Grid */
  .gallery-grid.hidden {
      display: none !important;
  }
  
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.6s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(209, 41, 49, 0.05);
    user-select: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(209, 41, 49, 0.25);
}

.gallery-item:active {
    transform: translateY(-6px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--main-site-color) 0%, var(--primary-color) 100%);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(209, 41, 49, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Image Count Badge */
.image-count-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4a91f 100%);
    color: var(--light-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 4px 15px rgba(251, 187, 59, 0.5);
    z-index: 2;
}

.image-count-badge svg {
    width: 16px;
    height: 16px;
}

.gallery-info {
    padding: 1.25rem;
}

.gallery-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--light-black);
    margin-bottom: 0.5rem;
}

.gallery-info-meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.875rem;
}

.gallery-info-event {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--main-site-color);
    font-weight: 600;
}

.gallery-info-event svg,
.gallery-info-date svg {
    width: 16px;
    height: 16px;
}

.gallery-info-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #666;
}

/* Gallery Viewer - Inline Display */
.gallery-viewer {
    display: none;
    background: #f8f9fa;
    border-radius: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(209, 41, 49, 0.1);
    animation: slideDown 0.4s ease;
    position: relative;
}

.gallery-viewer.active {
    display: block;
}

.gallery-viewer::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(209, 41, 49, 0.2), transparent);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.viewer-close {
    position: absolute;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--main-site-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(209, 41, 49, 0.5);
}

.viewer-close:hover {
    background: #b52229;
    transform: rotate(90deg) scale(1.1);
}

.viewer-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.viewer-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(209, 41, 49, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.viewer-info h2 {
    color: var(--main-site-color);
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.viewer-meta {
    color: #666;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.95rem;
}

.meta-divider {
    color: #ccc;
}

.viewer-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.viewer-btn {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e5e5;
    color: var(--dark-gray-color);
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.viewer-btn:hover {
    border-color: var(--main-site-color);
    color: var(--main-site-color);
    background: rgba(209, 41, 49, 0.05);
}

.viewer-btn.active {
    background: linear-gradient(135deg, var(--main-site-color) 0%, #DD1C21 100%);
    color: white;
    border-color: var(--main-site-color);
    box-shadow: 0 4px 12px rgba(209, 41, 49, 0.3);
}

.viewer-btn svg {
    width: 18px;
    height: 18px;
}

/* Grid View */
.viewer-grid {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.viewer-grid::-webkit-scrollbar {
    width: 8px;
}

.viewer-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.viewer-grid::-webkit-scrollbar-thumb {
    background: var(--main-site-color);
    border-radius: 4px;
}

.viewer-grid::-webkit-scrollbar-thumb:hover {
    background: #b52229;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.grid-image-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.grid-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(209, 41, 49, 0.25);
}

.grid-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Single View */
.viewer-single {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: flex-start;
    position: relative;
    min-height: 500px;
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
}


.single-image-container {
    width: 100%;
    max-width: 900px;
    max-height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;  
}


#singleImage {
    width: 100%;
    height: 600px;
    object-fit: contain;
}

.image-counter {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4a91f 100%);
    color: var(--light-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(251, 187, 59, 0.4);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    background: var(--primary-color);
    color: var(--light-black);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 187, 59, 0.5);
}

.nav-arrow:hover {
    background: #f4a91f;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-prev {
    left: 1rem;
}

.nav-next {
    right: 1rem;
}

.nav-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Thumbnail Strip */
.thumbnail-strip {
    width: 100%;
    max-width: 900px;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    background: white;
    border-radius: 0.5rem;
}

.thumbnail-strip::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: var(--main-site-color);
    border-radius: 4px;
}

.thumbnail-strip::-webkit-scrollbar-thumb:hover {
    background: #b52229;
}

.thumbnails-container {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    padding: 0 1rem;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-item:hover {
    border-color: rgba(251, 187, 59, 0.6);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(251, 187, 59, 0.5);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    color: #ddd;
    margin: 0 auto 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .year-filter-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .year-filter-tabs {
        width: 100%;
    }
    
    .event-filter-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .results-badge {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .viewer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .viewer-info h2 {
        font-size: 1.5rem;
    }
    
    .viewer-container {
        padding: 1.5rem;
    }
    
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .viewer-single {
        min-height: 400px;
        padding: 1rem;
    }
    
    .single-image-container {
        max-height: 400px;
    }
    
    #singleImage {
        max-height: 400px;
    }
    
    .nav-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .nav-prev {
        left: 0.5rem;
    }
    
    .nav-next {
        right: 0.5rem;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .viewer-close {
        width: 2rem;
        height: 2rem;
    }
    
    .viewer-close svg {
        width: 1rem;
        height: 1rem;
    }

}

/* CONTACT SECTION */
.contact-section {
    background: #f9fafc;
    font-family: 'Poppins', sans-serif;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.info-main-card {
    background: linear-gradient(
        135deg,
        var(--light-gray-color),
        var(--white-color)
    );
    border-left: 6px solid var(--primary-color);
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-main-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(209,41,49,0.25);
}

.info-main-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--main-site-color);
    color: var(--white-color);
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
}

.info-main-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-black);
    margin-bottom: 15px;
}

.info-main-card p {
   max-width: 520px;
    margin: 0 auto 14px;
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
}
/* Social buttons depth */

.social-links a {
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.social-links a:hover {
    transform: translateY(-2px);
}
/* Unified border radius */

.info-main-card,
.contact-form {
    border-radius: 14px;
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-links a {
    background: var(--main-site-color);
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-links a i {
    margin-right: 6px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--black-color);
}
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-site-color);
}
.btn-submit {
    width: 100%;
    background: var(--main-site-color);
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-color);
     color: var(--black-color);
}

.info-main-card p a {
    color: var(--main-site-color);
    font-size: 18px;
    margin-left: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.info-main-card p a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}
/* Text */

.info-main-card p {
    font-size: 15px;
    color: var(--dark-gray-color);
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: center;
}
/* CLICKABLE EMAIL BOX */

.contact-email {
    background: var(--white-color);
    border: 1px dashed var(--main-site-color);
    padding: 10px 18px;
    border-radius: 8px;
    margin: 18px auto;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--main-site-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--primary-color);
    color: var(--black-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-email i {
    font-size: 16px;
}

@media (max-width: 992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .info-main-card {
        padding: 25px 20px;
    }

}

/* signup page */
.form-group.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group.checkbox-row input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.form-group.checkbox-row label {
    margin: 0;
    font-size: 12px;
    color: #555;
    cursor: pointer;
}
/* Hidden consent text */

.consent-text {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
/* anubhanda */
.program-link{
    font-size:18px;
    font-weight:700;
    color: var(--secondary-color);
    line-height:1.2;
    font-family: var(--heading-font);
    text-decoration:none;
}

.program-link:hover{
    color:#e63946;
}

.section-header h2{
font-size:38px;
font-weight:700;
letter-spacing:1px;
color:#c62828;
}

/* Image */
.image-card{
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.image-card img{
width:100%;
height:420px;
object-fit:cover;
transition:.4s;
padding: 10px;
}

.image-card:hover img{
transform:scale(1.05);
}

/* Content */
.content-card{
padding:30px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.program-title{
font-size:26px;
margin-bottom:15px;
line-height: 1.2;
font-weight: 700;
color: var(--secondary-color);
font-family: var(--heading-font);
}

.program-desc{
color:#555;
line-height:1.7;
font-size:16px;
margin-bottom:25px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  text-decoration: none;
  margin-left: 8%;
  transition: color 0.2s;
  background-color: var(--main-site-color);
  padding: 8px 16px;
  border-radius: 30px;
}

.back-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* explore page */

.explore-modern {
    max-width: 1200px !important;
}

/* Card Style */
.explore-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Video Section */
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.video-wrapper img {
    width: 100%;
    transition: transform 0.4s ease;
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

/* Modern Play Button */
.modern-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s ease;
    text-decoration: none;
}

.modern-play-btn:hover {
    background: #b91c1c;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Text Styling */
.explore-content {
    padding: 10px 10px;
}

.explore-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 15px;
}

.explore-subtext {
    font-size: 16px;
    color: #6c757d;
}

.social-container{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items: center;
    justify-content: center;
}

.social-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:500;
    text-decoration:none;
    font-size:15px;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    animation:float 3s ease-in-out infinite;
}

.social-btn i{
    font-size:18px;
}
.text-red-500{
  color: red;
}
/* Floating animation */

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-6px);}
    100%{transform:translateY(0px);}
}

/* Facebook */

.facebook{
    background:linear-gradient(135deg,#1877F2,#0d5ed7);
}

.facebook:hover{
    background:#1877F2;
    box-shadow:0 10px 25px rgba(24,119,242,0.4);
    transform:translateY(-4px) scale(1.05);
}

/* Youtube */

.youtube{
    background:linear-gradient(135deg,#ff0000,#cc0000);
}

.youtube:hover{
    background:#ff0000;
    box-shadow:0 10px 25px rgba(255,0,0,0.4);
    transform:translateY(-4px) scale(1.05);
}

/* Instagram */

.instagram{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.instagram:hover{
    box-shadow:0 10px 25px rgba(221,42,123,0.4);
    transform:translateY(-4px) scale(1.05);
}
.social-container a{
  background: var(--main-site-color);
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.social-container a:hover {
    background: var(--primary-color);
    color: var(--black-color);
}
/* Responsive Fix */
@media (max-width: 991px) {
    .explore-card {
        padding: 25px;
    }
    .explore-text {
        font-size: 18px;
    }
}

/* ===== HERO SECTION ===== */
.kadak-hero {
    position: relative;
    /* min-height: 100vh; */
    background-size: contain;   /* important */
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
}

/* Content Layout */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Text */
.text-content {
    max-width: 550px;
}

.text-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: orange;
    
}

.text-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    color:#555;
}
/* Button */
.buy-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(45deg, #ff4d4d, #ff9900);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.4);
}

.buy-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.6);
}

/* Image */
.image-content img {
    max-width: 500px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Animations */
.animate-slide {
    animation: slideIn 1s ease forwards;
}

.animate-fade {
    animation: fadeIn 1.5s ease forwards;
}

.animate-bounce {
    animation: bounceIn 1.8s ease forwards;
}

.animate-zoom {
    animation: zoomIn 1.2s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    60% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content h1 {
        font-size: 30px;
    }

    .image-content img {
        max-width: 320px;
        margin-top: 30px;
    }
}

/* ── SECTION 1 – HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Track — NO CSS animation anymore, JS controls it */
.slides-track {
  display: flex;
  width: 300%;        /* 3 slides × 100% */
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.banner-slide {
  width: calc(100% / 3);   /* each slide = 1/3 of track = full viewport */
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

/* Slide images */
.banner-slide:nth-child(1) { background: url('/assets/img/anubhanda/anubandha.jpg') center/cover no-repeat; }
.banner-slide:nth-child(2) { background: url('/assets/img/anubhanda/anubandha_banner_english_final.png') center/cover no-repeat; }
.banner-slide:nth-child(3) { background: url('/assets/img/anubhanda/anubandha_banner_kannada_final.png') center/cover no-repeat; }

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 20;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.slider-arrow:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--saffron);
}


    /* ──────────────────────────────────────────
       SECTION 2 – ABOUT
    ────────────────────────────────────────── */
    .about-section {
      padding: 40px 0 30px;
      position: relative;
      overflow: hidden;
    }

    .about-section::before {
      content: 'ಅನುಬಂಧ';
      position: absolute;
      top: -2%;
      left: -2%;
      font-size: clamp(8rem, 18vw, 18rem);
      font-weight: 600;
      color: rgba(232,101,26,0.05);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      line-height: 1;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .about-left { position: relative; }

    .kannada-title {
      font-family: var(--heading-font);
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.1;
      color: var(--main-site-color);
      margin-bottom: 12px;
      display: block;
    }

    .about-en-title {
      color: var(--accent-color);
      font-size: 1rem;
      line-height: 26px;
      font-weight: 400;
      font-family: var(--body-font);
    }

    .about-divider {
      width: 100px;
      height: 2px;
      background: var(--primary-color);
      margin: 18px 0;
    }

    .about-stat {
      display: flex;
      gap: 40px;
      margin-top: 36px;
    }

    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--saffron);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    .about-right p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #4A3520;
      margin-bottom: 28px;
      font-family: var(--body-font);
    }

    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--warm);
      border: 1px solid rgba(232,101,26,0.2);
      border-radius: 12px;
      padding: 14px 22px;
      font-size: 0.85rem;
      color: var(--text);
      margin-top: 8px;
    }

    .badge-icon {
      width: 36px; height: 36px;
      background: var(--saffron);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
      flex-shrink: 0;
    }


    /* ──────────────────────────────────────────
       SECTION 3 – VIDEO SHOWCASE
    ────────────────────────────────────────── */
    .videos-section {
      background: snow;
      padding: 30px;
      position: relative;
      overflow: hidden;
      margin-bottom: 80px;
    }

    .videos-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,101,26,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .section-label {
      font-size: 0.9rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 14px;
      font-weight: 600;
    }

    .video-card{
      height: 350px;
      
    }
    .video-card video.video-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-carousel {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 16px;
      scrollbar-width: none;
    }
    .video-carousel::-webkit-scrollbar { display: none; }

   .video-card {
    flex-shrink: 0;
    width: 380px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

/* Play button always visible initially, hides after play starts */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(232,101,26,0.92);
  border: 3px solid rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* When video is playing, hide button — show on hover */
.video-card.is-playing .play-btn {
  opacity: 0;
}
.video-card.is-playing:hover .play-btn {
  opacity: 1;
}

/* Pause icon swap */
.video-card.is-playing .play-btn .fa-play { display: none; }
.video-card.is-playing .play-btn .fa-pause { display: inline-block; }
.video-card:not(.is-playing) .play-btn .fa-play { display: inline-block; }
.video-card:not(.is-playing) .play-btn .fa-pause { display: none; }

/* Fullscreen button — bottom right */
.fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.video-card:hover .fullscreen-btn { opacity: 1; }

/* Mute indicator badge */
.mute-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.video-card:hover .mute-btn { opacity: 1; }

    .video-meta-tag {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--saffron-light);
      margin-bottom: 6px;
    }

    .video-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: #fff;
      font-weight: 400;
      line-height: 1.3;
    }

    .carousel-nav {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
      justify-content: end;
    }

    .nav-btn {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      background: transparent;
      color: var(--msc-rgba);
      font-size: 1.2rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.25s;
    }
    .nav-btn:hover {
      background: var(--saffron-light);
      border-color: var(--saffron-light);
      color: var(--white-color);
    }


    /* ──────────────────────────────────────────
       SECTION 4 – PROGRAMS GRID
    ────────────────────────────────────────── */

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 16px;
      padding: 40px;
      background: var(--cream);
    }

    .program-card {
      position: relative;
      border: 1px solid rgba(232,101,26,0.15);
      border-radius: 14px;
      padding: 28px 22px;
      background: #fff;
      text-decoration: none;
      color: var(--text);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .program-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--saffron) 0%, var(--primary-color) 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(232,101,26,0.18);
      border-color: transparent;
    }

    .program-card:hover::before { opacity: 1; }

    .program-card:hover .program-num,
    .program-card:hover .program-name,
    .program-card:hover .program-arrow { color: #fff; }

    .program-num {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--saffron);
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }

    .program-name {
      font-family: var(--heading-font);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.2;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }

    .program-arrow {
      margin-top: auto;
      font-size: 0.8rem;
      color: var(--muted);
      position: relative;
      z-index: 1;
      transition: color 0.3s, transform 0.3s;
      align-self: flex-end;
    }

    .program-card:hover .program-arrow {
      transform: translate(4px, -4px);
    }

    /* Icon row per card */
    .program-icon {
      font-size: 1.4rem;
      position: relative;
      z-index: 1;
      opacity: 0.6;
      transition: opacity 0.3s;
    }
    .program-card:hover .program-icon { opacity: 1; color: rgba(255,255,255,0.9); }


    /* ──────────────────────────────────────────
       RESPONSIVE
    ────────────────────────────────────────── */
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-section::before { font-size: 22vw; }
    }

    @media (max-width: 640px) {
      .container { padding: 0 20px; }
      .video-card { width: 300px; }
      .programs-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── PAGE HERO STRIP ── */
    .page-hero {
      position: relative;
      background: var(--deep);
      padding: 80px 0 70px;
      overflow: hidden;
      text-align: center;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(232,101,26,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 80% 50%, rgba(201,149,42,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.68rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--saffron2);
      margin-bottom: 18px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--saffron2);
      opacity: 0.6;
    }

    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      color: #fff;
      line-height: 1.1;
      position: relative;
    }

    .page-hero h1 em {
      font-style: italic;
      color: var(--saffron2);
    }

    .hero-tagline {
      margin-top: 16px;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.04em;
      position: relative;
    }

    /* Breadcrumb */
    .breadcrumb-bar {
      background: var(--warm);
      border-bottom: 1px solid rgba(232,101,26,0.1);
      padding: 12px 0;
    }

    .breadcrumb-bar .anubhanda-detail {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .breadcrumb-bar a {
      color: var(--saffron);
      text-decoration: none;
    }

    .breadcrumb-bar a:hover { text-decoration: underline; }

    .breadcrumb-bar i { font-size: 0.6rem; }

    /* ── MAIN LAYOUT ── */
   .anubhanda-detail {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
      box-sizing: border-box;
    }
    .project-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: start;
      width: 100%;
    }
    /* ── LEFT: IMAGE CAROUSEL ── */
    .image-side {
        min-width: 0;
      }

    .modern-carousel {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 50px rgba(232,101,26,0.18),
        0 0 0 1px rgba(232,101,26,0.08);
    }

    .carousel-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
      will-change: transform;
    }

    .carousel-slide {
      flex-shrink: 0;
      width: 100%;
      height: 460px;
    }

    .carousel-slide img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
    }

    /* Prev / Next */
    .c-prev, .c-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      color: var(--text);
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      transition: all 0.25s;
      z-index: 10;
    }

    .c-prev { left: 14px; }
    .c-next { right: 14px; }

    .c-prev:hover, .c-next:hover {
      background: var(--saffron);
      color: #fff;
      transform: translateY(-50%) scale(1.08);
    }

    /* Counter badge */
    .slide-counter {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: rgba(15,8,2,0.72);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      padding: 5px 14px;
      border-radius: 100px;
      backdrop-filter: blur(8px);
      z-index: 10;
    }

    /* Dot indicators */
    .carousel-dots {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 10;
    }

    .c-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s;
    }

    .c-dot.active {
      width: 22px;
      border-radius: 3px;
      background: var(--saffron);
    }

    /* Thumbnail strip */
    .thumb-strip {
      display: flex;
      gap: 8px;
      margin-top: 12px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 4px;
    }
    .thumb-strip::-webkit-scrollbar { display: none; }

    .thumb-item {
      flex-shrink: 0;
      width: 68px; height: 52px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.25s, transform 0.25s;
      border: 2px solid transparent;
    }

    .thumb-item.active {
      opacity: 1;
      border-color: var(--saffron);
      transform: scale(1.05);
    }

    .thumb-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── RIGHT: CONTENT CARD ── */
    .content-side {
      display: flex;
      flex-direction: column;
      gap: 24px;
      min-width: 0;      /* critical — allows grid child to shrink */
      overflow: hidden;
    }

    .project-card {
      background: var(--white-color);
      border-radius: 20px;
      padding: 40px 36px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.07);
      border: 1px solid rgba(232,101,26,0.08);
      position: relative;
      overflow: hidden;
      animation: fadeSlideIn 0.7s ease both;
      word-break: break-word;   /* prevent long words overflowing */
      overflow-wrap: break-word;
    }

    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Decorative corner accent */
    .project-card::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 120px; height: 120px;
      background: radial-gradient(circle at top right, rgba(232,101,26,0.08), transparent 70%);
      pointer-events: none;
    }

    .card-label {
      font-size: 0.65rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .project-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 6px;
    }

    .title-underline {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--primary-color));
      border-radius: 2px;
      margin: 14px 0 22px;
    }

    .objective p {
      color: #4A3520;
      line-height: 1.85;
      font-size: 0.97rem;
    }

    /* Stats row */
    .stats-row {
      display: flex;
      gap: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(232,101,26,0.12);
      background: var(--warm);
    }

    .stat-cell {
      flex: 1;
      padding: 20px 16px;
      text-align: center;
      border-right: 1px solid rgba(232,101,26,0.12);
    }
    .stat-cell:last-child { border-right: none; }

    .stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--saffron);
      line-height: 1;
    }

    .stat-lbl {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    /* Partner badge */
    .partner-badge {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--warm);
      border: 1px solid rgba(232,101,26,0.15);
      border-radius: 14px;
      padding: 16px 20px;
    }

    .partner-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--saffron), var(--primary-color));
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .partner-text strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }

    .partner-text span {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* Cities */
    .cities-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .city-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(232,101,26,0.08);
      color: var(--saffron);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid rgba(232,101,26,0.2);
    }

    /* CTA Button */
    .project-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      color: white;
      background: linear-gradient(90deg, var(--saffron), var(--primary-color));
      box-shadow: 0 8px 24px rgba(232,101,26,0.3);
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }

    .project-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(232,101,26,0.4);
    }

    .project-btn i { font-size: 0.8rem; transition: transform 0.25s; }
    .project-btn:hover i { transform: translateX(4px); }

    .projects.section {
      overflow: hidden;
      width: 100%;
    }

    .thumb-video-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #1a1a2e;
      color: #fff;
      font-size: 1.6rem;
    }

    .carousel-slide video{
      height: 100%;
      object-fit: cover;
    }
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .project-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .image-side { position: static; }
      .carousel-slide img { height: 300px; }
    }

    @media (max-width: 580px) {
      .anubhanda-detail { padding: 0 16px; }
      .project-card { padding: 28px 20px; }
      .stats-row { flex-wrap: wrap; }
      .stat-cell { flex: 1 1 45%; border-bottom: 1px solid rgba(232,101,26,0.12); }
    }