@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: 'Indu-Normal';
  src: url('../fonts/ML-TTIndulekha-Normal.ttf')  format('truetype');
}
@font-face {
  font-family: 'Indu-Bold';
  src: url('../fonts/ML-TTIndulekha-Bold.ttf')  format('truetype');
}
@font-face {
  font-family: 'Indu-Extrabold';
  src: url('../fonts/ML-TTIndulekha-Extrabold.ttf')  format('truetype');
}
:root {
  --color-navy-dark: #071D33;
  --color-navy: #0A2540;
  --color-teal: #008060;
  --color-teal-light: #E6F4F0;
  --color-green: #00A86B;
}
.mainheading span.text-brand-green.english-font {
    font-size: 70%;
    font-weight: bold !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Offset for the sticky header */
}

.english-font, a, .font-sans {
   font-family: "Raleway", sans-serif !important;
}
body {
  font-family: "Raleway", sans-serif !important;
  color: var(--color-navy);
  background-color: #FCFDFD;
  overflow-x: hidden;
  letter-spacing: -.2px;
}

/* Custom Malayalam Font Helper */
.font-malayalam {
font-family: 'Indu-Normal' !important;
  line-height: 1.6;
}
.font-malayalam-bold {
font-family: 'Indu-Bold' !important;
  line-height: 1.6;
}
.font-malayalam-extrabold {
font-family: 'Indu-Extrabold' !important;
  font-weight: bolder !important;
}
/* Watercolor background themes */
.watercolor-bg-hero {
  background: 
    radial-gradient(circle at 10% 20%, rgba(230, 244, 240, 0.8) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 90% 10%, rgba(220, 235, 245, 0.7) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 50% 90%, rgba(245, 245, 245, 0.5) 0%, rgba(255, 255, 255, 0) 80%);
}

.watercolor-bg-soft {
  background: 
    radial-gradient(circle at 0% 50%, rgba(230, 244, 240, 0.5) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 100% 50%, rgba(220, 235, 245, 0.4) 0%, rgba(255, 255, 255, 0) 40%);
}

.watercolor-bg-accent {
  background: 
    radial-gradient(circle at 90% 80%, rgba(230, 244, 240, 0.6) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 10% 90%, rgba(220, 235, 245, 0.6) 0%, rgba(255, 255, 255, 0) 50%);
}

/* Glassmorphism Styles */
.glass-nav {
  background: rgba(252, 253, 253, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 244, 240, 0.5);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-hover:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px -15px rgba(10, 37, 64, 0.08);
  border-color: rgba(0, 128, 96, 0.2);
}

/* Animations using CSS transitions + Intersection Observer */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-fade-in-up.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animation-delay-200 {
  transition-delay: 200ms !important;
}

.animation-delay-400 {
  transition-delay: 400ms !important;
}

/* Navigation Indicator Animation */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link.active-nav {
  color: var(--color-teal);
  font-weight: 600;
}

.nav-link.active-nav::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Accordion transition styles */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.accordion-chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

/* Custom styled placeholder images/visual slots */
.placeholder-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(230, 244, 240, 0.6) 0%, rgba(220, 235, 245, 0.6) 100%);
  border: 2px dashed rgba(0, 128, 96, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.placeholder-visual::before {
  content: 'Visual Asset Area';
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
img.logo.object-contain {
    width: 100px;
}
header.fixed.shadow-md img.logo.object-contain {
    width: 80px !important;
}
header.fixed.shadow-md {
  padding-bottom: 0px !important;
}
.tagin {
    background: #2A7B9B;
    background: linear-gradient(90deg, #7abb43 0%, #54a85d 50%, #63ad71 100%);
        color: white !important;
    font-weight: bold !important;
    line-height: 1 !important;
    margin-bottom: 20px;
    padding: 10px 20px 10px 20px !important;
}
.mainbutton svg {
    position: relative;
    top: -3px;
}
.mainbutton {
    padding: 20px 30px 14px 30px !important;
    line-height: 1;
}
.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: -.2px !important;
}
.chartbanner {
    background-image: url(../images/chartbanner.webp);
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
}
.cfont {
    font-family: fantasy;
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin-top: 4px;
    font-size: 14px !important;
}

body {
    font-weight: 500;
}
.mb-1 {
    margin-bottom: 10px !important;
}
section#home {
background-color: white !important;
}
section#about, section#learn {
    background-image: url(../images/mainbackground.webp);
    background-size: cover;
    background-position: center;
}
.kingine span {
    font-weight: bold !important;
    font-family: sans-serif;
    color: black !important;
}
.h-px.flex-1.bg-slate-200 {
    background: #008060 !important;
}
h2.text-4xl.md\:text-6xl.font-black.text-brand-navy.leading-tight {
    letter-spacing: -2px !important;
}

@media (max-width: 768px) and (min-width: 100px) {
p.font-malayalam-extrabold, p.font-malayalam, p.font-malayalam-bold {
font-size: 20px !important;
        line-height: 23px !important;
}
    .mainheading {
        font-size: 40px !important;
        line-height: 1 !important;
    }section#home {
    padding-top: 130px !important;
}
.mwidth svg {
width: 50px !important;
        height: 50px !important;
        margin-right: 25px !important; 
}.mwidth .text-center {
    text-align: left !important;
}.cfont {
    font-size: 22px !important;
}
.subheading {
        font-size: 25px !important;
        line-height: 1 !important;
}.flex.items-center.gap-2.bg-white\/60.p-2\.5.rounded-lg.border.border-gray-100.shadow-sm {
    line-height: 1;
}
.mwidth {
        width: 300px !important;
        align-items: center;
        justify-content: left !important;
        text-align: left !important;
        padding: 13px 16px !important;
        border-bottom: 1px solid #86efac;
        border-right: 0px !important;
    }
.chartbanner {
    padding-bottom: 150px !important;
    aspect-ratio: auto !important;
}h2.font-heading.text-4xl.md\:text-6xl.lg\:text-7xl.font-black.text-brand-navy.leading-\[0\.95\].tracking-tight {
    font-size: 30px !important;
    line-height: 1.2 !important;
}
section {
    padding: 40px 0px !important;
}
p {
    font-size: 18px !important;
    line-height: 1.5 !important;
}
}
a {
    cursor: pointer !important;
}

/* Gold Theme Event Details Card */
.gold-details-card {
  background: rgba(7, 29, 51, 0.85) !important;
  border: 1.5px solid rgba(212, 163, 89, 0.4) !important; /* Gold border */
  box-shadow: 0 0 25px rgba(212, 163, 89, 0.15), inset 0 0 15px rgba(212, 163, 89, 0.05);
}

.gold-text-accent {
  color: #d4a359 !important; /* Premium Gold color */
}

.gold-divider {
  border-color: rgba(212, 163, 89, 0.25) !important;
}
.font-malayalam-bold .english-font {
    font-size: 75% !important;
    font-weight: bold !important;
    font-family: "Raleway", sans-serif !important;
}
.inbpaing {
  padding: 10px 20px 10px 10px !important;
}
.newbackground {
      background-image: url(../images/videobackground.webp);
    background-position: bottom center;
    background-size: cover;
    /* height: 510px !important; */
}
    .placeaddress {
margin-top: 40px;
margin-bottom: 20px;

    }
        .placeaddress img {
width: 100%;

    }
@media (max-width: 90000px) and (min-width: 768px) {
    .placeaddress {
        width: 90% !important;
    }
  .mainheading {
    line-height: 65px !important;
    letter-spacing: 0px !important;
    font-size: 71px !important;
}h1.mainheading {
    margin-bottom: 11px !important;
}
p.font-malayalam-extrabold, p.font-malayalam, p.font-malayalam-bold {
    font-size: 24px !important;
}
.nfont {
  font-size: 14px !important;
}
}