/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Sen", sans-serif; */
}

@font-face {
  font-family: "AvenirBlack" !important;
  src: url("external/Public_HTML/fonts/AvenirLTStd-Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "AvenirBlack", sans-serif !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

h1,
h2 {
  font-family: 'Baskerville', 'Georgia', serif !important;
}

.display-font {
  font-family: 'Philosopher', sans-serif !important;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

/* to nav */
.top-nav-row {
  display: flex;
  justify-content: space-between;
  /* background-image: url(images/top-nav-background.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px 20px;
  background-color: #564438;
  color: #debb62;
}

.top-nav-one p {
  color: #debb62;
  margin-bottom: 0;
  font-weight: 600;
  padding-left: 20px;
}

header .top-nav-row a {
  color: #debb62;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

header .phone {
  display: flex;
  gap: 10px;
}

header .nav-social-icons {
  display: flex;
  /* gap: 10px; */
  align-items: center;
}

header .nav-social-icons i {
  font-size: 18px;
  padding: 0 10px;
}

header .top-icons {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-right: 20px;
}

header .nav-social-icons .bar {
  border-right: 1px solid #debb62;
}

/* top nav ends */
/* bottom nav */
/* Container Styling */
header .search-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Container for search */
header .search-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Search Icon */
header .search-icon {
  position: relative;
  z-index: 2;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  padding: 5px 10px;
}

header .search-icon:hover {
  cursor: pointer;
  color: #2ea441;
  /* Optional hover effect */
}

/* Search Bar Styling */
header #search-bar {
  position: absolute;
  top: 185%;
  left: 0;
  transform: translateY(-50%);
  padding: 5px;
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  z-index: 1;
  display: none;
  /* Initially hidden */
}

/* Visible Search Bar */
header #search-bar.visible {
  display: block;
}

header .visit-btn {
  text-decoration: none;
  color: #fff;
  background-color: #9a3c2a;
  padding: 10px;
  border-radius: 10px;
  animation: text-scale 10s ease-out infinite;
}

.shop-mob {
  /* text-decoration: none !important;
  color: #fff !important; */
  background-color: #9a3c2a;
  padding: 5px 15px;
  border-radius: 10px;
}

.shop-mob a {
  text-decoration: none !important;
  color: #fff !important;
}

header .nav-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9a3c2a;
  font-size: 16px;
}

header .nav-data a {
  text-decoration: none;
}

header .bottom-nav {
  caret-color: #9a3c2a;
  background-color: #fff;
  margin: 10px 50px;
}

header .nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

header .nav-menu a {
  color: #9a3c2a !important;
  font-weight: 600;
}

header .bottom-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

header .profile {
  color: #000;
  padding: 8px 14px;
  font-size: 20px;
  background-color: #d9d9d9;
  border-radius: 80%;
}

header .nav-data .main-logo {
  width: 70px;
  height: auto;
}

header .nav-data .logo-arabic {
  width: 150px;
  height: auto;
  margin-right: 88px;
}

header .visit-btn:hover {
  /* background: linear-gradient(to right, #9A3C2A, #DEBB62); */
  color: #fff !important;
}

header .top-nav-row a:hover {
  color: #c2b7a4;
}

.menu-toggle {
  display: none;
}

header .close-menu {
  display: none;
}

/* --------------------- */
/* .nav-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
} */

/* .nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
} */

.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  background-color: #fff;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: max-content;
  flex-direction: column;
}

.nav-menu .dropdown-content a {
  padding: 10px;
  text-align: left;
  text-decoration: none;
}

.nav-menu .dropdown-content a:active {
  background-color: #564438;
  color: #debb62 !important;
}

.nav-menu .dropdown-content a:focus {
  background-color: #564438;
  color: #debb62 !important;
}

.nav-menu .dropdown:hover .dropdown-content {
  display: flex;
}

/* header ends */

@media (max-width: 768px) {
  header .top-nav-one {
    display: none;
  }

  header .bismi {
    display: none;
  }

  .top-nav-two {
    background-image: unset;
    background-color: unset;
    width: 100%;
  }

  header .top-icons {
    gap: 40px;
    margin-right: 0px;
    justify-content: end;
  }

  header .phone {
    display: none;
  }
}

/* Initially hidden nav menu */
/* Mobile View - Menu styles */
@media screen and (max-width: 768px) {
  header .nav-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  header .nav-menu.active {
    display: flex;
  }

  header .menu-toggle {
    display: block;
    font-size: 30px;
    color: #000;
    cursor: pointer;
  }

  header .bottom-nav {
    margin: 10px 20px;
  }

  header .nav-data .main-logo {
    width: 50px;
  }

  header .nav-data .logo-arabic {
    width: 130px;
    height: 40px;
    margin-right: 82px;
  }

  header .close-menu {
    display: block;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    text-align: right;
  }
}

/* header end */

/* ------------------- */
/* banner start */

.visit-btn-banner {
  text-decoration: none;
  color: #fff;
  /* background-color: #9A3C2A;color: #fff; */
  background-color: #9a3c2a;
  padding: 10px 20px;
  border-radius: 10px;
}

.visit-btn-banner:hover {
  color: #debb62;
}

.banner-content img {
  animation: text-scale 5s ease-out infinite;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 10px;
  text-align: center;
}

.carousel-caption {
  bottom: 6.25rem !important;
  margin: 0 60px;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.banner-content p {
  margin-bottom: 0;
  font-family: "Baskervville", serif;
}

.banner-content h1 {
  font-family: "Baskervville", serif;
  font-size: 58px;
  margin-bottom: 0;
}

.banner-content h2 {
  font-family: "Baskervville", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 40px;
}

.features {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------ */
.features-box {
  position: relative;
  top: -50px;
  width: 70%;
}

.features-box .last {
  /* background-image: url(images/background/quick-more-b.png); */
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 15px;
  padding: 20px;
  gap: 50px;
  background-color: #debb62;
  color: #9a3c2a;
}

.features-box .last img {
  /* background-color: #DEBB62; */
  /* border-radius: 100px; */
  padding: 8px;
}

.features-box .last p {
  font-size: 25px;
  color: #564438;
  font-weight: 700;
  margin-bottom: 0;
}

.features-box .last .donate-btn {
  text-decoration: none;
  color: #fff;
  background-color: #9a3c2a;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 22px;
  width: 24%;
  animation: text-scale 5s ease-out infinite;
  text-align: center;
}

.carousel-indicators [data-bs-target] {
  display: none !important;
}

/*  */

/*  .home-about*/
.home-about {
  background-image: url(images/background/dot-b.png);
  margin: 20px;
  background-position: left;
  background-repeat: no-repeat;
  /* position: fixed; */
  height: 80vh;
}

.row.about-data {
  position: relative;
  bottom: 500px;
}

.about-data h3 {
  font-size: 20px;
  font-weight: 700;
}

.about-data h4 {
  font-size: 42px;
  font-weight: 900;
}

.about-data .bismi-background {
  /* background-image: url(images/bismillah-2.png); */
  height: 10vh;
  background-repeat: no-repeat;
  position: absolute;
  left: 259px;
  overflow-x: hidden;
  top: -20px;
  overflow-x: hidden;
  width: 200px;
}

.about-data p {
  font-size: 18px;
  color: #000;
  /* font-weight: 600; */
  font-family: "Cabin", sans-serif;
  line-height: 35px;
}

.about-data .chairman-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}

.about-data .chairman-message .arrow {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}

.about-data .chairman-message .arrow p {
  color: #564438;
  margin-bottom: 0;
  line-height: 25px;
}

.about-data .chairman-message .arrow span {
  color: #9a3c2a;
}

.about-data .chairman-message img {
  padding: 10px;
}

.about-data .chairman-message p {
  font-size: 16px;
}

.about-data .chairman-message .arrow i {
  color: #debb62;
  background-color: #9a3c2a;
  padding: 10px 12px;
  border-radius: 50px;
  font-size: 32px;
}

.about-data .chairman-message .arrow i:hover {
  /* background-color: #9A3C2A;color: #fff; */
}

.about-data .last-p {
  font-size: 18px !important;
  font-family: "Philosopher", serif;
  margin-right: 40px;
}

/* --images- */
.about-data .images-about {
  padding: 20px;
}

.about-data .images-about img {
  width: 100%;
  /* margin-top: 100px; */
}

.badge-b {
  background-image: url(images/background/badge-b.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  bottom: 60px;
  right: 11px;
}

.badge-b p {
  margin-bottom: 0;
  padding: 15px;
  color: #fff;
}

.badge-b i {
  font-size: 22px;
}

.container.about-c {
  height: 60vh;
}

/* end */

@media screen and (max-width: 768px) {
  .banner {
    height: 60vh;
  }

  .banner .banner-content {
    margin: 20px;
    text-align: center;
  }

  .banner .banner-content h1 {
    font-size: 24px;
  }

  .banner .banner-content h2 {
    font-size: 12px;
    line-height: 25px;
  }

  .features-box .box-data {
    gap: 8px;
  }

  .features-box {
    top: -12px;
    padding: 10px;
  }

  .about-data .bismi-background {
    display: none;
  }

  .row.about-data {
    bottom: 550px;
  }

  .about-data .chairman-message {
    align-items: left;
    flex-direction: column;
  }

  .about-data .images-about img {
    width: 100%;
    margin-top: 0;
  }

  .badge-b {
    bottom: 46px;
    right: -1px;
  }

  .badge-b p {
    padding: 10px;
  }

  .about-data p {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
  }

  .about-data h4 {
    font-size: 28px;
    line-height: 35px;
  }

  .about-data .chairman-message p {
    font-size: 14px;
  }

  .about-data .chairman-message .arrow i {
    font-size: 24px;
  }
}

/* what we offee */
.what-offer {
  background-color: #DEBB62;
  height: 98vh;
}

.what-offer .offer {
  /* background-image: url(images/background/what-b.png); */
  height: 96vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.what-offer .offer .data {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
}

.what-offer .offer h4 {
  color: #9a3c2a;
  font-size: 22px;
  font-weight: 800;
}

.what-offer .offer h5 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.all-programmes {
  margin: 20px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
}

.all-programmes .programmes {
  background-color: #fff;
  /* background-image: url(images/background/programme-b.png); */
  background-repeat: no-repeat;
  background-position: left;
  background-position-y: bottom;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.all-programmes .programmes p {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

.read-more-btn {
  text-decoration: none;
  color: #fff;
  background-color: #9a3c2a;
  padding: 10px;
  border-radius: 0px 0 10px 10px;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.read-more-btn:hover {
  color: #fff;
  /* background-color: #9A3C2A;color: #fff; */
  background: #564438;
}

.all-programmes .programmes img {
  width: 85px;
  height: auto;
}

.experience .active-std {
  display: flex;
  align-items: center;
  gap: 20px;
}

.experience .active-std img {
  background-color: #debb62;
  padding: 10px;
  border-radius: 50px;
}

.experience .active-std img:hover {
  background: linear-gradient(to right, #fff, #fff);
}

.experience {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 63px;
}

.experience .experiences-all {
  background-color: #118844;
  background-image: url(images/background/lege-b.png);
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 80%;
  border-radius: 15px;
}

.experience .card-one {
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}

.experience .card-one h5 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 0;
  font-weight: 600;
}

.experience .card-one p {
  color: #fff;
  font-size: 26px;
  margin-bottom: 0;
  font-weight: 600;
}

.experience .card-two {
  background-color: #fff;
  border-top: 10px solid #debb62;
  border-radius: 12px 12px 0 0;
  border-bottom: 0;
  /* width: 39%; */
  width: 100%;
  padding: 20px;
  border-left: 3px solid #debb62;
  border-right: 3px solid #debb62;
}

.experience .card-two p {
  font-family: "Cabin", sans-serif;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  color: #564438;
}

.experience .legacy-two {
  font-family: "Cabin", sans-serif;
  font-size: 20px !important;
  text-align: center;
  font-weight: 600;
  color: #000 !important;
}

.experience .line {
  border-bottom: 5px solid #9a3c2a;
}

.experience .grid-star {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.experience .count {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}

.experience .count p {
  margin-bottom: 0;
  text-align: center;
}

.Our-Legacy {
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience .card-two .grid-star p {
  margin-bottom: 0;
  font-size: 20px;
}

.experience .card-two .grid-star .count p {
  margin-bottom: 0;
  font-size: 34px;
  font-weight: 600;
  font-family: poppins;
  color: #000 !important;
}

.experience .card-two .grid-star .count img {
  height: 56px;
  width: auto;
}

/* ------------------------ */
.hilights {
  background-color: #faf8f3;
  background-image: url(images/background/hilight-b.png);
  padding: 50px 0;
  background-position: center;
  background-repeat: no-repeat;
}

.hilights h4 {
  color: #debb62;
  text-align: center;
  font-size: 42px;
  font-weight: 900;
}

.hilights .our-hilights {
  margin: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

.hilights .our-hilights .high {
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  justify-content: space-between;
}

.hilights .our-hilights .high .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.hilights .our-hilights img {
  border-radius: 50%;
  height: 75px;
  width: 75px;
}

.hilights .our-hilights .high .content h5 {
  font-size: 24px;
  font-weight: 900;
}

.hilights .our-hilights .high .content p {
  font-size: 19px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
}

.hilights .our-hilights .h-read-more {
  text-decoration: none;
  color: #000;
  background-color: #debb62;
  padding: 10px;
  border-radius: 0px 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.hilights .our-hilights .h-read-more:hover {
  background-color: #9a3c2a;
  color: #fff;
  color: #fff;
  font-size: 16px;
  padding: 8px;
}

.hilights .views-all-btn {
  text-align: center;
}

.hilights .views-all-btn a {
  text-decoration: none;
  background-color: #debb62;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 20px;
}

.hilights .views-all-btn a:hover {
  background-color: #118844;
}

@media (max-width: 768px) {
  .all-programmes {
    margin: 10px;
    /* grid-template-columns: 1fr; */
    gap: 10px;
  }

  .hilights .our-hilights {
    margin: 20px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-data .images-about {
    display: none;
  }

  .what-offer {
    height: 66vh;
  }

  .experience {
    bottom: 60px;
  }

  .experience .experiences-all {
    flex-direction: column;
    align-items: center;
    width: 90%;
  }

  .experience .card-one {
    padding: 10px;
  }

  .experience .card-one h5 {
    font-size: 28px;
    text-align: center;
  }

  .experience .card-one p {
    font-size: 20px;
  }

  .experience .card-two {
    width: 100%;
    padding: 8px;
  }

  .experience .grid-star {
    gap: 5px;
  }

  .hilights h4 {
    font-size: 28px;
  }

  .all-programmes .programmes p {
    font-size: 14px;
  }

  .what-offer .offer h5 {
    font-size: 24px;
  }
}

/* ------------ */
.call-to-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

.call-to-action .start-deen {
  /* background-color: #9A3C2A;color: #fff; */
  background-color: #debb62;
  /* background-image: url(images/background/quick-more-b.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
}

.call-to-action .start-deen p {
  color: #564438;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 0;
}

.call-to-action .start-deen a {
  text-decoration: none;
  color: #fff;
  background-color: #9a3c2a;
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
}

.call-to-action .start-deen a:hover {
  /* background: linear-gradient(to right, #d0b120, #2ea441); */
}

/* ----------------------- */

/* Section Styles */
.staff-slider {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  background-image: url(images/background/staff-b.png);
  border-radius: 10px;
  padding: 0 100px;
  overflow: hidden;
  height: 97vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.staff-slider h2 {
  color: #9a3c2a;
  font-size: 38px;
  margin-top: 70px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Slider Styles */
.staff-slider .slider {
  display: flex;
  overflow: hidden;
}

.staff-slider .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.staff-slider .slides {
  flex: 1 0 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 20px;
}

.staff-image {
  width: 350px;
  height: 370px;
  border-radius: 10px;
  margin-right: 20px;
  border: 2px solid #ddd;
  object-fit: cover;
}

.staff-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-info h3 {
  font-size: 50px;
  font-weight: 900;
}

.staff-info .role {
  font-size: 26px;
  color: #debb62;
  margin: 10px 0;
  font-weight: 900;
}

.staff-info p {
  font-size: 18px;
  width: 54%;
  font-weight: 700;
  line-height: 38px;
}

/* --------------- */
.Our-Milestone {
  height: 940px;
  margin: 100px 0;
}

.Our-Milestone h4 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
}

.Our-Milestone img {
  width: 100%;
  padding: 0 50px;
}

/* ---Our Publications */
.publications {
  /* background-image: url(images/background/Publications-b.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px;
  position: relative;
  padding-bottom: 150px;
  background-color: #E6DDCE;
}

.publications h4 {
  font-size: 36px;
  text-align: center;
  font-weight: 800;
}

.publications .profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.publications .profile .pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 50px 0;
}

.grid-post {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
}

.grid-post .image-col img {
  border-radius: 10px 0px 0px 10px;
  width: 100%;
  height: 220px;
}

.publications .posts a {
  text-decoration: none;
  color: #000;
}

.publications .profile h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 800;
  font-family: "Cabin", sans-serif;
}

.publications .profile p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 800;
  font-family: "Cabin", sans-serif;
}

.publications .data-col {
  padding: 20px 20px 20px 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.publications .data-col p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 800;
  font-family: "Cabin", sans-serif;
}

.publications .data-col h6 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 800;
  font-family: "Cabin", sans-serif;
}

.publications .data-col .line {
  border-bottom: 1px solid #ccc;
  margin-right: 20px;
}

/* ----------------------- */
.last-call {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -50px;
  z-index: 10;
  /* right: 125px; */
  height: 0vh;
}

.last-call .last {
  /* background-image: url(images/background/quick-more-b.png); */
  background-color: #debb62;
  width: 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 15px;
  padding: 20px;
  gap: 50px;
  margin-top: 45px;
}

.last-call .last img {
  /* background-color: #DEBB62; */
  /* border-radius: 100px; */
  padding: 8px;
}

.last-call .last img:hover {
  background-color: #fff;
}

.last-call .last p {
  font-size: 26px;
  color: #564438;
  font-weight: 700;
  margin-bottom: 0;
}

.last-call .last .donate-btn {
  text-decoration: none;
  color: #fff;
  background-color: #9a3c2a;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 22px;
  animation: text-scale 5s ease-out infinite;
}

.last-call .last .donate-btn:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* ----------------- */
footer {
  /* background-image: url(images/background/footer-bg.png); */
  /* background-color:#473930; */
  background: linear-gradient(to bottom right, #120d0a, #664b37);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

footer .social-icons img {
  width: 30px;
  height: auto;
}

footer .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

footer .foot-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  /* justify-items: self-start; */
  margin-bottom: 60px;
}

footer a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-family: "AvenirBlack", sans-serif !important;
  text-align: center;
}

footer a:hover {
  /* background-color: #9A3C2A;color: #fff; */
  background: #debb62;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer .card-f {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* align-items: center; */
  /* justify-content: center; */
}

footer .foot-logo {
  width: 80px;
  height: auto;
  padding-bottom: 20px;
  animation: text-scale 5s ease-out infinite;
}

footer .card-f h5 {
  color: #fff;
  /* font-family: 'Cabin', sans-serif; */
  text-align: center;
}

footer .card-f .line {
  border-bottom: 2px solid #debb62;
  margin: 0 55px;
}

footer .foot-content {
  display: flex;
  padding-top: 70px;
  gap: 50px;
}

footer .foot-twoline {
  border-top: 1px solid #debb62;
}

footer .p1 {
  color: #fff;
  font-size: 16px;
  font-family: "Cabin", sans-serif;
  /* text-align: center; */
  margin-bottom: 0;
}

footer .p2 {
  color: #fff;
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  /* text-align: center; */
  margin-bottom: 0;
}

footer .foot-two {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

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

  footer .foot-content {
    padding-top: 50px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .post-one {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 20px 0;
  }

  .publications {
    padding: 10px;
    /* height: 125vh; */
  }

  .Our-Milestone img {
    padding: 0 20px;
  }

  .last-call .last {
    display: none;
  }

  .call-to-action .start-deen {
    display: none;
  }

  .staff-slider {
    display: none;
  }

  .call-to-action {
    margin: 0px 0;
  }

  .publications .profile .pro img {
    width: 30px;
    height: auto;
  }

  .publications .profile h5 {
    font-size: 14px;
  }

  .publications .data-col h6 {
    font-size: 14px;
  }

  .publications .data-col p {
    font-size: 12px;
  }

  .publications .data-col {
    padding: 10px 20px 10px 5px;
    gap: 5px;
  }

  .Our-Milestone {
    margin: 50px 0;
  }

  .Our-Milestone h4 {
    font-size: 28px;
  }

  .publications h4 {
    font-size: 28px;
  }

  .hilights .our-hilights .high .content p {
    font-size: 14px;
    margin-bottom: 0;
  }

  footer a {
    font-size: 13px;
  }

  footer .card-f h5 {
    font-size: 18px;
  }
}

@keyframes text-scale {
  0% {
    transform: scale(0.6);
  }

  25% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(0.8);
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .top-nav-one p {
    font-size: 12px;
    padding-left: 10px;
  }

  header .nav-menu {
    gap: 20px;
  }

  header .nav-menu a {
    font-size: 14px;
  }

  .banner .banner-content {
    margin: 0 150px;
  }

  .banner .banner-content h1 {
    font-size: 54px;
  }

  .banner .banner-content h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .features-box .box-data {
    gap: 30px;
  }

  .features-box .data-one p {
    font-size: 14px;
  }

  .data-one img {
    padding: 10px;
  }

  .features-box {
    padding: 30px 30px;
  }

  .about-data p {
    font-size: 16px;
  }

  .badge-b {
    bottom: 38px;
    right: 0px;
  }

  .about-data .chairman-message p {
    font-size: 14px;
  }

  .what-offer .offer {
    height: 92vh;
  }

  .what-offer .offer h5 {
    font-size: 30px;
  }

  .all-programmes {
    gap: 50px;
  }

  .all-programmes .programmes p {
    font-size: 20px;
  }

  .all-programmes .programmes img {
    width: 35px;
  }

  .hilights .our-hilights .high .content {
    gap: 10px;
    padding: 15px 15px 0px 15px;
  }

  .hilights .our-hilights .high .content p {
    font-size: 16px;
  }

  .hilights .our-hilights .high .content h5 {
    font-size: 18px;
  }

  .hilights .our-hilights {
    gap: 30px;
  }

  /*  */
  .staff-slider {
    height: 103vh;
  }

  .staff-image {
    height: 350px;
  }

  .staff-info h3 {
    font-size: 36px;
  }

  .staff-info p {
    font-size: 14px;
  }

  .last-call .last p {
    font-size: 20px;
  }
}

@media (min-width: 1201px) {
  .all-programmes {
    gap: 30px;
  }

  .what-offer .offer {
    height: 98vh;
  }

  .what-offer .offer h5 {
    font-size: 32px;
  }

  .all-programmes .programmes {
    gap: 15px;
  }

  .all-programmes .programmes p {
    font-size: 28px;
  }

  .all-programmes .programmes img {
    width: 75px;
  }

  .staff-info p {
    font-size: 16px;
  }
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Ensure perfect vertical centering */
  background: #debb62;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  /* font-size: 31px; */
  cursor: pointer;
  z-index: 10;
  /* Ensure buttons are above the slider */
  opacity: 0.5;
}

.nav-btn:hover {
  background-color: #9a3c2a;
  color: #fff;
  color: #fff;
}

.prev-btn {
  left: 20px;
  /* Adjust for consistent spacing from the left */
}

.next-btn {
  right: 20px;
  /* Adjust for consistent spacing from the right */
}

.nav-btn i {
  font-size: 14px;
}

@media (min-width: 769px) and (max-width: 997px) {
  .top-nav-one p {
    display: none;
  }

  header .nav-menu {
    gap: 20px;
  }

  header .nav-menu a {
    font-size: 12px;
  }

  header .bottom-icons {
    gap: 10px;
  }

  header .bottom-nav {
    margin: 15px;
  }

  header .nav-data a {
    font-size: 13px;
  }

  header .nav-data .main-logo {
    width: 50px;
  }

  header .nav-data .logo-arabic {
    width: 130px;
    height: 40px;
    margin-right: 82px;
  }

  .banner .banner-content {
    margin: 0 80px;
  }

  .banner .banner-content h1 {
    font-size: 48px;
  }

  .banner .banner-content h2 {
    font-size: 18px;
  }

  .features-box {
    padding: 20px;
  }

  .features-box .box-data {
    gap: 20px;
  }

  .features-box .data-one p {
    font-size: 14px;
  }

  .data-one img {
    padding: 10px;
    width: 45px;
  }

  .features-box {
    width: 90%;
  }

  .about-data .images-about {
    display: none;
  }

  .all-programmes {
    margin: 20px 50px;
    gap: 20px;
  }

  .what-offer .offer h5 {
    font-size: 26px;
  }

  .all-programmes .programmes p {
    font-size: 20px;
  }

  .experience .experiences-all {
    width: 90%;
  }

  .experience .card-one p {
    font-size: 22px;
  }

  .experience .card-one h5 {
    font-size: 28px;
  }

  .hilights .our-hilights {
    margin: 40px;
    gap: 20px;
  }

  .hilights .our-hilights .high .content p {
    font-size: 14px;
  }

  .hilights .our-hilights .high .content h5 {
    font-size: 20px;
  }

  .hilights .our-hilights .high .content {
    gap: 10px;
    padding: 15px 15px 0px 15px;
  }

  .call-to-action .start-deen p {
    font-size: 20px;
  }

  .call-to-action .start-deen a {
    font-size: 16px;
  }

  .staff-image {
    height: 300px;
  }

  .staff-info h3 {
    font-size: 24px;
  }

  .staff-info p {
    font-size: 14px;
    line-height: 35px;
  }

  .staff-info .role {
    margin: 0;
  }

  .staff-slider {
    padding: 0 66px;
  }

  .publications {
    padding: 20px;
    padding-bottom: 75px;
  }

  .post-one {
    gap: 20px;
  }

  .last-call .last {
    gap: 25px;
  }

  .last-call .last p {
    font-size: 16px;
  }

  .last-call .last img {
    width: 60px;
  }

  .last-call .last .donate-btn {
    font-size: 18px;
  }

  footer .foot-data {
    gap: 20px;
  }

  footer .foot-content {
    gap: 20px;
  }

  footer .card-f h5 {
    font-size: 16px;
  }

  footer a {
    font-size: 13px;
  }

  footer .p2 {
    font-size: 12px;
  }

  footer .p1 {
    font-size: 14px;
  }
}

/*  ----------------------------------------------------------------------*/
/* about---------------------------------------------------------------- */
.about .a-banner {
  background-image: url(images/banner/about-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-banner h2 {
  text-align: center;
  font-size: 46px;
  color: #fff;
  z-index: 10;
  border-bottom: 3px solid #debb62;
}

.about .history {
  margin: 50px 0;
}

.about .history .data {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.about .history h2 {
  color: #9a3c2a;
  font-weight: 800;
}

.about .history h3 {
  color: #debb62;
  font-size: 24px;
  font-weight: 900;
}

.about .history p {
  font-size: 16px;
  line-height: 35px;
}

.about .history .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .history .image img {
  width: 60%;
  border-radius: 20px;
  border-bottom: 8px solid #debb62;
  border-left: 8px solid #debb62;
}

.p-message {
  /* background-image: url(images/background/principle-message.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 0;
}

.p-message .data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.p-message .data h2 {
  color: #9a3c2a;
  font-weight: 700;
  text-align: center;
}

.p-message .data .arabic {
  font-size: 24px !important;
  text-align: center;
  line-height: 45px;
}

.p-message .data .english {
  /* font-weight: 700; */
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}

.Beginnings {
  /* background-image: url(images/background/year-b.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about .Beginnings h2 {
  color: #9a3c2a;
  font-weight: 700;
  /* text-align: center; */
  margin: 20px 0;
}

.about .Beginnings p {
  font-size: 16px;
  line-height: 35px;
}

.about .Beginnings img {
  width: 100%;
  height: auto;
}

.about video {
  border: 5px solid #debb62;
  border-radius: 20px;
}

.mission {
  margin: 50px 0;
}

.mission h2 {
  color: #9a3c2a;
  font-weight: 700;
  /* text-align: center; */
  margin-bottom: 5px;
  font-size: 24px;
}

.mission p {
  font-size: 16px;
  line-height: 33px;
}

.mission .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission .image img {
  width: 70%;
}

.about video {
  margin: 20px 0;
}

.s-staff .all-staff {
  background-color: #eee6d9;
  padding-top: 100px;
}

.s-staff .all-staff .staff-one {
  padding-bottom: 50px;
}

.s-staff .all-staff .staff-one .image img {
  width: 350px;
  height: 350px;
  border-radius: 100%;
  border: 5px solid #debb62;
}

.s-staff .all-staff .staff-one h2 {
  color: #564438;
  font-size: 24px;
  font-family: "Philosopher", serif;
  font-weight: 700;
}

.s-staff .all-staff .staff-one h3 {
  font-weight: 800;
  text-align: left;
  background: linear-gradient(to right, #9a3c2a, #debb62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Philosopher", serif;
  font-size: 20px;
}

.s-staff .all-staff .staff-one p {
  color: #333;
  line-height: 40px;
  font-family: "Cabin", sans-serif;
  text-align: left;
  font-size: 16px;
}

.s-staff .all-staff .data {
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}

.s-staff .all-staff .staff-one .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-staff .all-staff .staff-two img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  border: 5px solid #debb62;
}

.s-staff .all-staff .staff-two {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 100px;
}

.s-staff .all-staff .staff-hod {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  padding: 20px;
}

/* #readMoreContent {
    display: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

#readMoreContent.show {
    max-height: 500px;
    opacity: 1;
} */

.s-staff button {
  border: none;
  background-color: transparent;
  color: #debb62;
}

.s-staff .all-staff .hover-content h3 {
  color: #107c3e;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
}

.s-staff .all-staff p {
  color: #333;
  line-height: 30px;
  font-family: "Cabin", sans-serif;
  text-align: center;
  font-size: 14px;
}

.s-staff .all-staff .staff-hod img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  border: 5px solid #debb62;
}

.s-staff .all-staff .staff-hod.bottom {
  padding: 100px !important;
}

.s-staff h4 {
  text-align: center;
  color: #9a3c2a;
  padding: 80px 0;
  font-size: 30px;
}

.s-staff .all-staff .staff-arabic img {
  width: 230px;
  height: 230px;
  border-radius: 100%;
  border: 5px solid #debb62;
}

.s-staff .all-staff .staff-arabic {
  padding: 20px;
}

.s-staff .all-staff .hover-content h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
  line-height: 25px;
}

.s-staff .all-staff .staff-arabic {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.Madrasah {
  background-color: #fff;
}

.Madrasah-Management {
  position: relative;
  width: 370px;
  height: auto;
  overflow: hidden;
  /* Ensures image scaling stays within the container */
}

/* Image styling */

/* .hover-content {
    position: absolute;
    top: 0;
    left: 65px;
    width: 250px;
    height: 250px;
    background-color: rgb(0 0 0 / 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    border-radius: 100%;
} */

.Madrasah-Management:hover .card-image {
  transform: scale(1.1);
}

.Madrasah-Management:hover .hover-content {
  opacity: 1;
}

.Madrasah-Management img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  border: 5px solid #debb62;
  background-color: #ffc550;
}

.Madrasah-Management {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.comitte {
  margin-bottom: 50px;
}

.Madrasah .hover-content p {
  color: #fff;
  line-height: 25px;
  font-family: "Cabin", sans-serif;
  text-align: center;
  text-transform: capitalize;
  font-size: 16px;
}

.Madrasah .hover-content h5 {
  color: #fff;
  line-height: 30px;
  font-family: "Cabin", sans-serif;
  text-align: center;
  text-transform: capitalize;
  font-size: 18px;
}

.Madrasah h2 {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.Madrasah h3 {
  background: linear-gradient(to right, #debb62, #9a3c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}

.Madrasah h3 {
  font-size: 20px;
}

.s-staff .all-staff .staff-arabic.admin img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  border: 5px solid #debb62;
}

.all-partners .partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 80px 0;
}

.all-partners .partners img {
  width: 280px;
  height: auto;
}

.all-partners h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin: 100px 0;
  background: linear-gradient(to bottom, #9a3c2a, #debb62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/*  */

/* Slider */

.slick-slide {
  margin: 0px 35px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin: 50px 0;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* supports */
.supports {
  margin: 100px 0;
}

.supports .image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.supports .image img {
  width: 300px;
}

.supports p {
  font-size: 20px;
  line-height: 42px;
  /* text-align: center; */
}

.supo {
  /* background-image: url(images/background/supportes-b.png); */
  background-color: #f2eddf;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px;
}

.supo h2 {
  margin: 50px 0;
}

/* awards */
.awards {
  background-image: url(images/banner/awards-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards h2 {
  text-align: center;
  font-size: 36px;
  color: #fff;
  z-index: 10;
  border-bottom: 2px solid #debb62;
}

.awards-and-recoganisation {
  margin-top: 100px;
}

.awards-and-recoganisation .one h2 {
  background: linear-gradient(to left, #9a3c2a, #debb62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 26px;
}

.awards-and-recoganisation .one h3 {
  font-size: 22px;
  line-height: 40px;
  font-weight: 800;
}

.awards-and-recoganisation .one p {
  font-size: 16px;
  line-height: 32px;
}

.awards-and-recoganisation .one .read-more {
  text-decoration: none;
  color: #fff;
  background-color: #9a3c2a;
  padding: 10px 20px;
  border-radius: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

.awards-and-recoganisation .one .data {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-direction: column;
}

.awards-and-recoganisation .one img {
  width: 90%;
  border-radius: 20px;
  border-right: 5px solid #debb62;
  border-bottom: 5px solid #debb62;
}

.awards-and-recoganisation .one .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-and-recoganisation .one {
  margin-bottom: 150px;
}

/* ------------------- */
.Demographics {
  background-image: url(images/background/Demographics-b.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 30px 0;
}

.Demographics .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Demographics .im-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.Demographics .image img {
  width: 100%;
  height: auto;
  position: relative;
  top: -115px;
}

.Demographics-btn {
  text-decoration: none;
  color: #fff;
  background-color: #debb62;
  padding: 10px 20px;
  border-radius: 30px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  width: fit-content;
  position: absolute;
}

.Demographics ul li {
  color: #fff;
  line-height: 32px;
  font-size: 15px;
}

.Demographics .data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.awards-and-recoganisation .today h4 {
  margin: 20px 0;
  font-size: 28px;
}

.awards-and-recoganisation .today {
  margin: 100px 0;
}

.awards-and-recoganisation .today p {
  font-size: 16px;
  line-height: 35px;
}

.awards-and-recoganisation .today .images img {
  width: 90%;
  border-radius: 20px;
  border-right: 5px solid #debb62;
  border-bottom: 5px solid #debb62;
}

.awards-and-recoganisation .today .images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-and-recoganisation .today-two .images img {
  width: 85%;
  border-radius: 20px;
  border-left: 5px solid #debb62;
  border-bottom: 5px solid #debb62;
}

.awards-and-recoganisation .today-two p {
  font-size: 16px;
  line-height: 35px;
}

.six-p {
  font-size: 18px !important;
  line-height: 45px;
  background-color: #9a3c2a;
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.awards-and-recoganisation .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 100px 0;
}

.awards-and-recoganisation .cards .card-1 {
  color: #fff;
  width: 40%;
  height: 300px;
  border-radius: 30px;
  padding: 30px;
  background-image: url(images/background/card-b.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #564438;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.awards-and-recoganisation .cards .card-1 h5 {
  font-size: 48px;
  font-weight: 900;
}

.awards-and-recoganisation .cards .card-1 p {
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  font-weight: 900;
}

.icons-img {
  width: 28px;
  margin-right: 5px;
}

.fetured {
  display: flex;
  background-image: url(images/background/vision-b.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 60px;
  border-radius: 20px !important;
  gap: 50px;
}

.fetured .vi-img {
  width: 147px !important;
  border-radius: 100% !important;
  border: 3px solid #debb62 !important;
}

.fetured h4 {
  font-size: 28px;
  color: #debb62;
  margin: 0 0 !important;
  padding-bottom: 15px;
  font-weight: 900;
}

.fetured a {
  color: #fff !important;
  /* text-decoration: none; */
  font-size: 20px !important;
}

.today .data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.waht {
  background-image: url(images/background/what-ba.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 50px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.waht h5 {
  text-align: center;
  font-size: 32px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.waht p {
  color: #fff;
  text-align: center;
  padding: 0 20px;
  line-height: 36px;
}

.apple-logo {
  display: flex;
  align-items: start;
  justify-content: center;
}

.apple-logo img {
  width: 280px;
}

.apple-logo {
  /* background-image: url(images/masjid.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 38vh;
}

.awards-and-recoganisation .today.what {
  margin: 0 0px !important;
}

.awards-and-recoganisation a {
  color: #000;
}

.awards-and-recoganisation a:hover {
  color: #118844;
}

.form-check-input:checked {
  background-color: #debb62 !important;
  border-color: #dbb861 !important;
}

@media (max-width: 768px) {
  .about .a-banner {
    height: 25vh;
  }

  .about .a-banner h2 {
    font-size: 26px;
  }

  .p-message {
    padding: 50px 0;
  }

  .s-staff .all-staff {
    padding-top: 50px;
  }

  .s-staff .all-staff .staff-one .image img {
    width: 200px !important;
    height: 200px !important;
  }

  .s-staff .all-staff .staff-two {
    padding: 20px;
  }

  .s-staff .all-staff .staff-hod.bottom {
    padding: 20px !important;
  }

  .s-staff .all-staff h2 {
    text-align: center;
    font-size: 12px;
    line-height: 22px;
  }

  .all-partners h2 {
    margin: 35px 0;
  }

  .all-partners .partners {
    margin: 0px 0;
    gap: 20px;
  }

  .supports .image img {
    width: 150px !important;
    height: auto !important;
  }

  .awards {
    height: 15vh;
  }

  .awards h2 {
    font-size: 26px;
  }

  .awards-and-recoganisation {
    margin-top: 50px;
  }

  .awards-and-recoganisation .one .image {
    margin-top: 30px;
  }

  .Demographics .image img {
    width: 80%;
    top: -46px;
  }

  .awards-and-recoganisation .today {
    margin: 20px 0;
  }

  .awards-and-recoganisation .today .images img {
    margin-bottom: 20px;
  }

  .awards-and-recoganisation .today-two .images img {
    margin-bottom: 20px;
    width: 100%;
  }

  .awards-and-recoganisation .today .images img {
    width: 100%;
  }

  .awards-and-recoganisation .cards {
    margin: 20px 0;
  }

  .awards-and-recoganisation .cards .card-1 {
    width: 100%;
  }

  .fetured {
    padding: 20px;
    gap: 10px;
  }

  .awards-and-recoganisation .today h4 {
    font-size: 18px;
  }

  .fetured .vi-img {
    width: 120px !important;
  }

  .fetured a {
    font-size: 16px !important;
  }

  .waht {
    padding: 15px 0px;
    margin: 15px;
  }

  .apple-logo {
    height: 26vh;
  }

  .nav-menu .dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-menu .dropdown-content a {
    text-align: center;
    background-color: #564438;
    color: #debb62 !important;
  }

  .nav-menu .dropdown-content a:active {
    background-color: #debb62;
    color: #9a3c2a !important;
  }
}

/* Curriculum & Syllabus */
.Curriculum {
  background-image: url(images/banner/programm-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Curriculum h2 {
  text-align: center;
  font-size: 46px;
  color: #fff;
  z-index: 10;
  border-bottom: 3px solid #debb62;
}

.sylabus {
  background-color: #fef8e4;
  margin: 50px 0;
  padding: 50px;
}

.sylabus h3 {
  text-align: center;
  background-color: #9a3c2a;
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sylabus p {
  font-size: 16px;
  line-height: 36px;
  text-align: justify;
  font-family: "Cabin", sans-serif;
}

.Programmes h3 {
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  /* margin-bottom: 80px; */
  line-height: 50px;
  font-family: "Cabin", sans-serif;
}

.Programmes .primary {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Programmes {
  /* background-image: url(images/background/footer-bg.png); */
  background-color: #b1a185;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 41px 0px;
}

.Programmes .all-programmes {
  margin: 20px 0px;
  gap: 50px;
}

.Programmes .read-more-btn {
  color: #fff;
  background-color: #9a3c2a;
  color: #fff;
}

.Programmes .read-more-btn:hover {
  color: #fff;
  /* background-color: #9A3C2A;color: #fff; */
  background: #564438;
}

.sow {
  margin: 100px 0;
}

.sow .scheme {
  border: 3px solid;
  border-image-source: linear-gradient(to right, #9a3c2a, #debb62);
  border-image-slice: 1;
  padding: 50px;
  border-radius: 10px 1px 10px 1px;
  background-color: #fffbef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.work h5 {
  text-align: center;
  background-color: #9a3c2a;
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
}

.work a {
  color: #000;
  font-size: 32px;
  margin-bottom: 0;
  text-decoration: none;
}

.work a:hover {
  color: #ffc550;
}

/* School Calendar 
 */
.calender {
  margin: 100px 0;
}

.calender h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 80px;
  color: #9a3c2a;
}

.calender .today {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calender .today img {
  width: 100%;
}

/* stem */
.stem {
  background-color: #E6DDCE;
  /* background-image: url(images/background/supportes-b.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* margin: 100px 0; */
  padding: 80px 0;
  border-radius: 20px;
}

.stem h3 {
  text-align: center;
  color: #9a3c2a;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 50px;
}

/* table */
.stem-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 50px;
}

.stem-table th {
  background-color: #debb62;
  color: white;
  padding: 10px;
  border: 3px solid #fff;
  width: 150px;
  /* font-size: 14px; */
  /* font-family: 'Cabin', sans-serif; */
  height: 50px;
}

.stem-table td {
  padding: 10px;
  border: 3px solid #fff;
  background-color: #faf7f287;
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  height: 60px;
}

.stem-table .level {
  background-color: #564438;
  color: white;
  font-weight: bold;
}

.stem-table .highlight {
  background-color: #ffb6068f;
  font-weight: bold;
  /* color: #fff; */
}

.stem span {
  color: #debb62;
  font-size: 22px;
  font-weight: 900;
}

.stem .par {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
}

.course-outline {
  margin: 50px 0;
}

.course-outline .outline .primary {
  border: 2px solid #564438;
  border-radius: 20px 0 20px 0;
  padding: 20px;
  background-color: #ffffff78;
  /* background-image: url(images/background/programme-b.png); */
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: bottom;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  height: 330px;
}

.course-outline .outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 100px;
}

.course-outline .outline .primary h5 {
  text-align: center;
  background: linear-gradient(to left, #564438, #9a3c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 900;
}

.course-outline .outline .primary h6 {
  color: #debb62;
  font-weight: 900;
  font-size: 20px;
}

.course-outline .outline .primary p {
  line-height: 32px;
  text-align: left;
}

.course-outline .outline .primary p.soft {
  font-size: 20px;
  background: linear-gradient(to top, #9a3c2a, #f1d175);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  margin-bottom: 0;
}

.course-outline .outline .primary p.soft.will {
  margin-bottom: 10px;
}

.course-outline .outline .primary a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.course-outline .soft-name {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-outline .primary.p-six {
  height: 590px !important;
  width: 88% !important;
}

/* secondary */
.secondary .sec-outline {
  text-align: center;
  background: linear-gradient(to bottom, #564438, #debb62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
}

.secondary .sec-discription {
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.course-outline .secondary .second {
  border: 2px solid #564438;
  border-radius: 20px 0 20px 0;
  padding: 20px;
  background-color: #ffffff78;
  /* background-image: url(images/background/programme-b.png); */
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: bottom;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  height: 730px;
  width: 47%;
}

.course-outline .secondary .second h5 {
  text-align: center;
  background: linear-gradient(to left, #333, #9a3c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 900;
}

.course-outline h6 {
  color: #debb62;
  font-weight: 900;
  font-size: 20px;
}

.course-outline .secondary .second p {
  line-height: 32px;
}

.course-outline p.soft {
  font-size: 20px;
  background: linear-gradient(to top, #9a3c2a, #debb62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  margin-bottom: 0;
}

.course-outline .secondary .second p.soft.will {
  margin-bottom: 10px;
}

.course-outline a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.course-outline .second.p-six {
  height: 590px !important;
  width: 88% !important;
}

.course-outline .outline-s {
  margin: 80px 0;
  gap: 40px;
}

.course-outline .secondary .second.six {
  height: 460px;
}

.course-outline .outline-s {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 100px;
}

.course-outline .sp {
  text-align: center;
  font-size: 22px;
}

.course-outline .Special-Programme .programme {
  border: 2px solid #564438;
  border-radius: 20px 0 20px 0;
  padding: 40px 20px;
  background-color: #ffffff78;
  /* background-image: url(images/background/programme-b.png); */
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: bottom;
  margin: 50px 0;
}

.course-outline .Special-Programme .programme h5 {
  text-align: center;
  background: linear-gradient(to left, #333, #564438);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 40px;
  font-weight: 900;
}

.collumn-two {
  border-left: 5px solid transparent;
  /* Transparent border to use border-image */
  border-image: linear-gradient(to top, #9a3c2a, #debb62);
  border-image-slice: 1;
  /* Ensures the gradient covers the border evenly */
}

.course-outline .Special-Programme .programme h6 {
  color: #9a3c2a;
  font-weight: 900;
  font-size: 24px;
}

.stud {
  color: #9a3c2a;
  font-weight: 900;
  font-size: 20px;
}

.course-outline .Special-Programme .programme span {
  font-size: 58px;
  font-weight: 900;
}

.course-outline .Special-Programme .programme ol li {
  margin-bottom: 15px;
}

.course-outline .Special-Programme .have {
  color: #9a3c2a;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
}

.course-outline .Special-Programme .eight {
  display: flex;
  align-items: baseline;
  /* justify-content: center; */
  gap: 10px;
  margin-bottom: 10px;
}

.course-outline .Special-Programme .stud {
  margin-bottom: 0;
}

.course-outline .Special-Programme .collumn-two {
  padding-left: 40px;
}

/* school fees */
.fees {
  margin: 80px 0;
}

.fees h3 {
  color: #9a3c2a;
  text-align: center;
  margin-bottom: 20px;
}

/* table */
.fees-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.fees-table thead {
  background-color: #564438;
  color: #fff;
}

.fees-table th,
td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.fees-table td {
  border: 1px solid #fff;
  font-family: "Cabin", sans-serif;
}

.fees-table th {
  font-weight: bold;
}

.fees-table tbody tr:nth-child(odd) {
  background-color: #debb6217;
  /* Light beige for alternating rows */
}

.fees-table tbody tr:nth-child(even) {
  background-color: #11884417;
  /* Slightly darker beige */
}

.fees-table tbody tr td:first-child {
  font-weight: bold;
}

.fees h4 {
  background: linear-gradient(to left, #debb62, #564438);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 30px;
}

.fees p {
  font-size: 14px;
  line-height: 30px;
  font-family: "Cabin", sans-serif;
}

.fees a {
  color: #9a3c2a;
  font-size: 16px;
  text-decoration: none;
  background-color: #debb62;
  color: #000;
  border-radius: 10px 0 10px 0;
  padding: 10px 20px;
  text-align: center;
}

.fees a:hover {
  color: #9a3c2a;
}

.fees .method {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 10px;
  flex-direction: column;
  border: 2px solid #bfa18e;
  border-radius: 10px 0 10px 0;
  /* margin-top: 20px; */
  padding: 10px;
  width: 47%;
}

.fees .payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.fas-text {
  line-height: 30px;
  font-family: "Cabin", sans-serif;
  padding-left: 19px;
}

.finance-team {
  margin-top: 100px;
}

.finance-team .Scheme {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.finance-team .Scheme .scheme-one {
  background-color: #fef8e47f;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #bfa18e;
  border-radius: 10px;
}

.finance-team .Scheme .scheme-one h4 {
  font-size: 22px;
}

.finance-team h3 {
  margin-bottom: 50px;
  font-size: 32px;
}

.finance-team .Scheme .scheme-one p {
  background: linear-gradient(to top, #9a3c2a, #9a3c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  line-height: 30px;
  font-family: "Cabin", sans-serif;
}

.finance-team .Scheme .scheme-one li {
  line-height: 30px;
  font-family: "Cabin", sans-serif;
}

.finance-team span {
  color: #000 !important;
  font-size: 16px !important;
  font-family: "Cabin", sans-serif;
}

#principal_message {
  scroll-margin-top: 100px;
  /* Adjust to your header's height */
}

#mission {
  scroll-margin-top: 150px;
  /* Adjust to your header's height */
}

#Madrasah_Management {
  scroll-margin-top: 100px;
  /* Adjust to your header's height */
}

#staff {
  scroll-margin-top: 100px;
  /* Adjust to your header's height */
}

#about_us {
  scroll-margin-top: -100px;
  /* Adjust to your header's height */
}

#curriculum {
  scroll-margin-top: -200px;
  /* Adjust to your header's height */
}

#Programmes {
  scroll-margin-top: 50px;
  /* Adjust to your header's height */
}

#sow {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

#partners {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

#awards {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

#calender {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

#fees {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

#finance {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

#stem {
  scroll-margin-top: 200px;
  /* Adjust to your header's height */
}

/* admission */
.admission {
  background-image: url(images/banner/admission-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-admission-banner {
  background-image: url(images/banner/admission-banner-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Publication {
  background-image: url(images/banner/publications-b.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary {
  margin: 65px 0;
}

.primary .eligi {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.primary .eligi.two {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  gap: 30px;
}

.primary .eligi.three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.primary h3 {
  color: #debb62;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.primary .eli {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  padding: 25px;
  background-color: #fff;
  box-shadow: 1px 0px 7px 2px rgba(0, 0, 0, 0.1);
}

.primary .Eligibility {
  margin: 30px 0;
}

.primary h4 {
  margin-bottom: 40px;
  text-align: center;
  color: #9a3c2a;
  font-size: 28px;
  font-weight: 900;
}

.primary .Eligibility img {
  background-color: #debb6224;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 3px solid #debb62;
  padding: 20px;
  border-radius: 50%;
}

.primary p {
  text-align: center;
  /* font-weight: 900; */
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  margin-bottom: 0;
}

.Documents {
  margin: 50px 0;
}

.Documents .Document {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.Documents .Document .doc {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #c2b7a4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Documents .Document .doc.sec {
  background-color: #c2b7a4;
}

.Documents .Document .doc.dpi {
  background-color: #f3f3f3;
}

.primary .Documents img {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 12px;
  border-radius: 50%;
}

.Registration h4 {
  margin: 30px 0;
  text-align: center;
  color: #9a3c2a;
  font-size: 24px;
  font-weight: 900;
}

.Registration span {
  font-weight: 800;
}

.table-container {
  width: 100%;
  margin: 20px 0 !important;
}

.Registration .header {
  background-color: #564438;
  color: white;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.Registration .written-exam .content {
  background-color: #564438;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.Registration .oral-exam .header {
  background-color: #564438;
  color: white;
}

.Registration .oral-exam .content {
  display: flex;
  background-color: #fff5d4;
  /* padding: 10px; */
  justify-content: space-around;
  position: relative;
}

.Registration .column {
  flex: 1;
  padding: 10px;
}

.Registration .sub-header {
  background-color: #debb62;
  color: white;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

.Registration ul {
  list-style-type: none;
  margin: 20px 0;
  padding-left: 20px;
  text-align: center;
}

.Registration .separator {
  width: 1px;
  background-color: #debb62;
  height: auto;
}

.Registration .data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #fff5d4;
  flex-direction: column;
  padding: 40px 20px;
}

.Registration .written-exam {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Registration .data p {
  margin-bottom: 0;
}

.register {
  text-decoration: none;
  color: #fff;
  padding: 15px 40px;
  background-color: #9a3c2a;
  color: #fff;
  border-radius: 20px 0 20px 0;
  text-align: center;
}

.register:hover {
  color: #debb62;
}

.Registration {
  margin-bottom: 100px;
}

.Registration ul li {
  margin-bottom: 15px;
}

.Registration p {
  text-align: center;
}

.Registration i {
  background: linear-gradient(to right, #debb62, #9a3c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.regi-div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .Curriculum {
    height: 20vh;
  }

  .Curriculum h2 {
    font-size: 26px;
  }

  .sylabus {
    margin: 20px 0;
    padding: 20px;
  }

  .sylabus h3 {
    font-size: 26px;
  }

  .Programmes h3 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 30px;
  }

  .Programmes {
    padding: 30px 0px;
  }

  .primary {
    margin: 10px 0;
  }

  .sow {
    margin: 10px 0;
  }

  .calender h3 {
    font-size: 29px;
    margin-bottom: 20px;
  }

  .calender {
    margin: 20px 0;
  }

  .stem {
    padding: 20px 0;
  }

  .stem h3 {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

.Publication {
  background-image: url(images/banner/publications-b.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- */

.Publication-content .search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.Publication-content form {
  display: flex;
  align-items: center;
}

.Publication-content .search-input {
  padding: 7px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
  width: 200px;
}

.Publication-content .search-container .search-button {
  padding: 8px 13px;
  font-size: 14px;
  color: #fff;
  background-color: #564438;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.Publication-content .search-button:hover {
  background-color: #0056b3;
}

/*----------------  */

.Publication-content {
  margin: 50px 0;
}

.Publication-content h3 {
  text-align: center;
  color: #debb62;
}

.Publication-content h4 {
  font-size: 18px;
  color: #9a3c2a;
}

.Publication-content .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.all-publication .images img {
  width: 100%;
  height: 250px;
}

.all-publication .images {
  padding: 0;
}

.all-publication .profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.all-publication .pro {
  display: flex;
  align-items: center;
  gap: 10px;
}

.all-publication .pro img {
  width: 40px;
  height: 40px;
}

.all-publication p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 28px;
  gap: 5px;
  display: flex;
  align-items: center;
}

.all-publication h5 {
  margin-bottom: 0;
  font-size: 14px;
}

.all-publication .pro p {
  color: #dc3545;
}

.all-publication h6 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  color: #9a3c2a;
  font-weight: 800;
}

.all-publication .data {
  display: flex;
  align-items: left;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  background-color: #f9fbff;
}

.all-publication .public-one {
  border: 1px solid #dfdfdf;
}

.all-publication .public-one a {
  text-decoration: none;
  background: linear-gradient(to right, #d0b120, #146a16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.all-publication {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.Publication-content .images-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.Publication-content .image-div {
  border: 1px solid #dfdfdf;
  background-color: #f9fbff;
  width: 28%;
  margin-left: 60px;
}

.Publication-content .image-div h6 {
  text-align: center;
  color: #9a3c2a;
  margin: 20px 0;
}

.Publication-content .image-div img {
  width: 90%;
  height: 200px;
}

/* Dropdown styles */
.Publication-content .dropdown {
  position: relative;
  display: inline-block;
}

.Publication-content .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 5px;
  z-index: 1;
  text-align: center;
}

.Publication-content .dropdown img {
  cursor: pointer;
}

.Publication-content .share-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background-color: transparent;
  color: #debb62;
}

/* Popup styles */
.Publication-content .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.Publication-content .popup-content {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  margin: 10% auto;
  position: relative;
  top: 80px;
}

.Publication-content .popup-content h3 {
  margin-bottom: 35px;
  font-size: 18px;
}

.Publication-content .share-icons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 45px;
  gap: 20px;
}

.Publication-content .share-icons .icon {
  cursor: pointer;
  width: 50px;
  height: auto;
  border: none;
  background-color: transparent;
}

.Publication-content .share-icons .icon img {
  width: 100%;
  height: auto;
}

.Publication-content .close-popup {
  background-color: #564438;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

/* Profile and content styles */
.Publication-content .profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Publication-content .pro {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Publication-content .pro img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.Publication-content .pro div {
  text-align: left;
}

.Publication-content .pro div h5 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.Publication-content .pro div p {
  margin: 0;
  font-size: 12px;
  color: gray;
}

.Publication-content .line {
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
}

/* General adjustments */
.Publication-content .row {
  display: flex;
  margin-bottom: 20px;
}

.Publication-content .col-5,
.col-7 {
  flex: 1;
}

/*  post-deatils*/

.post-deatils .back-page {
  text-decoration: none;
  color: #9a3c2a;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
  margin-bottom: 50px;
}

.post-deatils {
  background-image: url(images/background/year-b.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  padding: 50px 280px;
}

.post-deatils .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-deatils .profile h5 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}

.post-deatils .pro-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-deatils .date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-deatils .date p {
  margin-bottom: 0;
  font-size: 15px;
}

.post-deatils .all-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-deatils .dropdown {
  position: relative;
  display: inline-block;
}

.post-deatils .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 5px;
  z-index: 1;
  text-align: center;
}

.Publication-content .dropdown img {
  cursor: pointer;
}

.post-deatils .share-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background-color: transparent;
}

/* Popup styles */
.post-deatils .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.post-deatils .popup-content {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  margin: 10% auto;
  position: relative;
  top: 80px;
}

.post-deatils .popup-content h3 {
  margin-bottom: 35px;
  font-size: 18px;
}

.post-deatils .share-icons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 45px;
  gap: 20px;
}

.post-deatils .share-icons .icon {
  cursor: pointer;
  width: 50px;
  height: auto;
  border: none;
  background-color: transparent;
}

.post-deatils .share-icons .icon img {
  width: 100%;
  height: auto;
}

.post-deatils .close-popup {
  background-color: #564438;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.post-deatils .profile img {
  width: 40px;
  height: 35px;
}

.post-deatils .all-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-deatils .all-content .by p {
  margin-bottom: 5px;
}

.post-deatils .video-container {
  max-width: 100%;
  position: relative;
}

.post-deatils .video-wrapper {
  width: 100%;
  position: relative;
}

.post-deatils .video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
}

.post-deatils .thumbnail-img {
  width: fit-content;
  height: 350px;
  display: block;
}

.post-deatils .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0px 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.post-deatils .video-player {
  display: none;
}

.post-deatils video::-webkit-media-controls {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.post-deatils .icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.post-deatils .icon i {
  color: #7a7a7a;
}

.post-deatils .icons .icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-deatils .heart {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-deatils .heart i {
  color: #ff0018;
}

.post-deatils .heart p {
  margin-bottom: 0;
}

.post-deatils .like p {
  margin-bottom: 0;
}

.post-deatils .like {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: right;
  padding: 10px;
}

.post-deatils .posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.post-deatils .posts-header h2 {
  margin: 0;
}

.post-deatils .posts-header .see-all {
  text-decoration: none;
  background: linear-gradient(to right, #d0b120, #146a16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.9rem;
}

.post-deatils .posts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.post-deatils .post-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  width: calc(33.333% - 10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-deatils .post-card:hover {
  transform: translateY(-5px);
}

.post-deatils .post-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.post-deatils .post-card h3 {
  text-align: left;
  font-size: 1rem;
  margin: 0;
  padding: 10px;
}

.post-deatils .post-footer {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-size: 0.9rem;
  color: #555;
}

.post-deatils .comments {
  padding: 40px 0;
}

.post-deatils .comments h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.post-deatils .comment-box {
  position: relative;
  padding: 20px;
  border: 1px solid #ccc;
}

.post-deatils textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  resize: none;
  transition: height 0.3s ease;
}

.post-deatils textarea:focus {
  height: 100px;
}

.post-deatils .expanded-options {
  display: none;
  margin-top: 10px;
}

.post-deatils .expanded-options .options {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
}

.post-deatils .expanded-options .login-info {
  margin: 10px 0;
  color: #888;
  font-size: 0.9rem;
}

.post-deatils .expanded-options .login-info a {
  color: #9a3c2a;
}

.post-deatils .expanded-options .buttons {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
}

.post-deatils .expanded-options .cancel-btn {
  background: none;
  border: none;
  color: #9a3c2a;
  cursor: pointer;
  font-size: 0.9rem;
}

.post-deatils .expanded-options .publish-btn {
  background: #debb62;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* Adjust styles for expanded state */
.post-deatils .expanded-options.active {
  display: block;
}

.post-deatils p {
  line-height: 35px;
}

.post-deatils .all-content span {
  color: #9a3c2a;
  font-weight: 700;
}

.post-deatils .all-content h2 {
  font-weight: 700;
}

.post-deatils .posts-header h2 {
  margin: 0;
  font-size: 20px;
}

.post-deatils .all-content ul li {
  line-height: 45px;
}

.post-deatils li::marker {
  color: #debb62;
  font-size: 24px;
}

.post-deatils .border-line {
  border: 1px solid #e7e7e7;
  padding: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .post-deatils .post-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .post-deatils .post-card {
    width: 100%;
  }
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .post-deatils .post-deatils .video-container {
    max-width: 100%;
  }

  .Publication {
    height: 20vh;
  }

  .a-banner h2 {
    font-size: 26px;
  }

  .Publication-content .head {
    margin-bottom: 10px;
    flex-direction: column;
  }

  .Publication-content {
    margin: 20px 0;
  }

  .Publication-content .pro div h5 {
    font-size: 12px;
  }

  .all-publication h6 {
    font-size: 14px;
    line-height: 22px;
  }

  .all-publication p {
    font-size: 12px;
    line-height: 20px;
  }

  .all-publication .data {
    padding: 10px;
  }

  .Publication-content .image-div {
    display: none;
  }

  .all-publication {
    gap: 10px;
    margin: 10px;
  }
}

/* contacts-page */
.contacts-page {
  background-image: url(images/banner/contacts-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details .address {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 100px 80px;
}

.contact-details .address .card-c {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(49, 49, 49, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact-details .address .card-c p {
  margin-bottom: 0;
  color: #6c757d;
}

.contact-details .address .card-c img {
  position: relative;
  top: -15px;
}

.working-time {
  display: flex;
  align-items: center;
  justify-content: center;
}

.working-time .fetured a {
  color: #fff !important;
  text-decoration: none;
  font-size: 16px !important;
}

.working-time .fetured .vi-img {
  width: 175px !important;
  border-radius: 100% !important;
  border: 0px solid #debb62 !important;
}

.working-time .fetured .details {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.Vendor {
  margin: 100px 80px;
}

.Vendor .school {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin: 50px 0;
}

.Vendor .school .vendor-one {
  /* background-image: url(images/background/programme-b.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: center;
  padding: 20px;
  border-radius: 10px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #067d4a0a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Vendor h4 {
  color: #9a3c2a;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}

.Vendor .school .vendor-one h3 {
  color: #debb62;
  font-size: 22px;
  margin-bottom: 20px;
}

.Vendor .school .vendor-one p {
  font-size: 16px;
  line-height: 32px;
}

.Vendor .school .vendor-one span {
  font-size: 16px;
  color: #9a3c2a;
  font-family: "Cabin", sans-serif;
}

.Vendor .school .vendor-one a {
  color: #000;
  text-decoration: none;
}

.map .map-heading {
  color: #9a3c2a;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 20px;
}

.Support {
  background-image: url(images/banner/supports-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donation {
  margin: 50px 0;
}

.donation h4 {
  text-align: center;
  color: #debb62;
  font-size: 28px;
}

.donation .quotes {
  font-size: 18px;
  line-height: 40px;
  padding: 10px 50px;
  text-align: center;
}

.donation-form {
  /* background-image: url(images/background/form-b.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 97vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96%;
  margin: 50px;
}

.form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.donation-form .name {
  display: flex;
  flex-direction: column;
  /* width: 50%; */
}

.donation-form .form-input {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}

.donation-form input {
  border-radius: 15px;
  border: 3px solid #debb62;
  height: 40px;
}

.donation-form label {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.donation-form .form-input.btn a {
  border-radius: 50px;
  border: 3px solid #debb62;
  height: 40px;
  background-color: #fff;
  padding: 5px;
  color: #000;
  text-decoration: none;
  width: 20%;
  text-align: center;
}

.donation-form .form-input.btn .btnamt {
  border-radius: 50px;
  border: 3px solid #debb62;
  height: 40px;
  background-color: #fff;
  padding: 5px;
  color: #000;
  text-decoration: none;
  width: 20%;
  text-align: center;
}

.donation-form form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 46%;
}

.donation-form .school-fees-form {
  width: 60%;
}

.form-input .form-check input {
  height: 15px;
  border-radius: 50%;
}

.form-input .form-check a {
  color: #ffffff;
  text-decoration: none;
}

.donate {
  text-align: center;
  text-decoration: none;
  color: #000;
  background-color: #debb62;
  padding: 10px 20px;
  border: 3px solid #fff;
  width: fit-content;
  border-radius: 10px 0 10px 0;
}

.donation i {
  color: #debb62;
  font-size: 28px;
}

.donation .order-btn {
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 5px 20px;
  border: 1px solid #fff;
  width: fit-content;
  border-radius: 10px;
}

.donation .type-one {
  /* padding: 80px 50px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  height: 205px;
  width: 100%;
}

.donation .type-one.one {
  background-image: url(images/zakath1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.donation .donate-type {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 100px 0;
}

.donation .type-one.two {
  background-image: url(images/zakat-2.avif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.donation .type-one.three {
  background-image: url(images/zakat-3.avif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.donation .type-one.four {
  background-image: url(images/zakat-2.avif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.donation .type-one.four {
  background-image: url(images/zakat-2.avif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.donation .type-one h5 {
  font-size: 1.25rem;
  color: #fff;
  font-size: 28px;
}

.donation .circular-rating-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0px;
  gap: 30px;
}

.donation .circular-rating-section .rating-card {
  text-align: center;
  width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.donation .circular-rating-section.circular-rating-section .circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#debb62 0%,
      #debb62 var(--percent),
      #e0e0e0 var(--percent),
      #e0e0e0 100%);
  margin: 0 auto 10px;
}

.donation .circular-rating-section .circle::before {
  content: attr(data-percent) "%";
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #9a3c2a;
  width: 90px;
  height: 90px;
  line-height: 85px;
  border-radius: 50%;
  top: 5px;
  left: 5px;
}

.donation .circular-rating-section h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.donation .circular-rating-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.Payment-method {
  padding: 100px 0;
}

.Payment-method .methods {
  padding: 50px 0;
}

.Payment-method .method img {
  width: 100%;
}

.Payment-method h5 {
  text-align: center;
  color: #debb62;
  font-size: 28px;
  margin-bottom: 20px;
}

.Payment-method p {
  text-align: center;
  color: #000;
  font-size: 16px;
}

.Payment-method .methods img {
  width: 150px;
  border-radius: 50%;
  height: 150px;
  border: 3px solid #debb62;
}

.Payment-method .methods .data {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  /* padding: 0 50px; */
}

.Payment-method .methods .data h6 {
  margin-bottom: 0;
  color: #9a3c2a;
  font-size: 20px;
  font-weight: 700;
}

.Payment-method .methods .data p {
  margin-bottom: 0;
}

.Payment-method .methods .data a {
  margin-bottom: 0;
  text-decoration: none;
  color: #000;
}

/* ---------------------- */
.kurma {
  background-image: url(images/banner/kurma-b.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kurma.qurban {
  background-image: url(images/banner/QurbanWebBanner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kurma-from {
  margin: 100px;
}

.kurma-from form {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.kurma-from h2 {
  text-align: center;
  color: #9a3c2a;
  margin-bottom: 30px;
}

.form-data {
  border: 5px solid #debb62;
  border-radius: 10px;
  /* background-color: #0e7253; */
  background-color: #564438;
  padding: 50px 100px;
}

.zakath-inputs {
  display: flex;
  width: 100%;
  /* gap: 10px; */
  flex-direction: column;
}

.zakath-inputs label {
  color: #fff;
  text-transform: capitalize;
}

.zakath-inputs input {
  border-radius: 8px;
  border: 2px solid #debb62;
  height: 40px;
}

.zakath-inputs textarea {
  border-radius: 8px;
  border: 2px solid #debb62;
  height: 100px;
}

.kuruma-type img {
  width: 120%;
  height: auto;
}

.kuruma-type h6 {
  color: #fff;
  margin-bottom: 2px;
  font-size: 14px;
  text-align: center;
  font-family: "Cabin", sans-serif;
}

.kuruma-type p {
  color: #fff;
  margin-bottom: 2px;
  font-size: 14px;
  text-align: center;
}

.form-data h4 {
  color: #debb62;
  margin: 20px 0;
}

.kurma-from form .line {
  border: 1px solid #debb62;
  margin: 20px 0px 20px 250px;
}

.zakath-inputs.total {
  flex-direction: row !important;
  align-items: center;
}

.zakath-inputs.total input {
  border-radius: 8px;
  border: 3px solid #debb62;
  height: 40px;
  width: 80%;
}

.zakath-inputs.t-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-data .details {
  color: #fff;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid #debb62;
}

.form-data .k-form {
  padding-right: 50px;
}

.form-data .details h6 {
  color: #debb62;
  /* margin: 20px 0; */
  font-size: 18px;
}

.form-data .details p {
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  line-height: 30px;
  margin-bottom: 2px;
}

.form-data .details li {
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  line-height: 30px;
  margin-bottom: 2px;
}

.form-data .flex-input {
  display: flex;
  gap: 20px;
}

.form-data .bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  margin-top: 80px;
}

.form-data .bottom-content p {
  margin-bottom: 0;
}

.form-data .bottom-content p span {
  font-weight: 900;
  color: #debb62;
}

/* zakath */
.Zakat {
  background-image: url(images/banner/zakath-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zakath-from {
  margin: 100px 0;
}

.zakath-from .z-form {
  border: 5px solid #debb62;
  border-radius: 10px;
  background-color: #564438;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.zakath-from .zakath-data h2 {
  color: #debb62;
  font-size: 24px;
}

.zakath-from .zakath-data p {
  color: #fff;
  font-size: 14px;
}

.zakath-inputs .zakath-dropdown {
  width: 100%;
  background-color: #fff;
  color: #000;
  border: 2px solid #debb62;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border-radius: 12px !important;
}

.zakath-inputs .btn-secondary:hover {
  color: #000;
  background-color: #ffffff;
  border-color: #debb62;
}

.zakath-inputs .btn-secondary.active {
  color: #ccc;
  background-color: #ffffff;
  border-color: #debb62;
}

.zakath-inputs .drop-data {
  width: 100%;
}

.zakath-inputs .dropdown-item:active {
  color: #000000;
  text-decoration: none;
  background-color: #ffffff;
}

.form-input .form-check label {
  color: #fff;
}

.zakath-from .details {
  padding: 50px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}

.zakath-from .details h4 {
  color: #debb62;
  font-size: 24px;
  text-align: center;
}

.zakath-from .details p {
  color: #000 !important;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}

.zakath-from .details h6 {
  font-size: 22px;
  color: #9a3c2a;
}

/* alumini */
.alumini {
  background-image: url(images/banner/alumin-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alumini-data {
  margin: 50px 0;
}

.alumini-data .data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  padding: 0 200px;
}

.alumini-data .person-one {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;
  background-color: #19875417;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alumini-data .person-one img {
  border-radius: 50%;
  border: 2px solid #debb62;
  height: 100px;
  width: 100px;
}

.alumini-data .person-one h4 {
  color: #118844;
  font-size: 24px;
  /* font-family: 'Cabin', sans-serif; */
  font-weight: 800;
}

.alumini-data .person-one h6 {
  color: #e3c228;
  font-size: 20px;
  font-family: "Cabin", sans-serif;
}

.alumini-data .person-one p {
  font-family: "Cabin", sans-serif;
  line-height: 35px;
  margin-bottom: 0;
}

/* events */

.all-event {
  margin: 50px 0;
}

.events-alsagoff {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.events-alsagoff .event-first img {
  width: 100%;
  height: 250px;
}

.events-alsagoff .event-first {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.events-alsagoff .event-first h5 {
  font-size: 21px;
  font-family: "Cabin", sans-serif;
  line-height: 35px;
}

.events-alsagoff .event-first p {
  line-height: 32px;
}

.events-alsagoff .event-first .readmore {
  text-decoration: none;
  color: #fff;
  background-color: #118844;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #fff;
}

.events-alsagoff .event-first .data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.event {
  background-image: url(images/banner/events-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* event details */
.event-details {
  background-color: #eee6d9;
  padding: 50px 0;
}

.event-details h2 {
  font-weight: 900;
  color: #9a3c2a;
  font-size: 28px;
  margin-bottom: 20px;
}

.event-details img {
  width: 100%;
  height: auto;
}

.event-details p {
  line-height: 32px;
  margin-bottom: 8px;
  font-family: "Cabin", sans-serif;
}

.event-details i {
  color: #debb62;
  font-size: 14px;
}

/* pgm-primary */
.pgm-primary {
  margin-top: 50px;
}

.pgm-primary h3 {
  margin-bottom: 20px;
  color: #9a3c2a;
}

.pgm-primary p {
  line-height: 35px;
  text-align: justify;
}

.pp-type .p-ark {
  /* background-image: url(images/background/Publications-b.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  background-color: #fbf1cd;
}

.pp-type .p-ark h4 {
  color: #9a3c2a;
  font-weight: 900;
  margin-bottom: 15px;
}

.pp-type .p-ark a {
  text-decoration: none;
  color: #9a3c2a;
  background: #e3c228;
  padding: 10px;
  width: fit-content;
  border-radius: 10px;
  text-align: end;
}

.pp-type .p-ark .btns {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* ark */
.ark {
  background-color: #eee6d952;
  background-image: url(images/background/lege-b.png);
  background-repeat: no-repeat;
  background-position: top;
}

.ark h2 {
  text-align: center;
  color: #9a3c2a;
  padding: 30px 0;
}

.ark-details p {
  line-height: 35px;
  text-align: justify;
}

.ark-details li {
  line-height: 35px;
}

.ark-details li::marker {
  color: #debb62;
}

.ark .Framework {
  background-color: #fff;
  padding: 40px;
  border-radius: 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 50px 0 !important;
}

.ark h4 {
  color: #9a3c2a;
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 20px;
}

.ark h5 {
  color: #debb62;
  font-family: "Cabin", sans-serif;
  margin-bottom: 20px;
}

.ark .Framework img {
  width: 80%;
}

.ark .Framework .data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* table */
.ark .table-container {
  overflow-x: auto;
}

.ark table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  text-align: left;
}

.ark th,
td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
  font-family: "Cabin", sans-serif;
}

.ark th {
  background-color: #146a16d1;
  color: white;
  text-align: center !important;
}

.ark td {
  background-color: #fff;
  text-align: center;
  border: 1px solid #19875440 !important;
  padding: 20px;
  font-family: "Cabin", sans-serif;
  line-height: 32px;
  font-size: 15px;
}

.ark td p {
  font-family: "Cabin", sans-serif;
  margin-bottom: 08px;
}

.ark td li {
  font-family: "Cabin", sans-serif;
}

.ark th:nth-child(1),
td:nth-child(1) {
  text-align: center;
}

.ark tbody {
  background-color: #fff;
}

.ark-table li {
  text-align: left;
  font-family: "Cabin", sans-serif;
}

.ark span {
  font-weight: 800;
  color: #6c757d;
}

.ark-image-2 {
  margin: 50px 0;
}

.table-two {
  max-width: 700px;
  margin-bottom: 50px;
}

.ark .table-two th {
  width: auto !important;
}

.ark .table-two li {
  text-align: left !important;
}

/* emms */
.ark-table.emms-one table th {
  width: unset !important;
}

.ark-table.emms-one table {
  width: 800px !important;
  margin: 0;
}

.ark-table.emms-one {
  padding-bottom: 50px;
}

.ark.emms h4 {
  font-size: 18px !important;
  font-family: "Cabin", sans-serif !important;
}

.ark-table.emms-one.two table {
  margin: 0;
  width: 1000px !important;
}

.ark-table.emms-one.three table {
  margin: 0;
  width: 600px !important;
}

.psle {
  background-image: url(images/background/hilight-b.png);
  background-color: #fff !important;
  padding: 50px 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.psle p {
  line-height: 35px;
}

.psle img {
  margin: 30px 0;
}

.psle li {
  background: linear-gradient(to top, #debb62, #146a16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.psle li::marker {
  color: #debb62;
}

.psle tbody {
  background-color: transparent !important;
}

.psle td {
  background-color: transparent;
}

.ark-table.emms-one.four table {
  margin: 0;
  width: 1000px !important;
  margin: auto;
}

/* seconadry prgm */
.pgm-secondary {
  background-image: url(images/banner/prgm-secondary-ba.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-three {
  padding-bottom: 50px;
}

.ark-table.emms-one.four {
  padding-bottom: 0px !important;
}

.ark-table.emms-one.four.one table {
  width: 100% !important;
}

.ark-table.emms-one.four.one table td {
  width: 10% !important;
}

.back-td {
  background-color: #faf7f3 !important;
}

.ark-table.emms-one.four.two table td {
  width: 10% !important;
  font-size: 13px !important;
  padding: 8px;
}

.ark-table.emms-one.four.two table {
  width: 100% !important;
}

.psle h6 {
  color: #9a3c2a;
  font-weight: 800;
}

.psle i {
  color: #d0b120 !important;
  font-size: 10px;
}

/* dpi */
.pgm-dpi {
  background-image: url(images/banner/dpi-bannerws.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dpi-pdf {
  background-color: #eee6d9;
  text-align: center;
  padding: 50px 0;
}

.dpi-pdf .briefing {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(49, 49, 49, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  gap: 10px;
  /* background-image: url(images/background/programme-b.png); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.dpi-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-btn a {
  text-decoration: none;
  padding: 20px;
  color: #9a3c2a;
  background-color: #debb62;
  border-radius: 10px 0 10px 0;
  width: fit-content;
}

.pdf-btn a:hover {
  color: #debb62;
  background-color: #564438;
}

.dpi-pdf .data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 40%;
}

.dpi-box h4 {
  font-size: 38px;
  background: linear-gradient(to top, #debb62, #146a16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.briefing img {
  width: 90px;
}

.donation-form.one {
  /* background-image: url(images/background/programme-b.png); */
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0px;
  background-color: #564438 !important;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
}

.all-from {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 15px;
}

/* sow  primary*/
.ark-sow {
  margin: 20px 0;
}

.ark-sow h2 {
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 50px;
  background-color: #564438;
  font-size: 24px;
}

.ark-sow .data h3 {
  text-align: center;
  font-size: 20px;
  color: #9a3c2a;
  margin-bottom: 20px;
  font-weight: 900;
  font-family: "Cabin", sans-serif;
}

.ark-sow .down-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ark-sow .data {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #11884424;
  padding: 30px;
}

.ark-sow .data.one {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ffecad7f !important;
  padding: 30px;
}

.ark-sow .down-btn a {
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #debb62;
  text-align: left;
  padding: 10px 20px;
  border-radius: 10px;
  width: 80%;
  text-align: center;
  margin-bottom: 15px;
  font-family: "Cabin", sans-serif;
}

.ark-sow .data.one a {
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding: 10px 20px;
  border-radius: 10px;
  width: 80%;
  text-align: center;
  margin-bottom: 15px;
  font-family: "Cabin", sans-serif;
  color: #146a16e3;
}

.ark-sow .data.one h3 {
  text-align: center;
  font-size: 20px;
  color: #debb62;
  margin-bottom: 20px;
  font-weight: 900;
  font-family: "Cabin", sans-serif;
}

.ark-sow .all {
  gap: 20px;
  margin-bottom: 30px;
}

.sup-mob {
  display: none;
}

@media (max-width: 768px) {
  .data-one img {
    padding: 5px;
    width: 38px;
  }

  .features-box .data-one p {
    font-size: 10px;
    text-align: center;
  }

  .features-box {
    width: 98%;
  }

  .carousel-item img {
    height: 25vh;
  }

  .carousel-indicators [data-bs-target] {
    display: none;
  }

  .d-none {
    display: block !important;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    display: inline-block;
    width: 16px !important;
    height: 16px;
  }

  .all-programmes .programmes {
    padding: 10px;
    gap: 10px;
    height: 175px;
  }

  .read-more-btn {
    padding: 10px;
    font-size: 14px;
  }

  .what-offer .offer h4 {
    font-size: 18px;
  }

  .hilights .our-hilights .high .content {
    gap: 10px;
    padding: 10px;
  }

  .home-about {
    height: 64vh;
  }

  .hilights .our-hilights .high .content h5 {
    font-size: 18px;
  }

  .about-data .last-p {
    font-size: 16px !important;
    margin-right: 0px;
  }
}

.staffs {
  position: relative;
}

.staff-one .hover-content {
  position: absolute;
  top: 16px;
  left: 23px;
  width: 334px;
  height: 336px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  border-radius: 50%;
}

.staffs:hover .hover-content {
  opacity: 1;
  visibility: visible;
}

.staff-arabic .hover-content h5 {
  font-size: 16px;
}

.staff-arabic .hover-content p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 23px;
}

.staff-hod .hover-content h5 {
  font-size: 16px;
}

.staff-hod .hover-content p {
  font-size: 14px;
  margin-bottom: 0;
}

.hover-content p {
  margin-bottom: 0;
}

.course-outline a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .nav-menu .dropdown:hover .dropdown-content {
    display: flex;
    width: 100%;
  }

  .features-box .data-one {
    gap: 8px;
    justify-content: center;
    flex-direction: column;
  }

  .container.about-c {
    height: 53vh;
  }

  .hilights .views-all-btn {
    margin-top: 30px;
  }

  .staff-one .hover-content {
    top: 5px;
    left: 85px;
    width: 190px;
    height: 190px;
  }

  .s-staff .all-staff .staff-one h3 {
    text-align: center;
  }

  .s-staff .all-staff .staff-one p {
    text-align: center;
    line-height: 30px;
    font-size: 14px;
  }

  .staff-two .hover-content {
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .staff-hod.bottom .hover-content {
    top: 0px !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .s-staff .all-staff .staff-arabic h3 {
    font-size: 12px;
    line-height: 14px;
  }

  .s-staff .all-staff .hover-content p {
    line-height: 23px;
    font-size: 11px;
  }

  .s-staff .all-staff .staff-arabic img {
    width: 180px !important;
    height: 180px !important;
  }

  .staff-arabic .hover-content {
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 100% !important;
  }

  .s-staff .all-staff .english h2 {
    line-height: 30px;
  }

  .staff-arabic .hover-content h5 {
    font-size: 14px;
  }

  .s-staff h4 {
    padding: 40px 0;
    font-size: 22px;
  }

  .s-staff .all-staff h2 {
    font-size: 14px;
  }

  .s-staff .all-staff h3 {
    font-size: 20px;
  }

  .s-staff .all-staff .staff-two img {
    width: 180px !important;
    height: 180px !important;
  }

  .s-staff .all-staff .staff-hod img {
    width: 180px !important;
    height: 180px !important;
  }

  .s-staff .all-staff .data {
    gap: 2px;
  }

  .s-staff .all-staff .staff-arabic.admin img {
    width: 175px;
    height: 175px;
  }

  .staff-arabic.admin .hover-content {
    top: 13px;
    left: 24px;
    width: 65px;
    height: 65px;
  }

  .s-staff .all-staff .staff-arabic {
    gap: 15px;
  }

  .s-staff .all-staff .staff-arabic {
    padding: 8px;
  }

  .s-staff .all-staff img {
    border: 3px solid #debb62;
  }

  .Madrasah-Management img {
    width: 150px;
    height: 150px;
  }

  .Madrasah .Madrasah-Management .hover-content {
    top: 2px;
    left: 57px;
    width: 247px;
    height: 247px;
  }

  .Madrasah .hover-content h5 {
    font-size: 14px;
  }

  .s-staff .all-staff .staff-arabic.admin img {
    border: 3px solid #debb62;
  }

  .s-staff .all-staff .staff-arabic img {
    border: 3px solid #debb62;
  }

  .all-partners .partners img {
    width: 100px;
    height: auto;
  }

  .all-partners h2 {
    font-size: 22px;
  }

  .supports p {
    font-size: 14px;
    line-height: 31px;
  }

  .awards-and-recoganisation .one p {
    font-size: 14px;
    line-height: 29px;
  }

  .awards-and-recoganisation .one h2 {
    font-size: 20px;
  }

  .awards-and-recoganisation p {
    font-size: 14px !important;
    line-height: 30px !important;
  }

  .awards-and-recoganisation .cards {
    gap: 10px;
  }

  .awards-and-recoganisation .cards .card-1 h5 {
    font-size: 30px;
  }

  .awards-and-recoganisation .cards .card-1 {
    padding: 10px;
    height: 250px;
    gap: 0px;
  }

  .awards-and-recoganisation .one img {
    display: none;
  }

  .awards-and-recoganisation .one {
    margin-bottom: 50px;
  }

  .Demographics-btn {
    bottom: -415px;
  }

  .Programmes .all-programmes {
    gap: 10px;
  }

  .work h5 {
    font-size: 24px;
  }

  .work a {
    font-size: 24px;
  }

  .work {
    gap: 0px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .sow .scheme {
    padding: 20px;
    margin: 10px;
    width: 50%;
  }

  .stem-table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }

  .stem-table th {
    padding: 7px;
    font-size: 14px;
    height: 40px;
  }

  .stem-table td {
    padding: 8px;
    font-size: 14px;
    height: 50px;
  }

  .stem .par {
    font-size: 16px;
    line-height: 33px;
  }

  .stem span {
    font-size: 19px;
  }

  .course-outline .outline {
    margin: 05px;
  }

  .course-outline .outline .primary h5 {
    font-size: 22px;
    margin-bottom: 0px;
  }

  .course-outline .outline .primary p {
    line-height: 25px;
    font-size: 14px;
  }

  .course-outline .outline .primary p.soft {
    font-size: 18px;
  }

  .course-outline .primary.p-six {
    width: 100% !important;
    height: 732px !important;
  }

  .course-outline .outline .primary h6 {
    font-size: 16px;
  }

  .secondary .sec-outline {
    font-size: 22px;
  }

  .secondary .sec-discription {
    font-size: 16px;
    line-height: 30px;
  }

  .course-outline .secondary .second {
    width: 100%;
    height: 830px;
  }

  .course-outline .outline-s {
    margin: 40px 0;
  }

  .course-outline .secondary .second p {
    line-height: 27px;
  }

  .course-outline .sp {
    font-size: 20px;
  }

  .course-outline .Special-Programme .programme {
    padding: 20px 10px;
  }

  .course-outline .Special-Programme .programme h5 {
    margin-bottom: 10px;
  }

  .course-outline .Special-Programme .programme ol li {
    margin-bottom: 8px;
  }

  .course-outline .Special-Programme .collumn-two {
    padding-left: 0px;
  }

  .collumn-two {
    border: none;
  }

  .course-outline a {
    font-size: 14px;
  }

  .fees .payment {
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .fees {
    margin: 20px 10px;
  }

  .fees h4 {
    font-size: 14px;
    line-height: 21px;
  }

  .fees a {
    font-size: 14px;
    padding: 10px;
  }

  .fees-table th,
  td {
    padding: 8px;
    font-size: 12px;
  }

  .finance-team h3 {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .finance-team {
    margin-top: 30px;
  }

  .finance-team .Scheme {
    grid-template-columns: 1fr;
  }

  /* ---- */
  .Documents .Document {
    grid-template-columns: 1fr;
  }

  /* ----- */

  .admission {
    height: 20vh;
  }

  .primary-admission-banner {
    height: 20vh;
  }

  .primary h3 {
    font-size: 24px;
    line-height: 40px;
  }

  .primary .eli {
    gap: 10px;
    padding: 15px;
  }

  .primary .eligi {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .primary .Eligibility img {
    padding: 10px;
    width: 75px;
  }

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

  .primary .Documents img {
    width: 80px;
  }

  .Documents .Document {
    gap: 15px;
  }

  .Registration h4 {
    margin: 20px 0;
    font-size: 20px;
  }

  .Registration ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .Registration {
    margin-bottom: 50px;
  }

  .Registration ul {
    padding-left: 0px;
  }

  .primary .eligi.two {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .primary .eligi.three {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contacts-page {
    height: 20vh;
  }

  .contact-details .address {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 50px 20px;
  }

  .contact-details .address .card-c img {
    width: 100px;
  }

  .contact-details .address .card-c p {
    font-size: 15px;
  }

  .contact-details .address .card-c h4 {
    font-size: 15px;
  }

  .contact-details .address .card-c {
    gap: 5px;
  }

  .working-time .fetured a {
    font-size: 14px !important;
  }

  .working-time .fetured .vi-img {
    width: 29% !important;
    height: auto;
  }

  .Vendor {
    margin: 20px;
  }

  .Vendor .school {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 20px 0;
  }

  .Vendor h4 {
    font-size: 24px;
  }

  .Vendor .school .vendor-one p {
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 2px;
  }

  .map .map-heading {
    font-size: 24px;
  }

  .working-time {
    margin: 5px;
  }

  .finance-team .Scheme .scheme-one h4 {
    font-size: 18px;
  }

  .finance-team .Scheme .scheme-one p {
    font-size: 16px;
    line-height: 20px;
  }

  .finance-team .Scheme .scheme-one li {
    font-size: 14px;
  }

  .finance-team span {
    font-size: 14px !important;
  }

  .finance-team .Scheme .scheme-one {
    padding: 10px;
  }

  .Publication-content .pro img {
    width: 30px;
    height: 30px;
  }

  .all-publication .public-one a {
    font-size: 14px;
  }

  .alumini {
    height: 20vh;
  }

  .alumini-data .data {
    gap: 10px;
    padding: 10px;
  }

  .alumini-data .person-one {
    gap: 20px;
    padding: 15px;
  }

  .alumini-data .person-one img {
    height: 60px;
    width: 60px;
  }

  .alumini-data .person-one h4 {
    font-size: 20px;
  }

  .alumini-data .person-one h6 {
    font-size: 16px;
  }

  .alumini-data .person-one p {
    line-height: 27px;
    font-size: 14px;
  }

  .alumini-data {
    margin: 20px 0;
  }

  .Zakat {
    height: 20vh;
  }

  .zakath-from {
    margin: 30px 0;
  }

  .zakath-from .z-form {
    padding: 20px;
    margin: 10px;
  }

  .zakath-from .zakath-data p {
    font-size: 12px;
    font-weight: 900;
  }

  .zakath-inputs label {
    font-size: 14px;
  }

  .zakath-from .details {
    padding: 20px;
    gap: 10px;
  }

  .zakath-from .details h4 {
    font-size: 20px;
  }

  .zakath-from .details h6 {
    font-size: 18px;
  }

  .kurma {
    height: 20vh;
  }

  .kurma-from {
    margin: 10px;
  }

  .form-data {
    padding: 10px;
  }

  .form-data .flex-input {
    gap: 10px;
    flex-direction: column;
  }

  .form-data .k-form {
    padding-right: 10px;
  }

  .form-data .details {
    padding-left: 0px;
    border-left: unset;
  }

  .form-data h4 {
    margin: 10px 0;
    font-size: 18px;
  }

  .form-data label {
    font-size: 14px;
  }

  .donation-form.one {
    width: 100% !important;
    padding: 20px;
  }

  .donation {
    margin: 20px 0;
  }

  .donation-form label {
    font-size: 14px;
  }

  .event {
    height: 20vh;
  }

  .pgm-primary p {
    line-height: 32px;
    font-size: 14px;
  }

  .pp-type .p-ark {
    padding: 20px;
    margin: 10px;
    width: 96%;
  }

  .pp-type .p-ark h4 {
    font-size: 20px;
  }

  .pgm-secondary {
    height: 20vh;
  }

  .pgm-dpi {
    height: 20vh;
  }

  .dpi-pdf {
    padding: 30px 0;
  }

  .dpi-pdf .data {
    gap: 10px;
    width: 98%;
  }

  .dpi-pdf .briefing {
    padding: 20px;
    gap: 5px;
  }

  .pdf-btn a {
    padding: 12px;
  }

  .primary h4 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  /* ======= */
  .donation .donate-type {
    /* display: grid; */
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 50px 0;
  }

  .Support {
    height: 20vh;
  }

  .donation .quotes {
    font-size: 16px;
    padding: 0px 0px;
  }

  .donation-form .form-input {
    gap: 10px;
  }

  .donation-form {
    height: 60vh;
    width: 100%;
    margin: 0px !important;
    padding: 10px !important;
    background-image: none;
    background-color: #564438;
    border-radius: 10px;
  }

  .donation-form input {
    height: 35px;
    width: 100% !important;
  }

  .donation-form .form-input .form-check input {
    height: 20px;
    width: 30%;
  }

  .donation .type-one {
    padding: 15px 20px;
    width: 79%;
    margin-left: 32px;
  }

  .donation .order-btn {
    font-size: 12px;
  }

  .donation .type-one h5 {
    font-size: 22px;
  }

  .donation .circular-rating-section .rating-card {
    width: 160px;
    padding: 5px;
  }

  .donation .circular-rating-section {
    gap: 10px;
  }

  .Payment-method h5 {
    font-size: 20px;
    margin: 20px;
  }

  .Payment-method {
    padding: 20px 0;
  }

  .Payment-method .methods img {
    width: 100px;
    height: 100px;
  }

  .Payment-method .methods .data {
    gap: 10px;
    margin-bottom: 20px;
  }

  .Payment-method .methods .data h6 {
    font-size: 16px;
  }

  .Payment-method p {
    font-size: 13px;
  }

  .Payment-method .methods .data a {
    font-size: 13px;
  }

  .event-details h2 {
    font-size: 20px;
  }

  .event-details {
    padding: 20px 0;
  }

  .event-details p {
    line-height: 26px;
    font-size: 14px;
  }

  .events-alsagoff {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .events-alsagoff .event-first {
    padding: 5px;
    margin-bottom: 20px;
  }

  .events-alsagoff .event-first img {
    width: 100%;
    height: 120px;
  }

  .events-alsagoff .event-first h5 {
    font-size: 14px;
    line-height: 28px;
  }

  .events-alsagoff .event-first p {
    line-height: 25px;
    font-size: 14px;
  }

  .events-alsagoff .event-first .readmore {
    padding: 8px 20px;
    font-size: 14px;
  }

  .post-deatils {
    padding: 0px 0px;
  }

  .post-deatils .back-page {
    margin-bottom: 20px;
  }

  .post-deatils .border-line {
    padding: 10px;
  }

  .post-deatils .profile img {
    width: 30px;
    height: 28px;
  }

  .post-deatils .profile h5 {
    font-size: 13px;
  }

  .post-deatils .all-content h2 {
    font-size: 18px;
  }

  .post-deatils .all-content span {
    font-size: 14px;
  }

  .post-deatils .all-content .by p {
    font-size: 14px;
  }

  .post-deatils p {
    line-height: 30px;
    font-size: 14px;
  }

  .post-deatils .all-content ul li {
    line-height: 30px;
    font-size: 14px;
  }

  .sup-mob {
    display: block;
  }

  .sylabus p {
    font-size: 16px;
    line-height: 36px;
  }

  .p-message .data .arabic {
    font-size: 18px !important;
    line-height: 34px;
  }

  .p-message .data .english {
    font-size: 16px;
    line-height: 35px;
  }

  .mission p {
    font-size: 16px;
    line-height: 36px;
  }

  .ark-sow .all {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .carousel-caption {
    top: 10px;
  }

  .banner-content h1 {
    font-size: 42px;
  }

  .banner-content h2 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
  }

  .what-offer .offer {
    height: 85vh;
  }

  .admin .hover-content {
    top: 12px !important;
    left: 122px !important;
    width: 169px !important;
    height: 167px !important;
  }
}

.staffs {
  position: relative;
}

.hover-content {
  position: absolute;
  top: 99px;
  left: 83px;
  width: 66%;
  height: 65%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
  flex-direction: column;
}

.staffs:hover .hover-content {
  display: flex;
}

.staff-hod .hover-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.staff-hod.bottom .hover-content {
  position: absolute;
  top: 95px;
  left: 72px;
  width: 75%;
  height: 70%;
}

.this-row {
  margin: 30px 0;
}

.staff-arabic .hover-content {
  position: absolute;
  top: 19px;
  left: -5px;
  width: 100%;
  height: 100%;
}

.Madrasah .hover-content {
  position: absolute;
  top: 0;
  left: 65px;
  width: 250px;
  height: 250px;
  background-color: rgb(0 0 0 / 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  /* box-sizing: border-box; */
  border-radius: 100%;
}

.admin .hover-content {
  position: absolute;
  top: 27px;
  left: 72px;
  width: 236px;
  height: 237px;
  background-color: rgb(0 0 0 / 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  /* box-sizing: border-box; */
  border-radius: 100%;
}

.staffs h5 {
  margin-top: 10px;
  color: #000;
  font-family: "Cabin", sans-serif;
  font-size: 16px;
}

.staffs h3 {
  font-size: 18px;
  text-align: center;
  font-family: "Philosopher", serif;
  background: linear-gradient(to right, #9a3c2a, #debb62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
  margin-bottom: 0px;
  font-weight: 700;
}

.s-staff .all-staff .admin h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: #118844;
  font-family: "Philosopher", serif;
  margin-top: 0px;
}

.s-staff .all-staff .english h2 {
  line-height: 0px;
}

.staffs .hover-content h5 {
  margin-top: 10px;
  color: #fff;
}

.s-staff .all-staff .staff-one .hover-content p {
  color: #ccc;
}

.s-staff .all-staff h2 {
  font-size: 16px;
  line-height: 30px;
  color: #000;
  font-family: "Cabin", sans-serif;
}

.privacy h3 {
  font-size: 22px;
  color: #9a3c2a;
  font-family: "Cabin", sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}

.privacy p {
  font-size: 16px;
  line-height: 32px;
}

.privacy li {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 10px;
}

.privacy .data {
  margin: 30px;
}

.privacy a {
  color: #9a3c2a;
}

.privacy a:hover {
  color: #debb62;
}

.privacy-policy {
  background-image: url(images/banner/banner_policy.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy h4 {
  font-size: 18px;
  font-family: "Cabin", sans-serif;
}

.privacy span {
  font-weight: 900;
  font-family: "Cabin", sans-serif;
}

@media (max-width: 768px) {
  .privacy-policy {
    height: 20vh;
  }

  .privacy .data {
    margin: 10px;
  }
}

.login {
  background-image: url(images/background/login-background.png);
  height: 100vh;
  background-position: center;
  background-size: cover;
}

.login h4 {
  color: #9a3c2a;
  text-align: center;
}

.login-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 30px 40px;
  width: 450px;
  position: relative;
  top: 20%;
  left: 35%;
  border-radius: 10px;
}

.login-box .login-content label {
  color: #555;
}

.login-box .login-content input {
  border-radius: 5px;
  height: 40px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 10px;
}

.login-box .login-content {
  width: 100%;
}

.login-box .login-content button {
  background-color: #debb62;
  border: none;
  border-radius: 5px;
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}

.login-box .login-content p {
  font-size: 14px;
}

.login .btn-login {
  text-decoration: none;
  color: #fff;
  width: 100%;
}

.login .cust-regester {
  color: #debb62;
}

.login .forget-p {
  display: flex;
  justify-content: end;
}

.login .forget-p a {
  color: #9a3c2a;
  font-size: 14px;
  margin-bottom: 20px;
}

.cust-register {
  height: 135vh;
}

.cust-register-box {
  top: 10%;
}

/* Tabs Container */
.payment-details {
  margin: 100px 0;
}

.payment-details .tabs {
  display: flex;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tab Buttons (Left Side) */
.payment-details .tab-buttons {
  display: flex;
  flex-direction: column;
  /* Arrange buttons vertically */
  width: 200px;
  border-right: 1px solid #ddd;
  background: #f9f9f9;
}

.payment-details .tab-button {
  padding: 15px;
  text-align: left;
  /* Align text to the left */
  cursor: pointer;
  background: #f9f9f9;
  border: none;
  outline: none;
  font-size: 16px;
  transition: background 0.3s;
}

.payment-details .tab-button:hover {
  background: #f1f1f1;
}

.payment-details .tab-button.active {
  background: #007bff;
  color: white;
  font-weight: bold;
}

/* Tab Content */
.payment-details .tab-content-container {
  flex: 1;
  /* Take up the remaining space */
  padding: 20px;
}

.payment-details .tab-button.active {
  background-color: #564438;
  color: white;
  font-weight: bold;
}

.payment-details .tab-content {
  padding: 20px;
  width: 80%;
}

.payment-details .top-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ------------- */
/* Dropdown Container */
.top-btns .dropdown {
  position: relative;
  display: inline-block;
}

.top-btns .dropdown-button {
  background-color: #fff;
  color: #000;
  padding: 5px 50px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid #debb62;
}

.top-btns .dropdown-button:hover {
  background-color: #debb62;
}

.top-btns button:focus:not(:focus-visible) {
  outline: 0;
  color: #fff;
  background-color: #debb62;
}

.top-btns .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1000;
  min-width: 160px;
}

.top-btns .dropdown-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.top-btns .dropdown-menu a:hover {
  color: #9a3c2a;
}

.top-btns .dropdown.show .dropdown-menu {
  display: block;
}

.top-btns .new-btn a {
  text-decoration: none;
  background-color: #d0b120;
  color: #fff;
  border-radius: 5px;
  padding: 8px 15px;
}

/* table */
.payment-details .table-container {
  overflow-x: auto;
  margin: 0 auto;
}

.payment-details .responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.payment-details .responsive-table thead {
  background-color: #f1f1f1;
}

.payment-details .responsive-table th,
.responsive-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
}

.payment-details .responsive-table th {
  font-weight: bold;
  color: #333;
}

/* Status Column */
.payment-details .status.active {
  color: green;
  font-weight: bold;
}

/* Button Styles */
.payment-details .btn {
  padding: 5px 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  color: white;
  margin-right: 5px;
}

.payment-details .btn-history {
  background-color: #564438;
}

.payment-details .btn-edit {
  background-color: #debb62;
}

.payment-details .btn-cancel {
  background-color: #cb0000;
}

.payment-details .btn:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .payment-details .tab-button {
    padding: 5px;
    font-size: 12px;
  }

  .top-btns .dropdown-button {
    padding: 5px 10px;
    font-size: 14px;
  }

  .top-btns .new-btn a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .payment-details {
    margin: 20px 0;
  }

  .payment-details .responsive-table th,
  .responsive-table td {
    padding: 5px 10px;
    font-size: 12px;
  }

  .payment-details .btn {
    font-size: 10px;
    width: 100%;
    margin-bottom: 2px;
  }
}

@media (max-width: 768px) {
  .login-box {
    padding: 20px;
    width: 90%;
    top: 5%;
    left: 5%;
  }

  .login {
    height: 80vh;
  }

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

  .staffs:hover .staff-one .hover-content {
    display: none;
  }

  .slick-slider {
    margin: 50px 0;
  }

  .slick-slide {
    margin: 0px 25px;
  }

  .slick-slide img {
    width: 50px !important;
    height: auto !important;
  }

  /* .supports .image {
        flex-direction: column;
    } */

  .all-publication .images img {
    width: 100%;
    height: 220px;
  }

  .Publication-content .dropdown-content {
    right: 0;
  }

  .post-deatils .dropdown-content {
    right: 0;
  }

  /* ---------- */
  .donation-form form {
    width: 100%;
  }

  .donation-form form {
    width: 100%;
  }

  .kuruma-type img {
    width: 54px !important;
    height: auto !important;
  }

  .donation-form .form-check.radio input {
    width: 9% !important;
    height: 17px;
  }

  .donation-form .form-check.radios input {
    width: 26% !important;
    height: 17px;
  }
}

/* PROFILE */

.bottom-icons .dropdown {
  position: relative;
  display: inline-block;
}

.bottom-icons .dropdown-content {
  display: none;
  position: absolute;
  top: 140%;
  right: -80px;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border: 1px solid #ccc;
}

.bottom-icons .dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #9a3c2a;
}

.bottom-icons a i:hover {
  color: #0e6a4d;
}

.bottom-icons .dropdown-content a:hover {
  background-color: #debb62;
  color: #fff;
}

.bottom-icons .dropdown.active .dropdown-content {
  display: block;
}

.bottom-icons .dropdown-toggle::after {
  display: none;
}

.menu-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

input::placeholder {
  padding-left: 5px;
}

input {
  padding-left: 5px;
}

@media screen and (max-width: 768px) {
  .visit-btn {
    display: none;
  }

  .menu-s {
    gap: 20px;
    flex-direction: row-reverse;
  }

  .bottom-icons .dropdown-content {
    right: 0;
  }
}

.inner-tab {
  background-color: #f9f9f9;
  color: #9a3c2a;
  padding: 10px 20px;
  border: 1px solid #564438;
}

.inner-tab.active {
  border: none;
  background-color: #564438;
  color: #fff;
  padding: 10px 20px;
}

/* new style */
.kuruma {
  margin: 80px 0;
}

.kuruma h1 {
  text-align: center;
  color: #8a9a5b;
  font-family: "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 20px;
}

.kuruma .kuruma-p {
  text-align: center;
  font-size: 18px;
  line-height: 35px;
  padding: 0 70px;
}

.kuruma .kuruma-data p {
  font-size: 16px;
  line-height: 35px;
}

.kuruma .kuruma-data img {
  width: 90%;
}

.kuruma .images img {
  width: 100%;
}

.kuruma-details {
  margin-top: 80px !important;
}

.kuruma-form {
  background-color: #e9ebe3;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px !important;
}

.kuruma-form label {
  color: #000000;
  font-size: 15px;
  margin: 10px 0;
}

.kuruma-form input {
  border: 2px solid #8a9a5b;
  background-color: #e8ecdc;
  color: #000000;
  border-radius: 8px;
  width: 100%;
  height: 40px;
}

.kuruma-form .names {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kuruma h3 {
  color: #26442d;
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
}

/* .kuruma h4{
    color: #26442d;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
text-align: center;
} */
.kuruma .pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.kuruma-type p {
  margin-bottom: 0;
}

.kuruma-type span {
  margin-bottom: 0;
  font-size: 15px;
}

.kuruma-type h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
}

.kuruma-form ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.kuruma form {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.kuruma h2 {
  color: #26442d;
  font-family: "Times New Roman", Times, serif;
  font-size: 38px;
  font-weight: 700;
}

.kuruma .d-btn {
  display: flex;
}

.kuruma-form input::placeholder {
  padding-left: 5px;
  font-size: 14px;
}

.radio-btns {
  display: flex;
}

.radio-btns input {
  width: 20%;
  height: 18px;
}

.radio-btns label {
  font-size: 15px;
  margin: 0;
}

.kuruma-form textarea {
  border: 2px solid #8a9a5b;
  background-color: #e8ecdc;
  color: #000000;
  border-radius: 8px;
  width: 100%;
}

.total {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kuruma-type.tot {
  display: flex;
  align-items: center;
}

.kuruma .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #8a9a5b;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #8a9a5b29;
}

.kuruma .form-check-input:checked {
  background-color: #8a9a5b;
  border-color: #7d8c51;
}

@media screen and (max-width: 780px) {
  .kuruma h1 {
    font-size: 28px;
  }

  .kuruma {
    margin: 30px 0;
  }

  .kuruma .kuruma-p {
    font-size: 16px;
    padding: 0 10px;
  }

  .kuruma h2 {
    font-size: 28px;
    text-align: center;
  }

  .kuruma .kuruma-data img {
    width: 100%;
    margin-bottom: 20px;
  }

  .kuruma .kuruma-data p {
    font-size: 14px;
    line-height: 30px;
    text-align: center;
  }

  .kuruma-form label {
    font-size: 13px;
  }

  .kuruma-form {
    padding: 20px;
  }

  .kuruma h3 {
    font-size: 18px;
  }

  .kuruma-type span {
    font-size: 13px;
  }

  .kuruma-type h6 {
    font-weight: 400;
    font-size: 13px;
  }

  .kuruma-type p {
    margin-bottom: 0;
    font-size: 13px;
  }
}

/* Popup Overlay */
.login-popup .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 77%);
  z-index: 999;
}

/* Popup Box */
.login-popup .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 8px;
  width: 380px;
  text-align: center;
}

/* Close Button */
.login-popup .popup-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Popup Form Styles */
.login-popup .popup input {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-popup .popup .btn-submit {
  background-color: #564438;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.login-popup .popup .btn-submit:hover {
  background-color: #debb62;
}

@media (max-width: 768px) {
  .login-popup .popup {
    width: 100%;
  }

  .grid-post .image-col img {
    height: 200px;
  }

  .donation-form .school-fees-form {
    width: 100%;
  }
}

.principle-image img {
  /* width: 250px; */
  /* height: 250px; */
  border-radius: 100%;
  border: 5px solid #debb62;
}

.prin-msg h3 {
  line-height: 45px;
}

.imag-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.imag-div img {
  width: 350px;
  height: auto;
}

.rounds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
}

.rounds .round-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 20px;
  font-weight: 600;
  border: 2.5px solid black;
}

.rounds .round-1.blue {
  background-color: #004096;
}

.rounds .round-1.yellow {
  background-color: #ffbd59;
}

.rounds .round-1.red {
  background-color: #e80e0e;
}

.rounds .round-1.green {
  background-color: #007f42;
}

.rounds .round-1.brown {
  background-color: #f77c4f;
}

.ark-img-div img {
  width: 80%;
}

.ark-img-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.waqaf-data h3 {
  margin-bottom: 20px;
  color: #debb62;
  font-size: 28px;
}

.waqaf-data h4 {
  margin-bottom: 20px;
  color: #9a3c2a;
  font-size: 20px;
  font-weight: 600;
}

.waqaf-data p {
  line-height: 30px;
}

.waqaf-data {
  margin: 100px 0;
}

@media screen and (max-width: 768px) {
  .waqaf {
    height: 20vh;
  }

  .waqaf-data {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .features-box .last {
    align-items: start;
    gap: 10px;
    flex-direction: column;
    margin-top: 15px;
  }

  .features-box .last p {
    font-size: 24px;
  }

  .about-data .chairman-message img {
    width: 70% !important;
    height: auto !important;
  }

  .features {
    top: -50px;
    position: relative;
  }

  .experience .card-two p {
    font-size: 20px;
  }

  .experience .card-two .grid-star .count p {
    font-size: 20px;
  }

  .Our-Legacy {
    padding: 10px 5px;
  }

  .experience .legacy-two {
    font-size: 12px !important;
  }

  .experience .card-two .grid-star .count img {
    height: 40px;
  }

  .principle-image img {
    width: 200px !important;
    height: 200px !important;
  }

  .prin-msg h3 {
    font-size: 17px;
    font-weight: 800;
  }

  .prin-msg p {
    font-size: 16px;
    text-align: justify;
  }

  .s-staff .all-staff .staff-one h2 {
    font-size: 22px;
    margin-top: 15px;
    font-weight: 600;
  }

  .imag-div img {
    width: 250px;
    height: auto;
  }

  .rounds {
    flex-wrap: wrap;
    gap: 10px;
  }

  .rounds .round-1 {
    width: 100px;
    height: 100px;
    font-size: 12px;
    padding: 10px;
  }

  .ark .Framework {
    gap: 20px;
  }

  .features-box .last img {
    width: 25% !important;
  }

  .features-box .last .donate-btn {
    font-size: 14px;
    width: 42%;
  }

  .ark-image-2 img {
    width: 100%;
  }

  .table-three {
    overflow-x: auto;
  }

  /*  */
  .form-input.first {
    gap: 10px !important;
  }

  .kurma-form {
    margin: 20px !important;
  }

  .form-data h5 {
    font-size: 15px;
  }

  .form-data h4 {
    font-size: 14px !important;
  }
}


/* category section */
.category-banner {
  /* background-image: url('images/banner/fundrising.banner.jpg'); Ensure correct path */
  background-image: url('/external/Public_HTML/images/banner/catrgory-banner.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.category {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;

}

.category-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.category-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Content Grid */
.category-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  align-items: center;
}

/* Individual Card */
.category-card {
  width: 100%;
  max-width: 300px !important;
  /* responsive max width */
  height: 350px;
  background: #DEBB62;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;

}

/* Image container */
.category-img {
  width: 100%;
  height: 220px;
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* prevents image distortion */
  border-radius: 8px;
}

/* Title */
.category-card h2 {
  font-size: 25px;
  margin: 15px 0;
  color: #222;
  padding: 0 10px;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hover Effects */
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Button */
.category-card .btn {
  display: inline-block;
  margin: 0px auto 20px;
  padding: 10px 30px;
  width: 80%;
  max-width: 200px;
  background: #9A3C2A;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.category-card .btn:hover {
  background: #564438;
  transform: scale(1.05);
}



/* products page */
.product-banner {
  background-image: url('/external/Public_HTML/images/banner/products.jpg');
  /* Ensure correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.program-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

/* Title */
.program-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

/* Grid container */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each card */
.program-card {
  width: 281px;
  background: #DEBB62;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

/* Card Image */
.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Card Title */
.program-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
}

/* Card Text */
.program-card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.program-card-btn {
  text-align: center;
}

/* Button */
.program-btn {

  margin-bottom: 5px;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  background: #9a3c2a;
  /* you can change this color */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.program-btn:hover {
  background: #564438;
  color: black;
}

/* Button wrapper */
.product-card-btn {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;

}

/* Icon buttons */
.product-btn {
  margin-bottom: 5px;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  background: #9a3c2a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.product-btn:hover {
  background: #564438;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* product details page */
.details-banner {
  background-image: url('/external/Public_HTML/images/banner/products.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.product-details {
  padding: 40px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
}

.product-details-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Product Image */
.product-image {
  text-align: center;
  flex: 1;
}

.product-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Thumbnail Images */
.product-subimage {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.product-subimage img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-subimage img:hover {
  border: 2px solid #007bff;
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.product-info .price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-info .description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

/* Buttons */
.product-info .btn {
  display: inline-block;
  margin-right: 12px;
  padding: 10px 75px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.product-info .btn:first-of-type {
  background: #9A3C2A;
  color: #fff;
}

.product-info .btn:first-of-type:hover {
  background: #DEBB62;

}

.product-info .btn:last-of-type {
  background: #DEBB62;
  color: #333;
}

.product-info .btn:last-of-type:hover {
  background: #9A3C2A;
  color: white;
}

.product-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

/* Title */
.product-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

/* Grid container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each card */
.product-card {
  width: 281px;
  background: #DEBB62;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

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

/* Card Image */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Card Title */
.product-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
}

/* Price styling */
.product-price {
  font-size: 1rem;
  margin: 10px 0 15px;
}

.product-price .new-price {
  font-weight: bold;
  color: #222;
  margin-right: 8px;
}

.product-price .old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 0.9rem;
}

/* Button wrapper */
.product-card-btn {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;

}

/* Icon buttons */
.product-btn {
  margin-bottom: 5px;
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
  background: #9a3c2a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.product-btn:hover {
  background: #564438;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* Responsive */
@media (max-width: 900px) {
  .product-details-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-subimage {
    justify-content: center;
  }

  .product-info {
    margin-top: 20px;
  }
}

/* check out page */
.alumniNews-banner {
  background-image: url('/external/Public_HTML/images/banner/alumini-banner.jpg');


  /* Ensure correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* ===== NEWS DETAILS STYLES ===== */
.news-details {
  line-height: 1.7;
  color: #333;
}

.news-details h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #222;
}

.news-details .lead {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.news-details .news-meta {
  font-size: 0.875rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.news-details .news-meta strong {
  color: #000;
}

.news-details .news-actions img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.news-details .news-actions img:hover {
  transform: scale(1.2);
}

.news-details figure {
  margin: 0 0 1.5rem 0;
}

/* .news-details figure img {
            width: 1116px;
            height: 447px !important;
            border-radius: 8px;
        } */

.news-details figure figcaption {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}

.news-details p {
  margin-bottom: 1rem;
}


.news {
  background-color: #f9f9f9;
  /* light background */
  padding-bottom: 50px;
}

.news h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
  letter-spacing: 1px;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.news-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.news-item h4 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #9A3C2A;
  /* Your brand accent color */
  font-weight: 600;
  line-height: 1.4;
}

/* Optional: Read More button if you add later */
.news-item a {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1px solid #9A3C2A;
  border-radius: 6px;
  color: #9A3C2A;
  text-decoration: none;
  transition: 0.3s;
}

.news-item a:hover {
  background: #9A3C2A;
  color: #fff;
}

.join-alumini {
  text-align: center;
  margin: 20px 0;
}

.join-btn {
  display: inline-block;
  background: #9A3C2A;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.join-btn:hover {
  background: #564438;
  color: white;
  transform: scale(1.05);
}

/* cart  */
/* Banner */
.swal2-container .swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: #fd3b3b;
  /* background-color used directly */
  color: #fff;
  font-size: 1em;
}

.cart-banner {
  background-image: url('/external/Public_HTML/images/banner/cart-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Product list */
section.product-list {
  padding: 20px 0;
}

.product-list h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.product-list h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-list p {
  margin: 10px 0;
  color: #555;
}

/* Product images */
.product-list img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Quantity buttons */
.d-flex button {
  /* background: #9A3C2A; */
  border: none;
  color: #9A3C2A;
  font-size: 18px;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}


.d-flex input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  font-size: 16px;
}

/* Summary Section */
.summary-section {
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
}

/* Buttons */
.products-button,
.summary-section .btn {
  text-decoration: none;
  background: #9A3C2A;
  border: none;
  color: #fff;
  padding: 10px 50px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: 0.3s;
}

.products-button:hover,
.summary-section .btn:hover {
  background: #564438 !important;
  color: #fff !important;
}

.product-item {
  background: #fff;
  /* optional: makes it look like a card */
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  position: relative;
}

.delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgb(255, 255, 255) !important;
  border: none;
  color: #9A3C2A;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.delete-btn:hover {
  color: #564438;
}


/* Responsive */
@media (max-width: 768px) {
  .cart-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .product-list img {
    width: 100%;
    height: auto;
  }

  .summary-section {
    margin-top: 20px;
  }
}

/* check out page */
.check-banner {
  background-image: url('/external/Public_HTML/images/banner/check out banner.jpg');
  /* Ensure correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}


.checkout {
  padding: 40px 0;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.checkout .container {
  margin: auto;

}

.checkout-content h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.checkout-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="number"],
.checkout-form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 5px;
  /* border: 1px solid #ccc; */
  border-radius: 6px;
  font-size: 15px;
}

.checkout-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.checkout-form .col {
  flex: 1;
}

.abutton {
  background-color: #4CAF50;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
}

.donation-amount {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.amount-button {
  padding: 10px 20px;
  border: 1px solid #28a745;
  background-color: white;
  color: #28a745;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.amount-button:hover {
  background-color: #28a745;
  color: white;
}

.checkout-form input[type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}

.checkout-form button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #9a3c2a;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 20px;
}

.checkout-form button[type="submit"]:hover {
  background-color: #564438;
}

.checkout-form label {
  font-weight: 600;
}

.product-summary h6 {
  font-size: 15px;
}

.product-summary span {
  font-size: 18px;
}

/* Ensure funf path */
.donation-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #DEBB62;
  height: 100%;
}

.donation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.donation-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.donation-card .card-body {
  padding: 20px;
  text-align: center;
}

.donation-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.progress {
  height: 12px;
  border-radius: 8px;
  background-color: #e9ecef;
}

.progress-bar {
  background-color: #564438 !important;
  font-size: 0.75rem;
  line-height: 12px;
}

.donate-btn {
  background-color: #9a3c2a !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.donate-btn:hover {
  background-color: #7a2f20;
  color: #fff;
}

.share-buttons .btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  padding: 0;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.share-buttons .btn:hover {
  transform: scale(1.1);
}

/* Social colors */
.fb-btn {
  background-color: #1877f3;
  color: #fff;
}

.wa-btn {
  background-color: #25d366;
  color: #fff;
}

.link-btn {
  background-color: #17a2b8;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .donation-card .card-img {
    height: 180px;
  }

  .donation-card .card-body {
    padding: 15px;
  }
}


.donation-banner {
  background-image: url('/external/Public_HTML/images/banner/fundrising.banner.jpg');
  /* Ensure correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.donation-box {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.donation-box h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

.donation-box p {
  font-size: 0.95rem;
  color: #555;
}

.fund-status {
  font-size: 1rem;
  margin-top: 15px;
  text-align: center;
  color: #9a3c2a;
}

/* Checkout Form */
.checkout-form {
  color: #fff;
  background: #564438;
  border: 5px solid #debb62;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-form .form-control {
  border-radius: 10px;
  padding: 10px;
  border: 2px solid #debb62;
}

.checkout-form .form-control:focus {
  border-color: #debb62;
  box-shadow: 0 0 5px rgba(86, 68, 56, 0.4);
}

/* Submit Button */
.checkout-form .btn-primary {
  text-align: center;
  text-decoration: none;
  color: #000;
  background-color: #debb62;
  padding: 10px 20px;
  border: 3px solid #fff;
  width: fit-content;
  border-radius: 10px 0 10px 0;
}

.type-details .form-input {
  display: flex;
  gap: 20px;
  /* space between radio buttons */
  align-items: center;
  /* vertically align */
}

@media (max-width: 768px) {
  .donation-box {
    height: auto !important;
    padding: 20px;
  }

  .checkout-form {
    margin-top: 20px;
  }

  .donation-amount {
    justify-content: center;
  }
}

/* check out page */
.welcome-banner {
  background-image: url('/external/Public_HTML/images/banner/alumini-banner.jpg');
  /* Ensure correct path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}


.welcome {
  padding: 60px 0;
}

.welcome img {
  width: 100%;
  border-radius: 10px;
  /* optional – smooth corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.welcome h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #9A3C2A;
}

.welcome p {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {

  .welcome .col-4,
  .welcome .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .welcome h1 {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}

.involve {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.involve h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}

.involve .col-4 {
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involve .col-4 img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.involve .col-4 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
  margin-top: 10px;
}

.involve .col-4:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 12px;
}

.involve .col-4:hover img {
  transform: scale(1.05);
}

.involve p {
  margin-top: 40px;
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.help-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 20px;
  border-radius: 12px !important;
  border: 2px solid #9A3C2A;

}

.help-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.help-icon img {
  max-width: 80px;
}

/* Memories Section */
.memories {
  background-color: #f9f9f9;
  /* light background */
  padding: 60px 0;
}

.memories h4 {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
}

.memories p {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
}

.memories img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.memories img:hover {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .memories h4 {
    font-size: 1.3rem;
    text-align: center;
  }

  .memories p {
    text-align: center;
  }

  .memories img {
    margin-bottom: 20px;
  }
  
}


        .timeline {
            padding: 60px 0;
            margin: 0px 50px 100px;
        }

         .timeline-container {
            display: flex;
            gap: 20px;
        }
        .timeline h4 {
            font-size: 38px;
            font-weight: 800;
            text-align: center;
            margin: 0px auto;
            margin-bottom: 20px;
        }


        /* LEFT TABS */
        .timeline-tabs {
            width: 30%;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between !important; */
        }

        .tab {
            padding: 15px;
            margin-bottom: 10px;
            border: none;
            background: #debb62;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
            transition: 0.3s;
        }

        .tab.active {
            background: #9a3c2a;
            color: #fff;
        }

        /* RIGHT CONTENT */
        .timeline-content {
            width: 70%;
            background-color: #9a3c2a;
            padding: 15px;
            color: #fff;
            
        }
        .timeline-content h3 {
            font-size: 25px;
            margin: 0px 0px 20px 0px;
        }
          .timeline-content p {
            font-size: 18px;
        }

        .content {
            display: none;
            animation: fade 0.3s ease-in-out;
        }

        .content.active {
            display: block;
        }

        @keyframes fade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

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

            .timeline-tabs,
            .timeline-content {
                width: 100%;
            }

            .tab {
                text-align: center;
            }
        }