@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  border: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

section {
  padding: 3rem 9%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fcfcfc;
  color: #333333;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: #e9edfb;
  color: #224bcf;
  cursor: pointer;
  border-radius: .5rem;
  font-size: 1.7rem;
}

.btn:hover {
  color: #fff;
  background: #224bcf;
}

/* Heading */

.heading {
  background: url(../images/heading-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.heading h3 {
  font-size: 3.5rem;
  color: #302851;
}

.heading p {
  font-size: 1.6rem;
  color: #666;
  padding-top: .5rem;
}

.heading p a {
  padding-right: .5rem;
  color: #ffd700;
}

.heading p a:hover {
  color: #302851;
}

/* Header */

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 9%;
  background: linear-gradient(135deg, #4c3fb5 0%, #5a2e82 100%);
}

.header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: #fff;
}

.header .logo i {
  color: #ffd700;
}

.header .navbar ul {
  list-style: none;
}

.header .navbar ul li {
  position: relative;
  float: left;
}

.header .navbar ul li:hover ul {
  display: block;
}

.header .navbar ul li a {
  padding: 2rem;
  display: block;
  font-size: 1.7rem;
  color: #fff;
}

.header .navbar ul li a:hover {
  background: #ffd700;
}

.header .navbar ul li ul {
  position: absolute;
  left: 0;
  width: 20rem;
  background: linear-gradient(135deg, #4c3fb5 0%, #5a2e82 100%);
  display: none;
}

.header .navbar ul li ul li {
  width: 100%;
}

/* Menu button */

#menu-btn {
  cursor: pointer;
  color: #ffd700;
  font-size: 2.5rem;
  display: none;
}

/* Home */

.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.home .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.home .image img {
  width: 100%;
}

.home .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.home .content h3 {
  color: #302851;
  font-size: 5rem;
}

.home .content p {
  font-size: 2rem;
  color: #666;
  padding: 1rem 0;
  line-height: 2.5;
}

.home .content span {
  color: #2a2f77;
  font-weight: bold;
}

.home .content a {
  text-decoration: underline;
  font-weight: bolder; 
  color: #2a2f77;
}

.home .content .btn {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 35px;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}

.home .content .btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Visit counter */

.highlights-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 60px;
}

.highlights-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.visitor-counter {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  grid-row: 1;
  grid-column: 1 / -1;
  margin-bottom: 20px; 
}

.visitor-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.visitor-counter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.counter-label {
  font-size: 2.9em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bolder;
  font-family: poppins, monospace;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.counter-number {
  font-size: 4em;
  font-weight: bold;
  color: white;
  font-family: 'poppins', monospace;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% { 
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                   0 0 30px rgba(255, 255, 255, 0.3);
  }
  50% { 
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                   0 0 50px rgba(255, 255, 255, 0.5);
  }
}

.counter-subtitle {
  font-size: 2em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  grid-row: 2; 
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.highlight-image {
  width: 50%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto 20px;
  margin-bottom: 20px;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-image img {
  transform: scale(1.1);
}

.highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.highlight-description {
  font-size: 1.8em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight-button {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.highlight-button:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}


@media (max-width: 1024px) {
  .highlights-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .visitor-counter,
  .highlight-card {
      grid-row: auto;
      grid-column: auto;
      margin-bottom: 0;
  }
  .visitor-counter {
      order: -1;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2em;
  }

  .highlight-image {
    height: 200px;
  }

  .counter-number {
    font-size: 3em;
  }
}


/* Sliding */

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.slide {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  opacity: 0;
  transform: translateX(100%);
  animation: slideAnimation 25s infinite;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

@keyframes slideAnimation {
  0% {
      opacity: 0;
      transform: translateX(100%);
  }
  4% {
      opacity: 1;
      transform: translateX(0);
  }
  20% {
      opacity: 1;
      transform: translateX(0);
  }
  24% {
      opacity: 0;
      transform: translateX(-100%);
  }
  100% {
      opacity: 0;
      transform: translateX(-100%);
  }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.text {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  color: white;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 2;
}

.text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
}

.text p {
  font-size: 2rem;
  margin-top: 1rem;
  color: #FFFFFF;
}

/* Category */

.services-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1em;
  color: #666;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.service-image {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.service-description {
  font-size: 2em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.service-button {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 35px;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}

.service-button:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-button.contact-btn {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.service-button.contact-btn:hover {
  background: #667eea;
  color: white;
}

Alternate layout for visual variety
.service-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-card:nth-child(even)::before {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column !important;
    text-align: center;
    padding: 30px 20px;
  }

  .service-image {
    width: 150px;
    height: 150px;
  }

  .service-title {
    font-size: 3em;
  }

  .service-description {
    font-size: 1.7em;
  }

  .service-buttons {
    justify-content: center;
  }
}

/* Testimony Section */

.testimonials-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1em;
  color: #666;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6em;
  color: rgba(102, 126, 234, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.student-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.rating {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #ffd700;
}

.testimonial-text {
  font-size: 1.5em;
  color: #555;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.student-info {
  text-align: center;
  position: relative;
  z-index: 1;
}

.student-name {
  font-size: 2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.verified-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
      grid-template-columns: 1fr;
  }

  .section-header h2 {
      font-size: 2em;
  }

  .testimonial-card {
      padding: 30px 20px;
  }
}


/* About */

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.about .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.about .image img {
  width: 100%;
}

.about .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.about .content h3 {
  color: #302851;
  font-size: 4.5rem;
}

.about .content p {
  font-size: 2rem;
  padding: 1rem 0;
  color: #666;
  line-height: 2.5;
}

.about .content .btn {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 35px;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}

.about .content .btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

section { padding: 60px 20px; }
.container { max-width: 1000px; margin: auto; }
.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #302851;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fa1d86;
  margin: 10px auto 0;
}
.about-content, .vision-content, .mission-content {
  font-size: 2rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

.core-values-section {
  max-width: 1400px;
  margin: 0px auto;
  padding: 0 20px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 25px;
  background: white;
  border-radius: 50px; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-weight: 600;
  font-size: 1.7em;
  color: #444;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.value-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4); /* Stronger shadow on hover */
  color: white; /* Text turns white */
  border-color: transparent;
}

@media (max-width: 1200px) {
  .values-container {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .highlights-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  .visitor-counter, .highlight-card {
      grid-row: auto;
      grid-column: auto;
      margin-bottom: 0;
  }
  .visitor-counter {
      order: -1;
  }
}
@media (max-width: 768px) {
  .section-title { font-size: 2em; }
  .highlight-image { height: 250px; }
  .counter-number { font-size: 3em; }
  .values-container {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .values-container {
      grid-template-columns: 1fr;
  }
}

/* Gallery */

.heading {
  text-align: center;
  font-size: 2.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

h1 {
  text-align: center;
  color: rgb(18, 17, 17);
  margin-bottom: 40px;
  font-size: 2.5em;
  position: relative;
  display: inline-block;
  width: 100%;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #fa1d86;
  transition: width 0.4s ease;
  border-radius: 2px;
}

h1:hover::after {
  width: 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.event-folder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.event-folder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.folder-icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
}

.folder-name {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
}

.event-images {
    display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  color: white;
  font-size: 2em;
}

.close-btn {
  background: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.close-btn:hover {
    background: #f0f0f0;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.image-item {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.image-item:hover img {
    transform: scale(1.1);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2001;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 2001;
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

/* study material */

.container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.container-title {
  font-size: 3.5em;
  color: #333333;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
  text-align: center;
  color: #333;
  position: relative;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.pdf-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.pdf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.pdf-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5em;
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.pdf-title {
  font-size: 2em;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
  text-align: center;
}

.pdf-size {
  font-size: 0.85em;
  color: #999999;
}

.pdf-pages {
  font-size: 0.85em;
  color: #999999;
}

.download-button {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px auto 0;
  text-decoration: none;
}

.download-button:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.download-icon {
  font-size: 1.2em;
  color: #ffd700;
}

@media (max-width: 768px) {
  .page-header h1 {
      font-size: 2em;
  }

  .pdf-grid {
      grid-template-columns: 1fr;
  }

  .section-title {
      font-size: 1.5em;
  }
}


/* Hub 01 */


/* Hub 02 */


/* Hub 03 */



/* Hub 04 */



/* Hub 05 */



/* Video */



/* Faculty */

.faculty {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faculty .box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.faculty .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.faculty .box .image {
    width: 100%;
    height: 300px;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    position: relative;
}

.faculty .box .image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.8), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faculty .box:hover .image::before {
    opacity: 1;
}

.faculty .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.faculty .box:hover .image img {
    transform: scale(1.1);
}

.faculty .box .content {
    padding: 25px 20px;
    text-align: center;
}

.faculty .box .content h3 {
    font-size: 2em;
    color: #333333;
    margin-bottom: 12px;
    text-transform: capitalize;
    font-weight: bold;
}

.faculty .box .content span {
    font-size: 1.5em;
    color: #666666;
    line-height: 1.8;
    display: block;
}

.faculty-section {
    margin: 80px 0;
}

.faculty-title {
    text-align: center;
    font-size: 3em;
    color: #333333;
    margin-bottom: 15px;
}

.faculty-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.faculty-subtitle {
    text-align: center;
    font-size: 2em;
    color: #666666;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
  .faculty {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin: 50px auto;
  }

  .faculty .box .image {
      height: 250px;
      aspect-ratio: 3 / 4; 
  }

  .faculty .box .content h3 {
      font-size: 2em;
  }

  .faculty .box .content span {
      font-size: 1.5em;
  }

  .faculty-title {
      font-size: 2em;
  }
}

@media (max-width: 600px) {
  .faculty {
      grid-template-columns: 1fr;
  }

  .faculty .box .image {
      height: 300px;
      aspect-ratio: 3 / 4;
  }

}

/* Achievements */

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.stat-number {
  font-size: 3.8em;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.5em;
  color: #666;
}

.section-title {
  text-align: center;
  font-size: 3.5em;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.toppers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.topper-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topper-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.topper-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.topper-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  color: white;
  margin: 0 auto 20px;
  font-weight: bold;
}

.topper-name {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.topper-degree {
  font-size: 2em;
  color: #667eea;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

.topper-achievement {
  font-size: 1.5em;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 2em;
  font-weight: bold;
  margin-top: 10px;
}

.achievement-icon {
  font-size: 1.5em;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .header h1 {
      font-size: 2em;
  }

  .toppers-grid {
      grid-template-columns: 1fr;
  }

  .stats-section {
      grid-template-columns: 1fr;
  }
}



/* Blog */

.blog-highlights {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.blog-highlights .blog-heading {
  text-align: center;
  font-size: 2.5em;
  color: #333333;
  margin-bottom: 60px;
  position: relative;
}

.blog-highlights .blog-heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.blog-highlights .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-highlights .box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.blog-highlights .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.blog-highlights .box:hover::before {
  transform: scaleX(1);
}

.blog-highlights .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.blog-highlights .box h3 {
  font-size: 2.5em;
  color: #333333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-highlights .box h3 i {
  color: #667eea;
  font-size: 1.4em;
}

.blog-highlights .box p {
  font-size: 1.7em;
  color: #666666;
  line-height: 1.8;
}

.keyfeatures {
  max-width: 1400px;
  margin: 80px auto;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 25px;
}

.keyfeatures .kheading {
  text-align: center;
  font-size: 3em;
  color: #333333;
  margin-bottom: 60px;
  position: relative;
}

.keyfeatures .kheading::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.keyfeatures .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.keyfeatures .box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-left: 5px solid #667eea;
}

.keyfeatures .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-left-color: #ffd700;
}

.keyfeatures .box h3 {
  font-size: 2em;
  color: #333333;
  margin-bottom: 20px;
  font-weight: bold;
}

.keyfeatures .box ul {
  list-style: none;
  padding: 0;
}

.keyfeatures .box ul li {
  font-size: 1.7em;
  color: #666666;
  line-height: 2;
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px;
}

.keyfeatures .box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2em;
}

@media (max-width: 768px) {
.blog-highlights {
    margin: 50px auto;
}

.blog-highlights .heading,
.keyfeatures .kheading {
    font-size: 3em;
    margin-bottom: 40px;
}

.blog-highlights .box-container,
.keyfeatures .container {
    grid-template-columns: 1fr;
    gap: 25px;
}

.blog-highlights .box,
.keyfeatures .box {
    padding: 25px 20px;
}

.blog-highlights .box h3 {
    font-size: 2em;
}

.keyfeatures .box h3 {
    font-size: 2em;
}

.keyfeatures {
    padding: 40px 20px;
    margin: 50px auto;
}
}

@media (max-width: 480px) {
.blog-highlights .box-container,
.keyfeatures .container {
    grid-template-columns: 1fr;
}

.blog-highlights .blog-heading,
.keyfeatures .kheading {
    font-size: 2.5em;
}
}



/* Contact */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5em;
  color: white;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.contact-info {
  font-size: 2em;
  color: #667eea;
  line-height: 1.8;
  font-weight: 500;
}

.contact-info a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffd700;
}

.form-section {
  background: #f1f2f3;
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 2.5em;
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 1.8em;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1.5em;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
  transform: translateY(-1px);
}

.map-section {
  margin-bottom: 60px;
}

.map-title {
  font-size: 2.7em;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  display: block;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
  color: white;
  font-size: 30px;
}

@keyframes pulse {
  0%, 100% {
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
      box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .contact-cards {
      grid-template-columns: 1fr;
  }

  .form-grid {
      grid-template-columns: 1fr;
  }

  .whatsapp-float {
      bottom: 20px;
      right: 20px;
      width: 55px;
      height: 55px;
  }

  .whatsapp-float i {
      font-size: 26px;
}
}

@media (max-width: 768px) {
  .page-header h1 {
      font-size: 2em;
  }

  .form-section {
      padding: 40px 20px;
  }

  .map-container {
      height: 350px;
  }
}

/* academic batches */

.batches-section {
  padding: 40px 20px;
  background: #f7f9fc;
  text-align: center;
}

.section-heading {
  font-size: 3rem;
  color: #302851;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 1.7rem;
  color: #555;
  margin-bottom: 40px;
}

.batches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 10px;
}

.batch-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.batch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.batch-card h2 {
  color: #302851;
  margin-bottom: 15px;
  font-size: 2.3rem;
}

.batch-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.batch-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px dashed #ddd;
  font-size: 1.7rem;
}

/* whatsapp float */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 55px;   /* reduce size */
  height: 55px;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* Footer */

.footer {
  background: #1a1441;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 3rem;
  padding: 1rem 0;
  color: #a8b5ff;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.8rem;
  padding: 1rem 0;
  color: #b8b8d1;
}

.footer .box-container .box a:hover {
  color: #ffffff;
}

.footer .box-container .box a:hover i {
  padding-right: 2rem;
}

.footer .box-container .box a i {
  color: #ffd700;
  padding-right: .5rem;
}

.footer .credit {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color: #b8b8d1;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.footer .credit span {
  color: #ffd700;
}

/* responsiveness */

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  .header {
    padding: 2rem;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4c3fb5 0%, #5a2e82 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar ul li {
    width: 100%;
  }
  .header .navbar ul li ul {
    width: 100%;
    position: relative;
  }
  .about .content h3 {
    font-size: 3rem;
  }
  .main-video video {
    width: 95%;
    border-width: .2rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

/* sliding section */
@media (max-width: 768px) {
  .hero-slider {
      height: 400px;
      padding: 15px;
  }

  .slide {
      top: 15px;
      left: 15px;
      width: calc(100% - 30px);
      height: calc(100% - 30px);
  }

  .text h1 {
      font-size: 2.2rem;
  }

  .text p {
      font-size: 1.5rem;
  }
}

/* home section category */
@media (max-width: 768px) {
  h2 {
      font-size: 2rem;
      margin: 30px 0 15px;
  }
}


/* category section */
@media (max-width: 768px) {
  .category {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .category .box {
    width: 80%;
    max-width: 400px;
  }
}

/* # sourceMappingURL=style.css.map */