* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00d4ff;
  --secondary-color: #0066cc;
  --accent-color: #ff6b35;
  --dark-bg: #0b1430;
  --darker-bg: #0a1024;
  --text-light: #ffffff;
  --text-gray: #a0a9c0;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  --glow: 0 0 20px rgba(0, 212, 255, 0.3);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
} 
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  background: var(--dark-bg);
  padding: 1rem 0;
  z-index: 999;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
border-radius: 10px;      border-top: 1px solid rgba(0, 212, 255, 0.1);

}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: bold ;
  text-decoration: none;
  letter-spacing: 1px;
  animation: logoTextFadeIn 1.5s ease forwards;
  text-shadow: 0 0 01px var(--primary-color), 0 0 3px var(--primary-color);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px var(--primary-color), 0 0 16px var(--accent-color);
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  box-shadow: var(--glow);
  animation: logoPulse 2s ease-in-out infinite, logoImgSlide 1.5s ease forwards;
  opacity: 0;
}

/* Logo Animations */
@keyframes logoPulse {
  0%, 100% {
    box-shadow: 0 0 12px var(--primary-color), 0 0 24px var(--primary-color);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    transform: scale(1.05);
  }
}

@keyframes logoImgSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  animation: navFadeIn 1.5s ease forwards;
}

.nav-menu li {
  margin-left: 25px;
  opacity: 0;
  animation: navItemFade 1.2s ease forwards;
}

/* Stagger each menu item animation */
.nav-menu li:nth-child(1) { animation-delay: 0.3s; }
.nav-menu li:nth-child(2) { animation-delay: 0.5s; }
.nav-menu li:nth-child(3) { animation-delay: 0.7s; }
.nav-menu li:nth-child(4) { animation-delay: 0.9s; }
/* Add more if needed */

.nav-link {
  text-decoration: none;
  color: var(--text-gray);
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

/* Underline Hover Effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navItemFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: 0.4s ease;
}

/* Hamburger Animation when Active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--dark-bg);
    padding: 0;
    border-radius: 15px;
    transition: max-height 0.5s ease, padding 0.5s ease;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 10px 0;
    animation: slideDown 0.5s ease forwards;
  }

  .nav-menu li {
    margin: 10px 0;
    width: 100%;
    opacity: 0;
    animation: fadeInMenuItem 0.5s ease forwards;
  }

  .nav-menu.active li:nth-child(1) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.35s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.5s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.65s; }
}

.nav-link {
  padding: 10px 0 10px 10px;
  display: block;
  width: 100%;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInMenuItem {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Section */

.hero-container {
  display: flex;
  flex-direction: row-reverse; /* Image left, content right */
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.hero-content {
  flex: 1;
  color: #fff;
  animation: fadeInRight 1.5s ease forwards;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #00d4ff, #0066cc, #00d4ff);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite, fadeInDown 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-gray, #a0a0a0);
  margin-bottom: 1.2rem;
  animation: fadeIn 2s ease-out forwards;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light, #fff);
  max-width: 700px;
  margin-bottom: 30px;
  animation: fadeInUp 2s ease-out forwards;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease-out forwards;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.btn-primary {
  background: #00d4ff;
  color: #000;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid #00d4ff;
  color: #00d4ff;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Image Styling */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInLeft 1.5s ease forwards;
}

.hero-image img {
  max-width: 100%;
  width: 400px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  animation: floatImage 3s ease-in-out infinite;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  padding: 30px;
}

/* Animations */
@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive: Tablet & Mobile */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    height: auto;
  }

  .hero-content {
    padding: 0;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-image {
    margin-bottom: 30px;
    width: 100%;
  }

  .hero-image img {
    width: 90%;
    max-width: 400px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .glass-card {
    padding: 20px;
  }
}
/* === Mobile View Fix === */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;       /* Stack image and content */
    text-align: center;
    padding: 40px 20px;
    height: auto;
  }

  .hero-image {
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 20px;
    border-width: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }

  .hero-content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
  }

  .glass-card {
    padding: 20px;
  }
}



/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn i {
  margin-right: 10px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--text-light);
  box-shadow: var(--glow);
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: pulse 1s ease infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-5px);
}


/* Animations */
@keyframes shimmer {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0px rgba(0, 212, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 212, 255, 0.7);
  }
}




/* Contact Form Container */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1.2s ease forwards;
}

/* Inputs, Select, Textarea */
#contact-form input,
#contact-form select,
#contact-form textarea {
  padding: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: all 0.4s ease;
}

/* Focus Glow Effect */
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* Button */
#contact-form button {
  background: linear-gradient(135deg, #00d4ff, #0066cc);
  border: none;
  color: #0a0e1a;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Button Hover */
#contact-form button:hover {
  background: linear-gradient(135deg, #00d4ff, #00ffa6);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
  transform: translateY(-3px);
}

/* Icon inside Button */
#contact-form button i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  #contact-form {
    padding: 1.5rem;
    gap: 1.2rem;
    max-width: 95%;
    margin: 20px auto;
  }

  #contact-form input,
  #contact-form select,
  #contact-form textarea {
    font-size: 0.95rem;
    padding: 0.9rem;
  }

  #contact-form button {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
    border-radius: 40px;
  }

  #contact-form button i {
    font-size: 1rem;
    margin-right: 6px;
  }
}

@media (max-width: 480px) {
  #contact-form {
    padding: 1rem;
    gap: 1rem;
    border-radius: 15px;
  }

  #contact-form input,
  #contact-form select,
  #contact-form textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  #contact-form button {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
}

/* General Section Styling */
.section {
    padding: 80px 0;
    text-align: center;
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Feature Card */
.feature-card {
  background: var(--darker-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--glow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

/* Animate cards with stagger */
.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.8s; }
.feature-card:nth-child(5) { animation-delay: 1s; }
.feature-card:nth-child(6) { animation-delay: 1.2s; }

/* Card Top Bar Glow */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: translateY(-5px);
  transition: transform 0.3s ease-out;
}

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.4);
}

/* Feature Icon */
.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Title & Description */
.feature-title {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Button inside cards */
.btn-card {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4ff, #0066cc);
  color: #0a0e1a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-card:hover {
  background: linear-gradient(135deg, #00d4ff, #00ffa6);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
  transform: translateY(-3px);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweaks */
@media (max-width: 480px) {
  .features-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .btn-card {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}


/* Stats Section */
.stats {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    box-shadow: var(--glow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Page Navigation Buttons */
.page-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-btn {
    width: 50px;
    height: 50px;
    background: var(--darker-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--glow);
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* Page Indicator */
.page-indicator {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: var(--darker-bg);
    color: var(--text-gray);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    z-index: 998;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 10px;
    border-radius: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
    text-align: left;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-section p a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--primary-color);
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .nav-menu {
        margin-left: 10px;
    }

    .nav-menu li {
        margin-left: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.mission-vision h3 i {
  font-size: 1.4rem;
  vertical-align: middle;
  margin-right: 10px;
  color: var(--accent-color);
}
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-vision p + p {
  margin-top: 1rem;
}

.mission-vision > div:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
  .mission-vision > div {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .hamburger { display: flex; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
    background: var(--darker-bg);
    box-shadow: var(--glow);
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
    z-index: 999;
  }

  .nav-menu.active { display: flex; }

  .nav-menu li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    height: auto;
  }

  .hero-image {
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 20px;
    border-width: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }

  .hero-content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
  }

  .glass-card {
    padding: 20px;
  }
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .btn {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .page-nav {
    right: 10px;
    bottom: 10px;
    position: absolute;
  }

  .page-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-indicator {
    left: 10px;
    bottom: 10px;
    padding: 6px 12px;
    font-size: 0.8rem;
    position: absolute;
  }

  .section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-card {
    padding: 15px;
    margin: 10px 0;
    text-align: center;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .feature-title {
    font-size: 1.4rem;
  }
}
  /* Container for fixed GIFs */
.side-gifs {
  top: 50%;
  width: 100%;
  pointer-events: none;
  z-index: 999;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

/* Shared GIF design */
.gif {
  width: 90px;
  max-width: 25vw;
  height: auto;
  border: 3px solid #00f2ff;
  border-radius: 20px;
  box-shadow: 0 0 15px #00f2ff, 0 0 30px #00f2ff66;
  background-color: rgba(255, 255, 255, 0.05);
  animation: floatY 3s ease-in-out infinite;
  backdrop-filter: blur(2px);
}

/* Floating animation */
@keyframes floatY {
  0% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}

/* Responsive scaling on smaller devices */
@media (max-width: 768px) {
  .gif {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .gif {
    width: 60px;
  }
}
