/* Base Styles */


        :root {
            --primary-color: #2c2c74;
            --secondary-color: #4a4fb5;
            --accent-color: #2c316f;
            --text-color: #333;
            --light-bg: #ffffff;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0,0,0,0.1);
            --border-radius: 12px;

            --section-padding: 50px;
            --gap-large: 40px;
            --gap-medium: 25px;
            --gap-small: 15px;

           
        }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  
  font-family: "PT Serif";
}

 .breadcrumb {
      position: relative;
      width: 100%;
      height: 300px; 
      background-image: url('/assests/breadcrumb.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: white;
      margin-top: 8rem;
    }

    .breadcrumb::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(32, 13, 13, 0.4); /* dark overlay */
      z-index: 1;
      opacity: 9;
    }

    .breadcrumb h1 {
        padding-left: 20rem;
      font-size: 3.8rem;
      font-weight: bold;
      z-index: 2;
      position: relative;
    }

    /* Responsive text */
  
    @media (max-width: 768px) {
      .breadcrumb {
        height: 40vh;
      }
      .breadcrumb h1 {
        font-size: 2.7rem;
        padding-left: 7rem;
      }
    }

    @media (max-width: 480px) {
      .breadcrumb {
        height: 30vh;
      }
      .breadcrumb h1 {
        font-size:2.2rem;
        padding-left: 2rem;
      }
    }



/* Academics Section */
.Academics-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.academic-data {
  text-align: center;
  margin-bottom: 60px;
}

.academic-data h1 {
  font-size: 4.5rem;
  font-weight: 700;
  /* color: #2c3e50; */
  
  color: #f4ba0d;
  margin-bottom: 30px;
  font-family: "PT Serif";
}

.academic-data h3 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 25px;
  line-height: 1.4;
  
  margin-left: auto;
  margin-right: auto;
}

.academic-data p {
  font-size: 1.3rem;
  color: #1e5289;
  line-height: 1.8;
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* Curriculum Section */
.curriculum {
  background: linear-gradient(135deg, #032471 0%, #5f9fe0 100%);
  padding: 50px 30px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.curriculum h1 {
  font-size: 2.5rem;
  font-weight: 700;
  /* color: #ffffff; */
  color: #f5d404;
  margin-bottom: 30px;
  text-align: center;
  font-family: "PT Serif", serif;
}

.curriculum h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 40px 0 25px 0;
}

.curriculum p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 30px;
}

.curriculum ul {
  list-style: none;
  padding-left: 0;
}

.curriculum li {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.curriculum li:before {
  content: "✓";
  position: absolute;
  left: 0;
  /* color: #27ae60; */
  color: #f5d404;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Faculty Section */
.faculty {
  margin-top: 60px;
}

.faculty h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
  font-family: "PT Serif", serif;
}





/* Achievements/Carousel Section */
.achievements-section {
  margin-bottom: 4rem;
  padding: 3rem 1rem 4rem 1rem;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.achievements-section h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: "PT Serif", serif;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.faculty h1{
  font-size: 2.8rem;
  
  font-family: "PT Serif", serif;
  color: #f4ba0d;
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .card-wrapper {
    gap: 3rem;
  }
  
  .card {
    max-width: 380px;
  }
  .pic-ctn img {
    height: 350px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .academic-data h1 {
    font-size: 2.5rem;
  }
  
  .curriculum h1,
  .faculty h1 {
    font-size: 2.2rem;
  }
  
  .carousel {
    padding: 0 50px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .Academics-section {
    padding: 40px 15px;
  }
  
  .academic-data h1 {
    font-size: 2.2rem;
  }
  
  .academic-data h3 {
    font-size: 1.3rem;
  }
  
  .curriculum {
    padding: 40px 25px;
  }
  
  .curriculum h1,
  .faculty h1 {
    font-size: 2rem;
  }
  
  .achievements-section h1 {
    font-size: 2.2rem;
  }
  
 
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
  .academic-data h1 {
    font-size: 1.9rem;
  }
  
  .academic-data h3 {
    font-size: 1.2rem;
  }
  
  .academic-data p,
  .curriculum p {
    font-size: 1rem;
  }
  
  .curriculum {
    padding: 35px 20px;
    border-radius: 15px;
  }
  
  .curriculum h1,
  .faculty h1 {
    font-size: 1.8rem;
  }
  
  .achievements-section {
    padding: 2.5rem 0.5rem 3rem 0.5rem;
    border-radius: 20px;
  }
  
  .achievements-section h1 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }
  
  .pic-ctn> img {
  width: 40vw !important;
}
  
  .pic-ctn > img {
  position: absolute;
  top: 10%;
  left: calc(50% - 150px)!important;
  opacity: 0;
  animation: display 10s infinite;
}
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  .Academics-section {
    padding: 30px 10px;
  }
  
  .academic-data h1 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  
  .academic-data h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .academic-data p,
  .curriculum p {
    font-size: 0.95rem;
  }
  
  .curriculum {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  .curriculum h1,
  .faculty h1 {
    font-size: 1.6rem;
  }
  
  .curriculum h2 {
    font-size: 1.4rem;
  }
  
  .curriculum li {
    font-size: 1rem;
    padding-left: 25px;
  }
  
  .achievements-section {
    padding: 2rem 0.25rem 2.5rem 0.25rem;
    border-radius: 15px;
  }
  
  .achievements-section h1 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
  
 

}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .academic-data h1 {
    font-size: 1.5rem;
  }
  
  .academic-data h3 {
    font-size: 1rem;
  }
  
  .curriculum h1,
  .faculty h1 {
    font-size: 1.4rem;
  }
  
  .achievements-section h1 {
    font-size: 1.5rem;
  }

  

}

      .Academics-section button {
      background: #272e8b;
      color: #fff;
      padding: 10px 20px;
      border: none;
      outline: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    button:hover {
      background: #003366;
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
.Academics-section hr.glow {
  border: none;
  height: 3px;
  background: #007bff;
  box-shadow: 0 0 10px #007bff, 0 0 20px #007bff;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 5px #007bff; }
  to { box-shadow: 0 0 20px #007bff; }
}


    /* Container */
.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Cards */
.info-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Icons */
.info-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Headings */
.info-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #222;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .info-card h3 {
    font-size: 16px;
  }

  .info-card img {
    width: 50px;
    height: 50px;
  }
}

















   /* banner section   */
   /* admission section  */


            .banner {
      width: 100%;
      height: 100vh;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
      flex-wrap: wrap;
      animation: fadeIn 1s ease-in-out;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes pulseGlow {
      0% { box-shadow: 0 0 0 0 rgba(10,102,194,0.7); }
      50% { box-shadow: 0 0 20px 8px rgba(10,102,194,0.3); }
      100% { box-shadow: 0 0 0 0 rgba(10,102,194,0.7); }
    }

    /* Left Section */
    .banner-left {
        width: 50%;
      flex: 1;
      min-width: 280px;
      padding-left: 7rem;
      animation: slideInLeft 1s ease-in-out;
    }

    .banner-left h1 {
      font-size: 3.8rem;
      font-weight: 800;
      color: #333;
      line-height: 4.5rem;
      transition: color 0.3s ease;
    }

    .banner-left h1 span {
      color: #0a66c2;
    }

    .banner-left h1:hover {
      color: #0a66c2;
    }

    .register-btn {
      display: inline-block;
      background: #0a66c2;
      color: #fff;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: 8px;
      margin: 15px 0;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: pulseGlow 2s infinite;
    }

    .register-btn:hover {
      background: #003366;
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .banner-left p {
      font-size: 16px;
      color: #444;
      margin-bottom: 20px;
    }

    /* Right Section */
    .banner-right {
      width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      animation: slideInRight 1.2s ease-in-out;
    }

    .banner-right img {
      width: 85%;
      height: auto;
      border-radius: 10px;
      z-index: 2;
      transition: transform 0.3s ease;
    }

    .banner-right img:hover {
      transform: scale(1.05);
    }

    /* Bottom Blue Wave */
    .bottom-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: #2f4189;
      clip-path: ellipse(70% 100% at 50% 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeIn 1.5s ease-in-out;
    }

    .bottom-wave span {
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      background: #003366;
      padding: 10px 20px;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .bottom-wave span:hover {
      background: #0a66c2;
      transform: scale(1.1);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .banner {
        padding: 30px;
      }

      .banner-left h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 768px) {
      .banner {
        /* flex-direction: column; */
        text-align: center;
        padding: 20px;
      }

      .banner-left {
        margin-bottom: 20px;
        padding: 0;
      }

      .banner-left h1 {
        font-size: 2.5rem;
      }

      .banner-right {
        width: 100%;
      }

      .banner-right img {
        max-width: 280px;
      }

      .bottom-wave span {
        font-size: 16px;
        padding: 8px 16px;
      }
    }

    @media (max-width: 480px) {
      .banner-left h1 {
        font-size: 2rem;
      }

      .register-btn {
        font-size: 12px;
        padding: 10px 18px;
      }

      .banner-left p {
        font-size: 14px;
      }

      .banner-right img {
        max-width: 270px;
      }
      .bottom-wave{
        bottom: -40px;
      }
    }


    /* .admission-process  */
    .admission-process h1{
        margin: 2rem 0;
        font-size: 2.5rem;
        font-weight: bold;
      color: #003366;
        text-align: center;
    }
        .admission-process{
            width: 100%;
            padding: 1rem;
        }
       .steps-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      max-width: 1100px;
      margin: auto;
    }

    .step-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      background: #fff;
      width: 25vw;
      height: 30vh;
      padding: 30px 20px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .step-card::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 80%;
      height: 180%;
      background: linear-gradient(135deg, #0a66c2, #2f4189);
      transform: rotate(25deg);
      z-index: 0;
      transition: 0.5s;
      opacity: 0;
    }

    .step-card:hover::before {
      opacity: 0.3;
    }

    .step-card h3 {
      color: #333;
      font-size: 1.5rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      line-height: 1.4;
    }

    .step-card button {
      background: #0a66c2;
      color: #fff;
      padding: 10px 20px;
      border: none;
      outline: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .step-card button:hover {
      background: #003366;
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }


/* ===================
   RESPONSIVE DESIGN
   =================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .step-card h3 {
    font-size: 1.2rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .steps-container {
   padding-left: 5rem;
    grid-template-columns: 1fr 1fr;
  }
  .step-card {
    padding: 20px;
  }
  .step-card h3 {
    font-size: 1.1rem;
  }
  .admission-process h1 {
    font-size: 2rem;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .steps-container {
        padding-left: 3rem;
    grid-template-columns:  1fr;
  }

    .step-card{
        width: 60vw ;
    }
  .step-card h3 {
    font-size: 1rem;
  }
  .step-card button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}


.eligibility-age {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 30px;
      border-left: 4px solid #202e75; /* purple line like in your image */
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .eligibility-age h1 {
      text-align: center;
      color: #003366;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .eligibility-age h3 {
      color: #2e346c;
      margin-bottom: 10px;
      line-height: 2.5rem;
      font-size: 1.4rem;
      text-align: center;
    }

   
    /* Table Style */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    td {
      padding: 12px 15px;
      text-align: left;
      font-size: 1rem;
      color: #444;
      border-bottom: 1px solid #ddd;
    }

    tr:last-child td {
      border-bottom: none;
      
    }

    /* Responsive: Convert table into stacked cards */
    @media (max-width: 600px) {
      table, tr, td {
        display: block;
        width: 100%;
      }

      tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background: #fafafa;
      }

      td {
        border: none;
        padding: 8px;
        font-size: 0.95rem;
      }

      td:first-child {
        font-weight: bold;
        color: #003366;
      }
    }

       .admission-process button {
      background: #0a66c2;
      color: #fff;
      padding: 10px 20px;
      border: none;
      outline: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .admission-process button:hover {
      background: #003366;
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }


/* Container */
.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Cards */
.info-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Icons */
.info-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* Headings */
.info-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #222;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .info-card h3 {
    font-size: 16px;
  }

  .info-card img {
    width: 50px;
    height: 50px;
  }

}


@media (max-width: 480px) {
  .info-container{
    padding: 0;
  }
  .info-card {
  background: #fff;
  width: 90%;
}


}



























/* chaiman section  */

    .container-pers {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        

        .section-title {
        border-left: 5px solid #3044a9;
        padding-left: 15px;
        line-height: 2.5rem;
        margin: 10px 0;
        }

        .section-title h2 {
        font-size: 28px;
        margin: 0;
        }

        .section-title p {
        font-size: 16px;
        color: #555;
        margin-top: 5px;
        }


.messages-section {
            gap: 40px;
            margin-bottom: 60px;
            margin-top: 60px;
        }

        .message-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .message-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
        }

        .message-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .leader-image {
            width: 270px;
            height: 320px;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 4px solid var(--accent-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        

        .message-card p {
            font-size: 1.1rem;
            line-height: 1.8rem;
            margin-bottom: 20px;
            text-align: justify;
            font-style: italic;
        }
        .message-card h4{
            font-size: 1.6rem;
            text-align: right;
        }
        .message-card h3 {
            color:#333;
            text-align: right;
            font-size: 1.1rem;
            font-weight: 400;
            
        }

        .section-data{
             border-right: 5px solid #3044a9;
        padding-right: 15px;
        line-height: 2.5rem;
        margin: 10px 0;
        }


           /* Responsive Design */
        @media (max-width: 1024px) {
            .container-pers {
                padding: 0 15px;
            }
        }

        @media (max-width: 768px) {
         
            .message-card {
                padding: 30px;
            }
            
            .message-card h2 {
                font-size: 1.4rem;
            }
   
        }

        @media (max-width: 480px) {
            .container-pers {
                padding: 0 10px;
            }

            .message-card {
                padding: 20px;
            }
            
            .message-card h2 {
                font-size: 1.5rem;
            }
            .message-card p {
                font-size: 1rem;
                line-height: 1.5rem;
            }
            .leader-image {
                width: 180px;
                height: 180px;
            }
        }























        
        /* Contact Info Section */
        .contact-info {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .container-info {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .info-card2 {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card2::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4444f4, #2c2c74);
            transition: left 0.5s ease;
        }

        .info-card2:hover::before {
            left: 0;
        }

        .info-card2:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .info-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #2c2c74, #2c2c74);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: transform 0.3s ease;
        }

        .info-card2:hover .info-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .info-card2 h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-card2 p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .info-card2 .highlight {
            font-weight: bold;
            color: #2c2c74;
            font-size: 1.1rem;
        }

    

        .directions-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }


 
        /* Responsive Design */
        @media (max-width: 768px) {
            

            .contact-info {
                padding: 60px 0;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .info-card2 {
                padding: 30px 20px;
            }

            
            .map-overlay {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
        }

        @media (max-width: 480px) {
            

            .info-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .social-icons {
                flex-wrap: wrap;
                gap: 15px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .info-card2 {
            animation: fadeInUp 0.8s ease forwards;
        }

        .info-card2:nth-child(1) { animation-delay: 0.1s; }
        .info-card2:nth-child(2) { animation-delay: 0.3s; }
        .info-card2:nth-child(3) { animation-delay: 0.5s; }
        


  /* contact form  */

        .contactme {
            max-width: 100%;
            padding: 3rem 20px;
        }

        .page5 {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .page5 h4 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #667eea, #2c2c74);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        input,
        textarea,
        select {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        input::placeholder,
        textarea::placeholder {
            color: #888;
            font-size: 15px;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
            line-height: 1.5;
        }

        select {
            cursor: pointer;
            color: #888;
        }

        select:valid {
            color: #333;
        }

        button {
            background: linear-gradient(135deg, #2c2c74, #3535fe);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            margin-top: 10px;
        }

        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        button:active {
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page5 {
                padding: 25px 20px;
                margin: 10px;
                border-radius: 15px;
            }

            .page5 h4 {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            input,
            textarea,
            select {
                padding: 16px 18px;
                font-size: 15px;
            }

            form {
                gap: 20px;
            }

            button {
                padding: 16px 35px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .contactme {
                padding: 0 10px;
            }

            .page5 {
                padding: 20px 15px;
                margin: 5px;
            }

            .page5 h4 {
                font-size: 1.75rem;
                margin-bottom: 25px;
            }

            input,
            textarea,
            select {
                padding: 14px 16px;
                font-size: 14px;
            }

            textarea {
                min-height: 100px;
            }

            form {
                gap: 15px;
            }

            button {
                padding: 14px 30px;
                font-size: 15px;
                width: 100%;
            }
        }

        /* Tablet landscape */
        @media (min-width: 769px) and (max-width: 1024px) {
            .page5 {
                padding: 35px;
            }

           .page5  h4 {
                font-size: 2.25rem;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .page5 {
                max-width: 700px;
                padding: 50px;
            }

            .page5 h4 {
                font-size: 3rem;
                margin-bottom: 50px;
            }

            input,
            textarea,
            select {
                padding: 20px 22px;
                font-size: 17px;
            }

            form {
                gap: 30px;
            }

            button {
                padding: 20px 45px;
                font-size: 19px;
            }
        }

        /* Input validation styling */
        input:invalid,
        textarea:invalid {
            border-color: #2c2c74;
        }

        input:valid,
        textarea:valid {
            border-color: #0303f6;
        }

        /* Required field indicator */
        input:required,
        textarea:required,
        select:required {
            border-left: 4px solid #2c2c74;
        }













/* .department-card section  */
        
.programs-section {
    width: 1200px;
    margin: 0 auto ;
    margin-top: 8%;
    text-align: center;
    padding: 2rem 0;
}

.section-title1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.cardDepart {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 320px;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-bottom: 5px solid transparent;
}

.cardDepart:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.department-card { border-color: #4141ab; }
.programs-card { border-color: #2c2c74; }
.extracurricular-card { border-color:#4141ab ; }

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    filter: brightness(1);
}

.departments-image { background-image: url('https://i.pinimg.com/1200x/ee/ad/9e/eead9eba736e192fe9cf824f7913ff63.jpg'); }
.special-programs-image { background-image: url('https://i.pinimg.com/736x/3a/be/5f/3abe5fd676c7320881f9ab9b5f2ef88d.jpg'); }
.extracurricular-image { background-image: url('https://i.pinimg.com/736x/00/28/86/002886b00792f791df955ad417b89430.jpg'); }

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0;
    padding: 1rem 0;
    position: relative;
}
.card-content h3::before{
    content: '';
    bottom: 10px;
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #2c3e50;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #444;
}

.card-content ul li i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #3498db; /* Default icon color */
}

/* Specific icon colors */
.department-card ul li i { color: #4141ab; }
.programs-card ul li i { color: #e67e22; }
.extracurricular-card ul li i { color:#4141ab ; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .cardDepart {
        width: 90%;
    }
}





















/* Meet our Faculty */
.container1 h2 {
    padding-top: 5rem ;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #251e8d;
    font-family: "PT Serif";
}

.faculty {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faculty-container {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9rem;

}
.container1{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    flex-wrap: wrap;

}

.card-faculty {
    position: relative;
    background: #fff;
    width: 20vw;
    min-width: 250px;
    height: 200px;
    padding-top: 6rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-faculty:hover {
    transform: translateY(-8px);
}

.card-faculty img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #2c2c74;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    object-fit: cover;
}

.card-faculty h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #222;
}

.card-faculty p {
    margin: 0;
    font-size: 14px;
    color: gray;
}

.counter {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c2c74;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}


@media (max-width: 1024px) {
    .faculty-container {
        gap: 6rem;
    }
    .container2 {
        gap: 5rem;
    }
    .card-faculty {
        width: 35vw;
        height: 260px;
    }
}



@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .container2 {
        flex-direction: column;
        gap: 4rem;
    }
    .card-faculty {
        width: 70%;
        height: 260px;
    }
}



@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    .card-faculty {
        width: 90%;
        height: 250px;
    }
    .card-faculty img {
        width: 110px;
        height: 110px;
        top: -50px;
    }
    .card-faculty h3 {
        font-size: 1rem;
    }
    .card-faculty p {
        font-size: 13px;
    }
}


















        .containerFAQ {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
       
        

        /* FAQ Section */
        .faq-section {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
        }

        .faq-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .faq-item {
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .question {
            background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
            color: var(--primary-color);
            font-size: 1.2rem;
            padding: 20px;
            margin: 0;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .question:hover {
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        }

        .answer {
            padding: 25px;
            font-size: 1rem;
            line-height: 1.7;
            text-align: justify;
            background: var(--white);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .question::after {
            content: '-';
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-item.active .answer {
            max-height: 500px;
            padding: 25px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .containerFAQ {
                padding: 0 15px;
            }
            
        }

        @media (max-width: 768px) {
         
            .mission-section h1,
            .faq-title {
                font-size: 2rem;
            }
            
            .mission-section,
            .faq-section {
                padding: 30px;
            }
            
            .leader-image {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
           
            
            .mission-section h1,
            .faq-title {
                font-size: 1.7rem;
            }
            
            .mission-section,
            .faq-section {
                padding: 20px;
            }
            
            .question {
                font-size: 1.1rem;
                padding: 15px;
            }
            
            .answer {
                padding: 20px;
                font-size: 0.95rem;
            }
            
            .faq-item.active .answer {
                padding: 20px;
            }
        }



















        .galary-section h1{
    width: 1200px;
    margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c2c5f;
  font-family: "PT Serif";
  padding: 2rem 0 ;
  position: relative;
}
.galary-section h1::before{
    content: '';
    bottom: 28px;
    position: absolute;
    width: 10%;
    height: 3px;
    background-color: #493535;
}

.galary-container{
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);

}
.Gcard1s{
   width: 250px;
    height: 250px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gImage{
    width: 100%;
    height: 250px;
    border: 1px solid #fff;

}
.gImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
transition: .3s all ease-in-out;
}


.gImage img:hover{
    scale: 1.02;
}

@media (max-width:480px){
    .galary-section h1{
        width: fit-content;
        font-size: 1.7rem;
    }

    .galary-section h1::before{
    content: '';
    width: 40%;
}

}





















        .containerNews {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .containerNews h3{
            padding: 2rem;
            background-color: #1b3768;
            color: #fff;
            font-size: 2.1rem;
}
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .section-header {
            font-size: 2.5em;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
        }

        .news-section {
            padding: 30px;
            border-radius: 10px;
        }

        .events-section {
            padding: 30px;
            border-radius: 10px;
        }

        .news-item, .event-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .news-item {
            background: white;
            border: 1px solid #e0e0e0;
        }

        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            background: #f8f9fa;
        }

        .event-item {
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .event-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            /* background: #f0f8ff; */
        }

        .news-image, .event-image {
            width: 120px;
            height: 90px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .news-content, .event-content {
            flex: 1;
        }

        .news-title, .event-title {
            font-size: 1.1em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .news-date, .event-date {
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .news-date {
            color: #f39c12;
        }

        .event-date {
            color: #e74c3c;
        }

        .news-excerpt {
            font-size: 0.9em;
            color: #666;
            line-height: 1.5;
        }

        .view-all-btn {
            background: #2c3e50;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }

        .view-all-btn:hover {
            background: #34495e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Mobile Responsive */
        
        @media (max-width: 480px) {
            .containerNews h3{
                font-size: 1.2rem;
                padding: 1rem;
            }
            section{
                margin-top: 6rem;
            }
        }
        @media (max-width: 768px) {
            section{
                margin-top: 6rem;
            }
            .main-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .containerNews {
                padding: 15px;
            }

            .section-header {
                font-size: 2em;
                margin-bottom: 20px;
            }

            .news-section, .events-section {
                padding: 20px;
            }

            .news-item, .event-item {
                flex-direction: column;
                text-align: center;
            }

            .news-image, .event-image {
                width: 100%;
                height: 150px;
                margin: 0 auto;
            }

            .news-content, .event-content {
                text-align: left;
                margin-top: 10px;
            }
        }

        /* Tablet Responsive */
        @media (min-width: 769px) and (max-width: 1024px) {
            .containerNews {
                padding: 20px;
            }

            .section-header {
                font-size: 2.2em;
            }

            .news-image, .event-image {
                width: 100px;
                height: 80px;
            }

            .news-title, .event-title {
                font-size: 1em;
            }
        }

        /* Desktop Responsive */
        @media (min-width: 1025px) {
            .news-item:hover .news-title,
            .event-item:hover .event-title {
                color: #3498db;
            }
        }

        /* Additional styling for better readability */
        .highlight-text {
            background: linear-gradient(120deg, #a8e6cf 0%, #dcedc8 100%);
            padding: 2px 6px;
            border-radius: 3px;
        }

        .event-tag {
            background: #3498db;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8em;
            display: inline-block;
            margin-top: 5px;
        }


        .news-title, 
.event-title {
    font-size: 1em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;

    /* new code */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* kitni lines dikhani hai */
    line-clamp: 2; /* standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}























        .student-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .student-section h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #3a42a6, #3a42a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .student-section > p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: #555;
            max-width: 800px;
        }

        .health-wellness {
            border-radius: 15px;
            margin: 2rem 0;
            color: rgb(59, 59, 59);
        }

        .health-wellness h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            padding-bottom: 0.5rem;
        }

        .health-wellness p {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .content-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #667eea;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-card h2 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            border-bottom: 2px solid #667eea;
            padding-bottom: 0.5rem;
        }

        .content-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .content-card img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 10px;
            margin-top: 1rem;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Student Cards Container */
        .container-std {
            width: 100%;
            border-radius: 1rem;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #262a68 repeating-linear-gradient(
                -45deg,
                #262a68,
                #262a68 3.5px,
                #262a68 3.5px,
                #151b6c 7px
            );
            margin: 2rem 0;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
            width: 100%;
        }

        .cardstd {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.6s ease forwards;
        }

        .cardstd::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .cardstd:hover::before {
            opacity: 1;
        }

        .cardstd img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .cardstd:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .cardstd:hover img {
            transform: scale(1.1) rotate(2deg);
        }

        .cardstd::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 64, 129, 0.3), rgba(33, 150, 243, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .cardstd:hover::after {
            opacity: 1;
        }

        /* Glow effects */
        .cardstd:nth-child(1):hover { box-shadow: 0 0 30px rgba(255, 64, 129, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(2):hover { box-shadow: 0 0 30px rgba(33, 150, 243, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(3):hover { box-shadow: 0 0 30px rgba(76, 175, 80, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(4):hover { box-shadow: 0 0 30px rgba(255, 152, 0, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(5):hover { box-shadow: 0 0 30px rgba(156, 39, 176, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(6):hover { box-shadow: 0 0 30px rgba(244, 67, 54, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(7):hover { box-shadow: 0 0 30px rgba(0, 188, 212, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }
        .cardstd:nth-child(8):hover { box-shadow: 0 0 30px rgba(255, 193, 7, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3); }

        /* Animation delays */
        .cardstd:nth-child(1) { animation-delay: 0.1s; }
        .cardstd:nth-child(2) { animation-delay: 0.2s; }
        .cardstd:nth-child(3) { animation-delay: 0.3s; }
        .cardstd:nth-child(4) { animation-delay: 0.4s; }
        .cardstd:nth-child(5) { animation-delay: 0.5s; }
        .cardstd:nth-child(6) { animation-delay: 0.6s; }
        .cardstd:nth-child(7) { animation-delay: 0.7s; }
        .cardstd:nth-child(8) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .student-container {
            margin: 2rem 0;
            border-radius: 15px;
            overflow: hidden;
        }

        .carousel-item img {
            height: 500px;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .student-section {
                margin: 10px;
                padding: 15px;
                border-radius: 15px;
            }

            .student-section h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .student-section > p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .health-wellness h1 {
                font-size: 1.8rem;
            }

            .health-wellness p {
                font-size: 1rem;
            }

            .content-card {
                padding: 1.2rem;
            }

            .content-card h2 {
                font-size: 1.2rem;
            }

            .content-card p {
                font-size: 0.9rem;
            }

            .container-std {
                padding: 1rem;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 10px;
            }

            .cardstd {
                height: 200px;
                border-radius: 15px;
            }

            .cardstd:hover {
                transform: translateY(-5px) scale(1.01);
            }

            .carousel-item img {
                height: 250px;
            }
        }

        @media (min-width: 481px) and (max-width: 767px) {
            .student-section {
                margin: 10px;
                padding: 15px;
            }

            .student-section h1 {
                font-size: 2rem;
            }

            .student-section > p {
                font-size: 1.1rem;
            }

            .health-wellness h1 {
                font-size: 2rem;
            }

            .health-wellness p {
                font-size: 1.1rem;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cardstd {
                height: 220px;
            }

            .carousel-item img {
                height: 300px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .student-section {
                margin: 15px;
                padding: 20px;
            }

            .student-section h1 {
                font-size: 2.5rem;
            }

            .student-section > p {
                font-size: 1.3rem;
            }

            .health-wellness h1 {
                font-size: 2.5rem;
            }

            .health-wellness p {
                font-size: 1.3rem;
            }

            .content-grid {
                grid-template-columns: 1fr 1fr;
            }

            .grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .cardstd {
                height: 280px;
            }

            .carousel-item img {
                height: 400px;
            }
        }

        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }

            .grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .cardstd {
                height: 320px;
            }
        }

        @media (min-width: 1200px) {
            .grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }


















             .container-vis-mis {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
       
        .container-vis-mis > h1 {
            color: var(--primary-color);
            font-size: clamp(2rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            font-weight: 700;
        }

        .container-vis-mis > h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        /* Mission Section */
        .mission-section {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: var(--section-padding);
            margin-bottom: 60px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
        }

        /* Vision Container */
        .Vision {
            width: 100%;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--gap-large);
            margin-bottom: 60px;
            padding: 20px 0;
        }

        .Vision:last-child {
            margin-bottom: 0;
        }

        .vision-data {
            flex: 1;
            min-width: 0; /* Prevents flex item from overflowing */
        }

        .vision-data h1 {
            color: var(--primary-color);
            font-size: clamp(1.5rem, 3vw, 2rem);
            text-align: left;
            margin-bottom: 25px;
            position: relative;
            font-weight: 600;
        }

        .vision-data h1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .vision-data p {
            font-size: clamp(1rem, 2vw, 1.1rem);
            text-align: justify;
            line-height: 1.8;
            color: var(--text-color);
        }

        .vision-image {
            flex: 0 0 auto;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .vision-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .vision-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .vision-image:hover img {
            transform: scale(1.05);
        }

        /* Alternate layout for second vision block */
        .Vision:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Large Screens (1200px+) */
        @media screen and (min-width: 1200px) {
            .container-vis-mis {
                padding: 0 40px;
            }
            
            .Vision {
                gap: 60px;
            }
            
            .vision-image {
                width: 400px;
                height: 400px;
            }
        }

        /* Medium-Large Screens (1024px - 1199px) */
        @media screen and (max-width: 1199px) and (min-width: 1024px) {
            .container-vis-mis {
                padding: 0 30px;
            }
            
            .mission-section {
                padding: 40px;
            }
            
            .Vision {
                height: 100%;
                gap: 35px;
            }
            
            .vision-image {
                width: 280px;
                height: 230px;
            }
        }

        /* Tablet Screens (768px - 1023px) */
        @media screen and (max-width: 1023px) and (min-width: 768px) {
            .container-vis-mis {
                padding: 0 25px;
                margin: 1.5rem auto;
            }
            
            .mission-section {
                padding: 35px;
                margin-bottom: 40px;
            }
            
            .Vision {
                height: 100%;
                gap: var(--gap-medium);
                margin-bottom: 50px;
            }
            
            .vision-image {
                width: 250px;
                height: 200px;
            }
            
            .vision-data h1 {
                margin-bottom: 20px;
            }
        }

        /* Small Tablets and Large Phones (600px - 767px) */
        @media screen and (max-width: 767px) and (min-width: 600px) {
            .container-vis-mis {
                padding: 0 20px;
                margin: 1rem auto;
            }
            
            .mission-section {
                padding: 30px;
                margin-bottom: 30px;
                border-radius: 8px;
            }
            
            .Vision {
                height: 100%;
                flex-direction: column !important;
                text-align: center;
                gap: var(--gap-medium);
                margin-bottom: 40px;
            }
            
            .vision-data {
                order: 2;
            }
            
            .vision-image {
                order: 1;
                width: 100%;
                max-width: 400px;
                height: 220px;
                margin: 0 auto;
            }
            
            .vision-data h1 {
                text-align: center;
                margin-bottom: 20px;
            }
            
            .vision-data h1::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .vision-data p {
                text-align: justify;
            }
        }

        /* Mobile Phones (480px - 599px) */
        @media screen and (max-width: 599px) and (min-width: 480px) {
            .container-vis-mis {
                padding: 0 15px;
                margin: 1rem auto;
            }
            
            .container-vis-mis > h1 {
                margin-bottom: 25px;
            }
            
            .mission-section {
                padding: 25px;
                margin-bottom: 25px;
                border-radius: 8px;
            }
            
            .Vision {
                flex-direction: column !important;
                text-align: center;
                gap: var(--gap-small);
                margin-bottom: 35px;
                height: 100%;
            }
            
            .vision-data {
                order: 2;
            }
            
            .vision-image {
                order: 1;
                width: 100%;
                height: 200px;
                margin: 0 auto;
            }
            
            .vision-data h1 {
                text-align: center;
                margin-bottom: 15px;
            }
            
            .vision-data h1::after {
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
            }
            
            .vision-data p {
                text-align: justify;
                font-size: 1rem;
                line-height: 1.6;
            }
        }

        /* Small Mobile Phones (320px - 479px) */
        @media screen and (max-width: 479px) {
            .container-vis-mis {
                padding: 0 12px;
                margin: 0.5rem auto;
            }
            
            .container-vis-mis > h1 {
                margin-bottom: 20px;
                font-size: 1.8rem;
            }
            
            .container-vis-mis > h1::after {
                width: 60px;
            }
            
            .mission-section {
                padding: 20px;
                margin-bottom: 20px;
                border-radius: 6px;
            }
            
            .Vision {
                height: 100%;
                flex-direction: column !important;
                text-align: center;
                gap: var(--gap-small);
                margin-bottom: 30px;
                padding: 15px 0;
            }
            
            .vision-data {
                order: 2;
            }
            
            .vision-image {
                order: 1;
                width: 100%;
                height: 180px;
                margin: 0 auto;
                border-radius: 8px;
            }
            
            .vision-data h1 {
                text-align: center;
                margin-bottom: 12px;
                font-size: 1.4rem;
            }
            
            .vision-data h1::after {
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 2px;
            }
            
            .vision-data p {
                text-align: justify;
                font-size: 0.95rem;
                line-height: 1.6;
            }
        }

        /* Extra Small Devices (below 320px) */
        @media screen and (max-width: 319px) {
            .container-vis-mis {
                padding: 0 10px;
            }
            
            .mission-section {
                padding: 15px;
            }
            
            .vision-image {
                height: 160px;
            }
            
            .vision-data h1 {
                font-size: 1.3rem;
            }
            
            .vision-data p {
                font-size: 0.9rem;
            }
        }

        /* Landscape orientation adjustments for mobile */
        @media screen and (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
            .Vision {
                flex-direction: row !important;
                gap: 20px;
            }
            
            .vision-image {
                width: 200px;
                height: 150px;
                flex-shrink: 0;
            }
            
            .vision-data h1 {
                text-align: left;
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            
            .vision-data h1::after {
                left: 0;
                transform: none;
            }
            
            .vision-data p {
                font-size: 0.9rem;
                line-height: 1.5;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .vision-image img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Animation for better user experience */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .Vision {
            animation: fadeInUp 0.6s ease-out;
        }

        .Vision:nth-child(2) {
            animation-delay: 0.2s;
        }

        /* Focus and accessibility improvements */
        .vision-image:focus-within {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {
            .mission-section::before {
                display: none;
            }
            
            .vision-image {
                box-shadow: none;
            }
            
            .Vision {
                break-inside: avoid;
            }
        }

















          .eventSection {
            width: 90%;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .aboutEvent h1 {
            font-size: clamp(1.5rem, 4vw, 2.1rem);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .aboutEvent h1.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .aboutEvent p {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            text-align: justify;
            color: #333;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .aboutEvent p.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .aboutImage {
            padding: 1rem 0;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
        }

        .aboutImage.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .aboutImage > img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: bottom;
            max-height: 600px;
        }

        .galary-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .Gcard {
            width: 250px;
            height: 250px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            border-radius: 8px;
            /* opacity: 0; */
            transform: translateY(30px);
        }

        .Gcard.fade-in {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .gImage {
            width: 100%;
            height: 100%;
            border: 1px solid #fff;
        }

        .gImage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s all ease-in-out;
        }

        .gImage img:hover {
            transform: scale(1.05);
        }

        .Gcard:hover {
            transform: translateY(-5px);
        }
 .view-all-btn {
            background: #2c3e50;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }

        .view-all-btn:hover {
            background: #34495e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Tablet styles */
        @media (max-width: 1024px) {
            .eventSection {
                width: 95%;
            }

            .Gcard {
                width: calc(33.333% - 1rem);
                height: 200px;
            }

            .galary-container {
                gap: 0.8rem;
                padding: 1.5rem 1rem;
            }
        }

        /* Mobile landscape and small tablet */
        @media (max-width: 768px) {
            .eventSection {
                margin: 1rem auto;
            }

            .aboutEvent h1 {
                margin-bottom: 1rem;
            }

            .aboutEvent p {
                text-align: left;
            }

            .Gcard {
                width: calc(50% - 0.5rem);
                height: 180px;
            }

            .galary-container {
                gap: 0.5rem;
                padding: 1rem 0.5rem;
            }

            .aboutImage > img {
                max-height: 350px;
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {
            .eventSection {
                width: 100%;
                padding: 0 0.5rem;
            }

            .Gcard {
                width: 100%;
                height: 250px;
                max-width: 350px;
            }

            .galary-container {
                padding: 1rem 0.5rem;
            }

            .aboutImage > img {
                max-height: 250px;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .Gcard {
                height: 200px;
            }
        }










































                .dis-main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .dis-page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .dis-main-title {
            color: #2c2c74;
            font-size: 2.8em;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .dis-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2c2c74, #3939e4);
        }

        .dis-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .dis-text-section {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .dis-section-heading {
            color: #2c2c74;
            font-size: 2em;
            margin-bottom: 25px;
            border-bottom: 3px solid #2c2c74;
            padding-bottom: 10px;
        }

        .dis-paragraph {
            text-align: justify;
            font-size: 1.05em;
            color: #3c3c3c;
            margin-bottom: 20px;
        }

        .dis-features-wrapper {
            margin-top: 25px;
        }

        .dis-feature-card {
            background: #f8f9fa;
            padding: 15px;
            margin-bottom: 12px;
            border-left: 4px solid #2c2c74;
            border-radius: 6px;
            transition: transform 0.3s ease;
        }

        .dis-feature-card:hover {
            transform: translateX(10px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .dis-feature-label {
            color: #2c2c74;
        }

        .dis-gallery-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .dis-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .dis-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .dis-image-wrapper:hover {
            transform: scale(1.05);
        }

        .dis-gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .dis-hero-image {
            grid-column: 1 / -1;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .dis-hero-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .dis-lab-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #2c2c74, #0b0baa);
            color: white;
            padding: 15px 30px;
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            letter-spacing: 2px;
        }

        @media (max-width: 1024px) {
            .dis-content-grid {
                grid-template-columns: 1fr;
            }

            .dis-main-title {
                font-size: 2.2em;
            }

            .dis-hero-img {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .dis-main-container {
                padding: 30px 15px;
            }

            .dis-main-title {
                font-size: 1.8em;
            }

            .dis-text-section {
                padding: 25px;
            }

            .dis-section-heading {
                font-size: 1.6em;
            }

            .dis-paragraph {
                font-size: 1em;
            }

            .dis-image-grid {
                grid-template-columns: 1fr;
            }

            .dis-gallery-img {
                height: 220px;
            }

            .dis-hero-img {
                height: 280px;
            }

            .dis-lab-badge {
                font-size: 1.2em;
                padding: 12px 20px;
                bottom: 15px;
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .dis-main-title {
                font-size: 1.5em;
            }

            .dis-text-section {
                padding: 20px;
            }

            .dis-section-heading {
                font-size: 1.4em;
            }

            .dis-feature-card {
                padding: 12px;
                font-size: 0.95em;
            }

            .dis-hero-img {
                height: 220px;
            }

            .dis-gallery-img {
                height: 180px;
            }

            .dis-lab-badge {
                font-size: 1em;
                padding: 10px 15px;
            }
        }