img {
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fb;
  color: #333;

}

/* TAGLINE */
.tagline {
  font-size: 13px;
  font-weight: 600;
  color: #ff6a00;
  /* SAME color as Edutech */
  margin-top: 3px;
}

/* COURSES SECTION */
.courses-section {
  padding: 80px 20px;
  background: #f5f9ff;
  text-align: center;
}

.courses-section h2 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 50px;
}

/* GRID */
.courses-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}


/* HOVER */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* GRID */
#courses .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD DESIGN */
#courses .card {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  border-radius: 16px;
  padding: 30px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #0d47a1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
#courses .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* TOP COLOR STRIP */
#courses .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff6a00, #ff9800);
}


/* SECTION COMMON */
section {
  background: #fff;
  margin: 40px auto;
  padding: 40px;
  width: 90%;
  max-width: 1100px;
  border-radius: 18px;
}

section h2 {
  text-align: center;
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 30px;
}

section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff6a00;
  display: block;
  margin: 10px auto 0;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}


.point-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.point-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.point-card h4 {
  padding: 12px;
  margin: 0;
  font-size: 15px;
  color: #0d47a1;
  background: #f0f7ff;
}

.point-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* ACHIEVEMENTS */
#achievements {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  color: #fff;
}

.achievement-grid {
  text-align: center;
}

.ach-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.ach-card:hover {
  transform: translateY(-10px) scale(1.05);
}

.ach-card h3 {
  font-size: 38px;
  color: #ffcc00;
}

.ach-card p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
}


/* SECTIONS */
section {
  padding: 50px 40px;
}

section h2 {
  color: #0d47a1;
  margin-bottom: 15px;
}

section ul,
section ol {
  margin-left: 20px;
}


/* CONTACT */
#contact form {
  margin-top: 15px;
}

#contact input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
}



/* FOOTER */
footer {
  background: #111111;
  color: #07711e;
  text-align: center;
  padding: 20px;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* ABOUT SECTION */


/* Heading */
#about h2 {
  font-size: 32px;
  color: #0d47a1;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

#about h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff6a00;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Paragraph */



/* List */
#about ul {
  margin: 20px 0 25px 20px;
}

#about ul li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #0d47a1;
}

/* Tick icon */
#about ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-weight: bold;
}

/* Director Message Box */
#about p b {
  color: #0d47a1;
}

#about p:last-of-type {
  background: #e3f2fd;
  padding: 20px;
  border-left: 6px solid #ff6a00;
  border-radius: 10px;
  font-style: italic;
}

/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD DESIGN */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 22px;
  color: #f26522;
  margin-bottom: 15px;
}



.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d47a1;
  font-weight: bold;
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.about {
  padding: 80px 40px;
  background: #f4f6f9;
}

.about h2 {
  text-align: center;
  color: #0d47a1;
  font-size: 36px;
  margin-bottom: 50px;
  animation: fadeUp 1s ease;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.about-card {
  background: linear-gradient(135deg, #ffffff, #e3f2fd);
  padding: 30px;
  border-radius: 15px;

  transition: 0.4s;
  animation: fadeUp 1.2s ease;
}

.about-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.about-card h3 {
  color: #dd2476;
  margin-bottom: 10px;
}

.about-card p {
  color: #444;
  line-height: 1.6;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

/* Gradient animation */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/* Badge */
.badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  animation: fadeDown 1s ease;
}

/* Main Heading */

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* RESULTS SECTION */
#results {
  background: linear-gradient(135deg, #ffffff, #e3f2fd);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Heading */
#results h2 {
  font-size: 32px;
  color: #0d47a1;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

#results h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff6a00;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* List */
#results ul {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

/* List Items */
#results ul li {
  list-style: none;
  background: #ffffff;
  margin-bottom: 15px;
  padding: 15px 20px 15px 50px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0d47a1;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

/* Icon before list item */
#results ul li::before {
  content: "🏆";
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 20px;
}

/* Hover effect */
#results ul li:hover {
  transform: translateX(8px);
  background: #ff6a00;
  color: #ffffff;
}

/* Heading */
#imonials h2 {
  font-size: 32px;
  color: #0d47a1;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}


/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* LOGO CONTAINER */
.logo-box {
  display: flex;
  align-items: center;
  /* vertical center */
  gap: 14px;
  /* space between logo & text */
}

/* LOGO IMAGE (FRONT) */
.logo-img {
  height: 120px;
  /* size control */
  width: auto;
}

/* TEXT LOGO */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo.main {
  font-size: 38px;
  font-weight: 800;
  color: #0d47a1;
}

.logo.sub {
  font-size: 28px;
  font-weight: 700;
  color: #160a02;
}

.tagline {
  font-size: 23px;
  color: #1a0c03;
}

/* NAV */
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.enroll-btn {
  background: #ff6a00;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}

/* FORCE LOGO ALIGNMENT */
.logo-box {
  display: flex !important;
  flex-direction: row !important;
  /* 👈 MOST IMPORTANT */
  align-items: center !important;
  gap: 14px;
}

/* FACULTY SECTION */
#faculty {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  border-radius: 20px;
}

/* FACULTY CARD */
.faculty-card {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* FACULTY IMAGE */
.faculty-img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* FACULTY TEXT */
.faculty-info h3 {
  font-size: 22px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.faculty-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.faculty-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
}

.faculty-img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faculty-info {
  font-size: 16px;
  line-height: 1.7;

}


/* DIRECTOR IMAGE - MINIMIZED */
.director-img {
  width: 220px;
  /* 👈 yahan se size control */
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #0d47a1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.director-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media(max-width:768px) {
  .director-img {
    width: 90px;
    height: 120px;
  }
}

/* DIRECTOR SECTION */
#director {
  background: #f5f9ff;
  padding: 60px 20px;
  text-align: center;
  /* 👈 CENTER EVERYTHING */
}

/* BOX */
.director-box {
  max-width: 500px;
  margin: 0 auto;
  /* 👈 CENTER BOX */
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* PHOTO CENTER */
.director-img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #0d47a1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  /* 👈 SPACE BELOW PHOTO */
}

/* TEXT */
.director-info {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.director-info b {
  font-size: 18px;
  color: #0d47a1;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* COLORS */
.social-icons .whatsapp {
  background: #25d366;
}

.social-icons .facebook {
  background: #1877f2;
}

.social-icons .instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icons .youtube {
  background: #ff0000;
}

/* HOVER EFFECT */
.social-icons a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);


}

/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT INFO */
.contact-info {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

/* BUTTON */
.contact-form button {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* MAP */
.map {
  max-width: 1100px;
  margin: 40px auto 0;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: none;
}
.contact-info {
  background: #ffffff;
  color: #333;
}

.contact-form {
  background: #ffffff;
}

.contact-info {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}


/* WHY CHOOSE US SECTION */
/* WHY CHOOSE SECTION */
#why-choose {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 90px 20px;
  text-align: center;
}

#why-choose h2 {
  font-size: 38px;
  color: #0d47a1;
  margin-bottom: 50px;
  position: relative;
}

#why-choose h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff6a00;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* GRID */
.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* IMAGE */
.why-card img,
.why-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* TITLE */
.why-card h3 {
  color: #ff6f00;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* GALLERY SECTION */
.gallery-section {
  background: #f5f9ff;
  padding: 70px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #333;
}

/* GRID */
.gallery-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* ITEM */
.gallery-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}

/* TITLE */
.gallery-item span {
  display: block;
  padding: 12px;
  background: #e3f2fd;
  color: #0d47a1;
  font-weight: 600;
  font-size: 15px;
}

/* HOVER */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: #f0f7ff;
  padding: 70px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 15px;
}

.testimonials-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* POINTS */
.testimonial-points {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-points h3 {
  color: #ff6f00;
  margin-bottom: 10px;
}

.testimonial-points ul {
  padding-left: 20px;
}

.testimonial-points li {
  margin-bottom: 8px;
  color: #333;
}

/* TESTIMONIAL CARDS */
.testimonial-grid {
  max-width: 1000px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  font-style: italic;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: #0d47a1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* COMMON INFO SECTIONS */
.info-section {
  padding: 70px 20px;
  background: #f5f9ff;
  text-align: center;
}

.info-section.alt-bg {
  background: #ffffff;
}

.info-section h2 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.info-section h3 {
  font-size: 20px;
  color: #ff6f00;
  margin-bottom: 20px;
}

.info-section p {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* LIST STYLE */
.info-list {
  max-width: 500px;
  margin: 20px auto;
  text-align: left;
  font-size: 16px;
}

.info-list li {
  margin-bottom: 10px;
  padding-left: 10px;
}

/* STEPS */
.info-steps {
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
  font-size: 16px;
}

.info-steps li {
  margin-bottom: 10px;
}

/* NOTE */
.info-note {
  margin-top: 25px;
  font-size: 15px;
  color: #444;
  font-style: italic;
}

/* STUDY MATERIAL BOX GRID */
.material-grid {
  max-width: 1100px;
  margin: 40px auto 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* INDIVIDUAL BOX */
.material-box {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.material-box h4 {
  color: #0d47a1;
  margin-bottom: 10px;
  font-size: 18px;
}

.material-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* HOVER EFFECT */
.material-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* PHOENIX */
.logo.main {
  font-size: 34px;
  font-weight: 800;
  color: navy;
  letter-spacing: 2px;
}

/* Edutech — H se start */
.logo.sub {
  font-size: 25px;
  font-weight: 700;
  color: black;
  margin-left: 22px;
  /* 👈 YAHI KEY HAI */
}

/* Tagline */
.tagline {
  font-size: 18px;
  color: black;
  margin-left: 5px;
  letter-spacing: 1px;
}


/* RESPONSIVE */
@media(max-width:768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}


/* COURSE CARD */
/* IMAGE FRAME – BIGGER */
.image-frame {
  padding: 10px;
  /* pehle 6px */
  border-radius: 26px;
  /* pehle 18px */
  background: linear-gradient(135deg, #ff9800, #ff5722);
  margin-bottom: 20px;
}

/* IMAGE – BIGGER */
.image-frame img {
  width: 100%;
  height: 220px;
  /* 🔥 pehle 160px */
  object-fit: cover;
  border-radius: 20px;
  /* pehle 14px */
  display: block;
  background: #6c0e0e;
}

/* BATCHES SECTION */
.batches-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.batches-section h2 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 50px;
}

/* GRID */
.batches-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD */
.batch-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.batch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* TITLE */
.batch-card h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #0d47a1;
}

/* IMAGE INSIDE ADMISSION BOX */
.box-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

/* CLICK FEEL */
.material-box {
  cursor: pointer;
  transition: 0.3s;
}

.material-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* IMAGE MODAL */
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

/* FORM MODAL */
.form-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* FORM BOX */
.form-content {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  position: relative;
  animation: pop 0.3s ease;
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
}

/* FORM INPUTS */
.form-content input,
.form-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.form-content textarea {
  height: 90px;
}

.form-content button {
  width: 100%;
  padding: 12px;
  background: #ff6f00;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.form-content button:hover {
  background: #e65100;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background:
    linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(25, 118, 210, 0.9)),
    url("images/contact-bg.jpg") center/cover no-repeat;
  padding: 90px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

/* Heading */
.contact-section h2 {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Subtitle */
.contact-sub {
  font-size: 17px;
  margin-bottom: 55px;
  color: #f1f1f1;
}

/* ================= GRID ================= */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

/* ================= INFO BOX ================= */
.contact-info {
  background: linear-gradient(135deg, #d75faf, #e3f2fd);
  padding: 35px;
  border-radius: 25px;
  text-align: left;
  color: #0d47a1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.contact-info p {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-info b {
  color: #ff6f00;
  font-size: 17px;
}

/* ================= FORM ================= */
.contact-form {
  background: #af4b4b;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6f00;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 111, 0, 0.4);
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ================= MAP ================= */
.contact-map {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 25px;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-section h2 {
    font-size: 32px;
  }

  .contact-map iframe {
    height: 260px;
  }
}

/* ================= HERO BACKGROUND SLIDER ================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  animation: heroSlide 12s infinite ease-in-out;
}

/* SLIDE IMAGES – ONLY TWO */
@keyframes heroSlide {
  0% {
    background-image:

      url("hero1.jpg");
  }

  50% {
    background-image:

      url("hero2.jpg");
  }

  100% {
    background-image:

      url("hero1.jpg");
  }
}

/* OVERLAY */
.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* CONTENT */
.hero-content {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  color: #f41607;
}

/* TEXT */
.hero-content h1 {
  font-size: 56px;
  font-weight: 400;
}

.hero-content h1 span {
  color: #090403;
}

.hero-sub {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  display: inline-block;
}

.btn.primary {
  background: #ff6f00;
  color: #f4efef;
}

.btn.secondary {
  background: #0d47a1;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 15px;
  }
}

/* WRAPPER */
.video-wrapper {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.video-frame {
  width: 320px;
  margin: 40px auto;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  border-radius: 22px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.frame-header {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.frame-videos {
  display: none;
  margin-top: 20px;
}

.frame-videos video {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* OPEN STATE */
.video-frame.open .frame-videos {
  display: block;
}

/* CONTACT SECTION */
.con-section,
.Reach-section {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

/* HEADING */
.con-section h2,
.Reach-section h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #ffcc00;
  position: relative;
}

.con-section h2::after,
.Reach-section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff9800;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* TEXT */
.con-section p,
.Reach-section p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* BOLD LABELS */
.con-section b,
.Reach-section b {
  color: #ffeb3b;
}

/* MAP */
.contact1-map {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact1-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media(max-width:768px) {

  .con-section h2,
  .Reach-section h2 {
    font-size: 28px;
  }

  .con-section p,
  .Reach-section p {
    font-size: 15px;
  }
}

/* SECTION BACKGROUND */
.contact-frame-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  text-align: center;
}

/* TITLE */
.frame-title {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.frame-subtitle {
  color: #f1f1f1;
  margin-bottom: 40px;
}

/* MAIN FRAME */
.contact-frame {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* LEFT INFO BOX */
.information-box {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}

.information-box b {
  color: #0d47a1;
}

/* FORM */
.request-callback-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 20px;
}

.request-callback-form input,
.request-callback-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.request-callback-form textarea {
  height: 110px;
  resize: none;
}

/* BUTTON */
.callback-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #ff6a00;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
}
/* RESPONSIVE */
@media(max-width:768px) {
  .contact-frame {
    grid-template-columns: 1fr;
  }
}


/* VIDEO FRAME – SAME GALLERY STYLE */
.video-frame {
  background: #0d47a1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: 0.3s;
}

/* HEADER */
.frame-header {
  padding: 24px 15px;
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
}

/* VIDEO CONTAINER */
.frame-videos {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: max-height 0.5s ease, padding 0.4s ease;
}

/* OPEN STATE (SCROLL ENABLED) */
.video-frame.open .frame-videos {
  max-height: 520px;
  /* 3 videos ke liye */
  padding: 18px 16px 20px;
  overflow-y: auto;
}

/* VERTICAL VIDEO STYLE */
.frame-videos video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  background: #000;
}

/* SMOOTH SCROLL */
.frame-videos::-webkit-scrollbar {
  width: 6px;
}

.frame-videos::-webkit-scrollbar-thumb {
  background: #0d47a1;
  border-radius: 10px;
}

.request-callback-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* ===============================
   MAP SECTION
================================ */
.contact1-map {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 30px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact1-map iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ===============================
   SOCIAL ICONS
================================ */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 50px;
}

.social-icons a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Individual Colors */
.social-icons .whatsapp {
  background: #25D366;
}

.social-icons .facebook {
  background: #1877f2;
}

.social-icons .instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%, #fdf497 5%,
      #fd5949 45%, #d6249f 60%,
      #285AEB 90%);
}

.social-icons .youtube {
  background: #ff0000;
}

/* Hover Effect */
.social-icons a:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ===============================
   FOOTER
================================ */
footer {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

/* =====================================
   UNIVERSAL RESPONSIVE SYSTEM
===================================== */

/* Large Laptop / MacBook */
@media (max-width: 1400px) {
  section {
    width: 95%;
  }
}

/* Normal Laptop */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .contact-frame {
    padding: 30px;
  }
}

/* Tablet (iPad, Android Tab) */
@media (max-width: 992px) {

  /* HEADER */
  header {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  .logo-img {
    height: 90px;
  }

  nav {
    margin-top: 12px;
  }

  nav a {
    font-size: 14px;
    margin: 6px;
  }

  /* HERO */
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  /* GRID SECTIONS */
  .courses-grid,
  .why-grid,
  .gallery-grid,
  .testimonial-grid,
  .material-grid,
  .batches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CONTACT */
  .contact-wrapper,
  .contact-frame {
    grid-template-columns: 1fr;
  }

  /* FACULTY */
  .faculty-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile (Android + iPhone) */
@media (max-width: 768px) {

  /* Hero */
  .hero-section {
    min-height: auto;
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  /* All grids single column */
  .courses-grid,
  .why-grid,
  .gallery-grid,
  .testimonial-grid,
  .material-grid,
  .batches-grid {
    grid-template-columns: 1fr;
  }

  /* Images Resize */
  .course-card img,
  .gallery-item img,
  .gallery-item video,
  .box-img {
    height: 180px;
  }

  /* Faculty Image */
  .faculty-img {
    width: 150px;
    height: 190px;
  }

  /* Map */
  .contact-map iframe,
  .contact1-map iframe {
    height: 250px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .logo.main {
    font-size: 20px;
  }

  .logo.sub {
    font-size: 16px;
  }

  .tagline {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  footer {
    font-size: 12px;
  }
}
.why-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.why-card:nth-child(1) { animation-delay: 0.2s; }
.why-card:nth-child(2) { animation-delay: 0.4s; }
.why-card:nth-child(3) { animation-delay: 0.6s; }
.why-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.portal-btn {
  background: #ff9800;
  padding: 8px 14px;
  border-radius: 6px;
  color: white !important;
}

.portal-btn:hover {
  background: #e68900;
}


