	.video-slide {
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* or your slider height */
}

.video-slide .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-slide .auto-container {
    position: relative;
    z-index: 2; /* keep text above video */
}






/* ================= FEATURES SECTION ================= */

.feature-section {
  position: relative;
  padding: 80px 20px;
  background: #f7f7f7;
  overflow: hidden;
  z-index: 1;
}

/* Section Title (optional if already styled globally) */
.sec-title-three.centered {
  text-align: center;
  margin-bottom: 50px;
}

.sec-title-three .title {
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sec-title-three h2 {
  font-size: 36px;
  color: #000;
}


/* ---------- Pattern Background Layers ---------- */

.pattern-layer {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.35;
}

.pattern-layer-one {
  top: 5%;
  left: 2%;
  width: 120px;
  height: 120px;
}

.pattern-layer-two {
  top: 15%;
  right: 5%;
  width: 150px;
  height: 150px;
}

.pattern-layer-three {
  bottom: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
}

.pattern-layer-four {
  bottom: 10%;
  right: 15%;
  width: 130px;
  height: 130px;
}

.pattern-layer-five {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
}

/* ---------- Grid Layout ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- Feature Card ---------- */

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

/* Card Title */

.feature-card h3 {
  color: #000000;
  font-size: 18px;
  margin: 15px 0 5px;
  font-weight: 600;
}

/* ---------- Button Below Section ---------- */

.feature-btn-wrap {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.feature-main-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #d89b2b;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-main-btn:hover {
  background: #b57f1f;
  color: #ffffff;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-section {
    padding: 60px 15px;
  }

  .sec-title-three h2 {
    font-size: 28px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-img img {
    height: 180px;
  }

  .feature-btn-wrap {
    margin-top: 40px;
  }
}







	/* Special Offers Section */
.wb-offer-section {
    padding: 80px 20px;
    background: #f7f9fc;
    font-family: "Poppins", sans-serif;
}

.wb-offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.wb-offer-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

.wb-offer-header p {
    font-size: 18px;
    color: #555;
    margin: 5px 0;
}

.wb-offer-header span {
    font-size: 15px;
    color: #888;
}

/* Grid */
.wb-offer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.wb-offer-card {
    background: linear-gradient(135deg, #ffffff, #f1f4ff);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.wb-offer-card:hover {
    transform: translateY(-6px);
}

/* Image */
.wb-offer-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Content */
.wb-offer-content h3 {
    font-size: 28px;
    color: #6a4df4;
    margin-bottom: 5px;
}

.wb-offer-content h4 {
    font-size: 21px;
    color: #222;
    margin-bottom: 10px;
    font-weight: bold;
}

.wb-offer-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* How To */
.wb-offer-how {
    margin-top: 12px;
    background: #eef2ff;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

/* List */
.wb-offer-list {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.wb-offer-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .wb-offer-grid {
        grid-template-columns: 1fr;
    }

    .wb-offer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}





	  /* ================= PHOTO GALLERY ================= */
.mrz-gallery-section{
  padding:120px 0;
  background:#ffffff;
  text-align:center;
}

.mrz-gallery-header h2{
  font-size:52px;
  font-weight:600;
  margin-bottom:10px;
  color:#111;
}

.mrz-gallery-header p{
  color:#666;
  margin-bottom:50px;
}

/* FILTERS */
.mrz-gallery-filters{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.mrz-filter-btn{
  padding:10px 28px;
  border:1px solid #111;
  background:transparent;
  cursor:pointer;
  font-size:14px;
  transition:0.3s;
  border-radius:30px;
}

.mrz-filter-btn.active,
.mrz-filter-btn:hover{
  background:#111;
  color:#fff;
}

/* GRID */
.mrz-gallery-grid{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

/* ITEM */
.mrz-gallery-item{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:0.4s;
}

.mrz-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.4s;
}

/* HOVER */
.mrz-gallery-item:hover img{
  transform:scale(1.08);
}

/* HIDE */
.mrz-gallery-item.hide{
  display:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .mrz-gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .mrz-gallery-header h2{
    font-size:38px;
  }
}

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





	/* ================= EMI CTA DESIGN ================= */

.emi-cta-section {
    padding: 20px 15px;   /* outer spacing reduced */
}

/* MAIN WRAPPER */
.emi-cta-wrapper {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(90deg, #d9008c, #e01493);
    border-radius: 14px;
    padding: 24px 40px;   /* smaller height */
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* LEFT CONTENT */
.emi-cta-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.emi-cta-tag {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.emi-cta-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 6px;
}

.emi-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* RIGHT BUTTON */
.emi-cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.emi-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #d9008c;
    padding: 12px 28px;   /* compact button */
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.emi-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* CURVED BACKGROUND SHAPE */
.emi-cta-shape {
    position: absolute;
    right: -80px;
    top: -50px;
    width: 45%;
    height: 160%;
    background: rgba(255,255,255,0.25);
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .emi-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
    }

    .emi-cta-content {
        max-width: 100%;
    }

    .emi-cta-action {
        margin-top: 12px;
    }

    .emi-cta-shape {
        display: none;
    }

    .emi-cta-title {
        font-size: 28px;
    }

    .emi-cta-text {
        font-size: 15px;
    }
}





.testimonial-section {
  background: #e5fff3;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: url("<?php echo get_template_directory_uri(); ?>/assets/images/icons/icon-7.png") no-repeat center;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
}
.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: url("<?php echo get_template_directory_uri(); ?>/assets/images/icons/contact-arrow.png") no-repeat center;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
}
.testimonial-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
  display: flex;
  align-items: center;
  gap: 60px;
}
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.testimonial-left {
  flex: 1;
  display: flex;
  justify-content: center;
}
.iphone-frame {
  width: 260px;
  height: 520px;
  border: 10px solid #111;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 4px #333, 0 25px 60px rgba(0,0,0,0.6);
  background: #000;
}
.iphone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 20px;
  z-index: 2;
}
.youtube-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}
.youtube-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.testimonial-right {
  flex: 1;
}
.profile-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #111;
}
.testimonial-right h3 {
  color: #000;
  font-size: 26px;
  margin: 0;
}
.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}
.testimonial-right p {
  font-size: 17px;
  line-height: 1.7;
  color: #0e0e0e;
  margin: 0;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  padding: 10px;
  line-height: 1;
}
.testimonial-arrow:hover {
  transform: translateY(-50%) scale(1.2);
  color: #dc0087;
}
.arrow-left { left: -60px; }
.arrow-right { right: -60px; }
@media (max-width: 900px) {
  .testimonial-slide {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .profile-wrap {
    justify-content: center;
  }
  .iphone-frame {
    width: 220px;
    height: 440px;
  }
  .arrow-left { left: 10px; }
  .arrow-right { right: 10px; }
  .testimonial-arrow { 
    font-size: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }
  .iphone-frame {
    width: 200px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .iphone-frame {
    width: 180px;
    height: 360px;
    border-width: 8px;
    border-radius: 30px;
  }
  .testimonial-right h3 {
    font-size: 22px;
  }
  .testimonial-right p {
    font-size: 16px;
  }
}






/* ================= WB FEATURES SECTION ================= */

.wb-feature-section {
  position: relative;
  padding: 80px 20px;
  background: #f7f7f7;
  overflow: hidden;
  z-index: 1;
}

/* Section Title */
.wb-sec-title.centered {
  text-align: center;
  margin-bottom: 50px;
}

.wb-sec-title .wb-title {
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wb-sec-title h2 {
  font-size: 36px;
  color: #000;
  margin: 0;
}

/* ---------- Pattern Background Layers ---------- */

.wb-pattern-layer {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.35;
}

.wb-pattern-layer-one {
  top: 5%;
  left: 2%;
  width: 120px;
  height: 120px;
}

.wb-pattern-layer-two {
  top: 15%;
  right: 5%;
  width: 150px;
  height: 150px;
}

.wb-pattern-layer-three {
  bottom: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
}

.wb-pattern-layer-four {
  bottom: 10%;
  right: 15%;
  width: 130px;
  height: 130px;
}

.wb-pattern-layer-five {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
}

/* ---------- Grid Layout (3 CARDS PER ROW) ---------- */

.wb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- Feature Card ---------- */

.wb-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wb-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.wb-feature-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.wb-feature-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

/* Card Title */
.wb-feature-card h3 {
  color: #000000;
  font-size: 22px;
  margin: 0 0 15px 0;
  font-weight: 600;
  line-height: 1.3;
}

/* Card Description */
.wb-feature-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0 10px;
}

/* ---------- Button Below Section ---------- */

.wb-feature-btn-wrap {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.wb-feature-main-btn {
  display: inline-block;
  padding: 16px 45px;
  background: #d89b2b;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.wb-feature-main-btn:hover {
  background: #b57f1f;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216, 155, 43, 0.3);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .wb-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .wb-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .wb-feature-section {
    padding: 70px 15px;
  }
  
  .wb-sec-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .wb-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wb-feature-img img {
    height: 200px;
  }
  
  .wb-feature-card h3 {
    font-size: 20px;
  }
  
  .wb-feature-card p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .wb-feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
  }
  
  .wb-feature-section {
    padding: 60px 15px;
  }
  
  .wb-sec-title h2 {
    font-size: 28px;
  }
  
  .wb-feature-img img {
    height: 180px;
  }
  
  .wb-feature-btn-wrap {
    margin-top: 40px;
  }
  
  .wb-feature-main-btn {
    padding: 14px 35px;
    font-size: 16px;
  }
}





	.contact-widget .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-widget .contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  color: #2d2d2d;
}

.contact-widget .icon {
  font-size: 18px;
  color: #f6d73c; /* accent color */
  margin-top: 4px;
}

.contact-widget .text {
  font-size: 14px;
  line-height: 1.6;
}

.contact-widget a {
  color: #2d2d2d;
  text-decoration: none;
}

.contact-widget a:hover {
  color: #fff;
}




/* ===============================
   STAR STUDENT VIDEO SECTION
================================ */

.star-video-section {
  padding: 60px 0;
  background: #f3fffd;
}

/* grid */
.star-video-grid {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* card */
.star-video-card {
  position: relative;
  width: 260px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

/* video */
.star-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* desktop look */
  background: #000;
}

/* overlay text */
.star-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  pointer-events: none;
}

.star-video-overlay h3 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 600;
}

.star-video-overlay p {
  font-size: 13px;
  opacity: 0.85;
}

/* remove focus outline */
.star-video-card video:focus {
  outline: none;
}

/* ===============================
   MOBILE FIX (IMPORTANT)
================================ */
@media (max-width: 768px) {
  .star-video-grid {
    gap: 18px;
  }

  .star-video-card {
    width: 100%;
    max-width: 320px;
    height: auto;              /* 👈 allow natural height */
    aspect-ratio: 9 / 16;      /* 👈 perfect vertical video */
  }

  .star-video-player {
    object-fit: contain;       /* 👈 NO CROPPING */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .star-video-card {
    max-width: 300px;
  }
}

