/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("button.css?v=1");

/* Apply Poppins to the entire body */
body {
  font-family: "Poppins";
  overflow-x: hidden;
}

a,
a:hover,
a:visited {
  color: #1d1d1d;
  text-decoration: none;
}

.btn {
  border-radius: 0;
  margin: 0;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.text-main {
  color: #ff8800;
}

.btn-outline-primary {
  border: 1px solid #ff8800;
  color: #ff8800;
}

.btn-outline-primary:hover {
  border: 1px solid #ff8800;
  background-color: #ff8800;
  color: #fff;
}

.gradint-text {
  text-align: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(163deg, #ffce33 3.08%, #f80 83.01%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wl80m100 {
  width: 80%;
}

/* Headers */
.top-header {
  width: 100%;
  height: 52px;
  background-color: #ffce33;
  padding-right: 10%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}

.top-header a {
  font-size: 20px;
  border-radius: 0;
  margin-right: 16px;
}

.bg-orange {
  background-color: #ff8800;
  color: #ffffff;
}

.bg-orange:hover {
  background-color: #ff8800;
  color: #ffffff;
}

.main-nav .nav-link {
  color: #ff8800;
  font-size: 17px;
  border-bottom: 2px solid transparent;
  /* Add transparent border by default */
}

.main-nav .nav-link:hover {
  border-bottom-color: #ff8800;
}

.main-nav a.active {
  color: #ff8800 !important;
  border-bottom-color: #ff8800;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: 1px solid #ff8800;
  border-radius: 0;
  background-color: #fff9e5;
  box-shadow: 0 4px 8px rgba(255, 136, 0, 0.2);
  padding: 0;
  margin-top: 0.5rem;
  min-width: 200px;
}

.dropdown-item {
  color: #ff8800;
  padding: 10px 15px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 136, 0, 0.2);
  transition: all 0.3s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(255, 136, 0, 0.1);
  color: #ff8800;
  padding-left: 20px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

.hero-section {
  width: 100%;
  background-color: #fff9e5;
}

.hero-section .hero-title {
  display: flex;
  justify-content: start;
  align-items: center;
  background-image: url("../images/background_logo.png");
  background-position: left center;
  background-size: 500px auto;
  background-repeat: no-repeat;
}

.hero-section .hero-title h1 {
  font-size: 50px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.32px;
  background: linear-gradient(163deg, #ffce33 3.08%, #f80 87.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .hero-title h6 {
  width: 85%;
}

.top-grid .col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
}

.top-grid .col-2 img {
  width: 80%;
  height: auto;
}

.grid-border {
  border: 0.5px solid #f80;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: #fff9e5;
  /* Light background color */
  padding: 10px 0;
  position: relative;
}

/* Scrolling animation */
.marquee {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee2 {
  display: inline-flex;
  animation: marquee2 25s linear infinite;
}

/* Each box style */
.marquee-item {
  min-width: 150px;
  /* Width of each box */
  height: 50px;
  border: 1px solid #ff8800;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  font-weight: bold;
  color: #ff8800;
  cursor: pointer;
  flex-shrink: 0;
  /* Prevent shrinking */
}

/* Optional: Add hover effect */
.marquee-item:hover {
  background-color: #ff8800;
  color: #fff;
}

/* Keyframes for continuous scrolling */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee2 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.stats-section {
  width: 100%;
  background-image: url("../images/rect.png");
  background-size: 65px 65px;
}

.stats-section .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-section .col-md-4 .stats-title {
  border: 2px solid #ff8800;
  border-radius: 11px;
  color: #1d1d1d;
  margin-bottom: 20px;
  font-weight: lighter;
  background-color: #fff;
  width: 230px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats-section .col-md-4 .stats {
  width: 139px;
  height: 154px;
  flex-shrink: 0;
  border: 2px solid #ff8800;
  border-radius: 11px;
  color: #1d1d1d;
  font-weight: lighter;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.stats img {
  width: 65px;
  height: 65px;
  margin-bottom: 1rem;
}

.stats p {
  color: #1d1d1d;
  font-weight: lighter;
}

.programs-title {
  text-align: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(163deg, #ffce33 3.08%, #f80 83.01%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 1.3rem;
}

.section-programs {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-programs::before {
  content: "";
  width: 185px;
  height: 185px;
  flex-shrink: 0;
  background-color: #f80;
  filter: blur(175.5px);
  position: absolute;
  left: 0;
  top: 20%;
}

.programs {
  width: 80%;
  background-image: url("../images/striped.png");
  background-size: 100% 100%;
}

.programs .inner {
  padding: 20px 50px;
}

.programs .inner img {
  width: 60%;
  cursor: pointer;
}

.section-location {
  width: 100%;
  position: relative;
  height: 480px;
}

.section-location .title {
  position: absolute;
  top: 60px;
  left: 100px;
}

.section-location .arclogo {
  position: absolute;
  top: 0;
  right: 100px;
  width: 200px;
  height: 140px;
  background-image: url("../images/logoarc.png");
  background-size: contain;
  background-position: center;
}

.section-location .bottom-container {
  background-color: #fff9e5;
  height: auto;
  position: relative;
  top: 135px;
  z-index: auto;
  width: 100%;
}

.bottom-container .spacer {
  width: 100%;
  height: 60px;
}

.location-grid .col {
  width: calc(100% / 7);
  height: 35px;
}

.location-grid span.gradint-text {
  font-size: clamp(10px, 1vw, 14px);
}

.location-grid .grid-border {
  background-color: #fff;
  border-radius: 2px;
}

.section-bookstore {
  width: 100%;
  background-color: #fff9e5;
  height: auto;
}

.owl-carousel .item {
  text-align: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #ff8800;
  border-radius: 5px;
}

.owl-carousel .item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.owl-nav button {
  background: #000;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
}

.owl-nav button:hover {
  background: #444;
}

.setcion-latest {
  width: 100%;
  background-image: url("../images/rect.png");
  background-size: 68px 68px;
  background-color: #fff9e5;
  height: auto;
}

.setcion-latest .latest-title {
  background-color: rgba(255, 249, 229, 0.7);
}

.latest-box-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.latest-box {
  width: 77px;
  height: 77px;
  background-color: #fff;
  border: 1px solid #ff8800;
  border-radius: 7px;
  flex-shrink: 0;
}

.latest-line {
  width: 55px;
  height: 1px;
  background-color: #ff8800;
}

.latest-view-box {
  width: 100%;
  height: 300px;
  border: 1px solid #f80;
  border-radius: 7px;
  background-color: #fff;
}

.section-testimonial {
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url("../images/rect.png");
  background-size: 68px 68px;
}

.section-testimonial .t-title {
  background-color: rgba(255, 255, 255, 0.8);
}

.section-support {
  width: 100%;
  height: auto;
}

.support-box .grid-box {
  width: 100%;
  background-image: url("../images/rect.png");
  background-size: 68px 68px;
  padding: 10px 20px;
}

.section-support .support-box {
  height: 149px;
}

.section-support .support-box-s {
  height: 74px;
}

.list-group-item a:hover {
  color: #f80;
}
.list-group-item i {
  color: #f80;
}

.email {
  word-wrap: break-word;
  white-space: normal;
}

/* about */
.about-head {
  width: 100%;
  position: relative;
  background-color: #fff9e5;
}

.about-head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 35px;
  background-image: url("../images/head-d-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-head::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 35px;
  height: 60px;
  background-image: url("../images/head-d-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-head .img {
  width: 63%;
}

.bullet {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.5rem;
  gap: 15px;
  align-items: center;
}

.bullet .img {
  width: 35px;
  height: 35px;
}

.bullet p {
  margin: 0; /* Remove default margins */
  font-size: 16px; /* Adjust text size as needed */
  line-height: 1.5; /* Ensure good readability */
  font-weight: lighter;
}

.about-perfom {
  width: 100%;
  background-color: #fff9e5;
  position: relative;
  height: auto !important;
}

.about-perfom .perfom-img {
  width: 75%;
}
.about-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../images/p-bottom.png");
  background-size: 100% 100%;
  z-index: 0;
}

.about-perfom .container {
  position: relative;
  z-index: 2;
}

/* reviews */
.pale-bg {
  background-color: #fff9e5;
}
.grid-container {
  margin: 0 auto;
}

.grid-item {
  background: #fff;
  border: 1px solid #ff8800;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  width: 32%;
  position: relative;
}

.grid-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #ff8800;
  border-bottom: 1px solid #ff8800;
  border-radius: 8px;
  background-color: transparent;
}

.grid-item p {
  margin: 0;
}

@media (max-width: 768px) {
  .grid-item {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-item {
    width: 25%;
  }
}

/* FAQ Section */
.faq-top {
  width: 100%;
  height: 200px;
  background-color: #fff9e5;
  position: relative;
  clip-path: ellipse(70% 100% at 50% 0%);
  transition: clip-path 0.5s ease, height 0.5s ease; /* Smooth transition for shape change */
}
.faq-top .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.search {
  display: inline-block;
  background-color: #fff;
  width: 60%;
  height: 60px;
}

.search input {
  height: 60px;
  width: calc(100% - 60px);
  border: none !important;
  outline: none;
  outline-width: 0;
  padding-left: 10px;
  font-size: 16px;
}
.search input:focus {
  border: none !important;
  outline: none;
  outline-width: 0;
}

.search i {
  height: 60px;
  width: 60px;
  width: auto;
}

.accordion-button {
  background: linear-gradient(
    90deg,
    rgba(255, 136, 0, 0.6) 0%,
    rgba(255, 206, 49, 0.6) 100%
  ) !important;
  box-shadow: none !important;
  outline: 0;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: 0;
}

.accordion-body {
  font-weight: lighter;
}

.donation-form input,
.donation-form input:focus {
  height: 50px;
  width: 100%;
  border: none !important;
  outline: none;
  box-shadow: none;
  background-color: #eaeaea;
  padding-left: 10px;
  border-radius: 5px;
}

.offline-top {
  width: 100%;
  height: 400px;
  background-color: #fff9e5;
  clip-path: ellipse(70% 100% at 50% 0%);
  position: relative;
}

.ellipse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 136, 0, 0.56) 0%,
    rgba(255, 206, 49, 0.6) 100%
  );
  transform: rotate(108.311deg);
  top: 12px;
  left: 12px;
}

.ellipse2 {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 136, 0, 0.56) 0%,
    rgba(255, 206, 49, 0.6) 100%
  );
  transform: rotate(108.311deg);
  bottom: 126px;
  left: 56px;
}
.ellipse3 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: rgba(255, 206, 49, 0.6);
  transform: rotate(108.311deg);
  bottom: 136px;
  right: 56px;
}
.ellipse4 {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 136, 0, 0.6) 0%,
    rgba(255, 206, 49, 0.6) 100%
  );
  transform: rotate(108.311deg);
  top: 31px;
  right: 137px;
}
.characters {
  width: 50%;
}

.follow-us a.nav-link {
  width: 30px;
  height: 30px;
  border-radius: 10%;
  background-color: #ff8800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
.reg-btn2 {
  height: 60px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: larger;
  text-decoration: none;
}
.gradient-btn {
  background: linear-gradient(
    to right,
    #ff8800,
    #ffdd00
  ); /* Orange to Yellow Gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
}
.gradient-btn:hover {
  background: linear-gradient(
    to left,
    #ff8800,
    #ffb300
  ); /* Orange to Yellow Gradient */
}

/* Modal Styles */
.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.modal-header .btn-close-white {
  opacity: 1;
}

.modal-body {
  padding: 20px 25px 30px;
}

.form-label {
  color: #444;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-control,
.form-select {
  border: 1px solid rgba(255, 136, 0, 0.3);
  padding: 10px 15px;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #ff8800;
  box-shadow: 0 0 0 0.25rem rgba(255, 136, 0, 0.25);
}

.modal .bg-orange {
  transition: all 0.3s ease;
}

.modal .bg-orange:hover {
  background-color: #ff9922 !important;
  transform: translateY(-2px);
}

.alert {
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 0.9rem;
}

.alert-success {
  background-color: rgba(25, 135, 84, 0.1);
  border-color: rgba(25, 135, 84, 0.2);
  color: #198754;
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.modal .btn[type="submit"] {
  position: relative;
  overflow: hidden;
}

.modal .btn[type="submit"]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 1000px 100%;
  background-position: -1000px 0;
  animation: shimmer 2s infinite;
  opacity: 0;
}

.modal .btn[type="submit"]:hover:after {
  opacity: 1;
}

/* DJP Introduction Section */
.intro-section {
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 136, 0, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.intro-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 206, 49, 0.1);
  border-radius: 50%;
  bottom: -75px;
  right: -75px;
  z-index: 0;
}

.video-container {
  transition: transform 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
}

.video-tag {
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 136, 0, 0.3);
}

.video-container:hover .video-tag {
  background-color: #ff9922 !important;
  box-shadow: 0 4px 15px rgba(255, 136, 0, 0.4);
}

.intro-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.intro-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 136, 0, 0.15);
}

.intro-section .bg-orange {
  background-color: #ff8800;
}

.intro-section .list-unstyled li {
  transition: transform 0.2s ease;
}

.intro-section .list-unstyled li:hover {
  transform: translateX(5px);
}

.intro-section .rounded-circle {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.intro-section .list-unstyled li:hover .rounded-circle {
  transform: rotate(360deg);
  background-color: #ff9922 !important;
}

.social a:hover{
            color:white !important;
        }
