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

/* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  background: #edf4ff;
  color: #1a1a1a;
  padding-top: 70px;
}


html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vrutta-section,
.gallery-section,
.katrane-gallery-section {
  padding-top: 90px !important;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 40px; 
  left: 0;
  width: 100%;

  z-index: 999;
  background: rgba(18, 28, 48, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(18, 28, 48, 0.6);
}



/* CONTAINER */
.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;              
}

.site-logo img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-left: 0;             
}

/* Laptop */
@media (max-width: 1399px) {
  .site-logo img {
    height: 40px;
    max-width: 170px;
  }
}

/* Tablet landscape */
@media (max-width: 1199px) {
  .site-logo img {
    height: 38px;
    max-width: 160px;
  }
}

/* Tablet portrait */
@media (max-width: 991px) {
  .site-logo img {
    height: 36px;
    max-width: 150px;
  }
}

/* Mobile large */
@media (max-width: 767px) {
  .site-logo img {
    height: 34px;
    max-width: 140px;
  }
}

/* Mobile small */
@media (max-width: 575px) {
  .site-logo img {
    height: 32px;
    max-width: 130px;
  }
}



/* NAV */

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
}


.site-nav a {
  text-decoration: none;
  padding-left: 5px;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 500;
  color: #dfe6f1;
  position: relative;
  transition: all 0.3s ease;
}

.site-nav a:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(79, 124, 255, 0.6);
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: -4px;  
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(79, 124, 255, 0.6);
  pointer-events: none;
}
.site-nav a:hover::before {
  transform: translateY(-50%) scale(1.4);
  background: #4dabf7;
  box-shadow: 0 0 10px rgba(79, 124, 255, 0.9);
}

/* HOVER UNDERLINE (BLUE) */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3a86ff, #4dabf7);
  transition: width 0.35s ease;
}

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

/* HOVER TEXT */
.site-nav a:hover {
  color: #4dabf7;
}

/* ACTIVE (CURRENT PAGE) – SAME AS HOVER */
.site-nav a.active {
  color: #4dabf7;
}

/* Active underline */
.site-nav a.active::after {
  width: 100%;
}

/* Active glowing dot */
.site-nav a.active::before {
  transform: translateY(-50%) scale(1.4);
  background: #4dabf7;
  box-shadow: 0 0 10px rgba(79, 124, 255, 0.9);
}

/* TOP BAR */
.top-bar {
  position: fixed;   /* 🔥 IMPORTANT */
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;

  background: #eef2f7;
  z-index: 1000;   /* above header */
}

.top-container {
  max-width: 1300px;
  margin: auto;
  padding: 8px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT ICONS */
.top-left i {
  margin-right: 12px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 🔥 Hover effect */
.top-left i:hover {
  color: #4dabf7;
  transform: translateY(-2px);
}

/* RIGHT CONTACT */
.top-right span {
  margin-left: 20px;
}

.top-right a {
  text-decoration: none;
  color: #333;
  margin-left: 5px;
}

/* ICON COLORS */
.fa-whatsapp {
  color: #25D366;
}

.fa-mobile-screen {
  color: #333;
}

/* Home SECTION */
.home-section {
  position: relative;        /* 🔥 anchor overlay */
  margin-top: -78px;   /* 👈 header height */
  padding-top: 200px;  /* 👈 content adjust */
  padding: 100px 0;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/home-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-section::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Black matte overlay */
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)
    );

  z-index: 0;
}


.home-container {
  max-width: 1100px;   /* 👈 reduce width (important) */
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;   /* 🔥 center whole group */
  gap: 90px;                 /* spacing between text & image */
}

.home-content {
  max-width: 520px;
  margin: 0;    
  margin-top: 60px;  /* ❌ remove auto center */
  text-align: left;     /* 👈 better for side layout */
}
.home-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
}
.home-name {
  font-size: 42px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.home-sub {
  font-size: 22px;
  color: white;
  line-height: 1.4;
}

.home-sub span {
  color: #dc2626;
  font-weight: 500;
}

.home-sub strong {
  color: #ec4899;
  font-weight: 600;
}

.home-title {
  margin: 28px 0 14px;
  font-size: 48px;
  font-weight: 800;
  opacity: 1;
  color: #f59e0b;
  background: linear-gradient(90deg, #f59e0b, #facc15);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

/* Title: fadeUp + glow together */
.home-title.highlight-text {
  opacity: 0;
  animation:
    fadeUp 0.8s ease forwards,
    glowText 2.6s ease-in-out infinite alternate;
  animation-delay: 0.4s, 1.2s; /* first fade, then glow */
}

@keyframes glowText {
  from {
    text-shadow: 0 0 0 rgba(245,158,11,0);
  }
  to {
    text-shadow: 0 8px 26px rgba(245,158,11,0.6);
  }
}



.home-desc {
  font-size: 18px;
  color: white;
  margin-bottom: 32px;
}

/* Animate everything EXCEPT home-title */
.animate-text > *:not(.home-title) {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-text > *:nth-child(1) { animation-delay: 0.1s; }
.animate-text > *:nth-child(2) { animation-delay: 0.25s; }
.animate-text > *:nth-child(4) { animation-delay: 0.55s; }
.animate-text > *:nth-child(5) { animation-delay: 0.7s; }


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.animate-image img {
  opacity: 0;
  transform: translateY(-40px);
  animation: imageDrop 0.8s ease forwards;
  animation-delay: 0.1s; /* SAME as first text */
}


@keyframes imageDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Button shine effect */
.home-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  min-width: 170px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  gap: 26px;
  margin-top: 22px;

  background: rgba(79,209,255,0.10);
  color: #4fd1ff;
  border: 1.5px solid rgba(79,209,255,0.55);
  backdrop-filter: blur(8px);

  box-shadow:
    0 10px 26px rgba(79,209,255,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}


.primary-btn {
  background: rgba(79,209,255,0.10);  
  color: #4fd1ff;

  border: 1.6px solid rgba(79,209,255,0.55);
  backdrop-filter: blur(8px);

  box-shadow:
    0 12px 30px rgba(79,209,255,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}


.primary-btn:hover {
  background: #4fd1ff;
  color: #0f172a;

  transform: translateY(-3px);

  box-shadow:
    0 20px 45px rgba(79,209,255,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}



.secondary-btn {
  background: rgba(79,209,255,0.08);
  color: #4fd1ff;

  border: 1.5px solid rgba(79,209,255,0.55);
  backdrop-filter: blur(6px);
}

.secondary-btn:hover {
  background: #4fd1ff;
  color: #0f172a; 
  transform: translateY(-2px);

  box-shadow:
    0 14px 32px rgba(79,209,255,0.45);
}
.home-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-100%);
}

.home-btn:hover::after {
  animation: shine 0.9s ease;
}

@keyframes shine {
  to {
    transform: translateX(100%);
  }
}
/* ================= COUNTER SECTION ================= */

.counter-card-only p.counter {
  font-size: 32px;
  font-weight: 800;
  color: #4fd1ff;
  margin: 10px 0;
}
/* Animations (reuse your existing ones) */
@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .home-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .home-title {
    font-size: 38px;
  }

  .home-name {
    font-size: 34px;
  }
    .home-image {
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .home-buttons {
    flex-direction: column;
  }
}

/* ================= HOME INFO CARDS ================= */

.home-info-cards {
  padding: 90px 0;
  background: linear-gradient(180deg, #edf4ff, #f6f9ff);
}

.info-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
}

.info-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #4fd1ff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* Card */
.info-card {
  text-decoration: none;
  padding: 36px 32px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(91,141,255,0.14),
    rgba(255,255,255,0.75)
  );
  backdrop-filter: blur(16px);

  border: 1.6px solid rgba(79,209,255,0.45);

  box-shadow:
    0 18px 45px rgba(18,28,48,0.15);

  color: #1e293b;
  transition: all 0.4s ease;
  position: relative;
  animation: cardJumpIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.03);

  border-color: #4fd1ff;

  box-shadow:
    0 0 0 2px rgba(79,209,255,0.35),   /* outer ring */
    0 30px 70px rgba(79,209,255,0.45); /* glow */
}


.info-card:hover .info-icon {
  animation: pulse 1.2s ease infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}


/* Icon */
.info-icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: inline-block;
}

/* Title */
.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

/* Text */
.info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

/* Link */
.info-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #4fd1ff;
}

/* Special highlight (for booking CTA) */
.highlight-card-alt {
  border: 1.5px solid rgba(91,141,255,0.45);
  background: linear-gradient(
    135deg,
    rgba(91,141,255,0.15),
    rgba(255,255,255,0.7)
  );
}

.info-card:nth-child(1) { animation-delay: 0.20s; }
.info-card:nth-child(2) { animation-delay: 0.40s; }
.info-card:nth-child(3) { animation-delay: 0.60s; }
.info-card:nth-child(4) { animation-delay: 0.80s; }

/* Scroll animation control */
.info-card {

  transform: translateY(-60px) scale(0.96);
  animation: none; /* prevent auto play */
}

.info-card.show {
  animation: cardJumpIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cardJumpIn {
  0% {
    opacity: 0;
    transform: translateY(-60px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}



/* ================= CONTACT MAP SECTION ================= */

.contact-map-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #edf4ff, #f6f9ff);
}

.contact-map-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 28px;
}

.contact-map-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #4fd1ff;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(450px, 520px) 1fr;
  gap: 40px;
}



/* Address Card */
.contact-info-card {
  padding: 36px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.14),
    rgba(255,255,255,0.78)
  );

  backdrop-filter: blur(16px);
  border: 1.6px solid rgba(79,209,255,0.45);

  box-shadow: 0 22px 55px rgba(18,28,48,0.15);
  transition: all 0.4s ease;
}


.contact-item {
  margin-bottom: 22px;
}

.contact-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #4dabf7;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #1e293b;
}

/* Map Card */
.contact-map-card {
  border-radius: 24px;
  overflow: hidden;

  border: 1.6px solid rgba(79,209,255,0.45);
  box-shadow: 0 22px 55px rgba(18,28,48,0.15);
  transition: all 0.4s ease;
}


.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* Hover effect */
.contact-info-card:hover,
.contact-map-card:hover {
  transform: translateY(-8px);

  border-color: #4fd1ff;

  box-shadow:
    0 35px 85px rgba(79,209,255,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}


/* Responsive */
@media (max-width: 768px) {
  .contact-map-title {
    font-size: 30px;
  }
}


/*  FOOTER  */


.footer-dark {
  width: 100%;
  background: linear-gradient(to bottom, #111, #000);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;

}

.footer-bottom-dark {
  padding: 14px 20px;
  border-top: 1px solid #222;
}

/* Center content */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
}

/* Copyright line */
.footer-content strong {
  color: #ffffff;
  font-weight: 600;
}

/* Infotools styling */
.infotools {
  color: #4f7cff;           
  font-weight: 600;
}

/* Updated date */
.footer-content strong:last-child {
  color: #ffffff;
}



/* Responsive tweak */
@media (max-width: 576px) {
  .footer-content {
    font-size: 13px;
  }
}


/* ABOUT PAGE */
.about-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #edf4ff 0%, #f6f9ff 100%);
}

.about-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

.about-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #4fd1ff;
  text-shadow: 0 6px 20px rgba(77,171,247,0.25);
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  animation: aboutTitleReveal 0.9s ease forwards;
}


@keyframes aboutTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* CARD */
.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;  
  gap: 50px;

  padding: 40px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 25px 60px rgba(18,28,48,0.15);
}


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

/* IMAGE */
.about-image {
  display: flex;
  justify-content: center;
  flex: 0 0 260px;   /* fixed width */
  margin-bottom: 0;  /* remove extra gap */
}
.about-image {
  padding: 6px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(77,171,247,0.35),
    rgba(255,255,255,0)
  );
}

.about-image img {
  max-width: 260px;
  border-radius: 18px;

  /* thin blue border (default) */
  border: 1.5px solid rgba(77, 171, 247, 0.45);

  box-shadow: 0 14px 30px rgba(0,0,0,0.18);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.about-image img:hover {
  transform: scale(1.045);

  border-color: #4dabf7;

  box-shadow:
    0 22px 55px rgba(77,171,247,0.35),
    0 10px 25px rgba(0,0,0,0.25);
}

/* ABOUT TEXT ANIMATION */
.about-content {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: aboutTextFade 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes aboutTextFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.about-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;

  font-size: 17px;
  line-height: 1.8;
  color: #1e293b;

  opacity: 0;
  transform: translateX(-20px);
  animation: pointFade 0.6s ease forwards;
}

/* stagger animation */
.about-content li:nth-child(1) { animation-delay: 0.1s; }
.about-content li:nth-child(2) { animation-delay: 0.2s; }
.about-content li:nth-child(3) { animation-delay: 0.3s; }
.about-content li:nth-child(4) { animation-delay: 0.4s; }
.about-content li:nth-child(5) { animation-delay: 0.5s; }
.about-content li:nth-child(6) { animation-delay: 0.6s; }
.about-content li:nth-child(7) { animation-delay: 0.7s; }

@keyframes pointFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* DOT ICON */
.about-content li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 12px;
  color: #4fd1ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin: auto;
  }

  .about-content li {
    padding-left: 0;
  }

  .about-content li::before {
    display: none;
  }
   .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

/* ================= karyakram PAGE ================= */

.program-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #edf4ff 0%, #f6f9ff 100%);
}

.program-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* TITLE */
.program-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #4fd1ff;
  text-shadow: 0 6px 20px rgba(236,72,153,0.25);

  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  animation: programTitleReveal 0.9s ease forwards;
}

@keyframes programTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CARD */
.program-card {
  display: flex;              /* 🔥 add */
  flex-direction: row;        /* 🔥 side by side */
  align-items: center;        /* 🔥 vertical center */
  gap: 50px;

  padding: 45px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.5);

  box-shadow: 0 25px 60px rgba(18,28,48,0.15);

  animation: programCardFade 0.8s ease forwards;
}
@keyframes programCardFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTENT */
.program-content {
  flex: 1;
}
.program-content ul {
  list-style: none;
}

.program-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 22px;

  font-size: 17px;
  line-height: 1.85;
  color: #1e293b;

  opacity: 0;
  transform: translateX(-20px);
  animation: programPointFade 0.6s ease forwards;
}

/* stagger */
.program-content li:nth-child(1) { animation-delay: 0.15s; }
.program-content li:nth-child(2) { animation-delay: 0.30s; }
.program-content li:nth-child(3) { animation-delay: 0.45s; }
.program-content li:nth-child(4) { animation-delay: 0.60s; }
.program-content li:nth-child(5) { animation-delay: 0.75s; }
.program-content li:nth-child(6) { animation-delay: 0.90s; }

@keyframes programPointFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* DOT */
.program-content li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 12px;
  color: #4fd1ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .program-card {
    flex-direction: column;   /* back to vertical on mobile */
    text-align: center;
  }

  .program-image-wrap {
    margin-bottom: 30px;
  }

  .program-content li {
    padding-left: 0;
    text-align: center;
  }

  .program-content li::before {
    display: none;
  }
}

/* ================= PROGRAM IMAGE ================= */

.program-image-wrap {
  flex: 0 0 260px;   /* 🔥 fixed width */
  margin-bottom: 0;  /* remove bottom gap */
  justify-content: center;
}

/* IMAGE */
.program-image-wrap img {
  max-width: 260px;
  width: 100%;
  border-radius: 20px;

  border: 3px solid #b7d9ff;

  background: #ffffff;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.18);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

/* Hover effect */
.program-image-wrap img:hover {
  transform: scale(1.04);
  border-color: #4dabf7;

  box-shadow:
    0 26px 60px rgba(77,171,247,0.35),
    0 12px 28px rgba(0,0,0,0.25);
}

/* ================= CONTACT FORM ================= */

.contact-form-section {
  padding: 90px 0;
background: linear-gradient(
  180deg,
  #fafcff,
  #ffffff
);

}

.contact-form-container {
  max-width: 900px;
  margin: auto;
  padding: 0 28px;
}

.contact-form-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #4fd1ff;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  animation: contactTitleReveal 0.9s ease forwards;
}

.contact-form-subtitle {
  text-align: center;
  font-size: 16px;
  color: #334155;
  margin-bottom: 50px;
}

/* Card style form */
.contact-form {
  padding: 40px;
  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.14),
    rgba(255,255,255,0.85)
  );

  backdrop-filter: blur(16px);
  border: 1.6px solid rgba(79,209,255,0.45);

  box-shadow: 0 25px 60px rgba(18,28,48,0.15);

  position: relative;
  z-index: 1;

  animation: formReveal 0.9s ease forwards;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@keyframes contactTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Inputs */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #4fd1ff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;

  border: 1.4px solid rgba(91,141,255,0.35);
  background: rgba(255,255,255,0.85);

  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #1e293b;

  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4fd1ff;
  box-shadow: 0 0 0 3px rgba(79,209,255,0.25);
}

/* Button */

.contact-form-buttons {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.contact-form-buttons button {
  flex: 1;
}
/* Submit Button  */
.contact-submit-btn,
.contact-reset-btn {
  padding: 15px;
  border-radius: 999px;

  background: rgba(79,209,255,0.10);
  color: #4fd1ff;

  border: 1.5px solid rgba(79,209,255,0.55);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;

  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}


.contact-submit-btn:hover,
.contact-reset-btn:hover {
  background: #4fd1ff;
  color: #0f172a;

  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(79,209,255,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

.contact-form {
  position: relative;
  z-index: 1;

  animation: formReveal 0.9s ease forwards;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

@keyframes formReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* hover depth */
.contact-form:hover {
 transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 35px 80px rgba(77,171,247,0.28),
    inset 0 0 0 1px rgba(91,141,255,0.25);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form {
    padding: 28px;
  }

  .contact-form-title {
    font-size: 30px;
  }
  .contact-form-buttons {
    flex-direction: column;
  }
}

/* ================= PRAYOG PAGE ================= */

.prayog-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fafcff, #ffffff);
}

.prayog-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 28px;
}

/* MAIN TITLE */
.prayog-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #4fd1ff;
  opacity: 0;
  transform: translateY(-18px);
  animation: prayogFadeDown 0.8s ease forwards;
}

/* SUB TITLE */
.prayog-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

/* INTRO TEXT */
.prayog-intro {
  text-align: center;
  font-size: 17px;
  color: #334155;
  margin-bottom: 55px;
}

.prayog-intro span {
  color: #ff4fd8; /* matches your pink highlight */
  font-weight: 600;
}
.prayog-subtitle,
.prayog-intro {
  opacity: 0;
  transform: translateY(-18px);
}
.prayog-title {
  animation: prayogFadeDown 0.8s ease forwards;
}

.prayog-subtitle {
  animation: prayogFadeDown 0.8s ease forwards;
  animation-delay: 0.2s;
}

.prayog-intro {
  animation: prayogFadeDown 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* GRID */
.prayog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* LIST CARD */
.prayog-list {
  list-style: none;
  padding: 36px 34px;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.10),
    rgba(255,255,255,0.85)
  );

  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(79,209,255,0.45);

  box-shadow: 0 22px 55px rgba(18,28,48,0.12);

  transition: all 0.4s ease;
}

/* LIST ITEMS */
.prayog-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #1e293b;
}

/* BULLET */
.prayog-list li::before {
  content: "▣";
  position: absolute;
  left: 0;
  top: 2px;
  color: #4fd1ff;
  font-size: 14px;
}

/* HOVER */
.prayog-list:hover {
  transform: translateY(-10px);
  box-shadow:
    0 35px 85px rgba(79,209,255,0.35),
    inset 0 0 0 1px rgba(79,209,255,0.35);
}

/* ANIMATION */
@keyframes prayogFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= PRAYOG EXTRA ================= */

.prayog-highlight {
  max-width: 900px;
  margin: 70px auto 50px;
  text-align: center;

  padding: 36px 32px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.12),
    rgba(255,255,255,0.9)
  );

  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(79,209,255,0.45);

  box-shadow: 0 25px 60px rgba(18,28,48,0.12);

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

.prayog-highlight {
  transition: transform 0.25s ease;
}

/* small lift on hover */
.prayog-highlight:hover {
  transform: translateY(-6px);
}


@keyframes prayogJump {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* TEXT GLOW ON HOVER */
.prayog-highlight:hover strong {
  color: #0ea5e9;
}
.prayog-highlight p {
  font-size: 17px;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.prayog-highlight strong {
  color: #4fd1ff;
  font-weight: 600;
}

/* STATS */
.prayog-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.prayog-stats .stat span {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #4fd1ff;
}

.prayog-stats .stat small {
  font-size: 14px;
  color: #334155;
}

/* CTA */
.prayog-cta {
  text-align: center;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.45s;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .prayog-title {
    font-size: 32px;
  }

  .prayog-subtitle {
    font-size: 20px;
  }
}

/*
 ================= VRUTTAPATRIYA PAGE ================= */
.vrutta-section {
  padding-bottom: 40px; 
}

.vrutta-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 55px;

  /* same theme color */
  color: #4fd1ff;

  /* subtle glow like other pages */
  text-shadow: 0 6px 22px rgba(79,209,255,0.28);

  /* animation */
  opacity: 0;
  transform: translateY(-18px) scale(0.97);
  animation: vruttaTitleReveal 0.9s ease forwards;
}

/* animation keyframes */
@keyframes vruttaTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* responsive */
@media (max-width: 600px) {
  .vrutta-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.vrutta-paper-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* EACH REVIEW BOX */
.vrutta-paper-item {
  width: 980px;
  min-height: 90px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 24px auto; /* TEXT | DASH | SOURCE */
  align-items: center;
  column-gap: 16px;

  padding: 20px 26px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.14),
    rgba(255,255,255,0.92)
  );

  border: 1.5px solid rgba(79,209,255,0.45);
  backdrop-filter: blur(14px);

  box-shadow: 0 16px 38px rgba(18,28,48,0.12);

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;

  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.review-text {
  grid-column: 1;
  font-size: 15.5px;
  line-height: 1.7;
  color: #1e293b;
}
.vrutta-paper-item:hover {
  transform: translateY(-6px) scale(1.008); 

  border-color: #4fd1ff;

  box-shadow:
    0 28px 65px rgba(79,209,255,0.42),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}




/* STAGGER EFFECT */
.vrutta-paper-item:nth-child(1) { animation-delay: 0.1s; }
.vrutta-paper-item:nth-child(2) { animation-delay: 0.2s; }
.vrutta-paper-item:nth-child(3) { animation-delay: 0.3s; }
.vrutta-paper-item:nth-child(4) { animation-delay: 0.4s; }
.vrutta-paper-item:nth-child(5) { animation-delay: 0.5s; }
.vrutta-paper-item:nth-child(6) { animation-delay: 0.6s; }
.vrutta-paper-item:nth-child(7) { animation-delay: 0.7s; }

/* DASH */
.vrutta-paper-item::before {
  content: "–";
  grid-column: 2;
  justify-self: center;
  font-size: 18px;
  font-weight: 700;
  color: #4fd1ff;
}

.review-source {
  grid-column: 3;
  font-size: 14px;
  font-weight: 600;
  color: #4fd1ff;
  white-space: nowrap;
}

/* SMALL TEXT */
.review-text small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .vrutta-paper-item {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vrutta-paper-item::before {
    display: none;
  }

  .review-source {
    font-size: 13px;
  }
}


/* ================= KARYAKRAM PAGE ================= */

.karyakram-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fafcff, #ffffff);
}

.karyakram-container {
  max-width: 900px;
  margin: auto;
  padding: 0 28px;
}

/* TITLE */
.karyakram-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #4fd1ff;

  opacity: 0;
  transform: translateY(-18px);
  animation: fadeDown 0.8s ease forwards;
}

/* INTRO */
.karyakram-intro {
  text-align: center;
  font-size: 17px;
  color: #334155;
  margin: 18px auto 50px;

  opacity: 0;
  transform: translateY(-18px);
  animation: fadeDown 0.8s ease forwards;
  animation-delay: 0.25s;
}

.karyakram-intro span {
  color: #ff4fd8;
  font-weight: 600;
}

/* POINT LIST CARD */
.karyakram-points {
  list-style: none;
  padding: 38px 36px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.12),
    rgba(255,255,255,0.9)
  );

  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(79,209,255,0.45);

  box-shadow: 0 25px 60px rgba(18,28,48,0.12);

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.45s;

  transition: transform 0.25s ease;
}

/* subtle hover lift */
.karyakram-points:hover {
  transform: translateY(-6px);
}

/* LIST ITEMS */
.karyakram-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;

  font-size: 16px;
  line-height: 1.75;
  color: #1e293b;

  opacity: 0;
  transform: translateX(-18px);
  animation: pointFade 0.6s ease forwards;
}

/* stagger */
.karyakram-points li:nth-child(1) { animation-delay: 0.6s; }
.karyakram-points li:nth-child(2) { animation-delay: 0.7s; }
.karyakram-points li:nth-child(3) { animation-delay: 0.8s; }
.karyakram-points li:nth-child(4) { animation-delay: 0.9s; }
.karyakram-points li:nth-child(5) { animation-delay: 1.0s; }
.karyakram-points li:nth-child(6) { animation-delay: 1.1s; }
.karyakram-points li:nth-child(7) { animation-delay: 1.2s; }
.karyakram-points li:nth-child(8) { animation-delay: 1.3s; }

/* BULLET */
.karyakram-points li::before {
  content: "▣";
  position: absolute;
  left: 0;
  top: 2px;
  color: #4fd1ff;
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pointFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .karyakram-title {
    font-size: 32px;
  }
}

/* ================= HASYAPANCHAMI PAGE ================= */
.hasyapanchami-section {
  padding: 90px 0;
  background: #f3f8ff;
}



.hasyapanchami-container {
  max-width: 900px;
  margin: auto;
  padding: 0 28px;
  text-align: center;
}

/* MAIN TITLE */
.hasyapanchami-title {
  font-size: 40px;
  font-weight: 700;
  color: #4fd1ff;

  opacity: 0;
  transform: translateY(-18px);
  animation: fadeDown 0.8s ease forwards;
}

/* INTRO */
.hasyapanchami-intro {
  margin: 28px auto 40px;
  font-size: 17px;
  line-height: 1.75;
  color: #1e293b;

  opacity: 0;
  transform: translateY(-18px);
  animation: fadeDown 0.8s ease forwards;
  animation-delay: 0.25s;
}

.hasyapanchami-intro strong {
  color: #ec4899;
  font-weight: 600;
}

.hasyapanchami-intro .orange {
  color: #f59e0b;
  font-weight: 600;
}

.hasyapanchami-intro .blue {
  color: #ff4fd8;
  font-weight: 600;
}

/* SUB TITLE */
.hasyapanchami-subtitle {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #f59e0b, #ef4444);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.45s;
}
.hasyapanchami-box-wrap {
  display: flex;
  justify-content: center;
}

/* POINT CARD */
.hasyapanchami-points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   

  max-width: 500px;
  width: 100%;

  margin-top: 12px;          

  list-style: none;
  padding: 48px 36px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(79,209,255,0.12),
    rgba(255,255,255,0.9)
  );

  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(79,209,255,0.45);

  box-shadow: 0 25px 60px rgba(18,28,48,0.12);
}

/* small jump on hover */
.hasyapanchami-points {
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* jump + border highlight */
.hasyapanchami-points:hover {
  transform: translateY(-6px);

  border-color: #4fd1ff;

  box-shadow:
    0 35px 80px rgba(79,209,255,0.35),
    inset 0 0 0 1px rgba(79,209,255,0.45);
}


/* LIST ITEMS */
.hasyapanchami-points li {
  display: inline-flex;          
  align-items: flex-start;
  gap: 6px;                      
  
  padding-left: 0;               
  margin-bottom: 16px;

  font-size: 16px;
  line-height: 1.75;
  color: #1e293b;

  opacity: 0;
  transform: translateX(-18px);
  animation: pointFade 0.6s ease forwards;
}


/* stagger */
.hasyapanchami-points li:nth-child(1) { animation-delay: 0.7s; }
.hasyapanchami-points li:nth-child(2) { animation-delay: 0.8s; }
.hasyapanchami-points li:nth-child(3) { animation-delay: 0.9s; }
.hasyapanchami-points li:nth-child(4) { animation-delay: 1.0s; }
.hasyapanchami-points li:nth-child(5) { animation-delay: 1.1s; }
.hasyapanchami-points li:nth-child(6) { animation-delay: 1.2s; }

/* BULLET */
.hasyapanchami-points li::before {
  content: "▣";
  color: #4fd1ff;
  font-size: 12px;
  margin-top: 4px;
}

/* SPECIAL TEXT */
.hasyapanchami-points .highlight {
  color: #f59e0b;
  font-weight: 600;
}

.hasyapanchami-points .danger {
  color: #2563eb;
  font-weight: 600;
}
.program-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* 🔥 subtle hover hint */
.program-link:hover {
  opacity: 0.85;              /* slight fade */
  text-decoration: underline; /* appears only on hover */
   transform: translateX(3px);  /* slight move */
}
/* RESPONSIVE */
@media (max-width: 600px) {
  .hasyapanchami-title {
    font-size: 32px;
  }
  .hasyapanchami-subtitle {
    font-size: 28px;
  }
}

/* ================= GALLERY PAGE ================= */

.gallery-section {
  background: linear-gradient(180deg, #edf4ff, #f6f9ff);
  margin-bottom: 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
}

.gallery-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #4fd1ff;
  text-shadow: 0 6px 22px rgba(79,209,255,0.28);

  opacity: 0;
  transform: translateY(-18px) scale(0.97);
  animation: vruttaTitleReveal 0.9s ease forwards;
}
/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.gallery-card {
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);

  border: 2px solid rgba(79,209,255,0.45);
  box-shadow: 0 18px 45px rgba(18,28,48,0.15);

  transition: all 0.35s ease;
  position: relative;

  display: flex;
  flex-direction: column;
}

/* IMAGE WRAPPER (🔥 main fix) */
/* WRAPPER */
.img-wrap {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
  padding: 10px;              /* 👈 gap hide trick */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* IMAGE */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* 🔥 NO crop */
  border-radius: 12px;
}
/* PLAY ICON */
.gallery-card::after {
  content: "▶";
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 10px 14px;
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover::after {
  opacity: 1;
}

/* HOVER */
.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 30px 70px rgba(79,209,255,0.45),
    inset 0 0 0 1px rgba(79,209,255,0.35);
}

/* TEXT */
.gallery-card p {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;

  min-height: 60px;   /* 🔥 equal height */
}

/* ================= LIGHTBOX ================= 

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,0.92);
  backdrop-filter: blur(12px);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.lightbox-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox img {
  max-width: 85vw;
  max-height: 80vh;

  border-radius: 20px;
  border: 3px solid #4fd1ff;

  box-shadow: 0 40px 90px rgba(79,209,255,0.45);
  animation: zoomIn 0.45s ease;
}

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

.gallery-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 42px;
  color: #4fd1ff;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.25s ease;
}

.gallery-close:hover {
  transform: scale(1.2);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: rgba(79,209,255,0.15);
  border: 1.5px solid rgba(79,209,255,0.6);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 36px;
  font-weight: 600;
  color: #4fd1ff;

  cursor: pointer;
  transition: all 0.25s ease;
}


.gallery-prev {
  left: -70px;
}

.gallery-next {
  right: -70px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #4fd1ff;
  color: #0f172a;
  transform: translateY(-50%) scale(1.15);
}
*/
/* MOBILE FIX */
@media (max-width: 600px) {
  .gallery-prev {
    left: -45px;
  }

  .gallery-next {
    right: -45px;
  }

  .gallery-prev,
  .gallery-next {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .gallery-close {
    font-size: 32px;
    top: 18px;
    right: 20px;
  }
}
/* ================= LIGHTBOX FIX ================= */

/* Ensure wrapper is reference */
.katrane-lightbox-wrap {
  position: relative;
  z-index: 1;
}

/* IMAGE FRAME */
.katrane-lightbox-frame {
  position: relative;
  z-index: 1;
}

/* IMAGE */
.katrane-lightbox-img {
  position: relative;
  z-index: 1;
}

/* PREV / NEXT BUTTONS */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  z-index: 10; /* 🔥 VERY IMPORTANT */

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: rgba(79,209,255,0.18);
  border: 1.5px solid rgba(79,209,255,0.6);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 36px;
  font-weight: 600;
  color: #4fd1ff;
  cursor: pointer;
}

/* LEFT / RIGHT */
.gallery-prev { left: -70px; }
.gallery-next { right: -70px; }

/* HOVER */
.gallery-prev:hover,
.gallery-next:hover {
  background: #4fd1ff;
  color: #0f172a;
  transform: translateY(-50%) scale(1.15);
}

/* CLOSE BUTTON */

.gallery-close {
  position: absolute;
  top: -38px;
  right: -38px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: rgba(10,15,25,0.85);
  border: 2px solid #4fd1ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  line-height: 1;
  color: #4fd1ff;

  cursor: pointer;
  z-index: 20;

  box-shadow: 0 10px 30px rgba(79,209,255,0.45);
  transition: all 0.25s ease;
}

.gallery-close:hover {
  background: #4fd1ff;
  color: #0f172a;
  transform: scale(1.15);
}


/* ================= MOBILE FIX ================= */
@media (max-width: 600px) {

  .gallery-prev { left: -45px; }
  .gallery-next { right: -45px; }

  .gallery-prev,
  .gallery-next {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .gallery-close {
    top: -42px;
    font-size: 32px;
  }
}


/* ================= KATRANE GALLERY PAGE ================= */

.katrane-gallery-section {
  padding: 140px 0 90px;
  background: linear-gradient(180deg, #edf4ff, #f6f9ff);
}

.katrane-gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
}

/* TITLE – SAME THEME & ANIMATION */
.katrane-gallery-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;

  color: #4fd1ff;
  text-shadow: 0 6px 22px rgba(79,209,255,0.28);

  opacity: 0;
  transform: translateY(-18px) scale(0.97);
  animation: katraneTitleReveal 0.9s ease forwards;
}

@keyframes katraneTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* GRID */
.katrane-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.katrane-gallery-card {
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);

  border: 2px solid rgba(79,209,255,0.45);
  box-shadow: 0 18px 45px rgba(18,28,48,0.15);

  transition: all 0.35s ease;
}

.katrane-gallery-card:hover {
  transform: translateY(-8px) scale(1.03);

  box-shadow:
    0 30px 70px rgba(79,209,255,0.45),
    inset 0 0 0 1px rgba(79,209,255,0.35);
}

/* IMAGE */
.katrane-gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* TEXT BELOW IMAGE */
.katrane-gallery-card p {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
}

/* ================= KATRANE LIGHTBOX ================= */

.katrane-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,0.92);
  backdrop-filter: blur(12px);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* CENTER WRAP */
.katrane-lightbox-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* STACK IMAGE + TEXT */
.katrane-lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FIXED IMAGE FRAME */
.katrane-lightbox-frame {
  width: 900px;
  height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.katrane-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔥 keeps full newspaper visible */
  border-radius: 20px;
  border: 3px solid #4fd1ff;

  box-shadow: 0 40px 90px rgba(79,209,255,0.45);
  animation: katraneZoom 0.45s ease;
}

/* CAPTION BELOW IMAGE */
.katrane-lightbox-caption {
  margin-top: 16px;
  max-width: 900px;
  text-align: center;

  font-size: 15px;
  font-weight: 500;
  color: #e5f3ff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .katrane-lightbox-frame {
    width: 90vw;
    height: 55vw;
    max-height: 70vh;
  }

  .katrane-lightbox-caption {
    max-width: 90vw;
  }
}


@media (max-width: 600px) {
  .katrane-lightbox-frame {
    width: 92vw;
    height: 60vw;
  }
}

@keyframes katraneZoom {
  from {
    transform: scale(0.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* CLOSE */
.katrane-lightbox-close {
  position: absolute;
  top: -55px;
  right: 0;

  font-size: 42px;
  color: #4fd1ff;
  cursor: pointer;
}

/* PREV / NEXT */
.katrane-lightbox-prev,
.katrane-lightbox-next {
  font-size: 60px;
  color: #4fd1ff;
  cursor: pointer;
  user-select: none;

  padding: 12px;
  transition: transform 0.25s ease;
}

.katrane-lightbox-prev:hover,
.katrane-lightbox-next:hover {
  transform: scale(1.15);
}


/* ================= FLOATING BUTTONS ================= */

/* HOME BUTTON – bottom left */
.floating-home {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: rgba(79,209,255,0.18);
  border: 2px solid rgba(79,209,255,0.6);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  text-decoration: none;
  color: #4fd1ff;

  box-shadow: 0 12px 30px rgba(79,209,255,0.35);
  transition: all 0.3s ease;
}

.floating-home:hover {
  background: #4fd1ff;
  color: #0f172a;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 18px 45px rgba(79,209,255,0.55);
}

/* SCROLL TO TOP – bottom right */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: rgba(79,209,255,0.18);
  border: 2px solid rgba(79,209,255,0.6);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;
  color: #4fd1ff;

  cursor: pointer;
  outline: none;

  box-shadow: 0 12px 30px rgba(79,209,255,0.35);
  transition: all 0.3s ease;
}

.scroll-top-btn:hover {
  background: #4fd1ff;
  color: #0f172a;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 18px 45px rgba(79,209,255,0.55);
}
/* ================= FLOATING BUTTONS – SIZE ONLY ================= */

/* HOME + SCROLL TOP – bigger size */
.floating-home,
.scroll-top-btn {
  width: 64px;     /* increased */
  height: 64px;    /* increased */
  font-size: 28px; /* icon size increased */
}

/* Optional: slightly raise from bottom (still same position logic) */
.floating-home,
.scroll-top-btn {
  bottom: 32px;
}


/* Force lightbox on top of EVERYTHING */
.gallery-lightbox,
.katrane-lightbox {
  z-index: 99999 !important;
}

/* Reference container */
.lightbox-inner,
.katrane-lightbox-wrap {
  position: relative !important;
}

/* PREV / NEXT – INSIDE IMAGE */
.gallery-prev,
.gallery-next,
.katrane-lightbox-prev,
.katrane-lightbox-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background: rgba(79,209,255,0.18);
  border: 2px solid rgba(79,209,255,0.6);
  backdrop-filter: blur(10px);

  font-size: 36px;
  color: #4fd1ff;

  cursor: pointer;
  z-index: 999999 !important;
}

/* LEFT / RIGHT – INSIDE FRAME */
.gallery-prev,
.katrane-lightbox-prev {
  left: 12px !important;
}

.gallery-next,
.katrane-lightbox-next {
  right: 12px !important;
}

/* CLOSE BUTTON – TOP RIGHT INSIDE IMAGE */
.gallery-close,
.katrane-lightbox-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background: rgba(10,15,25,0.9);
  border: 2px solid #4fd1ff;

  font-size: 26px;
  color: #4fd1ff;

  cursor: pointer;
  z-index: 1000000 !important;
}

/* HOVER */
.gallery-prev:hover,
.gallery-next:hover,
.katrane-lightbox-prev:hover,
.katrane-lightbox-next:hover,
.gallery-close:hover,
.katrane-lightbox-close:hover {
  background: #4fd1ff;
  color: #0f172a;
  transform: scale(1.15);
}

/* MOBILE SIZE TUNING */
@media (max-width: 600px) {
  .gallery-prev,
  .gallery-next,
  .katrane-lightbox-prev,
  .katrane-lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .gallery-close,
  .katrane-lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}






/* MOBILE SIZE */
@media (max-width: 600px) {
  .floating-home,
  .scroll-top-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
    bottom: 18px;
  }

  .floating-home {
    left: 18px;
  }

  .scroll-top-btn {
    right: 18px;
  }
}


@media (min-width: 1025px) {
.site-nav {
    display: flex;
    position: static;
    flex-direction: row;

    gap: 28px;
  }

  .menu-toggle {
    display: none;
  }
}

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

@media (max-width: 600px) {
  .katrane-gallery-grid {
    grid-template-columns: 1fr;
  }

  .katrane-gallery-title {
    font-size: 32px;
  }

  .katrane-lightbox-prev,
  .katrane-lightbox-next {
    font-size: 42px;
  }
}

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

  .site-nav {
    display: none;               /* hide menu */
    position: absolute;
    top: 70px;
    right: 16px;

    background: #0f1524;
    flex-direction: column;
    gap: 18px;

    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.85);
    z-index: 9999;
  }

  .site-nav.active {
    display: flex;               /* show on click */
  }

  .menu-toggle {
    display: block;              /* ✅ hamburger ONLY on mobile */
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }
}

/* ================= LARGE DESKTOP (4K / 2K) ================= */
@media (min-width: 1440px) {
  .header-container,
  .home-container,
  .info-container,
  .gallery-container,
  .contact-map-container {
    max-width: 1400px;
  }

  .home-title {
    font-size: 54px;
  }
}

/* ================= LAPTOP ================= */
@media (max-width: 1399px) {
  .home-title {
    font-size: 48px;
  }
}

/* ================= TABLET LANDSCAPE ================= */
@media (max-width: 1199px) {
  body {
    padding-top: 96px;
  }
  .gallery-grid,
  .katrane-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-map-card iframe {
    min-height: 380px;
  }

  .home-container {
    flex-direction: column-reverse;
    text-align: center;
  }
}

/* ================= TABLET PORTRAIT ================= */
@media (max-width: 991px) {

  body {
    padding-top: 120px;
  }

  

  .home-title {
    font-size: 40px;
  }

  .home-name {
    font-size: 32px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= MOBILE LARGE ================= */
@media (max-width: 767px) {

  body {
    padding-top: 130px;
  }

  .home-title {
    font-size: 34px;
  }

  .home-sub {
    font-size: 18px;
  }

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

  .gallery-card img,
  .katrane-gallery-card img {
    height: 220px;
  }

  .contact-map-title,
  .gallery-title,
  .about-title {
    font-size: 30px;
  }

  .footer-content {
    font-size: 13px;
  }
}

/* ================= MOBILE SMALL ================= */
@media (max-width: 575px) {
   body {
    padding-top: 135px;
  }
  .home-title {
    font-size: 28px;
  }

  .home-name {
    font-size: 26px;
  }

  .home-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-map-card iframe {
    min-height: 280px;
  }

  .gallery-card img,
  .katrane-gallery-card img {
    height: 200px;
  }



  .gallery-close {
    top: -28px;
    right: -28px;
  }
}
/* ================= LIGHTBOX – MOBILE SAME AS DESKTOP ================= */
@media (max-width: 767px) {

  /* SHOW arrows */
  .gallery-prev,
  .gallery-next,
  .katrane-lightbox-prev,
  .katrane-lightbox-next {
    display: flex !important;
    width: 52px;
    height: 52px;
    font-size: 36px;
    z-index: 10001;
  }

  /* POSITION arrows same as desktop */
  .gallery-prev,
  .katrane-lightbox-prev {
    left: -60px;
  }

  .gallery-next,
  .katrane-lightbox-next {
    right: -60px;
  }

  /* SHOW close button */
  .gallery-close,
  .katrane-lightbox-close {
    display: flex !important;
    width: 42px;
    height: 42px;
    font-size: 26px;
    top: -38px;
    right: -38px;
    z-index: 10002;
  }
}


/* ===== DESKTOP (1025px+) ===== */
@media (min-width: 1025px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-end;
    gap: 28px;
  }

  .menu-toggle {
    display: none;
  }
  
  /* PREV / NEXT – outside image */
  .gallery-prev,
  .katrane-lightbox-prev {
    left: -70px !important;
    right: auto !important;
  }

  .gallery-next,
  .katrane-lightbox-next {
    right: -70px !important;
    left: auto !important;
  }

  /* CLOSE – outside top-right */
  .gallery-close,
  .katrane-lightbox-close {
    top: -42px !important;
    right: -42px !important;
  } 
}

/* ===== ZENBOOK / SMALL LAPTOP (768px–1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;          /* ✅ two lines */
    white-space: normal;
    justify-content: center;
    max-width: 100%;
    gap: 12px 22px;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }
}

/* ===== MOBILE ONLY (≤767px) ===== */
@media (max-width: 767px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    background: #0f1524;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.85);
    z-index: 9999;
  }

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

  .menu-toggle {
    display: block;
  }
}
/* ===== MEDIUM DEVICES (Nest Hub Max, tablets, small laptops) ===== */
@media (min-width: 768px) and (max-width: 1280px) {

  .header-container {
    justify-content: space-between;
    align-items: center;
  }

  .site-nav {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;          /* ✅ FORCE SINGLE LINE */
    white-space: nowrap;        /* ✅ no wrapping */
    justify-content: center;
    gap: 14px;                  /* tighter spacing */
    overflow: hidden;           /* safety */
  }

  .site-nav a {
    font-size: 15.5px;          /* slightly smaller */
    padding-left: 0;
  }

 
  .site-nav a::before,
  .site-nav a:not(:last-child)::before {
    display: none;
  }

  .menu-toggle {
    display: none;              /* no hamburger */
  }
}
