/* css reset  */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* css reset end  */
/* font style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", Readex Pro;
}

body {
  font-family: "Hind", IBM Plex Sans;
}
/* Roboto,serif Slab font style end  */

:root {
  --primary-bg: #073822;
  --primary-bg-light: hsl(150, 45%, 35%);
  --primary-bg-very-light: #bef2c6;
  --primary-text: #bef2c6;
  --secondary-bg: #2ea1e8;
  --secondary-bg-light: hsl(45, 100%, 65%);
  --secondary-text: #fff;
  --muted-text: #395e4e;
  --muted-text-light: #95b6a7;
  --tertiary-bg: #e2f4e5;
  --border-primary: #0738362b;
  --tertiary-text: #7ed957;
  --white-bg: #fff;
  --banner-bg: #95e4e8;
  --handover-bg:#edf0f2;
  --shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}/*--banner-bg:#e4f6e7,--secondary-bg:#ffb700*/

html {
  font-size: 16px; /* Default for desktop */
}

@media (max-width: 1024px) {
  html {
    font-size: 15px; /* large screens */
  }
}

@media (max-width: 750px) {
  html {
    font-size: 14px; /* Medium screens */
  }
}

@media (max-width: 500) {
  html {
    font-size: 13px; /* Small screens */
  }
}

a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 2.625rem;
  font-weight: 900;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Footer Section */
.footer {
  background-color: #1e1e2f;
  color: #fff;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color:#6ee45f; /* Accent color on hover */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 0 20px; /* Adding left and right padding */
}

.footer-logo-about {
  flex: 1 1 300px;
  margin-right: 20px;
}

.footer-logo-about img.logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-links {
  flex: 1 1 200px;
  margin-right: 20px;
}

.footer-links h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color:#6ee45f;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #6ee45f;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2a2a3f;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #6ee45f;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-logo-about img.logo {
    width: 150px; /* Adjust logo size for mobile */
  }

  .footer-contact address {
    margin-bottom: 10px; /* Reduced margin for better spacing */
  }

  .social-icons a {
    width: 35px; /* Smaller icon size */
    height: 35px; /* Smaller icon size */
  }
}

/* Adjustments for smaller mobile screens */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-logo-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-right: 0;
  }

  .footer-logo-about img.logo {
    width: 130px; /* Adjust logo size for smaller screens */
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.2rem; /* Smaller font size for headers */
  }

  .footer-links ul {
    padding-left: 20px;
  }

  .social-icons a {
    width: 30px; /* Smaller social icon size */
    height: 30px; /* Smaller social icon size */
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px; /* Adjust padding for very small screens */
  }

  .footer-logo-about img.logo {
    width: 100px; /* Even smaller logo */
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem; /* Further reduce font size for very small screens */
  }

  .footer-contact address {
    font-size: 0.9rem; /* Adjust font size */
  }

  .footer-bottom {
    font-size: 0.8rem; /* Smaller font size for footer bottom text */
  }
}

/* Footer End */
/* scroll to top  */
#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: -60px;
  display: none;
  background-color: var(--primary-bg-light);
  cursor: pointer;
  padding: 0px;
  outline: none;
  margin: 0px;
  border: 0;
  border-radius: 50%;
  transition: right 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 50px;
  height: 50px;
  z-index: 1000;
}

#scrollToTop.show {
  right: 20px;
  opacity: 1;
}

#scrollToTop:hover {
  background-color: var(--secondary-bg);
}

#scrollToTop > i {
  font-size: 50px;
  color: var(--primary-bg);
}

@media (max-width: 700px) {
  #scrollToTop {
    bottom: 5px;
    right: -60px;
    width: 40px;
    height: 40px;
  }

  #scrollToTop.show {
    right: 5px;
  }

  #scrollToTop > img {
    height: 30px;
    width: 30px;
  }
}
/* scroll to top end  */

/* button  */
.btnSecondary {
  width: fit-content;
  font-size: 1rem;
  background-color: var(--secondary-bg);
  color: var(--primary-bg);
  font-family: "Roboto Slab", serif;
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
.btnSecondary .iconContainer {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-bg-very-light);
  color: var(--primary-bg);
}

.btnSecondary .iconContainer i {
  font-size: 20px;
}

.btnSecondary:hover {
  color: var(--primary-text);
  background-color: var(--primary-bg);
}

.btnPrimary {
  width: fit-content;
  font-size: 1rem;
  background-color: var(--primary-bg);
  color: var(--primary-text);
  font-family: "Roboto Slab", serif;
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
.btnPrimary .iconContainer {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-bg-very-light);
  color: var(--primary-bg);
}

.btnPrimary .iconContainer i {
  font-size: 20px;
}

.btnPrimary:hover {
  color: var(--primary-bg);
  background-color: var(--handover-bg);
}
/* button end  */

/* popover  */
.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-bg);
  transition: all 0.3s ease;
}

.popover {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  background-color: var(--primary-bg);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.popover a {
  width: 80%;
}

.popover.show {
  display: block;
}

/* Animation for menu icon */
.menu-button.active .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-button.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-button.active .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* popover end  */

/* Initial state for hidden elements */
.animate-hidden {
  opacity: 0; /* Start invisible */
  transform: translateY(50px); /* Move down by 50px */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth animation */
}

/* Visible state */
.animate-hidden.animate-visible {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

/* events  */
.events {
  background-color: var(--primary-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
}

.events h2 {
  text-align: center;
  color: var(--primary-text);
  margin: 25px;
}

.events .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
}
/* minmax(100px, 1fr) */
.events .container .col {
  background-color: var(--tertiary-bg);
  border-radius: 35px;
}

.events .container .col .body {
  padding: 0px 25px 25px;
}

.events .container .col .body .detailContainer {
  background-color: var(--primary-bg-very-light);
  color: var(--primary-bg);
  padding: 25px 30px;
  border: 1px solid var(--border-primary);
  border-top: none;
  border-radius: 0 0 30px 30px;
}
.events .container .col .amountContainer {
  color: var(--muted-text);
  padding-bottom: 15px;
}
.events .container .col .amount {
  color: var(--primary-bg);
  font-weight: 600;
  font-size: 2.25rem;
}

.events .container .col .body .lists {
  padding: 20px 0px;
  color: var(--muted-text);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.events .container .col .body .lists i {
  color: var(--primary-bg);
}

.events .container .col .body .lists > div {
  display: flex;
  gap: 5px;
  align-items: center;
}

.events .container .col .body h3 {
  font-size: 1.0rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
}
/*font-size: 2.5rem;*/
.events .container .col .imageContainer {
  width: 100%;
  position: relative;
  padding-top: calc(420 / 300 * 100%);
  overflow: hidden;
}

.events .container .col .imageContainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

@media (max-width: 400px) {
  .events {
    padding: 25px 15px;
  }
  .events .container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }

  .events .container .col .body .detailContainer {
    padding: 15px 20px;
  }
}
/* events end  */

/* gallery  */
.gallery {
  padding: 60px 0;
  background: linear-gradient(180deg, #1e1e2f 0%, #2a2a3f 100%);
  padding: 60px 0;
  color: #fff;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-edition {
  margin-bottom: 60px;
}

.gallery-edition h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* smaller min width */
  gap: 25px;
  padding: 20px 0;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;       /* full width of card */
  height: 300px;     /* fixed height for smaller size */
  object-fit: cover; /* crop to fit nicely */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.overlay-link {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.overlay-link:hover {
  background: rgba(0,0,0,0.8);
  transform: translateX(-50%) scale(1.05);
}

.overlay-link i {
  font-size: 24px;
}
/* Mobile adjustments */
@media (max-width: 480px) {
  .gallery .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-card img {
    height: 200px; /* smaller height for mobile */
  }

  .overlay-link {
    font-size: 14px;
    padding: 8px 16px;
  }

  .overlay-link i {
    font-size: 20px;
  }
}


/* gallery end  */

/* countdown  */
/* Section base */
.countdown-section {
  position: relative;
  background: linear-gradient(135deg, #0b3d20, #1a472a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* Optional overlay for depth */
.countdown-overlay {
  position: absolute;
  inset: 0;
  background: url('images/home/bg-services-joggers.webp') center/cover no-repeat;
  opacity: 0.15;
  filter: blur(2px);
  z-index: 0;
}

/* Grid layout */
.countdown-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Each counter box */
.count-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(168, 224, 99, 0.3);
  border-radius: 16px;
  width: 140px;
  padding: 25px 0;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(86, 171, 47, 0.1);
}

/* Number styling */
.count-box .value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a8e063;
  margin: 0;
  transition: color 0.4s ease;
}

/* Label styling */
.count-box span {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d2ffd6;
}

/* Hover effects */
.count-box:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(86, 171, 47, 0.3);
}

.count-box:hover .value,
.count-box:hover span {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .count-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .count-box {
    width: 80%;
  }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(86, 171, 47, 0.2); }
  50% { box-shadow: 0 0 30px rgba(168, 224, 99, 0.5); }
}

.count-box {
  animation: glowPulse 3s ease-in-out infinite;
}

/* countdown end  */

/* welcome  */

.welcome-hero {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(6,30,12,0.03), rgba(6,30,12,0.03));
  color: #0f1f13;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  align-content: center;
  padding: 10px 20px;
}

/* Media card */
.welcome-media .media-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(6,30,12,0.12);
  transition: transform .35s ease, box-shadow .35s ease;
  background: #fff;
}

.welcome-media .media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transform-origin: center;
  transition: transform .45s ease;
}

.welcome-media .media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(6,30,12,0.18);
}
.welcome-media .media-card:hover img { transform: scale(1.04); }

/* small badge over image */
.media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: linear-gradient(90deg,#2f6b34,#7fc46a);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(47,107,52,0.24);
  font-weight: 600;
  font-size: 0.95rem;
}
.media-badge .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}
/* Specific highlights */
.highlight-rotary {
  color: #1e6632; /* deep green tone */
  font-weight: 700;
  background: linear-gradient(90deg, #1e6632, #5fa870);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-cosmos {
  color: #dbb600; /* warm golden tone for Cosmos Club */
  font-weight: 700;
  text-decoration-color: #dbb600;
}

/* Content */
.welcome-content {
  padding: 6px 6px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #32723a; /* dark green */
  letter-spacing: .6px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.welcome-title {
  font-size: 1.9rem;
  margin: 4px 0 10px;
  font-weight: 800;
  line-height: 1.08;
  color: #09200f;
}

.welcome-title span {
  display: block;
  background: linear-gradient(90deg, #2f6b34, #74c064);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-subtitle {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #2e5d3a;
  font-weight: 700;
}

.welcome-text {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 58ch;
}

/* Buttons */
.welcome-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 28px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* primary green button */
.btn-primary {
  background: linear-gradient(90deg,#2f6b34,#79c06a);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47,107,52,0.18);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(47,107,52,0.26); }

/* ghost button */
.btn-ghost, .btn-ghost:link, .btn-ghost:visited {
  background: rgba(47,107,52,0.06);
  color: #2f6b34;
  border: 1px solid rgba(47,107,52,0.12);
}
.btn-ghost:hover { background: rgba(47,107,52,0.12); transform: translateY(-2px); }

/* features list */
.welcome-features {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #445;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 6px;
}
.welcome-features li { background: rgba(47,107,52,0.04); padding: 8px 12px; border-radius: 10px; }
.welcome-features li:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  color: #fff;
  box-shadow: 0 10px 25px rgba(86, 171, 47, 0.4);
  border-color: transparent;
}
.welcome-features i {
  font-size: 2rem;
  color: #a8e063;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.welcome-features li:hover i {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 22px; }
  .welcome-media .media-card img { aspect-ratio: 16/9; }
  .welcome-title { font-size: 1.6rem; }
  .welcome-subtitle { font-size: 1.05rem; }
  .welcome-features { flex-direction: column; gap: 10px; }
}

/* welcome end  */



/* banner  */
/* Banner Section */
.banner {
  position: relative;
  background: url("images/home/bg-services-joggers.webp") center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #14915a 0%, #107227 100%); /* forest green overlay */
  z-index: 0;
}

.banner-container {
  position: relative;
  z-index: 2;
}

/* Header */
.banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.banner-logo img {
  height: 120px; /* Bigger logo */
  width: auto;
}

.banner-nav {
  display: flex;
  gap: 25px;
  font-family: 'Poppins', sans-serif; /* modern, clean font */
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link {
  color: #e0f2db; /* soft light green */
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #56ab2f, #a8e063); /* subtle green gradient hover */
  box-shadow: 0 5px 15px rgba(86, 171, 47, 0.3);
}
/* Mobile Menu Popover */
.banner-nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 20px;
  background: rgba(0, 50, 20, 0.95); /* dark forest green overlay */
  padding: 15px 20px;
  border-radius: 15px;
  gap: 15px;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 10;
}


.menu-toggle {
  display: none; /* visible only on mobile */
  background: none;
  border: none;
  color: #e0f2db; /* soft green for icon */
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: #ffffff;
}

/* Banner Content */
.banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  padding: 40px 20px 0;
}

.text-content {
  flex: 1 1 450px;
  max-width: 600px;
}

.text-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-content h1 span {
  display: block;
  background: linear-gradient(179deg, #5de221, #6dbe07);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(86, 171, 47, 0.4);
}

.btn-outline {
  border: 2px solid #a8e063;
  color: #a8e063;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #a8e063;
  color: #fff;
}

/* Image Section */
.image-content {
  flex: 1 1 350px;
  max-width: 500px;
  position: relative;
}

.image-content img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 50, 20, 0.6);
  transition: transform 0.4s ease;
}

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

/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #a8e063;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .banner-nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 50, 20, 0.95);
    position: absolute;
    top: 100%;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    gap: 15px;
  }

  .banner-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .text-content h1 {
    font-size: 2.3rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .image-content img {
    width: 90%;
  }
}


/* banner end  */


/* Freebies Section */
/* Freebies Section */
.freebies {
  padding: 60px 0;
  background: linear-gradient(135deg, #1e3c2f, #3cb371); /* green shades */
  color: #fff;
  text-align: center;
}

.freebies-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.freebies-subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.freebies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  justify-items: center;
}

.freebie-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 200px;
  cursor: default;
}

.freebie-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.icon-wrapper {
  background: rgba(255,255,255,0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.freebie-card:hover .icon-wrapper {
  background: rgba(255,255,255,0.35);
  transform: scale(1.2) rotate(-10deg);
}

.freebie-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.freebie-card:hover h3 {
  color: #fffacd; /* subtle highlight on hover */
}
.freebie-card .note {
  font-size: 0.85rem;
  color: #f0e68c; /* subtle yellow */
  margin-top: 8px;
  opacity: 0.85;
  line-height: 1.2;
}

/* Bounce animation for icons */
@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.icon-wrapper i {
  animation: bounceIcon 2s infinite;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .freebies-grid {
    gap: 15px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .freebie-card {
    padding: 20px;
  }
}



/* Freebie End */
/* dialog  */
.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Keep background color */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0; /* Start hidden */
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.dialog-content {
  border-radius: 8px;
  position: relative;
  transform: translateY(-20px); /* Start slightly above */
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background-color: white; /* Keep dialog content visible */
}

.dialog.show {
  opacity: 1;
  pointer-events: auto;
}

.dialog.show .dialog-content {
  transform: translateY(0);
  opacity: 1;
}

.closeBtn {
  position: absolute;
  top: -50px;
  right: 10px;
  cursor: pointer;
  font-size: 50px;
  background: none;
  border: none;
  color: white; /* Visible on dark background */
  z-index: 20;
}

.dialog video {
  width: 95vw;
  max-width: 700px;
}

/* dialog end    */

/* contact us  */
/* Contact Us Section */
.contactUs {
  color: #fff;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e3c2f, #3cb371);
}

.contactUs .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-details {
  flex: 1;
  max-width: 500px;
}

.contact-details h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-details .description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-details .detailsContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details .detailItem {
  font-size: 1.1rem;
}

.contact-details .detailItem i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.contact-details .btnPrimary {
  margin-top: 10px;
  background-color: #fff;
  color: #3cb371;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.contact-details .download-brochure:hover {
  background-color: #3cb371;
  color: #fff;
  transition: background-color 0.3s ease;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.contact-form .textField {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #fff; /* Default border color */
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  transition: border 0.3s ease;
}

.contact-form .textField:focus {
  outline: none;
  border-color: #3cb371; /* Green border on focus */
}

.contact-form .btnSecondary {
  padding: 15px 25px;
  background-color: #3cb371;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.contact-form .btnSecondary:hover {
  background-color: #2c6c4f;
}

@media (max-width: 768px) {
  .contact-details {
    max-width: 100%;
  }

  .contact-form {
    max-width: 100%;
  }

  .contactUs .container {
    flex-direction: column;
    align-items: center;
  }
}
/* Race Categories and Contact Info Section */
.get-in-touch {
  padding: 60px 25px;
  background: linear-gradient(135deg, #1e3c2f, #3cb371);
  color: #fff;
}


.get-in-touch .common-heading {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.get-in-touch .contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px; /* gap between columns */
}

.get-in-touch .contact-description {
  width: 90%; 
  font-size: 1.0rem;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive design */
@media (max-width: 768px) {
  .get-in-touch .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .get-in-touch .contact-description,
  .get-in-touch .why-run {
    width: 100%; /* Make each column full width on smaller screens */
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .get-in-touch .common-heading {
    font-size: 2rem; /* Smaller heading font size for mobile */
  }

  .get-in-touch .contact-description,
  .get-in-touch .why-run {
    font-size: 0.9rem; /* Adjust font size for mobile screens */
  }
}



/* Key Contacts Section */
.key-contacts {
  background: linear-gradient(135deg, #1e3c2f, #3cb371);
  padding: 10px 25px 30px;
  color: #fff;
}

.key-contacts .common-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
}

.key-contacts .contact-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap; /* Ensure the cards are all in a single row */
  max-width: 100%; /* Prevent horizontal overflow */
}

.key-contacts .contact-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 30%; /* Reduce the width to fit in a row */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-contacts .contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.key-contacts .contact-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.key-contacts .contact-header i {
  font-size: 2rem;
  color: #3cb371;
}

.key-contacts .contact-header h4 {
  font-size: 1.0rem;
  font-weight: 600;
  margin: 0;
}

.key-contacts .contact-body {
  margin-top: 15px;
  font-size: 1.1rem;
}

.key-contacts .contact-body a {
  color: #3cb371;
  text-decoration: none;
  font-weight: 600;
}

.key-contacts .contact-body a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .key-contacts .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Space between the cards when stacked */
  }

  .key-contacts .contact-card {
    width: 80%; /* Adjust width for mobile */
  }
}

@media (max-width: 480px) {
  .key-contacts .common-heading {
    font-size: 2rem;
  }

  .key-contacts .contact-card {
    width: 100%; /* Full width on small screens */
  }
}



/* contact us end  */

/* faq  */

.faq {
  background-color: var(--primary-bg);
  color: var(--primary-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
}

.faq h2 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 15px;
}

.faq .container {
  background-color: var(--tertiary-bg);
  border-radius: 20px;
  max-width: 950px;
  padding: 30px;
}

.faq .questionContainer {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding: 10px 0px;
}

.faq .cardHeader {
  border: 1px solid var(--border-primary);
  border-radius: 50px;
  padding: 10px 30px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq .cardHeader.active {
  background-color: var(--primary-bg-very-light);
}

.faq .cardHeader h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.faq .cardHeader .icon {
  background-color: var(--primary-bg-very-light);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.faq .cardHeader .icon.active {
  background-color: var(--primary-bg);
  color: var(--primary-text);
}

.faq .cardBody {
  line-height: 1.5;
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.faq .cardBody.active {
  margin: 15px 45px;
  height: auto;
}

.faq .cardBody ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.faq .cardBody li {
  margin: 8px 0;
  display: list-item;
}

.faq .cardBody strong {
  font-weight: 700;
}

@media (max-width: 450px) {
  .faq {
    padding: 25px 15px;
  }
  .faq .container {
    padding: 10px;
  }

  .faq .cardBody.active {
    margin: 15px 25px;
  }
  .faq .cardHeader {
    padding: 10px 15px;
  }
  .faq .cardHeader .icon {
    width: 30px;
    height: 30px;
  }
}
/* faq end  */


/* sponsors  */
.sponsors {
  color: var(--primary-bg);
  padding: 50px 25px;
  background-color: var(--tertiary-bg);
}

.sponsors .title {
  text-align: center;
}

.sponsors .topTitleContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  background-color: var(--white-bg);
  border-radius: 20px;
  padding: 50px 50px;
  margin: auto;
  margin-top: 40px;
  width: fit-content;
}

.sponsors .secondTitleContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: var(--white-bg);
  border-radius: 20px;
  padding: 50px 50px;
  margin: auto;
  margin-top: 40px;
  width: fit-content;
}

.sponsors .stack {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 700px;
}

.sponsors .stack2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sponsors .thirdTitleContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: var(--white-bg);
  border-radius: 20px;
  padding: 70px 50px;
  margin: auto;
  margin-top: 40px;
  width: fit-content;
}

.sponsors .labelSponsorCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--primary-bg);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.sponsors .labelImageContainer {
  width: 220px;
  height: 100px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.sponsors .labelImageContainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

@media (max-width: 400px) {
  .sponsors .topTitleContainer {
    padding: 50px 20px;
  }

  .sponsors .secondTitleContainer {
    padding: 50px 20px;
  }
  .sponsors .thirdTitleContainer {
    padding: 50px 20px;
  }
  .sponsors .labelImageContainer {
    width: 185px;
    height: 90px;
  }
}


/* sponsors end */


/* sponsors end  */

/* route map  */
.routeMap {
  background-color: var(--primary-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
}

.routeMap h2 {
  text-align: center;
  color: var(--primary-text);
  margin: 25px;
  margin-bottom: 40px;
}

.routeMap .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.routeMap img {
  border-radius: 30px;
}
.response-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  display: none; /* Hide by default */
}
.response-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block; /* Show on success */
}
.response-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block; /* Show on error */
}

/* route map end  */

/* ---------- Race Modal Styling ---------- */
/* ---------- Refined Race Modal ---------- */
.race-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  margin: 40px auto;
  padding: 20px 25px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
  overflow: visible;
}
.modal-content::before {
  content: "";
  position: absolute;
  /* expand slightly so the glow sits outside the white modal edge */
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, #3cb371, #00ff9c, #1e3c2f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderGlow 3s linear infinite;
  pointer-events: none;
  z-index: 1; /* keep behind modal content */
}
/* ensure modal content sits above the glow */
.modal-content > * {
  position: relative;
  z-index: 2;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  transition: 0.3s;
}
.close-modal:hover {
  color: #e53935;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  box-sizing: border-box;
}

/* Reduced image size */
.modal-image {
  flex: 0 0 250px;
  text-align: center;
}
.modal-image img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Details Section */
.modal-details {
  flex: 1;
  min-width: 280px;
}
.modal-details h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #007b55;
}
.modal-details p {
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
}

/* Route Map smaller */
.modal-route {
  margin-top: 15px;
}
.modal-route h4 {
  font-size: 1.05rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 8px;
}
.modal-route img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  display: block;
  margin: auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: #007b55;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.download-link:hover {
  background: #009966;
  transform: scale(1.03);
}
.download-link .material-symbols-outlined {
  font-size: 20px;
  vertical-align: middle;
}
.moreInfoLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #007b55;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.moreInfoLink i {
  font-size: 20px;
}

.moreInfoLink:hover {
  color: #009966;
  transform: translateX(4px);
}


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

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    align-items: center;
     padding: 16px;
  }
  .modal-image img {
    max-width: 180px;
  }
  .modal-route img {
    max-width: 100%;
  }
}

/* Registration Modal box notification */
/* Registration Modal Theme */
.register-theme {
  background: linear-gradient(135deg, #1e3c2f, #3cb371);
  color: #fff;
  text-align: center;
  /* allow internal scrolling and cap height so modal can scroll on small screens */
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  position: relative;
  padding: 40px 30px;
  box-shadow: 0 0 30px rgba(60, 179, 113, 0.6);
}
.register-theme h4{
	font-size: 1.15rem;
	font-weight: 600;
}
/* Animated glowing outline */
.register-theme::before {
  display:none;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Heading */
.register-theme h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Paragraph */
.register-theme p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f5f5f5;
}

/* Countdown note */
.countdown-note {
  margin-top: 18px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

/* Notify Me Button */
.notify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  background: #fff;
  color: #1e3c2f;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  transition: 0.3s;
}

.notify-btn:hover {
  background: #ffeb3b;
  color: #1e3c2f;
  transform: scale(1.05);
}

/* Close Button */
.register-theme .close-modal {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  top: 10px;
  right: 20px;
  transition: 0.3s;
}
.register-theme .close-modal:hover {
  color: #ffeb3b;
  transform: rotate(90deg);
}

/* Subtle pulse animation */
.register-body {
  animation: pulseBackground 4s ease-in-out infinite alternate;
}

@keyframes pulseBackground {
  from { background-color: rgba(255,255,255,0.05); }
  to { background-color: rgba(255,255,255,0.15); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .register-theme {
    padding: 30px 20px;
  }
  .register-theme h3 {
    font-size: 1.5rem;
  }
  .register-theme p {
    font-size: 1rem;
  }
}

/* Clean list with single-line layout */
.modal-guidelines.clean-list {
  list-style-type: disc;
  list-style-position: inside;
  margin: 20px auto;
  max-width: 650px;
  text-align: left;
  padding-left: 15px;
  color: #f5f5f5;
  line-height: 1.7;
}

.modal-guidelines.clean-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.modal-guidelines.clean-list strong {
  color: #fff;
  font-weight: 600;
}
body.modal-open {
  overflow: hidden;
  height: 100vh; /* ensure no scroll on mobile */
}

/* Bottom section alignment */
.modal-footer {
  text-align: center;
  margin-top: 25px;
}

.modal-footer p {
  margin: 8px 0;
  color: #fff;
}
/* Modal container End */
