:root {
  --primary-color: #E65100;       /* Deep Saffron */
  --secondary-color: #283593;     /* Indigo Blue */
  --background-color: #F9F5EC;    /* Off White */
  --text-color: #4E342E;          /* Dark Brown */
  --accent-color: #689F38;        /* Leaf Green */
  --highlight-color: #8B0000;     /* Maroon Red */
}

/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
}
body, html {
  margin: 0; padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  scroll-behavior: smooth;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--background-color);
  text-decoration: none;
  transition: color 0.3s ease; 
}
a:hover {
  color: var(--primary-color);
  text-decoration: underline;
  transition:all 0.4s ease-in;
}
nav {
  background: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(40, 53, 147, 0.1);
}
.logo img {
  height: 90px;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.0rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav ul li a {
  color: #fff;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover {
  background: var(--primary-color);
  color: #fff;
}
.menu-btn {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-left: 1rem;
}
#click {
  display: none;
}
@media (max-width: 1250px) {
  nav ul {
    position: absolute;
    top: 129px;
    right: 0;
    left: 0;
    background: var(--secondary-color);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    transition: all 0.6s ease-in;
    border-radius: 0px 0px 20px 20px;
  }
  nav ul li a {
    padding: 10px;
    width: 100%;
  }
  #click:checked ~ ul {
    max-height: 700px;
    margin-bottom: 10px;
  }
  .menu-btn {
    display: inline-block;
  }
}
/*=== Home page start design here ===*/

  /* Hero section */
  .hero-section {
    width: 100%;
    height: 80vh;
    background: url('home.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 12px var(--highlight-color);
  }
  .hero-content{
    width: 80%;
    height: 400px;
    border-radius: 20px;
    margin: auto;
    background: #2834935b;
  }
  .hero-content h1 {
    font-size: 55px;
    font-weight: 900;
    text-align: center;
    text-shadow: 2px 2px 8px var(--secondary-color);
    color: var(--background-color); 
  }
  .hero-content h1 span {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 2px 2px 6px var(--highlight-color);
  }
  .hero-content p {
    font-size: 40px;
    font-weight: 700;
    color: var(--background-color);
    text-align: center;
    text-shadow: 2px 2px 6px var(--highlight-color);
  }
  .hero-btn {
    background: var(--accent-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    padding: 12px 38px;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 8px 32px rgba(237, 86, 4, 0.779);
    margin-left: 40%;
  }
  .hero-content:hover, p:hover, h1:hover{
    background: transparent;
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
  }
 
  .hero-btn:hover { 
    background: var(--highlight-color);
     color: var(--background-color);
    }
    /*make hero section responsive here*/
    @media (max-width: 1051px) {
      .hero-content{
        width: 95%;
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
      }
      .hero-content h1 {
        font-size: 35px;
        font-weight: 600; 
      }
      .hero-content p {
        font-size: 25px;
        font-weight: 400;
      }
       .hero-btn {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 12px 20px;
         width: 135px;
         margin-left: 0;
  }
    }
  /* Welcome section */
  .welcome-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem 2rem 0 2rem;
    background: #fff;
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1100px;
  }
  .welcome-section:hover{
    box-shadow: 8px 8px 16px rgba(13, 39, 238, 0.539);
    transition: all 0.6s ease-out;
  }
  .welcome-section-msg {
    flex: 2 1 350px;
    min-width: 260px;
  }
  .welcome-section-msg h2 { color: var(--primary-color); }
  .welcome-section-msg p { margin: 0.7rem 0; }
  .enquiry-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 36px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
    margin: 10px;
    box-shadow: 0 8px 32px rgba(237, 86, 4, 0.779);
  }
  .enquiry-btn:hover { background: var(--primary-color); color: #fff; }
  .welcome-section-img img.shadow-img {
    max-width: 160px;
    filter: drop-shadow(0 8px 18px rgba(40, 53, 147, 0.10));
    border-radius: 14px;
  }

  /* President & Principal Message */
  .president-container, .principal-container {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(40, 53, 147, 0.04);
    margin: 2rem auto;
    max-width: 1000px;
    padding: 2.5rem 2rem;
    gap: 2.3rem;
    flex-wrap: wrap;
  }
  .president-photo, .principal-photo {
    flex: 0 1 220px;
    text-align: center;
  }
  .president-photo img, .principal-photo img {
    max-width: 300px;
    margin-bottom: 0.8rem;
    border-bottom-left-radius:20%;
    border-bottom-right-radius: 20%;
  }
  .predident-message, .principal-message {
    flex: 2 1 390px;
    min-width: 260px;
  }
  
  .predident-message h2, .principal-message h2 { color: var(--secondary-color); font-weight: 700; }
  .predident-message p, .principal-message p { margin: 0 0 1.1em 0; }
  .predident-message span, .principal-message span {
    color: var(--primary-color);
  }
  .president-container:hover, .principal-container:hover{
    box-shadow: 8px 8px 16px rgba(13, 39, 238, 0.539);
    transition: all 0.6s ease-out;
  }
  .certificate {
    max-width: 500px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  /* Image Styling */
  .certificate img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
  }
  
  /* Hover Effect */
  .certificate:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Entry Animation */
  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .certificate {
      max-width: 90%;
    }
  }
  

 
  /* Responsiveness */
  @media (max-width: 700px) {
    .welcome-section, .president-container, .principal-container, footer {
      flex-direction: column;
      gap: 1.2rem;
      padding: 2rem 1rem;
    }
  }
/*=== home page design end here ===*/

/*=== aboutus page design start here ===*/
.hero-banner {
    position: relative;
    background: linear-gradient(#e65100fe,#283493fe);
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
  }
  .hero-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  }
  .hero-banner p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--background-color);
    margin-bottom: 0.2rem;
    max-width: 1000px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  }
  .cta-button {
    background-color:var(--accent-color);
    color: var(--background-color);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--highlight-color);
    transition: background-color 0.3s ease;
    margin: 5px;
  }
  .cta-button:hover {
    background-color:var(--secondary-color);
    color: var(--background-color);
  }

  /* Container for sections */
  .container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }

  /* About Section */
  .about-section {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 500;
    color: #2c3e50;
  }
  .about-section:hover{
    box-shadow: 4px 4px 8px var(--primary-color);
  }
  .about-section h1 span {
    color: #20519b;
    font-weight: 700;
  }

  /* Mission and Vision Section */
  .mission-vision-section {
    display: flex;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto 48px;
    flex-wrap: wrap;
  }
  .mission-vision-section > div {
    background: var(--background-color);
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 1px 12px rgba(45, 82, 232, 0.448);
    flex: 1 1 400px;
    color: #20519b;
  }
  .mission-vision-section h2 {
    margin-bottom: 18px;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mission-vision-section h2::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 4px;
    background: #fbbc04;
    border-radius: 2px;
    margin-right: 12px;
  }
  .mission-vision-section p, 
  .mission-vision-section ul {
    font-weight: 500;
    line-height: 1.5;
    font-size: 1rem;
  }
  .mission-vision-section ul li {
    margin-bottom: 11px;
  }

  /* Journey Section */
  .Journey {
    max-width: 900px;
    margin: 0 auto 48px;
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(49, 47, 47, 0.585);
    color: #2c3e50;
  }
  .Journey:hover{
    box-shadow: 4px 4px 8px var(--primary-color);
  }
  .Journey h2 {
    font-size: 1.9rem;
    margin-bottom: 24px;
    color: #20519b;
  }
  .Journey p {
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  /* Team Section */
  .our-team {
    max-width: 900px;
    margin: 0 auto 72px;
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
    color: #2c3e50;
  }
  .our-team:hover{
    box-shadow: 4px 4px 8px var(--primary-color);
  }
  .our-team h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #20519b;
  }
  .our-team p {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .our-team h3 {
    color: #30568c;
    margin-top: 24px;
  }
  .our-team ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.5;
  }
  .our-team ul li {
    margin-bottom: 8px;
  }
  .our-team em {
    display: block;
    font-style: italic;
    color: #154a6a;
    margin-top: 12px;
    font-weight: 600;
  }


  /* Responsive */
  @media (max-width: 900px) {
    .mission-vision-section {
      flex-direction: column;
    }
    footer {
      flex-direction: column;
      gap: 32px;
    }
    .footer-map{
      display: flex;
      flex-direction: column;
      margin: auto;
    }
  }
  @media (max-width: 480px){
    .hero-banner h1 {
      font-size: 2rem;
    }
    .hero-banner p {
      font-size: 1rem;
    }
    nav ul {
      gap: 1rem;
    }
  }
/*=== aboutus page design end here ===*/

/*=== academics page design start here ===*/

    .academic-hero-section {
        background: linear-gradient(135deg, var(--primary-color) 55%, var(--secondary-color) 100%);
        color: #fff;
        text-align: center;
        padding: 2rem 1.5rem 3rem;
        border-radius: 0 0 28px 28px;
        margin-bottom: 2.5rem;
        box-shadow: 0 4px 20px rgba(230, 81, 0, 0.2);
      }
      .academic-hero-section h1 {
        font-size: 2.75rem;
        font-weight: 900;
        margin: 0;
        letter-spacing: 1.2px;
      }
      .academic-hero-section p {
        margin-top: 1rem;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
        line-height: 1.5;
        color: #ffe3c7;
      }
  
      /* Main Container */
      main {
        max-width: 1100px;
        margin: 0 auto 3rem;
        padding: 0 1.5rem;
      }
  
      /* Styled Section (Intro) */
      .styled-section {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 16px rgba(40, 53, 147, 0.1);
        padding: 2.5rem 3rem;
        font-size: 1.1rem;
        color: var(--text-color);
        line-height: 1.7;
        margin-bottom: 3.5rem;
      }
      .styled-section h1 {
        margin-top: 0;
        margin-bottom: 1rem;
        color: var(--primary-color);
        font-weight: 900;
        font-size: 2.4rem;
      }
      .styled-section strong {
        color: var(--primary-color);
      }
      .styled-section p {
        margin-bottom: 1.1rem;
      }
  
      /* Section Headings */
      section h2 {
        color: var(--secondary-color);
        font-size: 1.9rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 1rem;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 0.3rem;
      }
      section p, section ul {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        color: var(--text-color);
      }
      section ul {
        padding-left: 1.5rem;
        color: var(--text-color);
      }
      section ul li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
      }
      .highlight {
        color: var(--primary-color);
        font-weight: 700;
      }
/*=== academics page design end here ===*/

/*=== press highlight page design start here  ===*/
.press-container {
  background-color: var(--text-color);
  padding: 50px 20px;
  text-align: center;
}

.press-heading {
  font-size: 2.5rem;
  color: var(--background-color);
  margin-bottom: 10px;
}
.press-heading:hover, .press-intro:hover{
  color: var(--primary-color);
}

.press-intro {
  font-size: 1.2rem;
  color: var(--background-color);
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.press-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.press-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 6px 6px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 200px;
  height: 200px;
  transition: transform 0.3s ease;
}

.press-item:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 7px 7px var(--primary-color);
  transition: all 0.4s ease-in;
}

.press-item img {
  width: 100%;
  height: auto;
  display: block;
}
.fullscreen-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-view img {
  max-width: 95%;
  max-height: 95%;
  border: 4px solid var(--secondary-color);
  border-radius: 20px;
  box-shadow: 2px 2px 20px cyan;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/*=== press highlight page design end here ===*/

/* === facilities page start design here === */
.facilities-welcome {
  background:linear-gradient(#283493,#e65100);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.facilities-welcome h2 {
  font-size: 2.5rem;
  color: var(--background-color);
  text-align: center;
  margin-bottom: 1rem;
}

.facilities-welcome p {
  font-size: 1.125rem;
  color: var(--background-color);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.facilities-welcome p strong {
  color: #2980b9;
}

.facilities-welcome ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  color: #2c3e50;
}

.facilities-welcome li {
  background: #eaf2f8;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(41, 128, 185, 0.15);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.facilities-welcome li:hover {
  box-shadow: 0 8px 16px rgba(41, 128, 185, 0.3);
  transform: translateY(-4px);
}

.facilities-welcome li span {
  font-size: 1.8rem;
  margin-right: 0.8rem;
}

.facilities-welcome p:last-of-type {
  font-size: 1rem;
  color: #7f8c8d;
  text-align: center;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


main.facilities-main {
  max-width: 1000px;
  margin: 1rem auto 3rem;
  padding: 0 1.5rem;
}
.facilities-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.facilities-header h1 {
  color: var(--primary-color);
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
}
.facilities-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Align facilities text left and images right */
section.facility {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(40, 53, 147, 0.08);
  padding: 1.8rem 2.2rem;
  margin-bottom: 1.8rem;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  flex-wrap: wrap;
}
section.facility:hover {
  box-shadow: 08px 8px 30px rgba(242, 87, 3, 0.566);
}
/* Text block on the left */
section.facility .text-content {
  flex: 1 1 60%;
  min-width: 300px;
}
section.facility h2 {
  color: var(--secondary-color);
  font-size: 1.65rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-weight: 700;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 0.25rem;
  cursor: default;
}
section.facility p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}
/* Image on the right */
section.facility img {
  max-width: 140px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  object-fit: contain;
}
/* === facilities page end design here === */

/* footer design start here*/
footer {
  display: flex;
  flex-wrap: wrap;
  background: var(--secondary-color);
  color: #fff;
  padding: 3rem 2rem 1.5rem 2rem;
  gap: 2.5rem;
  justify-content: center;
  border-radius: 32px 32px 0 0;
  margin-top: 2.5rem;
  box-shadow: 0 -2px 24px rgba(40, 53, 147, 0.04);
  font-size: 0.9rem;
}
footer h3{
    color: var(--primary-color);
    font-size: 20px;
}
.footer1 {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-links ul {
  padding: 0;
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 0.8em;
}
.footer-links ul li a {
  color: #fff;
}
.footer-links ul li a:hover {
  color: var(--primary-color);
}
.footer-address address {
  font-style: normal;
  line-height: 1.5;
  word-wrap: break-word;
}
.footer-address address a{
  color: var(--background-color);
}
.footer-map .map-container {
  border-radius: 0.8em;
  overflow: hidden;
  max-width: 280px;
}
.footer-map iframe {
  width: 100%;
  height: 180px;
  border: none;
}
.footer-social-media .social-links a {
  color: #fff;
  font-size: 1.7rem;
  margin-right: 1.2rem;
  display: inline-block;
  transition: color 0.18s;
}
.social-links{
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.social-links a {
  color: #333; /* Default icon color */
  font-size: 16px;
  margin: 0 8px;
  transition: color 0.3s;
  padding: 5px;
  margin-left: 30px;
}

.social-links a {
  position: relative;
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-links .tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--background-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 7px;
  white-space: nowrap;
  z-index: 1;
  font-size: 15px;
  pointer-events: none;
  transition: opacity 0.25s;
}

.social-links a:hover .tooltip {
  visibility: visible;
  opacity: 1;
  box-shadow: 1px 1px 3px  var(--background-color);
}

/* Social media brand colors on hover */
.social-links a.facebook:hover { color: #1877f3; }
.social-links a.instagram:hover { color: #e4405f; }
.social-links a.youtube:hover { color: #ff0000; }
.social-links a.whatsapp:hover { color: #25d366; }


.footer-copyright {
  text-align: center;
  font-size: 1em;
  color: var(--text-color);
  margin: 1rem auto 2rem;
  background: #fff;
  padding: 0.8rem 1rem;
  border-radius: 0 0 18px 18px;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.04);
}
.footer-copyright a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}
.footer-copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  footer {
    justify-content: center;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
  }
  .facilities-welcome {
    margin: 1.5rem auto;
    padding: 1.2rem 1rem;
  }
  main.facilities-main {
    padding: 0 1rem;
  }
  section.facility {
    flex-direction: column;
    align-items: flex-start;
  }
  section.facility img {
    margin-top: 1rem;
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .facilities-header h1 {
    font-size: 2rem;
  }
  .facilities-welcome h2 {
    font-size: 1.8rem;
  }
  section.facility h2 {
    font-size: 1.4rem;
  }
}
/* footer design end here*/

/*=== circular page design start here ===*/
.circular-start {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding: 2rem 2.5rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(40, 53, 147, 0.1);
    text-align: center;
  }


    .circular-welcome {
      background: linear-gradient(135deg, #E65100, #0d39fd);
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      border-radius: 12px;
      max-width: 1200px;
      margin: 40px auto;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .circular-welcome h1 {
      font-size: 3rem;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    .circular-welcome p {
      font-size: 1.25rem;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
      color:var(--background-color);
    }
    
    .circular-welcome strong {
      color: #ffc107; /* A warm yellow to highlight the school name */
    }  

  /* Circular List Section */
  main.circulars-page {
    max-width: 1100px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
    flex-grow: 1;
  }
  .circular-list {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(40, 53, 147, 0.06);
    padding: 3rem 3.5rem;
  }
  .circular-list h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.4rem;
    max-width: max-content;
  }
  .circular-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
  .circular-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 1.1rem 0;
    font-weight: 600;
  }
  .circular-list li:last-child {
    border-bottom: none;
  }
  .date {
    color: var(--accent-color);
    flex: 0 0 150px;
    font-size: 1rem;
  }
  .title {
    flex: 1 1 auto;
    margin-left: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-color);
  }
  .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 9px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1.2rem;
    border: none;
    cursor: pointer;
  }
  .btn:hover,
  .btn:focus {
    background-color: var(--highlight-color);
    outline: none;
    color: var(--background-color);
  }

 
  /* Responsive */
  @media (max-width: 700px) {
    nav ul {
      flex-direction: column;
    }
    .circular-list li {
      flex-direction: column;
      align-items: flex-start;
    }
    .date, .btn {
      flex: none;
      margin-left: 0;
      margin-top: 0.3rem;
    }
    .title {
      margin-left: 0;
    }
}
/*=== corcular page design end here ===*/

/*=== contactus page design start here ===*/
main.contact-main {
    max-width: 1000px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
    flex-grow: 1;
  }
  .contact-header {
    background: linear-gradient(280deg, #E65100, #0d39fd);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: Georgia, 'Times New Roman', serif;
    color: #2c3e50;
  }
  
  .contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1.2px;
    color: var(--background-color);
  }
  
  .contact-header p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    color: var(--background-color);
  }
  
  .contact-header strong {
    color: cyan; /* Deep  for the school name */
  }
  
  .contact-info {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  .info-box {
    background: white;
    box-shadow: 0 2px 18px rgba(40, 53, 147, 0.06);
    border-radius: 20px;
    flex: 1 1 280px;
    padding: 1.8rem 2rem;
    text-align: center;
    max-width: 500px;
  }
  .info-box h2 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .info-box p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    white-space: pre-line;
  }
  .info-box p a {
    color: var(--primary-color);
  }
  .contact-form-section {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 2px 18px rgba(40, 53, 147, 0.06);
    padding: 2.5rem 3rem;
  }
  .contact-form-section h2 {
    text-align: center;
    margin: 0 0 1.8rem;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 2.2rem;
  }
  form.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  form.contact-form input[type="text"],
  form.contact-form input[type="email"],
  form.contact-form input[type="tel"],
  form.contact-form textarea {
    padding: 12px 18px;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
    font-family: inherit;
    resize: vertical;
  }
  form.contact-form input[type="text"]:focus,
  form.contact-form input[type="email"]:focus,
  form.contact-form input[type="tel"]:focus,
  form.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
  }
  /* submit button*/
  form.contact-form button[type="submit"] {
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 0;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  form.contact-form button[type="submit"]:hover,
  form.contact-form button[type="submit"]:focus {
    background: var(--highlight-color);
    outline: none;
  }
/*reset button*/
form.contact-form button[type="reset"] {
  background: var(--primary-color);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 0;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}
form.contact-form button[type="reset"]:hover,
form.contact-form button[type="reset"]:focus {
  background: var(--highlight-color);
  outline: none;
}
  /* Map Section */
  .map-section {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
  }
  .map-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 2px 20px rgba(40, 53, 147, 0.1);
  }

 

  /* Responsive */
  @media (max-width: 900px) {
    nav ul {
      flex-direction: column;
    }
    .contact-info {
      flex-direction: column;
    }
    .info-box {
      flex: none;
      width: 100%;
    }
    .contact-form-section {
      padding: 2rem 1.5rem;
      margin: 0 1.5rem 3rem;
    }
    .map-section {
      margin: 0 1.5rem 3rem;
    }
}
/*=== contactus page design end here ===*/