/* ---------- GLOBAL LAYOUT ---------- */
.homepage-layout {
    margin: auto;
    padding: 20px 25px; 
}

.text-justify {
    text-align: justify;
}

.section-header {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #7539cd;
    margin-bottom: 6px;
}
/*******************************
video hero section start
*******************************/

/* .video-banner {
    display: none !important;
} */

.video-banner {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #000;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 2;
}

.video-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 0 24px;
}

.typing-text {
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(117,57,205,0.9), 0 0 8px #000;
  border-right: 3px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
  max-width: 90vw;
  animation: cursorBlink .8s infinite;
}

@keyframes cursorBlink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #fff; }
}

.subtitle {
  margin-top: 14px;
  font-size: 1.2rem;
  color: #e5e5e5;
  max-width: 600px;
  line-height: 1.6;
}

.banner-btn {
  margin-top: 28px;
  padding: 12px 30px;
  background: #7539cd;
  color: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #5b23a8;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .video-banner {
    height: 480px;
  }
  .typing-text {
    font-size: 2.1rem;
    max-width: 95%;
  }
  .subtitle {
    font-size: 0.95rem;
  }
  .banner-btn {
    padding: 10px 26px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-banner {
    height: 420px;
  }
  .typing-text {
    font-size: 1.7rem;
  }
  .subtitle {
    font-size: 0.9rem;
  }
}

/*******************************
video hero section end
*******************************/

/*******************************
WELCOME  section start
*******************************/
.main-text-wrapper {
    margin: auto;
    padding: 10px 10px 30px; 
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #444;
    text-align: justify;
    margin-top: 10px;
    background: #faf7ff;
    padding: 25px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 6px solid #7539cd;
}

@media (max-width: 768px) {

    .homepage-layout {
        padding: 35px 18px;
    }

    .section-header {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
        padding: 20px 18px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .section-header {
        font-size: 1.75rem;
    }

    .intro-text {
        font-size: 1rem;
        padding: 18px 14px;
    }
}

/*******************************
WELCOME  section end
*******************************/

/*******************************
slider section start
*******************************/
.common-carousel .owl-dot {
    width: 14px;
    height: 5px;
    background: var(--gray-border) !important;
    margin: 0 6px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.common-carousel .owl-dot.active {
    background: var(--secondary-color) !important;
}

.common-carousel .owl-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 7;
    padding-top: 30px !important;
}

.common-carousel .owl-dot {
    width: 14px;
    height: 5px;
    background: var(--gray-border) !important;
    margin: 0 6px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.common-carousel .owl-dot.active {
    background: var(--secondary-color) !important;
}

.slide img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.slide .caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    text-align: left;
    color: #333;
}

.slide .caption h1,
.slide .caption h2 {
    margin: 0;
    font-weight: 700;
}

.slide .caption p {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
}

.primary-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #7539cd;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #5b2ea5;
}

@media (max-width: 992px) {
    .slide .caption {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .slide img {
        height: 60vh;
    }

    .slide .caption {
        left: 6%;
        width: 80%;
        top: 55%;
    }

    .slide .caption h1 {
        font-size: 26px;
    }

    .slide .caption h2 {
        font-size: 20px;
    }

    .slide .caption p {
        font-size: 14px;
    }

    .primary-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 50vh;
    }

    .slide .caption {
        left: 5%;
        width: 90%;
        top: 58%;
    }

    .slide .caption h1 {
        font-size: 22px;
    }

    .slide .caption h2 {
        font-size: 18px;
    }

    .slide .caption p {
        font-size: 13px;
    }
}

/*******************************
slider section end
*******************************/
/* ===============================
   power FEATURES  SECTION start
   =============================== */

.machine-features-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
}
.machine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  text-align: center;
  border: 0px solid transparent;
}

.media-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover; 
  display: block;
}
.media-card h4 {
  margin: 10px 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.media-card.active {
  border-color: #7539cd;
  box-shadow: 0 0 20px rgba(117, 57, 205, 0.25);
  transform: scale(1.02);
}
.content-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  border: 1px solid #d1d1d1;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow-y: auto;
  max-height: 790px !important;
}

.content-box h3 {
  color: #004b94;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.content-box p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  text-align: justify;
}

@media (max-width: 1024px) {
  .machine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .col-3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .machine-grid {
    grid-template-columns: 1fr;
  }
  .col {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .media-card {
    flex: 1 1 calc(50% - 10px);
  }
  .content-box {
    padding: 30px 20px;
  }
}
/*******************************
power feature section end
*******************************/

/*******************************
count section start
*******************************/
.count-section {
    width: 100%;
    padding: 60px 0px !important;
    background: #7539cd !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #fff;
}
.count-box h2 {
    font-size: 48px;
    font-weight: 700;
}
.count-box p {
    font-size: 18px;
    margin-top: 5px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .count-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .count-section {
        grid-template-columns: 1fr;
    }
}
/*******************************
count section end
*******************************/

/*******************************
class section start
*******************************/

.classes-section {
    padding: 60px 20px;
    width: 100%;
}
.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.class-card {
    padding: 25px;
    border-radius: 14px;
    background: #ffffff; /* ✅ No nth-child conflicts */
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: .3s ease;
    border-left: 5px solid #7539cd !important;
}
.class-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    background: #e8d9ff; 
}

.class-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}
.class-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}
@media (max-width: 992px) {
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .classes-grid {
        grid-template-columns: 1fr;
    }
}
/*******************************
class section end
*******************************/
/*******************************
subject section start
*******************************/
.subject-section {
  padding: 50px 0;
  background: #EAD9FF;
  text-align: center;
}
.section-title {
  color: #7539cd;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-subtitle {
  color: #7539cd;
  font-size: 18px;
  margin-bottom: 35px;
}
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 25px;
  max-width: 1200px;  
  margin: 0 auto;
}
.subject-card {
  background: #fff;
  padding: 18px 10px;                
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;                  
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: .3s ease;
}
.subject-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.subject-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.subject-name {
  font-size: 22px !important;
  font-weight: 400;
  color: #7539cd;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .subjects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .subject-card {
    aspect-ratio: 2 / 1;
    gap: 18px;
  }

  .subject-icon {
    font-size: 34px;
  }

  .subject-name {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .subjects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subject-card {
    aspect-ratio: 2 / 1.1;
    gap: 15px;
  }

  .subject-icon {
    font-size: 30px;
  }

  .subject-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .subjects-grid {
    grid-template-columns: 1fr !important; 
    padding: 0 20px;
    margin: 0 !important;
  }
  .subject-card {
    display: flex;
    flex-direction: row;      
    align-items: center;      
    justify-content: center;  
    gap: 15px;
    padding: 15px 10px;
    aspect-ratio: auto;
    text-align: left;
  }
  .subject-icon {
    font-size: 32px;
  }
  .subject-name {
    font-size: 18px;
    white-space: nowrap;
  }
}
/*******************************
subject section end
*******************************/
/*******************************
benefits section start
*******************************/
.benefits-bg {
    position: relative; /* IMPORTANT */
    width: 100%;
    background-image: url('/assets/images/benifitbanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    z-index: 1;
}

.benefits-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.benefits-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
    pointer-events: none;
}

.benefits-v3 > * {
    position: relative;
    z-index: 2;
}

.benefits-main-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.benefits-main-desc {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #666;
}

.benefits-v3-container {
    display: flex;
    gap: 40px;
}
.benefits-v3-tabs {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.benefits-v3-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e8ddff;
    border-radius: 14px;
    cursor: pointer;
    min-height: 95px;
    transition: 0.3s;
}

.benefits-v3-tab.active,
.benefits-v3-tab:hover {
    background: #f4edff;
    border-color: #7539cd;
    transform: translateX(6px);
}

.benefits-tab-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.benefits-tab-text p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
}
.benefits-v3-content {
    width: 70%;
    padding: 35px;
    background: #faf7ff;
    border: 1px solid #e8ddff;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.benefits-v3-panel {
    display: none;
    text-align: center;
}
.benefits-v3-panel.active {
    display: block;
    animation: fade .35s ease;
}

@keyframes fade {
    from {opacity: 0; transform: translateY(10px);}
    to   {opacity: 1; transform: translateY(0);}
}

.benefits-v3-panel h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.benefits-v3-panel p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: #555;
}

.benefits-v3-panel img {
    width: 60%;
    display: block;
    margin: 0 auto 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    filter: brightness(0.85) contrast(1.1);
}
.benefits-v3-btn {
    background: #7539cd;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}
.benefits-v3-btn:hover {
    background: #7539cd;
}
@media (max-width: 992px) {

    .benefits-v3-container {
        flex-direction: column;
    }

    .benefits-v3-tabs,
    .benefits-v3-content {
        width: 100%;
    }

    .benefits-v3-panel img {
        width: 90%;
    }
}
/*******************************
benefits section end
*******************************/

/*******************************
  about us  video section start
*******************************/
.eclass-video-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 60px;
    gap: 40px;
    background: radial-gradient(circle at top left, #9b5be5, #7539cd, #4a1c91);
    color: #fff;
    border-radius: 0px;
}

.video-left {
    flex: 1;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    transition: transform .5s ease;
}

.video-frame:hover {
    transform: scale(1.02);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform .5s ease;
}

.video-frame:hover iframe {
    transform: scale(1.1);
}

.video-right {
    flex: 1;
}

.video-title {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.video-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.video-btn {
    padding: 12px 28px;
    background: #fff;
    color: #7539cd;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-btn:hover {
    background: #f2e7ff;
}

@media (max-width: 900px) {
    .eclass-video-section {
        flex-direction: column;
        padding: 50px 25px;
    }

    .video-frame {
        height: 280px;
    }

    .video-right {
        text-align: center;
    }
}

/*******************************
  about us  video section end
*******************************/

/*******************************
  our partners section start
*******************************/
.partner-logos {
    width: 100%;
    padding: 50px  0px 50px 0px !important;
    background: #faf8ff;
}

.partner-logos .section-header {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 45px;
}

.partner-logo-slider {
    width: 100%;
    padding: 0 80px !important;
}
.logo-box {
    text-align: center;
    flex-shrink: 0 !important;
    width: 180px !important;
}
.logo-box img {
    width: 150px;
    height: auto;
    padding: 15px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(117, 57, 205, 0.12);
    transition: .25s ease;
}

.logo-box img:hover {
    transform: scale(1.08);
}

.logo-name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #7539cd;
}

.swiper-button-next,
.swiper-button-prev {
    color: #cbb0f4;
    width: 20px !important;
    height: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #be99f5;
}

@media(max-width: 600px) {
    .logo-box img {
        width: 110px;
    }
}

.contact-us-container {
	background-color: var(--background-color);
	padding: 50px 30px;
}

.contact-us-container form {
    width: 90%;
    color: var(--text-color);
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
	text-transform: capitalize;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
}

.chatbox-container {
    position: fixed;
    height: 56px;
    width: 56px;
    right: 20px;
    bottom: 30px;
    background: var(--primary-color);
    z-index: 1;
    outline: none;
    display: block;
    cursor: pointer;
    -webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 0 8px 4px rgba(0, 0, 0, .16);
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, .16);
    border: none;
    border-radius: 7px;
    padding: 14px;
}
/*******************************
  our partners section end
*******************************/

/*******************************
    LEARNING SECTION START
*******************************/
.edu-cards{
  --card-w: 420px;
  --radius: 22px;
  --shadow: 0 12px 28px rgba(0,0,0,.14);
  --shadow-hover: 0 18px 40px rgba(0,0,0,.18);
  --media-ratio: 16/9;         
  --title-minh: 60px;            
  --gap: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--gap);
  align-items: stretch;
  padding: 40px 0;
  max-width: 1320px;
  margin: 0 auto;
}

.edu-main-heading{
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom:4px;
  color:#7539cd;
  margin-top: 30px !important;
}

.edu-sub-heading{
  text-align:center;
  font-size:18px;
  margin-bottom:32px;
  color:#666;
}

.edu-cards{
  --card-w: 420px;
  --radius: 22px;
  --shadow: 0 12px 28px rgba(0,0,0,.14);
  --shadow-hover: 0 18px 40px rgba(0,0,0,.18);
  --media-ratio: 16/9;
  --title-minh: 60px;
  --gap: 28px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--gap);
  align-items: stretch;
  padding: 40px 0;
  max-width: 1320px;
  margin: 0 auto;
}

.edu-card{
  display: flex;
  flex-direction: column;
  background:#fff;
  border-radius:5px !important;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, translate .25s ease;
  will-change: transform, box-shadow;
  isolation: isolate;
  width: min(100%, var(--card-w));
  margin-inline: auto;
  height: 100%;
}
.edu-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.edu-card:focus-within{
  outline: 2px solid #7539cd;
  outline-offset: 2px;
}

.edu-media{
  aspect-ratio: var(--media-ratio);
  background: #f3f4f6;
  display: grid;
  place-items: center;
}
.edu-media img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.edu-body{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 22px 24px;
  flex: 1;
}

.edu-title{
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  min-height: var(--title-minh);
  display: grid;
  place-items: center;
  margin: 0;
  color:#000 !important; 
}

.edu-btn{
  margin-top: auto;
  align-self: center;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: #7539cd !important;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.edu-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.edu-btn:focus{
  outline: 2px solid #7449f5;
  outline-offset: 3px;
}

.edu-card:hover .edu-media{
  transform: translateY(-2px);
  transition: transform .25s ease;
}

@media (min-width: 992px){
  .edu-cards{ gap: 36px; }
}
@media (max-width: 420px){
  .edu-card{ border-radius: 16px; }
}


.edu-main-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #7449f5;
  margin-bottom: 10px;
}

.edu-sub-heading {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}
/*******************************
    LEARNING SECTION END
*******************************/

/*******************************
 FAQ'S SECTION START
*******************************/

.faq-section {
  background: #f5f8ff;
  padding: 40px 0;
}

.faq-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;

}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f9fbff;
  border: 1px solid #dde3f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #7449f5;
  background: #eef4ff;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-size: 17px;
  color: #1e1e1e;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #7449f5;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: #7449f5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 15px 20px 20px;
}

.faq-answer p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-card {
    padding: 30px 20px;
  }

  .edu-main-heading {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/*******************************
    FAQ'S SECTION END
*******************************/

/*******************************
    CONTACT SECTION START
*******************************/
.contact-us-section {
    width: 100%;
    padding: 70px 20px;
    background: #faf8ff;
    display: flex;
    justify-content: center;
}
.contact-card {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(117, 57, 205, 0.15);
}
.contact-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}
.contact-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.contact-form {
    width: 50%;
}

.input-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d5cdee;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
    background: #faf8ff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(117, 57, 205, 0.3);
    outline: none;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    background:#7539cd;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #7539cd;
}

.image-box img {
    width: 500px;
    max-width: 100%;
}

@media(max-width: 900px) {
    .contact-flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .contact-form {
        width: 100%;
    }

    .image-box img {
        width: 260px;
    }
}
/*******************************
    CONTACT SECTION END
*******************************/