@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=Noto+Sans+Bengali:wght@100..900&family=Noto+Serif+Bengali:wght@100..900&display=swap");
:root {
  --primary-blue: #5567ff;
  --text-dark: #111111;
  --orange: #f04c23;
  --light-bg: #f7f4ec;
  --border-color: #b8ab8c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif Bengali", serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 64px 0;
}

.section-title {
  font-family: "Noto Serif Bengali", serif;
  font-size: 48px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #232c6a;
}

.section-subtitle {
  font-family: "Noto Serif Bengali", serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  color: #626262;
}

@media (max-width: 576px) {
  .section-padding {
    padding: 32px 0;
  }
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

.load-more-btn {
  padding: 16px 44px;
  border-radius: 12px;
  background-color: #fff;
  font-family: "Baloo Da 2", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #5468ff;
  border: none;
  display: block;
  width: fit-content;
  margin-inline: auto;

  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(84, 104, 255, 0.12);
}

.load-more-btn:hover {
  background-color: #5468ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(84, 104, 255, 0.25);
}

@media (max-width: 576px) {
  .load-more-btn {
    width: 100%;
  }
}

/* ======================
           NAVBAR
  ====================== */

.custom-navbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 6.5px 14%;
  border-bottom: solid 1px #e1e1e1;
  background-color: #fff;

  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #434343;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  color: #e64126;
}

.navbar-nav {
  column-gap: 20px;
}

.border-gradient-btn {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to left, #ff4443, #222fe9) border-box;
  font-family: system-ui;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.border-gradient-btn span {
  background: linear-gradient(to left, #ff4443, #222fe9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.border-gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 47, 233, 0.25);
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to right, #222fe9, #ff4443) border-box;
}

.border-gradient-btn:hover span {
  background: linear-gradient(to right, #222fe9, #ff4443);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-btn,
.register-btn {
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: BalooDa2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.login-btn {
  background-color: #e64126;
}

.login-btn:hover {
  background-color: #5468ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(84, 104, 255, 0.25);
}

.register-btn {
  background-color: #5468ff;
}

.register-btn:hover {
  background-color: #e64126;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(84, 104, 255, 0.25);
}

.right-buttons {
  gap: 14px;
}

.navbar-toggler {
  border: 1px solid #d8d8d8;
  padding: 5px 8px;
  box-shadow: none !important;
}

/* ======================
      MOBILE OVERLAY
====================== */

.menu-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-navbar {
  position: relative;
  z-index: 999;
}

/* ======================
           MOBILE
  ====================== */
@media only screen and (max-width: 1800px) {
  .custom-navbar {
    padding: 6.5px 11%;
  }
}

@media only screen and (max-width: 1700px) {
  .custom-navbar {
    padding: 6.5px 8%;
  }
}

@media only screen and (max-width: 1500px) {
  .custom-navbar {
    padding: 6.5px 4%;
  }
}

@media only screen and (max-width: 1280px) {
  .custom-navbar {
    padding: 6.5px 0;
  }
  .navbar-nav {
    column-gap: 8px;
  }
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 2.5px 20px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    height: 64px;
  }

  .navbar-nav {
    column-gap: 16px;
  }

  .right-buttons {
    flex-direction: column;
    align-items: flex-start !important;
    margin-top: 20px;
  }

  .login-btn,
  .register-btn {
    width: 100%;
    text-align: center;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 0 0 16px 16px;
    z-index: 999;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-brand img {
    height: 36px;
  }
  .nav-item {
    margin-left: 10px;
  }

  .border-gradient-btn {
    margin-top: 10px;
  }
  .right-buttons {
    flex-direction: row;
    align-items: flex-start !important;
    margin-top: 20px;
  }
  .login-btn,
  .register-btn {
    width: 50%;
    text-align: center;
    padding: 10px 10px;
  }
}

/* ======================
           HERO
  ====================== */

.hero-section {
  padding: 100px 0 50px;
  background: var(--light-bg);
  overflow: hidden;
}

.hero-title-small {
  font-family: "Noto Serif Bengali", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #0a0a0a;
}

.hero-title-medium {
  font-family: "Noto Serif Bengali", serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  color: #0a0a0a;
}

.hero-title-red {
  font-family: "Noto Serif Bengali", serif;
  font-size: 58px;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  color: #e64126;
}

.hero-description {
  font-family: "Noto Serif Bengali", serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #0a0a0a;
}

.hero-btn-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.hero-primary-btn {
  width: 50%;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  background-color: #5468ff;
  text-align: center;
  font-family: "Noto Serif Bengali", serif;
  transition: all 0.3s ease;
}

.hero-primary-btn:hover {
  background-color: #e64126;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(84, 104, 255, 0.25);
}

.hero-image {
  width: 100%;
}

/* ======================
           MOBILE
  ====================== */

@media (max-width: 991px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 32px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image-wrap {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-title-small {
    font-size: 18px;
    text-align: center;
  }

  .hero-title-medium {
    font-size: 19px;
    text-align: center;
  }

  .hero-title-red {
    font-size: 27px;
    text-align: center;
  }

  .hero-description {
    text-align: center;
    font-size: 16px;
  }

  .hero-btn-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
  }

  .hero-btn-wrap .hero-primary-btn {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }

  .hero-btn-wrap .hero-note {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }

  .hero-btn-wrap {
    gap: 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 260px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-title-small {
    font-size: 21px;
  }

  .hero-title-medium {
    font-size: 19px;
    text-align: center;
  }

  .hero-title-red {
    font-size: 27px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-primary-btn {
    font-size: 20px;
    border-radius: 10px;
  }

  .hero-note {
    font-size: 15px;
    border-radius: 12px;
  }
}

/* ======================
         Dream SECTION
======================= */

.dream-section {
  text-align: center;
  background-color: #fff;
}

.dream-section img {
  max-width: 400px;
  width: 1005;
}

.dream-section p {
  font-family: "Noto Serif Bengali", serif;
  margin-top: 32px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #454c7e;
}

@media (max-width: 767px) {
  .dream-section img {
    max-width: 226px;
    width: 1005;
  }

  .dream-section p {
    margin-top: 16px;
    font-size: 16px;
  }
}

/* =============== course section ========= 
  ====================================== */

.course-section {
  background-color: #f8f9fa;
}

.course-section .row {
  max-width: 1290px !important;
  margin: 0 auto;
}

.course-title {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 12px;
}

.course-subtitle {
  font-size: 22px;
  color: #4b4b4b;
  margin-bottom: 0;
  font-weight: 400;
}

/* =====================
       CARD
  ===================== */

.course-card {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.course-image {
  width: 100%;
  display: block;
}

.course-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.9) 60%,
    rgba(0, 0, 0, 0.3) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

.course-content .title-wrapper .title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}

.course-content .title-wrapper .subtitle {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

.tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.course-tag {
  font-family: "Noto Serif Bengali", serif;
  padding: 3px 7.5px;
  border-radius: 22.4px;
  border: solid 0.7px #e5e5e5;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

.course-btn {
  display: block;
  font-family: "Noto Serif Bengali", serif;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background-color: #5468ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.course-btn:hover {
  background-color: #e64126;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(84, 104, 255, 0.25);
}

@media (max-width: 767px) {
  .course-card {
    min-height: 500px;
  }
}

/* =========================
  subscription-section 
========================= */

.subscription-section {
  padding-top: 0;
  background-color: #f8f9fa;
}

.subscription-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.subscription-wrapper .subscription-card {
  display: block;
  background-image: url("../assets/images/subscription/card-GPA5-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 24px;
  border-radius: 12px;
  height: 340px;
  max-width: 236px;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.subscription-wrapper .subscription-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.subscription-wrapper .subscription-card .img-box {
  width: 188px;
  height: 188px;
}

.subscription-wrapper .subscription-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscription-wrapper .subscription-card h4 {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #354895;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .subscription-wrapper {
    gap: 16px;
  }
  .subscription-wrapper .subscription-card {
    max-width: 150px;
    padding: 16px 8px;
    height: 287px;
  }

  .subscription-wrapper .subscription-card .img-box {
    width: 136px;
    height: 136px;
  }
}

/* =========================
      rules-section
========================= */

.rules-section {
}

.rules-section .rules-wrpper {
  padding: 50px;
  border-radius: 24px;
  background-color: #f8f9fa;
}

.rules-section h4 {
  font-family: "Noto Serif Bengali", serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #232c6a;
  margin-bottom: 22px;
}

.rules-section ul {
  padding: 0;
  margin: 0;
}

.rules-section ul li {
  list-style: none;
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #0a0a0a;
  padding-bottom: 16px;
  border-bottom: 1px solid #bed3e6;
}

.rules-section ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rules-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../assets/icons/double-arrow-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 768px) {
  .rules-section .rules-wrpper {
    padding: 32px 16px;
  }

  .rules-section h4 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 18px;
  }
  .rules-section ul li {
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 16px;
  }
}

/* =========================
      VIDEO SECTION 
    =========================  */
.video-section {
  background-color: #f8f9fa;
}

.video-card {
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  padding: 16px 16px 8px;
  overflow: hidden;
  cursor: pointer;

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 6px 14px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: #bfbfbf;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.video-thumbnail img {
  width: 100%;
  display: block;
}

.play-btn {
  width: 88px;
  height: 88px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* border: none; */
  background: rgba(255, 255, 255, 0.22);
  /* backdrop-filter: blur(8px); */
  border: 2.8px solid #fff;
  color: white;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn .icon {
  width: 29px;
}

.video-time {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.video-content {
  padding: 16px 8px 8px;
}

.video-heading {
  margin-bottom: 6px;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  color: #434343;
  transition: all 0.3s ease-in-out;
}

.video-card:hover .video-heading {
  color: #5468ff;
}

/* =======================
       MOBILE
    ======================= */

@media (max-width: 991px) {
  .video-heading {
    font-size: 20px;
  }
  .video-time {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .video-thumbnail {
    border-radius: 16px;
  }

  .play-btn {
    width: 44px;
    height: 44px;
  }

  .play-btn .icon {
    width: 14px;
  }

  .video-time {
    font-size: 16px;
  }

  .video-heading {
    font-size: 16px;
  }
}

/* ---- video-modal ---  */

.video-modal {
  background: #000;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.video-modal video {
  width: 100%;
  display: block;
}

.video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background-color: white !important;
  opacity: 1;
  width: 38px;
  height: 38px;
}

/* =========================
      Reception Video SECTION 
    ========================= */
.reception-video-section {
  background-color: #354895;
}

.reception-video-section .section-title {
  color: #fff;
}

.reception-video-wrapper {
  margin: 34px 0;
  margin-bottom: 60px;
}

.reception-video-section .video-card {
  padding: 0;
  border: none;
  background-color: transparent;
  height: 227px;
}

.reception-video-section .video-card .video-thumbnail-img {
  min-height: 227px !important;
}

.reception-video-section .play-btn {
  background-color: #fff;
}

.reception-video-section .play-btn img {
  width: 50px;
}

@media (max-width: 768px) {
  .reception-video-wrapper {
    margin: 14px 0;
    margin-bottom: 32px;
  }
}

/* ============= Gallery Section ===========
======================================== */

.gallery-section {
  background-color: #fff;
}

/* Tabs */

.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  font-family: "Noto Sans Bengali", sans-serif;
  border: none;
  background-color: #f0f6f8;
  color: #454c7e;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s;
  padding: 13px 27px;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.gallery-tab:hover {
  background-color: #5468ff;
  color: #fff;
  transform: translateY(-2px);
}

.gallery-tab.active {
  background-color: #5468ff;
  color: #fff;
}

.gallery-carousel .owl-stage-outer {
  overflow: hidden;
}

.gallery-carousel .owl-item > div {
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.owl-prev,
.owl-next {
  width: 64px;
  height: 64px;
  border-radius: 50% !important;
  position: absolute;
  font-size: 32px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 13px 0 rgba(51, 111, 182, 0.09);
}

.owl-prev,
.owl-next {
  background: #5867ff !important;
  color: white !important;
}

.owl-prev.disabled,
.owl-next.disabled {
  background: white !important;
  color: #5867ff !important;
  opacity: 1 !important;
}

.owl-prev.disabled svg path,
.owl-next.disabled svg path {
  fill: #5867ff !important;
}

.owl-prev img,
.owl-next img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.owl-prev.disabled img,
.owl-next.disabled img {
  /* filter: none; */
  color: #5468ff;
}

.owl-prev {
  left: -30px;
}

.owl-next {
  right: -30px;
}

.owl-next img {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  /* Tabs */

  .gallery-tabs {
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
  }

  .gallery-tab {
    font-size: 12px;
    padding: 8px;
  }

  .gallery-tab.active {
    background-color: #5468ff;
    color: #fff;
  }

  .gallery-carousel .owl-stage-outer {
    overflow: hidden;
  }

  .gallery-carousel .owl-item > div {
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
  }
  .owl-nav {
    display: none;
  }

  .owl-dots {
    margin-top: 24px;
    display: flex;
    column-gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #f0f6f8;
    border-radius: 50%;
  }

  .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #f0f6f8;
    border-radius: 50%;
  }
  .owl-dots .owl-dot.active span {
    background-color: #5468ff;
  }

  .gallery-image {
    width: 100%;
    height: 211px;
    object-fit: cover;
    display: block;
  }
  .gallery-carousel .owl-item > div,
  .gallery-image {
    height: 211px;
  }
}

/* =========================
   NEWS SECTION
========================= */

.news-section {
  background-color: #f3f5f9;
}

/* CARD */

.news-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  padding-bottom: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;

  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.news-thumb {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 28px;
}

.news-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.news-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #232c6a;
  margin-bottom: 18px;
  font-family: "Noto Serif Bengali", serif;
}

.news-desc {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
  color: #454c7e;
  margin-bottom: 32px;
  flex-grow: 1;
  font-family: "Noto Sans Bengali", sans-serif;
}

.news-btn {
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #eceeff;
  color: #5468ff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s;
}

.news-btn:hover {
  background-color: #5468ff;
  color: white;
}

.owl-carousel {
  display: flex;
}

.news-section .load-more-btn {
  background-color: #5468ff;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.news-section .load-more-btn:hover {
  background-color: #e64126;
}

@media (max-width: 768px) {
  .news-section .section-title {
    font-size: 24px;
  }

  .news-card {
    padding: 32px 20px;
  }

  .news-thumb img {
    height: 170px;
  }

  .news-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .news-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .news-btn {
    font-size: 16px;
  }
  .news-section .load-more-btn {
    display: none;
  }

  .news-section .owl-dots .owl-dot.active span {
    background-color: #5468ff;
  }

  .news-section .owl-dots .owl-dot span {
    background-color: #fff;
  }
}

/* =========================
   help-section SECTION
========================= */

.help-section {
  background-size: cover;
}

.help-section h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.help-section .card {
  border-radius: 20px;
  border: none;
}

.help-section .card-body {
  background:
    url("../assets/images/help-center-3.png"),
    linear-gradient(
      45deg,
      hsla(195, 100%, 93%, 1) 24%,
      hsla(36, 100%, 87%, 1) 81%,
      hsla(36, 100%, 87%, 1) 100%
    );
  background-repeat: no-repeat;
  background-position:
    right 0 bottom -13px,
    left top;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#DAF6FF", endColorstr="#FFE5BE", GradientType=1);
  border-radius: 20px;
  padding: 0;
}

.help-section .card-body .text-area {
  padding: 30px;
  max-width: 671px;
}

.help-section .btn {
  padding: 10px 20px;
  width: 190px;
  margin-top: 14px;
}

.help-section .btn img {
  width: 14px;
  margin-right: 12px;
}

.help-section .help-center {
  width: 100%;
}

.help-section .help-center-image {
  width: 250px;
  float: right;
}

.help-section .term {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 160%;
  color: #454c7e;
  margin-top: 6px;
}

.help-section small {
  font-style: normal;
  font-size: 18px;
  color: #354895;
  border-left: 4px solid #ffb612;
  padding-left: 10px;
  margin-top: 16px;
  display: block;
  font-family: "Noto Serif Bengali", serif;
  line-height: 1.6;
  text-align: left;
}

.help-section small br {
  display: none;
}

small {
  font-style: normal;
  font-size: 16px;
  color: #354895;
  display: block;
}

.help-section p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #454c7e;
}

.help-section h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #354895;
}

.help-section p.short-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.help-section .small {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #454c7e;
}

.faq-section h3 {
  color: #354895;
}

@media (max-width: 768px) {
  .help-section .card-body {
    background: hsla(195, 100%, 93%, 1);
    background:
      url("../assets/images/help-center-3-mobile.png"),
      linear-gradient(
        45deg,
        hsla(195, 100%, 93%, 1) 24%,
        hsla(36, 100%, 87%, 1) 81%,
        hsla(36, 100%, 87%, 1) 100%
      );

    background-repeat: no-repeat;
    background-position:
      right 0 bottom -8px,
      left top;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#DAF6FF", endColorstr="#FFE5BE", GradientType=1);
    border-radius: 20px;
    padding: 0;
    background-size: contain;
  }
  .help-section .d-flex {
    display: contents !important;
  }
  .help-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .help-section .btn {
    float: none;
  }
  .help-section .small {
    float: none;
    text-align: center;
  }
  .help-section h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    color: #232c6a;
  }
  .help-section p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    text-align: left;
    padding: 0px 20px;
  }
  .help-section .small,
  small {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #c0187e;
  }

  .help-section h3 {
    font-size: 20px;
  }
  .help-section .card-body .text-area {
    margin-bottom: 160px;
  }

  .help-section .card-body .text-area {
    padding: 30px 0px;
  }

  .help-section .term {
    text-align: center;
  }
}
/*================================
 =======SPONSOR-section============
================================== */
.sponsor-section {
  background-color: #fff;
}
.sponsor-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sponsor-item {
  text-align: center;
}

.sponsor-item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #454c7e;
  margin-bottom: 16px;
}

.sponsor-box {
  width: 260px;
  height: 100px;
  flex-grow: 0;
  padding: 22.6px 69.7px 23.4px 69px;
  border-radius: 6px;
  border: solid 1px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-box img {
  max-width: 220px;
}

/* MOBILE */

@media (max-width: 768px) {
  .sponsor-item h4 {
    font-size: 18px;
  }

  .sponsor-box {
    height: 70px;
  }
}

/*=========================
       Award SECTION START 
  ============================*/

.award-section {
  padding-top: 0;
}

.award-section picture,
.award-section img {
  width: 100%;
  display: block;
}

/* ----- footer----  */

footer {
  padding: 32px 10px;
  background-color: #e4edf4;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
}

.footer-wrapper p {
  font-family: "Noto Sans Bengali", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: #454c7e;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    row-gap: 10px;
    padding: 0;
  }
}

/* =========================
   REGISTER PAGE
========================= */

.register-section {
  background-color: #f3f5f9;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  padding-top: 154px;
}

.register-card {
  max-width: 510px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.register-title {
  font-family: "Noto Serif Bengali", serif;
  text-align: center;
  color: #27357f;
  margin-bottom: 34px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #354895;
}

.form-label {
  font-family: "Noto Sans Bengali", sans-serif;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #343b6d;
  margin-bottom: 10px;
}

.form-label span {
  color: #ef3e5f;
}

.custom-input {
  height: 50px;
  padding: 14px 16px;
  border-radius: 8px;
  border: solid 1px #d0deef;
  font-size: 15px;
  box-shadow: none;
}

.custom-input:focus {
  border-color: #354895;
  box-shadow: none;
}

.custom-input::placeholder {
  font-family: "Noto Sans Bengali", sans-serif;
  color: #676ea0;
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
}

.custom-input:focus::placeholder {
  font-family: "Noto Sans Bengali", sans-serif;
  color: #676ea0;
  font-size: 14px;
  font-weight: 500;
}

.form-select {
  background-position: right 18px center;
}

.register-btn-main {
  width: 100%;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s;
  height: 56px;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #5468ff;
}

.register-btn-main:hover {
  background: #e64126;
}

.otp-count-down {
  display: block;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  margin-top: 4px;
  color: #676ea0;
}

@media (max-width: 768px) {
  .register-section {
    padding: 40px 16px;
    padding-top: 100px;
  }

  .register-card {
    padding: 16px;
  }

  .register-title {
    font-size: 24px;
  }

  .custom-input {
    height: 50px;
  }

  .register-btn-main {
    height: 50px;
    font-size: 16px;
    line-height: 1.3;
  }
}
