/* Reset */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background-color: #F9F9F9;
  color: #555;
}
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 2px solid #ddd;
  background: #fff;
}
.top-header .logo img {
  height: 150px;
}
.top-header .header-text {
  text-align: center;
}
.top-header .header-text h1 {
  font-size: 50px;
  margin: 0;
  font-weight: bold;
}

h1 {
  font-family: 'Poppins', sans-serif; /* clean modern font */
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #000000, #434343);
 /* gradient color */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin: 20px 0;
}






.top-header .header-text p {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}
.top-header .header-img img {
  height: 150px;
  border-radius: 50%;
}


.slogan {
  font-family: 'Merriweather', serif; /* elegant + classy */
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  max-width: 900px;
  margin: 10px auto;
  line-height: 1.6;
  background: linear-gradient(90deg, #ff512f, #dd2476); /* black gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.registration-no {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff512f, #dd2476); /* gradient highlight */
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}




/* फक्त Navbar sticky */
.navbar {
  position: sticky;   /* navbar scroll झाल्यावर वर fix होईल */
  top: 0;             /* top पासून 0px अंतर */
  z-index: 1000;      /* इतर content वर दिसण्यासाठी */
  background: #004080;
  padding: 10px 20px;
}

/* Header normal राहील */
.header {
  position: relative;  /* scroll झाल्यावर निघून जाईल */
  background: #fff;
}



/* Navbar Base */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #2C3E50;
  color: white;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #FFD700;
}

.right-side {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.search-box input {
  padding: 6px 10px;
  border-radius: 5px;
  border: none;
}

.search-box button {
  padding: 6px 10px;
  border: none;
  background: #FFD700;
  border-radius: 5px;
  cursor: pointer;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 20px;
}

.lang-btn {
  background: #FFD700;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  color: black;
  list-style: none;
  border-radius: 5px;
  overflow: hidden;
}

.lang-menu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
}

.lang-menu li a:hover {
  background: #eee;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .search-box,
  .language-switcher {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #2C3E50;
    padding: 10px;
    gap: 10px;
  }

  .nav-links.active,
  .search-box.active,
  .language-switcher.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }
}




/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  color: #fff;
  background: #2c3e50;
  overflow: hidden;
}

/* Slideshow container */
.slideshow {
  position: relative;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar overlay text */
.sidebar-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.sidebar-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #27ae60;
}

.sidebar-overlay p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.btn-read {
  display: inline-block;
  padding: 8px 16px;
  background: #27ae60;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}




/* About Us Section */
.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  border-left: 5px solid #27ae60;
  padding-left: 10px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.btn-learn {
  display: inline-block;
  padding: 10px 20px;
  background: #27ae60;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background: #2ecc71;
}

/* Title with image */
.title-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.title-container h2 {
  font-size: 28px;
  color: #2C3E50;
  border-left: 5px solid #27AE60;
  padding-left: 10px;
}

.title-container img {
  width: 45px;
  height: 45px;
}
/* Slideshow */
.slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.slide.active {
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  height: vh;   /* आता height कमी होईल */
  overflow: hidden;
}


.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-container {
  position: relative;
  display: inline-block;
}

.sidebar-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.sidebar-overlay {
  position: absolute;
  bottom: 0;                  /* खालच्या बाजूला */
  left: 0;
  width: 100%;                /* पूर्ण horizontal */
  background: rgba(0,0,0,0.6); /* black transparent */
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 0 0 10px 10px; /* फक्त bottom ला गोल कोपरे */
}

.sidebar-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffcc00;  /* example color */
}

/* Button styling */
.btn-read {
  display: inline-block;
  padding: 10px 20px;
  background: #27AE60; /* your theme color */
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}


.btn-read:hover {
  background: #39e63f;
}

/* Hero bottom text */
.hero-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text p {
  margin: 10px 0;
}

.hero-text .btn {
  padding: 10px 25px;
  background: #4dff9a;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero-text .btn:hover {
  border: 4px solid #27AE60;
   
  background: #27AE60;
}


/* Programs Section */
.programs {
  padding: 50px 20px;
  background: #f8f9fb;
}

/* Grid Container - 4 Columns */
.programs .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns fixed */
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}

/* Card Styling */
.card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* Card Image */
.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #27AE60;
}

/* Card Titles & Text */
.card h3 {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.card p, .card ul {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li::before {
  content: "➤ ";
  color: #27AE60;
  font-weight: bold;
}

/* Button Styling */
.card button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #27AE60;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card button:hover {
  background: #219150;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .programs .container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for smaller desktops */
  }
}

@media (max-width: 992px) {
  .programs .container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 576px) {
  .programs .container {
    grid-template-columns: 1fr; /* 1 column for mobiles */
  }
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  background: #0077b6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #005f8a;
}






/* Page Banner */
.page-banner {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.page-banner h1 {
  font-size: 2rem;
  color: #222;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #0077b6;
}

.contact-info h3 {
  font-size: 1rem;
  margin: 10px 0 5px;
  color: #444;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-info a {
  color: #0077b6;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Right Form */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  background: #fafafa;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-form-container h2 {
  margin-bottom: 10px;
  color: #0077b6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 0.9rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 100px;
}

.contact-form button {
  padding: 12px;
  background: #0077b6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form button:hover {
  background: #005f8a;
}

/* Visit Us Section */
.visit-us {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.visit-us h2 {
  margin-bottom: 20px;
  color: #0077b6;
  text-transform: uppercase;
}

.office-block {
  margin-bottom: 30px;
}

.office-block h3 {
  margin-bottom: 10px;
  color: #333;
}

.office-block p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Tabs */
.regional-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #0077b6;
  background: #fff;
  color: #0077b6;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
  background: #0077b6;
  color: #fff;
}

/* Office Details */
.office-details {
  display: none;
  background: #fafafa;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.office-details.active {
  display: block;
}

/* Join Hero */
.join-hero {
  background: url('image\join us.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-hero h1 {
  color: white;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
}

/* Intro Section */
.join-intro {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.join-intro p {
  margin-bottom: 20px;
}

/* Find a Position */
.find-position {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.find-position h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0077b6;
}

.find-position p {
  margin-bottom: 20px;
}

.find-position .btn {
  padding: 12px 25px;
  background: #0077b6;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.find-position .btn:hover {
  background: #005f8a;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn .arrow {
  font-size: 0.8rem;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  list-style: none;
  padding: 5px 0;
  min-width: 120px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.lang-menu li {
  padding: 8px 15px;
}

.lang-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.lang-menu li:hover {
  background: #f5f5f5;
}

/* Show menu on active */
.language-switcher.active .lang-menu {
  display: block;
}





.footer {
  background: #2C3E50;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 15px;
}

.footer-section h3 {
  color:#27ae60; /* gold highlight */
  margin-bottom: 15px;
}

.footer-points {
  list-style: none;
  padding: 0;
}
.footer-points li::before {
  content: "✔ "; /* Or use ➤, ●, ➔ */
  color: #ff6600; /* Custom color */
  margin-right: 6px;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #FFD700;
}

/* Newsletter */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter input {
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  outline: none;
}

.newsletter button {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #a80000;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
}

/* Registration highlight */
.registration {
  display: inline-block;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  font-size: 13px;
  margin-top: 8px;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin: 15px 0;
  }

  .newsletter {
    align-items: center;
  }
}


/* Page Banner */
.page-banner {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.page-banner h1 {
  font-size: 2rem;
  color: #222;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #0077b6;
}

.contact-info h3 {
  font-size: 1rem;
  margin: 10px 0 5px;
  color: #444;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-info a {
  color: #0077b6;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Right Form */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  background: #fafafa;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-form-container h2 {
  margin-bottom: 10px;
  color: #0077b6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 0.9rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 100px;
}

.contact-form button {
  padding: 12px;
  background: #0077b6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form button:hover {
  background: #005f8a;
}

/* Visit Us Section */
.visit-us {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.visit-us h2 {
  margin-bottom: 20px;
  color: #0077b6;
  text-transform: uppercase;
}

.office-block {
  margin-bottom: 30px;
}

.office-block h3 {
  margin-bottom: 10px;
  color: #333;
}

.office-block p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Tabs */
.regional-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #0077b6;
  background: #fff;
  color: #0077b6;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
  background: #0077b6;
  color: #fff;
}

/* Office Details */
.office-details {
  display: none;
  background: #fafafa;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.office-details.active {
  display: block;
}

/* Join Hero */
.join-hero {
  background: url('image\join us.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-hero h1 {
  color: white;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
}

/* Intro Section */
.join-intro {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.join-intro p {
  margin-bottom: 20px;
}

/* Find a Position */
.find-position {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.find-position h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0077b6;
}

.find-position p {
  margin-bottom: 20px;
}

.find-position .btn {
  padding: 12px 25px;
  background: #0077b6;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.find-position .btn:hover {
  background: #005f8a;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn .arrow {
  font-size: 0.8rem;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  list-style: none;
  padding: 5px 0;
  min-width: 120px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.lang-menu li {
  padding: 8px 15px;
}

.lang-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.lang-menu li:hover {
  background: #f5f5f5;
}

/* Show menu on active */
.language-switcher.active .lang-menu {
  display: block;
}










/* =========================================
   ✅ Responsive Website Styles
   ========================================= */

/* Large Screens (Desktops) - Default already covered */

/* Tablets (width ≤ 1024px) */
@media (max-width: 1024px) {
  .top-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .top-header .logo img,
  .top-header .header-img img {
    height: 100px;
  }
  .top-header .header-text h1 {
    font-size: 36px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
  .navbar .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    height: auto;
  }
  .slideshow {
    width: 100%;
    height: 300px;
  }
  .sidebar-overlay {
    font-size: 0.9rem;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 350px;
  }

  .programs .container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-container {
    flex-direction: column;
    padding: 20px;
  }
}

/* Mobile (width ≤ 768px) */
@media (max-width: 768px) {
  .top-header .header-text h1 {
    font-size: 28px;
  }
  .top-header .header-text p {
    font-size: 12px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .search-box {
    width: 100%;
    margin-top: 10px;
  }

  .hero {
    flex-direction: column;
    height: auto;
  }
  .slideshow {
    height: 200px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .programs .container {
    grid-template-columns: 1fr;
  }

  .card img {
    width: 90px;
    height: 90px;
  }

  .join-hero h1 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .find-position h2 {
    font-size: 1.4rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

/* Small Mobile (width ≤ 480px) */
@media (max-width: 480px) {
  .top-header .header-text h1 {
    font-size: 22px;
  }
  .top-header .logo img,
  .top-header .header-img img {
    height: 70px;
  }

  .hero-text h1 {
    font-size: 1.4rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }

  .about-content h2 {
    font-size: 1.2rem;
  }
  .about-content p {
    font-size: 0.9rem;
  }

  .card h3 {
    font-size: 1rem;
  }
  .card p {
    font-size: 0.85rem;
  }

  .join-hero h1 {
    font-size: 1.4rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 0.9rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* show hamburger */
  }

  .nav-links,
  .search-box,
  .language-switcher {
    display: none; /* hide initially */
  }

  .nav-links.active,
  .search-box.active,
  .language-switcher.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #8B0000;
    padding: 10px;
    gap: 10px;
  }

  .nav-links li {
    text-align: center;
  }
}



/*betti*/
.hero {
  background: url("https://cdn.pixabay.com/photo/2016/11/29/09/32/girl-1867092_1280.jpg") no-repeat center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff4081;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #e91e63;
}

/* Content Section */
.content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.content h2 {
  margin-bottom: 20px;
  color: #ff4081;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
}

/*vision*/

.vision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 40px;
}
.vision-section img {
  width: 390px;       /* square size - तू value वाढवू शकतोस */
  height: 250px;      /* height = width ठेवली म्हणजे square बनेल */
  object-fit: cover;  /* image crop होऊन व्यवस्थित दिसेल */
  border-radius: 0px; /* square ठेवण्यासाठी corner round करू नये */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* थोडा shadow effect */
}


.vision-content {
  width: 55%;
}

.vision-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}
.vision-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.mission {
  margin-top: 30px;
}

.mission ul {
  margin-top: 15px;
  padding-left: 20px;
}

.mission ul li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
}


/*membership*/
.membership-section {
  padding: 50px;
  text-align: center;
}

.membership-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #333;
}

.membership-intro {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.membership-types {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.type-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 260px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.type-card:hover {
  transform: translateY(-5px);
}

.type-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.type-card h3 {
  color: #222;
  margin-bottom: 10px;
}

.type-card p {
  font-size: 15px;
  color: #555;
}

.membership-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.membership-form h3 {
  margin-bottom: 20px;
  color: #333;
}

.membership-form label {
  display: block;
  margin-bottom: 8px;
  text-align: left;
  font-weight: bold;
}

.membership-form input,
.membership-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.membership-form button {
  background: #27ae60;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.membership-form button:hover {
  background: #219150;
}


/* Responsive */
@media (max-width: 992px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .top-header h1 { font-size: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; width: 100%; background: #2C3E50; padding: 10px; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 1.8rem; }
  .grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .top-header img { height: 100px; }
  .hero h1 { font-size: 1.4rem; }
}
