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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding-top: 80px;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 3%;
  height: auto;
  min-height: 80px;
  background: linear-gradient(90deg, rgba(3, 190, 252, 0.5), rgba(246, 206, 5, 0.5)); /* 50% transparency */
  backdrop-filter: blur(8px); /* Optional: adds frosted glass effect */
  transition: all 0.3s ease;
}

/* Solid header when scrolled (optional) */
.header.scrolled {
  background: linear-gradient(90deg, rgba(3, 190, 252, 0.8), rgba(246, 206, 5, 0.8));
}

/* Ensure content visibility */
body {
  padding-top: 80px;
}
.logo-container {
  flex: 1;
  margin-right: 0; /* Reduced from 20px */
}

.logo {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 200px;
}

/* FORCE contact button size increase */
.nav-right .nav-btn.contact-btn {
  padding: 12px 30px !important;
  font-size: 1.1rem !important;
  min-width: 120px;
  text-align: center;
}

/* Hover state */
.nav-right .nav-btn.contact-btn:hover {
  transform: scale(1.05) !important;
}

.nav-buttons {
  display: flex;
  flex: 2;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Center nav buttons wrapped in one border */
.nav-center {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 5px;               /* ⬅ increase spacing between buttons */
  padding: 8px 30px;       /* ⬅ extra inner padding inside border */
  border: 2px solid #000;  /* single border around group */
  border-radius: 25px;
  background: transparent;
}


.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 15px;
}

.nav-btn {
  text-decoration: none;
  padding: 8px 15px;
  border: 2px solid #090909;
  border-radius: 25px;
  color: #fffcfc;
  transition: all 0.3s ease;
  font-weight: 500;
  background-color:  #0339fc;
  font-size: 0.9rem;
  white-space: nowrap;
}


/* Larger Contact Button */
.contact-btn {
  background-color: #ff5722;
  border-color: #ff5722;
  padding: 12px 30px; /* Increased from 8px 15px */
  font-size: 2rem;  /* Increased from 0.9rem */
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #e64a19;
  border-color: #e64a19;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.nav-btn:hover {
  background-color: #040404;
  color: #fff;
  transform: translateY(-2px);
}



.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  width: calc(100% - 40px); /* Adds left/right space */
  height: 60vh;
  min-height: 300px;
  max-height: 800px;
  margin-bottom: 30px; /* add or adjust this */
  overflow: hidden;
  margin: 60px auto 0; /* Adds top space below header */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 15px 30px rgba(0,0,0,0.2); /* Optional shadow */
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-btn {
  margin-top: 25px;
  padding: 12px 30px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}



.slider {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px; /* Match parent radius */
  overflow: hidden; /* Ensures rounded corners work */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  width: 90%;
  z-index: 2;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 2.5vw, 1.5rem);
  margin-top: 10px;
  font-weight: 300;
}

.prev, .next {
  /* Adjust button positioning to account for new margins */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev { 
  left: 30px; /* Adjusted from 10px */
}
.next { 
  right: 30px; /* Adjusted from 10px */
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}



/* ================= FOOTER ================= */
.main-footer {
  background: linear-gradient(135deg, #03befc, #0056b3);
  color: white;
  padding: 40px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

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

.social-icons a {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f6ce05;
  color: #333;
  transform: translateY(-3px);
}

.footer-center h3, .footer-right h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-center h3::after, .footer-right h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #f6ce05;
}

.quick-links { list-style: none; }
.quick-links li { margin-bottom: 10px; }

.quick-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.quick-links a:hover {
  color: #f6ce05;
  transform: translateX(5px);
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #f6ce05;
  width: 20px;
  text-align: center;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Copyright Footer */
.copyright-footer {
  background-color: #002147;
  color: white;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
}

.copyright-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f6ce05;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .header {
    padding: 10px 5%;
    flex-wrap: wrap;
  }

  .logo-container {
    flex: 1;
    order: 1;
  }

  .mobile-menu-toggle {
    display: block;
    order: 3;
  }

  .nav-buttons {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    margin-top: 15px;
  }

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

  .nav-center, .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .nav-center {
    margin-bottom: 15px;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .hero-section { height: 50vh; }

  .prev, .next {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left, .footer-center, .footer-right {
    text-align: center;
  }

  .footer-center h3::after, .footer-right h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons { justify-content: center; }

  .quick-links a:hover { transform: none; }
}

@media (min-width: 1200px) {
  .header { padding: 15px 8%; }

  .logo {
    max-height: 80px;
    max-width: 300px;
  }

  .nav-center { gap: 30px; }

  .nav-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-section { height: 70vh; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 40px 5%;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 400px; /* Fixed height */
}

.about-image img {
  width: 100%;
  height: 100%; /* Changed from auto to 100% */
  object-fit: cover; /* Ensures image covers the space */
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  color: #002147;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #03befc, #f6ce05);
}

.highlight {
  color: #03befc;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify; /* Add this line */
  text-justify: inter-word; /* Improves spacing between words */
  hyphens: auto; /* Enables hyphenation for better justification */
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  color: #03befc;
  font-size: 1.5rem;
  margin-top: 3px;
}

.feature-title {
  font-size: 1.2rem;
  color: #002147;
  margin: 0;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #03befc;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #03befc;
}

.learn-more-btn:hover {
  background-color: transparent;
  color: #03befc;
  transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 350px; /* Adjusted for mobile */
  }
}

@media (max-width: 992px) {
  .about-image {
    height: 400px; /* Slightly smaller for tablets */
  }
}

/* Default (desktop and larger screens) */
.about-image {
  width: 100%;
  height: 400px; /* Example: full size for desktops */
  object-fit: cover; /* Keep image ratio */
}




/* ================= STATS SECTION ================= */
.stats-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #03befc, #0056b3);
  color: white;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

.counter {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .counter {
    font-size: 2.5rem;
  }
}



/* ================= VISION SECTION ================= */
.vision-section {
  padding: 40px 5%;
  background: #f5f9ff;
}

.vision-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
}

/* Image on RIGHT */
.vision-image {
  flex: 1;
  order: 2; /* Forces image to right side */
}

/* Content on LEFT */
.vision-content {
  flex: 1;
  order: 1; /* Forces content to left side */
}

.vision-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(3, 190, 252, 0.1);
  height: 400px;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vision-image:hover img {
  transform: scale(1.03);
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
  }
  
  .vision-image,
  .vision-content {
    order: initial; /* Reset order for mobile */
    width: 100%;
  }
  
  .vision-image {
    height: 350px;
    margin-top: 30px;
  }
}