/* ===== HERO CTA SECTION ===== */
.about-page-hero-cta {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  padding: 0 20px;
}

/* BACKGROUND + OVERLAY */
.about-page-hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
   
    url("../assets/images/collegeimage.png") center/cover no-repeat;
  z-index: -1;
}

/* CONTENT */
.about-page-hero-cta-content {
  max-width: 600px;
}

/* TITLE */
.about-page-hero-cta-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* SUBTEXT */
.about-page-hero-cta-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 25px;
}

/* BUTTON WRAPPER */
.about-page-hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON COMMON */
.about-page-hero-cta-buttons a {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

/* OUTLINE BUTTON */
.about-page-hero-cta-buttons .btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

/* FILLED BUTTON */
.about-page-hero-cta-buttons .btn-fill {
      background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  color: #fff;
}

/* HOVER */
.about-page-hero-cta-buttons a:hover {
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-page-hero-cta {
    height: 320px;
  }

  .about-page-hero-cta-content h1 {
    font-size: 26px;
  }

  .about-page-hero-cta-content p {
    font-size: 14px;
  }

  .about-page-hero-cta-buttons a {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }
}


/* ===== ABOUT INFO SECTION (CSS) ===== */
.about-page-info {
  padding: 60px 170px;
}

/* WRAPPER */
.about-page-info-wrapper {
  display: flex;

  align-items: center;
}

/* LEFT */
.about-page-info-left {
  flex: 1;
}

/* HEADING (Your Color Applied) */
.about-page-info-left h2 {
  color: #1E3D6B;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* PARAGRAPH COLOR */
.about-page-info-left p {
  color: #6f6d6d;
  font-size: 16px;
  line-height: 24px;
}

/* RIGHT */
.about-page-info-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.about-page-info-card {
    display: flex
;
    gap: 15px;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
    transition: 0.3s;
    background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
    color: white;
}

/* IMAGE */
.about-page-info-img {
  width: 80px;
  height: 80px;
  /* background-color: #dad8d8; */
  border-radius: 6px;
}

/* CARD TEXT */
.about-page-info-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.about-page-info-card p {
  font-size: 14px;
  color: #fff;
}

/* HOVER */
.about-page-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-page-info-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-page-info-left {
    text-align: center;
  }
}

@media (max-width: 576px) {

  .about-page-info-left h2 {
    font-size: 28px;
  }
  .about-page-info {
  padding: 60px 10px;
}
.about-page-info-card {
    display: flex
;
    gap: 15px;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
    transition: 0.3s;
    width: 400px;
}
  .about-page-info-card {
    flex-direction: column;
    text-align: center;
  }

  .about-page-info-img {
    width: 60px;
    height: 60px;
  }
}



/* SECTION */
.vx-course-wrap {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
}

/* CONTAINER */
.vx-course-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.vx-course-left {
  flex: 1;
}

.vx-course-title {
  font-size: 40px;
  font-weight: 700;
  color: #1E3D6B;
  margin-bottom: 20px;
}

/* BUTTON */
.vx-course-btn {
  display: inline-block;
  padding: 12px 20px;
  background: radial-gradient(circle, #1E3D6B, #0E264E);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.vx-course-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RIGHT */
.vx-course-right {
  flex: 1;
  display: flex;
  gap: 30px;
}

/* CARD */
.vx-course-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.vx-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.vx-course-img {
  height: 220px;
  overflow: hidden;
}

.vx-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.vx-course-card:hover img {
  transform: scale(1.1);
}

/* INFO */
.vx-course-info {
  padding: 15px;
}

.vx-course-info span {
  color: #E64044;
  font-size: 14px;
}

.vx-course-info h4 {
  color: #1E3D6B;
  font-size: 18px;
  font-weight: 600;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .vx-course-container {
    flex-direction: column;
    text-align: center;
  }

  .vx-course-right {
    width: 100%;
    justify-content: center;
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .vx-course-right {
    flex-direction: column;
  }

  .vx-course-title {
    font-size: 28px;
  }
}


.admission-section {
    padding: 60px 170px;
    overflow: hidden;
    border-top: 1px solid #eee;
    /* background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%); */
   
    background:
   
    url("../assets/images/Admissioin Proccess.png") center/cover no-repeat;
    color: #fff;
}

.admission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}

/* LEFT */
.admission-left {
  flex: 1;
}

.admission-left h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #000;
}

/* RIGHT */
.admission-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.admission-card {
    display: flex
;
    gap: 41px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    /* max-width: 420px; */
    width: 100%;
    align-items: center;
    background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
    color: white;
    border-color: #fff;
}

/* ICON */
.card-icon {
  /* width: 100px;
  height: 100px; */
  background: rgba(200,200,200,0.5);
  border-radius: 6px;
}

/* TEXT */
.card-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 16px;
  line-height: 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .admission-container {
    flex-direction: column;
    text-align: center;
  }

.admission-section {
  padding: 60px 10px;
  overflow: hidden;
  border-top: 1px solid #eee;
}
  .admission-right {
    justify-content: center;
  }
}



.fees-section {
  padding: 60px 170px;
  border-top: 1px solid #eee;
  
}

.fees-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

/* LEFT SIDE */
.fees-left {
  flex: 1;
}

.fees-left h2 {
  font-size: 40px;
  font-weight: 700;
}

/* RIGHT SIDE */
.fees-right {
  flex: 1;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.fees-card {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 12px;
}

/* ICON */
.fees-icon {
  width: 100px;
  height: 100px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: auto;
}

/* TEXT */
.fees-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}

.fees-amount {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .fees-container {
    flex-direction: column;
    text-align: center;
  }
.fees-section {
  padding: 60px 10px;
  border-top: 1px solid #eee;
  
}
  .fees-right {
    flex-direction: column;
    align-items: center;
  }
}




/* ===== CARD HOVER ===== */
.about-page-info-card,
.courses-card,
.admission-card,
.fees-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.about-page-info-card:hover,
.courses-card:hover,
.admission-card:hover,
.fees-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}



/* SECTION */
.placement-sec-x9 {
  width: 100%;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.placement-wrap-x9 {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* HEADING */
.placement-head-x9 {
  text-align: center;
  margin-bottom: 50px;
}

.placement-head-x9 h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1E3D6B;
  margin-bottom: 10px;
}

.placement-head-x9 p {
  font-size: 16px;
  color: #1E3D6B;
}

/* GRID */
.placement-grid-x9 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.placement-box-x9 {
  background: radial-gradient(circle, #1E3D6B, #0E264E);
  border-radius: 10px;
  padding: 20px 25px;
  color: #fff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.placement-box-x9 span {
  color: #FCCD0E;
  font-size: 14px;
}

.placement-box-x9 h3 {
  font-size: 26px;
  margin-top: 8px;
  font-weight: 600;
}

/* HOVER EFFECT */
.placement-box-x9:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* DECOR IMAGES */
.placement-img1-x9,
.placement-img2-x9 {
  position: absolute;
  opacity: 1;
  pointer-events: none;
}

/* LEFT IMAGE */
.placement-img1-x9 {
   bottom: 0px;
    left: 36%;
    width: 150px;
    height: 160px;
}

/* RIGHT IMAGE */
.placement-img2-x9 {
      bottom: 0px;
    right: 2%;
    width: 150px;
    height: 150px;
}

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
  .placement-head-x9 h2 {
    font-size: 32px;
  }

  .placement-grid-x9 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .placement-box-x9 h3 {
    font-size: 22px;
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 600px) {
  .placement-sec-x9 {
    padding: 60px 15px;
  }

  .placement-head-x9 h2 {
    font-size: 26px;
  }

  .placement-head-x9 p {
    font-size: 14px;
  }

  .placement-grid-x9 {
    grid-template-columns: 1fr; /* 🔥 1 card per row */
  }

  .placement-box-x9 {
    padding: 18px;
  }

  .placement-box-x9 h3 {
    font-size: 20px;
  }

  /* hide images on mobile */
  .placement-img1-x9,
  .placement-img2-x9 {
    display: none;
  }
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Roboto', sans-serif;
}

/* MAIN SECTION */
.testimonial-section {
  padding: 60px 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

/* LEFT SIDE */
.testimonial-left {
  flex: 1;
}

.testimonial-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

/* RIGHT SIDE */
.testimonial-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CARD ROW */
.card-row {
  display: flex;
  gap: 40px;
}

/* CARD */
.card {
    flex: 1;
    padding: 16px;
    border-radius: 8px;
    background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
    color: white;
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 32px;
  height: 32px;
  background: #ccc;
  border-radius: 50%;
}

/* STAR */
.star {
  width: 60px;
  height: 10px;
  background: #FFC700;
}

/* TEXT */
.card p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

/* ================= */
/* RESPONSIVE DESIGN */
/* ================= */

@media (max-width: 1024px) {
  .testimonial-section {
    padding: 40px 80px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
.testimonial-section {
  padding: 60px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
  .card-row {
    flex-direction: column;
  }

  .testimonial-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 20px;
  }

  .testimonial-left h2 {
    font-size: 26px;
  }

  .card p {
    font-size: 14px;
  }
}

/* ===== ENQUIRY FORM SECTION (CSS) ===== */
.about-page-enquiry {
  padding: 70px 170px;
  border-top: 1px solid #eee;
}

/* HEADER */
.about-page-enquiry-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-page-enquiry-header h2 {
  font-size: 40px;
  font-weight: 700;
}

/* FORM */
.about-page-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ROW */
.about-page-form-row {
  display: flex;
  gap: 40px;
}

/* FORM GROUP */
.about-page-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* FULL WIDTH */
.about-page-form-group.full {
  flex: 100%;
}

/* LABEL */
.about-page-form-group label {
  font-size: 14px;
  font-weight: 500;
}

/* INPUT + SELECT */
.about-page-form-group input,
.about-page-form-group select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  outline: none;
}

/* FOCUS EFFECT */
.about-page-form-group input:focus,
.about-page-form-group select:focus {
  border-color: black;
}

/* BUTTON */
.about-page-form-btn {
  text-align: center;
}

.about-page-form-btn button {
  padding: 12px 30px;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.about-page-form-btn button:hover {
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-page-form-row {
    flex-direction: column;
    gap: 20px;
  }
.about-page-enquiry {
  padding: 70px 10px;
  border-top: 1px solid #eee;
}
  .about-page-enquiry-header h2 {
    font-size: 28px;
  }
}








/* SECTION */
.zx-admission-wrap {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
}

/* CONTAINER */
.zx-admission-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.zx-admission-header {
  text-align: center;
  margin-bottom: 40px;
}

.zx-admission-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.zx-admission-header p {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

/* GRID */
.zx-admission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.zx-admission-card {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  transition: 0.3s;
}

/* FULL WIDTH CARD */
.zx-admission-card.full {
  grid-column: span 2;
}

/* TEXT */
.zx-admission-card span {
  font-size: 14px;
  color: #777;
}

.zx-admission-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 5px;
 color: #E64044;
}

/* HOVER */
.zx-admission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #FCCD0E;
}

/* 📱 TABLET */
@media (max-width: 768px) {
  .zx-admission-grid {
    grid-template-columns: 1fr;
  }

  .zx-admission-card.full {
    grid-column: span 1;
  }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
  .zx-admission-header h2 {
    font-size: 26px;
  }

  .zx-admission-card h3 {
    font-size: 20px;
  }
}



.promo-wrap {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.promo-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.promo-card {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  background-image: url("../assets/images/roungtacollage.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.promo-text {
  width: 100%;
  padding: 15px;
  text-align: center;
  color: #FCCD0E;
  font-size: 20px;
  font-family: Roboto, sans-serif;
  background: rgba(0, 0, 0, 0.4);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .promo-wrap {
    padding: 40px 15px;
  }

  .promo-card {
    height: 220px;
  }

  .promo-text {
    font-size: 16px;
  }
}