/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
}

/* CONTAINER */
.container1 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 55px;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav ul li {
  position: relative;
  padding-top: 10px;
}

/* DIVIDER LINE BETWEEN ITEMS */
.nav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 65%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: #ccc;
}

/* LINKS */
.nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  transition: 0.3s;
}

/* ACTIVE LINK */
.nav ul li a.active {
  color: #f37021;
  font-weight: 600;
}

/* HOVER */
.nav ul li a:hover {
  color: #f37021;
}

/* CTA BUTTON */
.apply-btn {
  background: #f37021;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #d95f15;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 991px) {

  .container1 {
    flex-wrap: wrap;
  }

  /* SHOW MENU BUTTON */
  .menu-toggle {
    display: block;
  }

  /* NAV HIDDEN */
  .nav {
    width: 100%;
    display: none;
  }

  /* SHOW WHEN ACTIVE */
  .nav.active {
    display: block;
  }

  /* STACK MENU */
  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    background: #fff;
    border-top: 1px solid #eee;
  }

  /* REMOVE DIVIDERS */
  .nav ul li::after {
    display: none;
  }

  /* FULL WIDTH BUTTON */
  .apply-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 991px) {

  /* NAV AS SIDEBAR */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;   /* hide off screen */
    width: 80%;
    height: 100vh;
    background: #fff;
    z-index: 999;

    transition: 0.3s ease;
    padding: 80px 20px;
  }

  /* WHEN ACTIVE */
  .nav.active {
    right: 0;   /* slide in from right */
  }

  /* MENU LIST */
  .nav ul {
    flex-direction: column;
    gap: 25px;
  }

  /* REMOVE DIVIDER */
  .nav ul li::after {
    display: none;
  }

  /* TOGGLE BUTTON */
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
  }

  /* OPTIONAL BACKGROUND OVERLAY */
  .nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: -20%;
    width: 20%;
    height: 100vh;
    background: rgba(0,0,0,0.3);
  }
}




/* HERO BG */
.hero {
  background: url("image/bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* LEFT TEXT */
.hero-left h1 {
  font-size: 60px;
  font-weight: 800;
}

.sub-text {
  margin-top: 15px;
  font-size: 18px;
}

/* ICON CIRCLE */
.icon-circle {
  width: 55px;   
  height: 55px;
  /* background: #5b3a2c; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE INSIDE */
.icon-circle img {
  width: 60px;   
  height: 60px;
  object-fit: contain;
}

/* TABS */
.form-tabs {
  display: flex;
  margin-bottom: 15px;
}

.tab {
  flex: 1;
  border: none;
  padding: 10px;
  background: #bdbdbd;
  color: #fff;
}

.tab.active {
  background: #2d5be3;
}

.form-card {
  width: 360px;
  background: #efefef;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

/* INPUT BOX FIX */
.input-box {
  display: flex;
  align-items: center;
  height: 42px; /* FIXED HEIGHT */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 10px;
  margin-bottom: 8px; /* LESS GAP */
}

/* INPUT + SELECT */
.input-box input,
.input-box select {
  height: 100%;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background: transparent;
}

/* ICON */
.input-box i {
  color: #ff5a1f;
  margin-right: 8px;
  font-size: 14px;
}

/* MOBILE ROW FIX */
.mobile-row {
  display: flex;
  gap: 8px;
}

.mobile-code {
  width: 80px;
  justify-content: center;
}

/* ROW GAP FIX */
.row.g-2 {
  --bs-gutter-x: 8px;
}

/* ROW */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ALL SAME HEIGHT */
.captcha-box,
.refresh-btn,
.captcha-input {
  height: 42px;
  border-radius: 5px;
}

/* CAPTCHA TEXT */
.captcha-box {
  width: 110px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 2px;
}

/* REFRESH */
.refresh-btn {
  width: 42px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.refresh-btn i {
  font-size: 14px;
  color: #333;
}

/* INPUT FIX */
.captcha-input {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.captcha-input input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 14px;
  background: transparent;
}

/* BUTTON */
.main-btn {
  height: 44px;
  background: linear-gradient(90deg, #2d5be3, #1f4bd8);
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;
}

/* TEXT */
.bottom-text {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

/* TAB CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* WAVE OVERLAY */
.hero-wave {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 50px; /* adjust */
  background: url("images/wave.png") no-repeat center;
  background-size: cover;
  z-index: 3;
}

.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
}

.otp-input {
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.otp-input:focus {
    border-color: #3b5bdb;
    box-shadow: 0 0 5px rgba(59,91,219,0.3);
}

@media (max-width: 991px) {

  /* HERO */
  .hero {
    padding: 40px 15px;
    min-height: auto;
    text-align: center;
  }

  /* STACK CONTENT */
  .hero .row {
    flex-direction: column;
    gap: 30px;
  }

  /* LEFT TEXT */
  .hero-left h1 {
    font-size: 32px;   /* 🔥 reduce */
    line-height: 1.3;
  }

  .sub-text {
    font-size: 15px;
  }

  /* ICON */
  .icon-circle {
    width: 45px;
    height: 45px;
  }

  .icon-circle img {
    width: 40px;
    height: 40px;
  }

  /* FORM CARD */
  .form-card {
    width: 100%;      /* 🔥 FIX */
    max-width: 100%;
    margin: auto;
    padding: 15px;
  }

  /* INPUTS */
  .input-box {
    height: 40px;
  }

  /* MOBILE NUMBER ROW */
  .mobile-row {
    flex-direction: row;
  }

  .mobile-code {
    width: 70px;
  }

  /* CAPTCHA */
  .captcha-row {
    flex-wrap: wrap;   /* 🔥 important */
  }

  .captcha-box {
    width: 90px;
    font-size: 12px;
  }

  .refresh-btn {
    width: 40px;
  }

  .captcha-input {
    width: 100%;
    margin-top: 8px;
  }

  /* BUTTON */
  .main-btn {
    height: 42px;
    font-size: 14px;
  }

  /* TABS */
  .form-tabs {
    flex-direction: row;
  }

  .tabs {
    display: flex;
    overflow-x: auto;     /* scrollable */
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: none; /* hide scrollbar (Firefox) */
  }

  .tabs::-webkit-scrollbar {
    display: none; /* hide scrollbar (Chrome) */
  }

  .tab-btn {
    white-space: nowrap;   /* keep text in one line */
    padding: 8px 16px;
    border-radius: 20px;
    background: #eee;
    border: none;
    font-size: 13px;
    flex-shrink: 0;        /* prevent shrinking */
  }

  .tab-btn.active {
    background: linear-gradient(90deg, #2d5be3, #1f4bd8);
    color: #fff;
  }
  /* WAVE */
  .hero-wave {
    height: 30px;
  }
}










/* SECTION */
.why-section {
  padding: 100px 0 80px;
  background: url("image/uni-bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

/* OVERLAY */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255,255,255,0.9); */
}

.why-section .container {
  position: relative;
  z-index: 2;
  gap: 20px;
}

/* TITLE CENTER */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}


.why-text {
  display: block;
  font-size: 28px;
  color: #f37021;
  font-family: 'Brush Script MT', cursive;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0d2b5c;
}

/* ICON BOX */
.icon {
  width: 80px;
  height: 80px;
  /* background: #fde6d6; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.icon img {
  width: 70px;
}

/* TEXT */
.why-box h5 {
  font-weight: 700;
}

.why-box p {
  font-size: 16px;
  max-width: 260px;
  margin: auto;
}

/* SECTION */
.why-section {
  padding: 100px 0 80px;
  background: url("image/uni-bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

/* OVERLAY */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255,255,255,0.9); */
}

.why-section .container {
  position: relative;
  z-index: 2;
  gap: 20px;
}

/* TITLE CENTER */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}


.why-text {
  display: block;
  font-size: 28px;
  color: #f37021;
  font-family: 'Brush Script MT', cursive;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0d2b5c;
}

/* ICON BOX */
.icon {
  width: 80px;
  height: 80px;
  /* background: #fde6d6; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.icon img {
  width: 70px;
}

/* TEXT */
.why-box h5 {
  font-weight: 700;
}

.why-box p {
  font-size: 16px;
  max-width: 260px;
  margin: auto;
}


@media (max-width: 991px) {

  .why-section {
    padding: 60px 10px;
  }

  /* FORCE 2 COLUMN GRID */
  .why-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
    gap: 20px;
  }

  /* REMOVE BOOTSTRAP COLUMN BEHAVIOR */
  .why-section .row > div {
    width: 100%;
  }

  /* CENTER CONTENT */
  .why-box {
    text-align: center;
  }

  /* ICON */
  .icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }

  .icon img {
    width: 38px;
  }

  /* TEXT */
  .why-box h5 {
    font-size: 15px;
  }

  .why-box p {
    font-size: 13px;
    max-width: 100%;
  }

}







/* SECTION */
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: relative;
  cursor: pointer;

  width: 100%;
  height: 16/6;
  border: none;
  display: block;
}

/* DEFAULT IMAGE */
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.video-banner .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 55px;
  background: red;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

.video-banner .play-btn::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 17px;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* TOP SHAPE */
.shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* BOTTOM SHAPE */
.shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}


@media (max-width: 991px) {

  /* SECTION */
  .video-banner {
    border-radius: 0; /* avoid cut edges */
  }

  /* FIX VIDEO HEIGHT */
  .video-wrapper {
    aspect-ratio: 16/9;   /* better for mobile */
  }

  /* PLAY BUTTON SMALLER */
  .video-banner .play-btn {
    width: 60px;
    height: 40px;
  }

  .video-banner .play-btn::after {
    left: 22px;
    top: 12px;
    border-left: 14px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  /* SHAPES ADJUST */
  .shape-top {
    height: 40px;
    object-fit: cover;
  }

  .shape-bottom {
    height: 40px;
    object-fit: cover;
  }

}







.program-section {
  padding: 80px 0;
  /* background: #f8f9fb; */
}

/* TITLE */
.program-title {
  font-size: 36px;
  font-weight: 700;
  color: #18345f;
  margin-bottom: 20px;
}

/* TABS */
.tabs {
  margin-bottom: 30px;
}

.tab-btn {
  border: none;
  background: #eee;
  padding: 8px 20px;
  border-radius: 25px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #2d5be3;
  color: #fff;
}

/* CARD */
.program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;

  display: flex;          /* important */
  flex-direction: column; /* stack content */
  height: 100%;           /* full equal height */
}

.program-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2d5be3;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
}

/* CONTENT */
.content {
  padding: 15px;

  display: flex;
  flex-direction: column;
  flex-grow: 1;  /* fills remaining space */
}

.content h5 {
  font-weight: 600;
}

.content p {
  font-size: 14px;
  color: #777;
}

.price {
  font-weight: 700;
  margin-top: auto; /* THIS is the key */
}

.tab-item {
  display: none;
}


@media (max-width: 991px) {

  /* SECTION */
  .program-section {
    padding: 50px 15px;
  }

  /* TITLE */
  .program-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  /* TABS → SCROLLABLE */
  .tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    font-size: 13px;
    padding: 6px 14px;
    margin: 0;
    flex-shrink: 0;
  }

  /* GRID FIX */
  .program-section .row {
    gap: 15px;
  }

  /* CARD */
  .program-card {
    border-radius: 14px;
  }

  /* IMAGE */
  .img-box img {
    height: 160px;   /* reduce height */
  }

  /* CONTENT */
  .content {
    padding: 12px;
  }

  .content h5 {
    font-size: 16px;
  }

  .content p {
    font-size: 13px;
  }

  /* PRICE */
  .price {
    font-size: 15px;
  }

}









/* SECTION */
.award-section {
  padding: 80px 0;
  background: url("image/award.webp") no-repeat center;
  background-size: cover;
  position: relative;
}

/* OVERLAY */
.award-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88); /* smoother fade */
}

/* CONTENT ABOVE */
.award-section .container {
  position: relative;
  z-index: 2;
}

/* TITLE */
.award-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.award-title span {
  color: #f4a623;
}

/* GRID FIX (5 + 4 layout) */
@media (min-width: 992px) {

  .award-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* FIRST ROW (5 ITEMS) */
  .award-section .col-lg-4:nth-child(-n+5) {
    width: 20%;
  }

  /* SECOND ROW (4 ITEMS) */
  .award-section .col-lg-4:nth-child(n+6) {
    width: 25%;
  }
}

/* BOX */
.award-box {
  padding: 20px 15px;
  text-align: center;
  transition: 0.3s;
}

/* HOVER EFFECT (optional premium) */
.award-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.award-box img {
  width: 85px;
  margin-bottom: 15px;
}

/* TITLE TEXT */
.award-box h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.3;
}

/* SUBTEXT */
.award-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {

  .award-section {
    padding: 60px 15px;
  }

  /* GRID */
  .award-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px;
    justify-content: center; /* helps centering */
  }

  /* REMOVE BOOTSTRAP WIDTH */
  .award-section .row > div {
    width: 100%;
  }

  /* CENTER LAST ROW ITEMS */
  .award-section .row > div:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;     /* take full width */
    justify-self: center;    /* center it */
    max-width: 50%;          /* keep it visually centered */
  }

  /* BOX */
  .award-box {
    padding: 15px 10px;
    text-align: center;
  }

  /* IMAGE */
  .award-box img {
    width: 55px;
    margin-bottom: 10px;
  }

  /* TEXT */
  .award-box h5 {
    font-size: 13px;
  }

  .award-box p {
    font-size: 12px;
  }

}








/* SECTION WITH BACKGROUND IMAGE */
.career-new {
  padding: 80px 0;
  background: url("image/career-bg.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  color: #fff;
}


/* KEEP CONTENT ABOVE */
.career-new .container {
  position: relative;
  z-index: 2;
}

/* LEFT HEADING */
.career-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
}

/* CARD */
.career-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  height: 100%;
}

/* HOVER */
.career-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

/* ICON */
.career-card img {
  width: 45px;
  margin-bottom: 15px;
}

/* TITLE */
.career-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* TEXT */
.career-card p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}

@media (max-width: 991px) {

  /* SECTION */
  .career-new {
    padding: 60px 15px;
    text-align: center;
  }

  /* STACK ROW */
  .career-new .row {
    flex-direction: column;
    gap: 30px;
  }

  /* HEADING */
  .career-heading {
    font-size: 26px;   /* 🔥 reduce */
    line-height: 1.4;
    margin-bottom: 10px;
  }

  /* GRID FIX */
  .career-new .row > div {
    width: 100%;
  }

  /* CARDS GRID */
  .career-new .row .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
    gap: 15px;
  }

  /* CARD */
  .career-card {
    padding: 18px;
    border-radius: 12px;
  }

  /* ICON */
  .career-card img {
    width: 35px;
    margin-bottom: 10px;
  }

  /* TEXT */
  .career-card h5 {
    font-size: 14px;
  }

  .career-card p {
    font-size: 12px;
  }

}




/* SECTION */
.testimonial-section {
  padding: 80px 0;
  background: #f8f9fb;
}

/* FIX SWIPER WIDTH ISSUE */
.testimonialSwiper {
  width: 100%;
  overflow: hidden;
}

/* FORCE SLIDE WIDTH */
.swiper-slide {
  display: flex;
  justify-content: center;
}

.slide-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.testimonial-card {
  text-align: center;
}

/* TITLE */
.testimonial-title {
  font-size: 36px;
  font-weight: 700;
  color: #18345f;
}

.testimonial-text{
  color: #18345f;
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}

/* CARD */
.testimonial-card {
  text-align: center;
}

/* IMAGE CIRCLE */
.circle {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  border: 3px solid #f47923;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.testimonial-card h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #18345f;
}

.testimonial-card p {
  font-size: 14px;
  color: #777;
}

/* HOVER */
.testimonial-card:hover .circle {
  transform: scale(1.05);
}

/* SWIPER */
.testimonialSwiper {
  padding-bottom: 20px;
}

/* COMPANY LOGO */
.company-logo {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-logo img {
  height: 30px;        /* control logo size */
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}








.video-section .container2 {
  max-width: 1300px;
  margin: auto;
}

.video-title {
  font-size: 42px;
  font-weight: 700;
  color: #18345f;
  margin-bottom: 40px;
}

.video-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.video-title {
  font-size: 40px;
  font-weight: 700;
  color: #18345f;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16/9;
}

/* THUMB */
.video-card img {
  width: 100%;
  height: 100%;           
  object-fit: cover;         
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 50px;
  background: red;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 15px;
  border-left: 18px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* TEXT */
.video-text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}

.video-card img,
.video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 991px) {

  /* SECTION */
  .video-section {
    padding: 30px 15px;
  }

  /* CONTAINER */
  .video-section .container2 {
    max-width: 100%;
    padding: 0 10px;
  }

  /* TITLE */
  .video-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
  }

  /* GRID SPACING */
  .video-section .row {
    gap: 15px;
  }

  /* CARD */
  .video-card {
    border-radius: 12px;
  }

  /* PLAY BUTTON SMALLER */
  .play-btn {
    width: 50px;
    height: 35px;
  }

  .play-btn::after {
    left: 18px;
    top: 10px;
    border-left: 12px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  /* TEXT */
  .video-text {
    font-size: 14px;
    text-align: center;
  }

}







/* FOOTER BASE */
.footer-top {
  position: relative; /* needed */
  background: linear-gradient(90deg, #000 0%, #1e4b7a 50%, #000 100%);
  padding: 15px 20px;
  text-align: center;
}

/* TEXT */
.footer-top p {
  color: #fff;
  margin: 0;
}

/* LOGO RIGHT CORNER */
/* .meritto-logo {
  position: absolute;
  right: 20px;   
  top: 50%;
  transform: translateY(-50%);
  height: 50px;

  background: #fff;          
  padding: 6px 12px;        
  border-radius: 4px;       
}

.meritto-logo img {
  height: 22px;
  display: block;
} */


@media (max-width: 768px) {

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
  }

  /* .meritto-logo {
    position: static;
    transform: none;

    padding: 4px 8px;   
    border-radius: 4px;

    display: inline-block; 
  }

  .meritto-logo img {
    height: auto;
    width: 20px;   
    max-width: 100%;
    display: block;
  } */

}
