﻿:root {
  --primary: #15803d;
  --primary-light: #4ade80;
  --accent: #facc15;
  --dark: #0f172a;
  --light: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--light);
  color: #334155;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
.campus-tour-card {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: rgba(249, 249, 249, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.campus-icon {
  font-size: 2rem;
  color: #2ecc71;
  margin-bottom: 15px;
}
.apply-btn-wrapper {
  margin-top: 40px;
}
.apply-btn {
  padding: 15px 40px;
  font-size: 1.2rem;
}
img {
  max-width: 100%;
  height: auto;
}
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(21, 128, 61, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: navbarFadeIn 0.8s ease-out;
  font-family: var(--font-body);
}
.navbar.shrink {
  padding: 0.8rem 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(21, 128, 61, 0.15);
}
.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}
.navbar .logo:hover {
  transform: translateY(-2px);
}
.navbar .logo img {
  height: 60px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(21, 128, 61, 0.15));
}
.navbar.shrink .logo img {
  height: 45px;
}
.navbar .logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #15803d, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.5px;
}
.navbar.shrink .logo h1 {
  font-size: 1.4rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links li {
  animation: linkStagger 0.6s ease-out backwards;
}
.nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-links a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #15803d, #22c55e, #4ade80);
  background-size: 200% 100%;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: underlineSlide 3s ease-in-out infinite;
}
.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}
.nav-links a:hover {
  color: #15803d;
  letter-spacing: 0.5px;
}
.nav-links a.active {
  color: #15803d;
  font-weight: 700;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #15803d;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  z-index: 1001;
  user-select: none;
}
.hamburger::before {
  content: '\2630';
  display: block;
  transition: transform 0.3s ease;
}
#menu-toggle:checked+.hamburger::before {
  content: '\2715';
  transform: rotate(90deg);
  color: #dc2626;
}
.hamburger:hover {
  background: rgba(21, 128, 61, 0.1);
  transform: scale(1.1);
}
#menu-toggle {
  display: none;
}
@keyframes navbarFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes linkStagger {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes underlineSlide {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes mobileMenuSlide {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .navbar.shrink {
    padding: 0.8rem 1.5rem;
  }
  .navbar .logo img {
    height: 50px;
  }
  .navbar.shrink .logo img {
    height: 40px;
  }
  .navbar .logo h1 {
    font-size: 1.3rem;
  }
  .navbar.shrink .logo h1 {
    font-size: 1.1rem;
  }
  .hamburger {
    display: block;
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 1002;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    border-left: 1px solid rgba(21, 128, 61, 0.1);
    right: 0;
    visibility: hidden;
  }
  #menu-toggle:checked~.nav-links {
    transform: translateX(0);
    animation: mobileMenuSlide 0.4s ease-out;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .nav-links a:hover {
    background: rgba(21, 128, 61, 0.08);
  }
  .nav-links a::before {
    display: none;
  }
  .nav-links a.active {
    background: rgba(21, 128, 61, 0.12);
  }
  .apply-btn {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    width: 100%;
    display: block;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 380px) {
  .admission-process,
  .academics-container,
  .features-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .navbar .logo h1 {
    font-size: 1.1rem;
  }
  .navbar.shrink .logo h1 {
    font-size: 1rem;
  }
  .nav-links {
    width: 100%;
  }
}
.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 60px 20px 20px;
  animation: fadeIn 1s ease;
  font-family: var(--font-body);
  border-top: 4px solid var(--primary);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.footer-logo-section {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-logo {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  animation: slideIn 1.2s ease;
}
.school-info h2 {
  margin: 0;
  font-size: 1.6rem;
  color: #ffffff;
  font-family: var(--font-heading);
}
.school-info p {
  font-size: 1rem;
  color: #94a3b8;
  margin-top: 5px;
}
.footer-links-section,
.footer-social-section {
  flex: 1;
  min-width: 200px;
}
.footer-links-section h3,
.footer-social-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.social-icons a {
  color: white;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: transform 0.3s ease, color 0.3s;
  display: inline-block;
}
.social-icons a:hover {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary-light);
}
.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo-section {
    flex-direction: column;
    text-align: center;
  }
}
.floating-img-button {
  position: fixed;
  bottom: 12px;
  right: 20px;
  font-size: 16px;
  font-weight: bold;
  color: green;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  filter: drop-shadow(0 0 10px black);
  animation: gentlePulse 2.5s infinite ease-in-out;
  z-index: 9999;
}
@keyframes gentlePulse {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 8px black);
  }
  50% {
    transform: translateY(-3px) scale(1.03);
    filter: drop-shadow(0 0 14px rgba(255, 255, 0, 0.9));
  }
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 8px black);
  }
}
.section-title {
  font-size: 2em;
  color: #144d2d;
  margin-bottom: 30px;
  text-align: center;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --green-100: #f7fff8;
  --green-200: #e8ffea;
  --accent: #6be67a;
  --accent-2: #2ecc71;
  --accent-dark: #15803d;
  --text: #06261b;
}
body {
  background: linear-gradient(180deg, var(--green-100), #ffffff);
  color: var(--text);
}
.btn-accent {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}
.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}
.btn-accent:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.5);
  background: linear-gradient(135deg, #15803d, #14532d);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-accent:hover::before {
  left: 100%;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}
.btn-pulse {
  animation: pulse-ring 2s infinite;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.0));
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: translateY(0);
  filter: brightness(0.85) saturate(1.05);
  will-change: transform;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 15, 0.15), rgba(255, 255, 255, 0.02));
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  color: #02311f;
  max-width: 980px;
  padding: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: 0.4rem;
  color: #042b18;
  text-shadow: 0 18px 40px rgba(11, 46, 18, 0.08);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(2, 50, 24, 0.9);
  margin-bottom: 1rem;
}
.parallax {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax .parallax-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: translateY(0);
  will-change: transform;
}
.parallax .parallax-content {
  position: relative;
  z-index: 3;
  padding: 2.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px rgba(6, 38, 27, 0.06);
}
.highlight-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  border-left: 6px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 56vh;
  }
  .parallax .parallax-content {
    padding: 1.2rem;
  }
  .hero .hero-bg {
    background-attachment: scroll;
  }
}
.space-lg {
  padding: 5rem 1rem;
}
.quick-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 900px;
  width: 90%;
  margin: -40px auto 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 60;
  position: relative;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}
.quick-links:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.quick-links .quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.quick-links .quick-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.25);
  border-color: var(--primary);
}
@media (min-width: 768px) {
  .quick-links {
    padding: 20px 30px;
    gap: 20px;
  }
  .quick-links .quick-link {
    padding: 14px 28px;
    font-size: 1.05rem;
  }
}
@media (max-width: 480px) {
  .quick-links {
    width: 95%;
    margin: -30px auto 20px;
    padding: 15px;
    gap: 10px;
    border-radius: 16px;
  }
  .quick-links .quick-link {
    font-size: 0.9rem;
    padding: 10px 16px;
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }
}
.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
  font-weight: 700;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.40)) !important;
}
.hero .hero-content {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.25) !important;
  padding: 1.5rem 2rem !important;
  border-radius: 16px !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.hero h1 {
  color: #ffffff !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8) !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
}
.hero p {
  color: #f8fafc !important;
  font-size: 1.25rem !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
  margin-top: 10px !important;
}
.form-note {
  text-align: center;
  margin-top: 15px;
  color: #64748b;
  font-size: 0.9rem;
  font-style: italic;
}
.btn-accent {
  border: 2px solid rgba(255, 255, 255, 0.12) !important;
}
.btn-accent:hover {
  box-shadow: 0 20px 40px rgba(43, 160, 90, 0.22) !important;
  transform: translateY(-4px) !important;
}
.btn-accent:focus {
  outline: 3px solid rgba(43, 160, 90, 0.22);
  outline-offset: 3px;
}
@media (max-width: 480px) {
  .hero .hero-content {
    padding: 1rem !important;
    margin: 0 12px;
  }
  .hero .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25)) !important;
  }
}
.academics-container,
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.feature-box,
.academic-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-box::before,
.academic-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-box:hover::before,
.academic-box:hover::before {
  transform: scaleX(1);
}
.feature-box:hover,
.academic-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.feature-icon,
.academic-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.admission-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.admission-popup.active {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  overflow: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.admission-popup.active .popup-content {
  transform: translateY(0) scale(1);
}
.popup-blob {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0.15;
  border-radius: 40%;
  animation: rotateBlob 20s infinite linear;
  z-index: 0;
  pointer-events: none;
}
.popup-text {
  position: relative;
  z-index: 2;
}
.popup-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.popup-text h3 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 800;
}
.popup-text p {
  color: #4b5563;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-popup {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-popup:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}
.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #94a3b8;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}
.close-popup:hover {
  color: var(--primary);
  transform: scale(1.1);
}
@keyframes rotateBlob {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.typing-container h1 {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 5px;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.typing-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--accent);
  min-height: 1.2em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  position: relative;
  font-weight: 700;
}
.typing-container h2::after {
  content: '|';
  position: absolute;
  right: -10px;
  animation: blink 0.7s infinite;
  color: var(--accent);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.admission-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.process-step {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}
.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  background: var(--green-100);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.process-step p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.collapsible-trigger {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}
.collapsible-trigger:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.collapsible-trigger.active {
  background: var(--primary);
  color: white;
}
.collapsible-trigger .fa-chevron-down {
  transition: transform 0.3s ease;
}
.collapsible-trigger.active .fa-chevron-down {
  transform: rotate(180deg);
}
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}
.collapsible-content.open {
  max-height: 500px;
  opacity: 1;
}
.document-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  background: #f8fafc;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}
.document-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.document-list li:last-child {
  margin-bottom: 0;
}
.document-list li i {
  color: var(--accent-dark);
  font-size: 0.8rem;
}
.highlight-step {
  border: 2px solid var(--primary-light);
  background: linear-gradient(180deg, #ffffff 0%, #fafffb 100%);
}
.enquiry-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}
.enquiry-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.enquiry-header h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.enquiry-header p {
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.enquiry-form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.enquiry-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(22, 163, 74, 0.1) 40%,
      rgba(22, 163, 74, 0.3) 50%,
      rgba(22, 163, 74, 0.1) 60%,
      transparent 100%);
  transform: skewX(-25deg);
  animation: shine-sweep 4s infinite linear;
  pointer-events: none;
  z-index: 1;
}
.enquiry-form-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  background-size: 200% 100%;
  animation: border-flow 3s linear infinite;
  pointer-events: none;
}
.principal-desk-container {
  max-width: 1000px;
  margin: -60px auto 40px;
  position: relative;
  border-radius: 20px 20px 20px 20px;
  background: transparent;
  padding: 0 20px;
}
.principal-card {
  display: flex;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.principal-image-wrapper {
  flex: 0 0 40%;
  position: relative;
  min-height: 400px;
  background: #f0fdf4;
}
.principal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.principal-card:hover .principal-photo {
  transform: scale(1.03);
}
.principal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #064e3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
  animation: float 3s ease-in-out infinite;
}
.principal-info {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}
.principal-info .designation {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.principal-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.2;
}
.principal-info .qualification {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 25px;
  font-weight: 500;
}
.message-content p {
  line-height: 1.8;
  color: #334155;
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.signature {
  margin-top: 20px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}
.signature p {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 900px) {
  .principal-card {
    flex-direction: column;
  }
  .principal-image-wrapper {
    height: 350px;
  }
  .principal-info {
    padding: 30px;
  }
  .principal-info h2 {
    font-size: 2rem;
  }
  .principal-desk-container {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes shine-sweep {
  0% {
    left: -150%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    left: 150%;
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@keyframes border-flow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
.form-group {
  flex: 1;
  position: relative;
  z-index: 2;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-group label .required {
  color: #dc2626;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #1e293b;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  font-family: var(--font-heading);
}
.btn-submit:hover {
  background: var(--primary-dark, #14532d);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}
.footer {
  background: #111;
  color: #f1f1f1;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 10;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.footer-logo-section {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(2px 1px 10px rgba(161, 155, 155, 0.2));
}
.school-info h2 {
  margin: 0;
  font-size: 1.4rem;
  color: #a5d6a7;
  font-weight: 700;
  font-family: var(--font-heading);
}
.school-info p {
  font-size: 0.9rem;
  color: #c8e6c9;
  margin-top: 5px;
  line-height: 1.5;
}
.footer-links-section,
.footer-social-section {
  flex: 1;
  min-width: 200px;
}
.footer-links-section h3,
.footer-social-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #81c784;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #e8f5e9;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}
.footer-links a:hover {
  color: #66bb6a;
  transform: translateX(5px);
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.social-icons a[href*="youtube"]:hover,
.social-icons a[href*="youtube"] {
  background: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}
.social-icons a[href*="instagram"]:hover,
.social-icons a[href*="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}
.social-icons a[href*="facebook"]:hover,
.social-icons a[href*="facebook"] {
  background: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}
.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-logo-section {
    flex-direction: column;
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links-section,
  .footer-social-section {
    width: 100%;
    align-items: center;
  }
}
.gallery-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 60px;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.gallery-hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpHero 1s forwards 0.3s;
}
.gallery-hero p {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpHero 1s forwards 0.5s;
}
@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.masonry-grid {
  columns: 4 300px;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  display: block;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-caption {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
.gallery-caption h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.gallery-caption p {
  font-size: 0.85rem;
  opacity: 0.8;
}
.load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}
.btn-premium {
  background: var(--primary);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(22, 163, 74, 0.4);
  background: #14532d;
}
.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.btn-premium:hover::after {
  left: 100%;
}
@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 2.5rem;
  }
  .masonry-grid {
    columns: 2 150px;
  }
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  object-fit: contain;
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
#lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #f1f1f1;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  font-family: var(--font-heading);
}
.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  transition: 0.3s;
  cursor: pointer;
  z-index: 3001;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-lightbox:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3001;
}
.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 20px;
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.nav-btn:active {
  transform: scale(0.9);
}
@media (max-width: 768px) {
  .lightbox-nav {
    padding: 0 20px;
  }
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.gallery-wrapper {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding-top: 40px;
  min-height: 80vh;
}
.gallery-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #f0f9ff 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.gallery-container {
  position: relative;
  z-index: 2;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes shineMove {
  0% {
    transform: translate(-20%, -20%) rotate(0deg);
  }
  50% {
    transform: translate(10%, 10%) rotate(5deg);
  }
  100% {
    transform: translate(-20%, -20%) rotate(0deg);
  }
}
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.filter-btn.active {
  background: #22c55e;
  color: #022c22;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  border-color: #22c55e;
}
.gallery-item {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.gallery-item img {
  transform: translateZ(0);
}
.gallery-caption {
  transform: translateZ(20px) translateY(20px);
}
.gallery-item:hover .gallery-caption {
  transform: translateZ(20px) translateY(0);
}
.bg-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: floatUp 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.shape-1 {
  width: 100px;
  height: 100px;
  left: 10%;
  bottom: -100px;
  animation-duration: 15s;
}
.shape-2 {
  width: 150px;
  height: 150px;
  left: 30%;
  bottom: -150px;
  animation-duration: 25s;
  animation-delay: 2s;
}
.shape-3 {
  width: 80px;
  height: 80px;
  left: 70%;
  bottom: -80px;
  animation-duration: 18s;
  animation-delay: 5s;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}
.contact-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 60px;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInDown 1s ease-out;
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.contact-hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
}
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-info-section {
  flex: 1;
  min-width: 300px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary);
  opacity: 0;
  animation: slideInLeft 0.8s forwards;
}
.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-card:nth-child(3) {
  animation-delay: 0.4s;
}
.contact-card:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}
.contact-card:hover .card-icon {
  background: var(--primary);
  color: white;
  transform: rotate(10deg);
}
.card-details h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 5px;
}
.card-details p,
.card-details a {
  color: #64748b;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-word;
  overflow-wrap: break-word;
}
.card-details a:hover {
  color: var(--primary);
}
.contact-form-section {
  flex: 1.5;
  min-width: 350px;
}
.premium-form {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}
.premium-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #86efac);
}
.premium-form h2 {
  font-family: var(--font-heading);
  color: #0f172a;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}
.form-input:focus {
  border-color: var(--primary);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}
.form-input::placeholder {
  color: #94a3b8;
}
textarea.form-input {
  min-height: 150px;
  resize: vertical;
}
.btn-send {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-send:hover {
  background: #14532d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}
.map-section {
  margin: 0 0 0 0;
  height: 450px;
  width: 100%;
  position: relative;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}
.contact-single-tile {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 50px;
  max-width: 1200px;
  margin: 40px auto 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.contact-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}
.icon-box {
  width: 50px;
  height: 50px;
  background: var(--green-100);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.contact-item:hover .icon-box {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.info-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 8px;
  font-weight: 700;
}
.info-box p,
.info-box a {
  color: #64748b;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
  word-break: break-word;
  overflow-wrap: break-word;
}
.info-box a:hover {
  color: var(--primary);
}
.divider {
  width: 1px;
  background: #e2e8f0;
  align-self: stretch;
  margin: 0 10px;
}
@media (max-width: 900px) {
  .contact-info-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .divider {
    width: 80%;
    height: 1px;
    margin: 10px 0;
  }
  .contact-item {
    width: 100%;
  }
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-white {
  padding: 80px 10%;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 1;
}
.section-green {
  padding: 80px 10%;
  background: rgba(112, 193, 101, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  position: relative;
  z-index: 1;
}
.floating-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  perspective: 1500px;
}
.floating-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.12;
  color: #15803d;
  filter: drop-shadow(0 10px 20px rgba(21, 128, 61, 0.1));
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  will-change: transform;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes float-complex {
  0% {
    transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 0deg);
  }
  33% {
    transform: translate3d(10px, -30px, 20px) rotate3d(1, 0.5, 0.2, 120deg);
  }
  66% {
    transform: translate3d(-15px, 20px, -10px) rotate3d(0.2, 1, 0.5, 240deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 360deg);
  }
}
.floating-anim {
  animation: float-complex var(--duration, 15s) ease-in-out infinite;
}