* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}

header {
 
  position:sticky;
  background-color: #007bff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
}

.navbar {
  display: flex;
 align-items:center;
 justify-content:space-between;
 padding: 1rem 2rem;
 color: white;
  /*max-width: 1200px;*/

}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  padding:10px;
  
}
.logo span{
  font-size: 2.5rem;
  font-family: 'Courier New', Courier, monospace;
}
.menu-toggle {
  
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white; 
}
.nav-links {
  
  list-style: none;
  display: flex;
  gap: 1rem;
  

}
.nav-links li a {
  
  font-weight: 600;
  font-size: 18px;
  
  padding:8px;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  background-color: #0056b3;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #007bff;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}




section {
  padding: 0rem;
  border-bottom: 1px solid #ccc;
}

/* Base styles */
#home {
  position: relative;
  overflow: hidden;
}

#home img {
  display: block;
  width: 100%;
  height: auto;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 2.5rem;
  z-index: 1000;
}

/* Tablet */
@media (max-width: 992px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  #home img {
    /* you could adjust cropping or aspect if needed */
    max-height: 60vh;
    object-fit: cover;
  }

  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    font-size: 1.8rem;
  }
}

/* Mobile portrait / small phones */
@media (max-width: 480px) {
  #home {
    /* maybe add some top/bottom padding so the image isn’t too tall */
    padding: 20px 0;
  }

  #home img {
    max-height: 50vh;
  }

  .floating-whatsapp {
    bottom: 10px;
    right: 10px;
    font-size: 1.6rem;
  }
}

/*-----------Try This one ------------>
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow:hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  /*background-color: #25D366;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-whatsapp{
  font-size: 65px;
}



/* Chat Support Agent Icon */
.chat-support {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

.chat-support img,
.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*------------end---------*/
/*-------About--------------*/

#about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #f0f4f8;
  gap: 40px;
}

#about h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

#about img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#about p {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}
@media (max-width: 768px) {
  #about {
    flex-direction: column;
    text-align: center;
  }

  #about p {
    text-align: justify;
    padding: 0 10px;
  }
}
/*---------------our Mission ---------------*/
#mission {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #fdfdfd;
  gap: 30px;
}

#mission img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mission h2 {
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 10px;
}

#mission p {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}
@media (max-width: 768px) {
  #mission {
    flex-direction: column;
    text-align: center;
  }

  #mission p {
    padding: 0 10px;
    text-align: justify;
  }
}
/*------------Our Vission----------------*/
#vision {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  background-color: #f5f9ff;
}

#vision h2 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

#vision img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#vision p {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}
/*----------------our facility-------------------*/
#facility {
  padding: 40px;
  background-color: #f8f9fa;
}

#facility h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

/* Flex container: Image + Content */
.facility-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

/* Image styling */
.facility-container img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Facility content column */
.facility-content {
  max-width: 700px;
  flex: 1;
}

/* Each facility item */
.facility-item {
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 20px;
  border-left: 4px solid #3498db;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.facility-item h3 {
  color: #1a5276;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.facility-item p,
.facility-item ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.facility-item ul {
  margin-top: 10px;
  padding-left: 20px;
}

.extra-note {
  margin-top: 20px;
  font-style: italic;
  color: #555;
}
@media (max-width: 768px) {
  .facility-container {
    flex-direction: column;
    align-items: center;
  }

  .facility-content {
    width: 100%;
  }

  .facility-container img {
    max-width: 90%;
  }
}
/*-----------------our Service------------*/
#services {
  padding: 40px;
  background-color: #f0f8ff;
}

#services h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.services-container img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-content {
  flex: 1;
  max-width: 700px;
}

.services-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.services-content ol {
  padding-left: 20px;
}

.services-content ol li {
  margin-bottom: 25px;
}

.services-content li h3 {
  margin: 0;
  color: #0077b6;
  font-size: 1.2rem;
}

.services-content ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
  color: #555;
}

.services-content ul li {
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .services-container img {
    max-width: 90%;
  }

  .services-content {
    width: 100%;
  }
}





/*-------- Courses section-------------------*/
/*#coursesName {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align:center;
}

#coursesName h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

#coursesName {
  display: grid;
 /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-columns:repeat(3, 1fr);
  gap: 20px;
  justify-content:center;
}

.course {
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.course:hover {
  transform: translateY(-5px);
}

.course img {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
}

.course p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

.course button {
  padding: 8px 45px;
  font-size: 0.9rem;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.course button:hover {
  background-color: #005fa3;
}*/
#coursesName {
  padding: 40px 20px;
  background-color: #fafafa;
  text-align: center;
}

#coursesName h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.course-list {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));*/
   grid-template-columns:repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  justify-items: center;
}

.course {
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.course img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 10px;
}

.course p {
  font-size: 1rem;
  margin: 10px 0;
  color: #444;
}

.course button {
  padding: 8px 100px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size:1rem ;
  font-weight: bold;
}

.course button:hover {
  background-color: #0056b3;
}

/* Hide elements */
.hidden {
  display: none;
}

.btn-contain {
  margin-top: 30px;
}

#MoreBtn {
  padding: 10px 24px;
  background-color: #fe7160;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#MoreBtn:hover {
  background-color: #218838;
}
/*----Midea Query-------------*/
/* Responsive Design */
@media (max-width: 1024px) {
  .course-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .course button {
    padding: 8px 50px;
  }
}

@media (max-width: 768px) {
  #coursesName h2 {
    font-size: 1.8rem;
  }

  .course-list {
    grid-template-columns: 1fr;
  }

  .course {
    max-width: 90%;
    margin: 0 auto;
  }

  .course img {
    height: 200px;
  }

  .course button {
    padding: 8px 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #coursesName {
    padding: 30px 10px;
  }

  #coursesName h2 {
    font-size: 1.5rem;
  }

  .course p {
    font-size: 0.9rem;
  }

  #MoreBtn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}


/*----------List of College----------------*/
/* Section styling */
#colleges {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

#colleges h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

/* Grid layout for college cards */
.college-list {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

/* College card styling */
.college-card {
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.college-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.college-card p {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #333;
}

.college-card button {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.college-card button:hover {
  background-color: #0056b3;
}

/* Hidden class to hide cards initially */
.hidden {
  display: none;
}

/* Load more button styling */
.btn-container {
  margin-top: 30px;
}

#loadMoreBtn {
  padding: 10px 24px;
 /* background-color: #28a745;*/
 background-color:#ef690a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

#loadMoreBtn:hover {
  background-color: #218838;
}



/*------------inquery start------------*/
/* Popup Modal Styles */
.inquiry-button{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #ff6f61;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #003366;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.modal-content button {
  width: 100%;
  padding: 12px;
  background-color: #ff5f5f;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.modal-content button:hover {
  background-color: #e04c4c;
}

.close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.close:hover {
  color: #000;
}
/* Responsive Design for #colleges Section */
@media (max-width: 1024px) {
  .college-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .college-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  #colleges h2 {
    font-size: 1.8rem;
  }

  .college-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .college-card img {
    height: 160px;
  }

  .college-card p {
    font-size: 1rem;
  }

  .college-card button {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #colleges {
    padding: 30px 10px;
  }

  #colleges h2 {
    font-size: 1.5rem;
  }

  .college-card p {
    font-size: 0.9rem;
  }

  #loadMoreBtn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}



/*-------------inquery end-------------*/
.inquiry-button {
  padding: 12px 24px;
  font-size: 18px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.inquiry-button:hover {
  background-color: #0056b3;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: white;
  margin: 8% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: left;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.captcha-box {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.submit-btn {
  width: 100%;
  background-color: #ff6b5c;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #e05548;
}

/*-----------From Section------------------*/
/* Base styles */
#contact {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

#contact h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

#contact h3 {
  text-align: center;
  color: #0077b6;
  margin-bottom: 30px;
}

/* Flex container */
.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Address box */
.address {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.address h4 {
  margin: 10px 0;
  color: #333;
}

.address p {
  margin: 8px 0;
  color: #444;
  font-size: 0.95rem;
}

/* Form */
form {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  resize: vertical;
}

form textarea {
  min-height: 120px;
}

form button {
  padding: 12px;
  font-size: 1rem;
  color: white;
  background-color: #0077b6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #023e8a;
}

/* Responsive layout */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .address,
  form {
    width: 100%;
    max-width: 500px;
  }
}
/* Pora dakhar aacha */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}
/* end*/
/* Base Footer Styles */
.footer {
  background-color: #004b5c;
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-box hr {
  border: 1px solid #ccc;
  width: 80%;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;

  font-size: 40px;
}

.social-icons a{
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Apply Now Button */
.apply-now {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #ff6f61;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .apply-now {
    top: auto;
    bottom: 20px;
    right: 20px;
    transform: rotate(0);
    border-radius: 50px;
  }
}

