@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

:root {
  --themeclrone: #cd5103;
  --themclrtwo: #1e2f5f;
}
.container {
  max-width: 1180px;
  margin: auto;

  width: 100%;
}

ul li {
  list-style: none;
}
a {
  text-decoration: none;
}

section {
  padding: 60px 0px;
}
.hamburger {
  display: none;
}

.heading {
  margin-bottom: 35px;
}
.heading p {
  font-size: 17px;
  color: #3e3737;
  line-height: 25px;
  margin: 12px 0;
}

.heading h2 {
  font-size: 50px;
  color: #0062bd;
  text-align: center;
}

/* banner  */
section.banner {
  padding: 0;
  height: 100vh;
  background-image: url(../img/bannerx2.png);
  background-repeat: no-repeat;
  background-position: left center;
  margin-top: 0px;
}

/* mainbanner  */
.mainbanner {
  height: 100vh;
  background: linear-gradient(182deg, #1e2f5f, #0068f3);
}
.swiper-backface-hidden .swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

/* header  */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.6s ease, transform 0.6s ease;
}

/* Default logo */
.logo .logo-default {
  display: block;
  transition: opacity 0.6s ease;
}

/* Scrolled logo */
.logo .logo-scrolled {
  display: none;
  transition: opacity 0.6s ease;
}

/* When scrolling down */
.header.scrolled .logo-default {
  display: none;
}

.header.scrolled .logo-scrolled {
  display: block;
  /* width: 105px; */
}

.header.scrolled {
  background-color: #fff;
  padding-top: 15px;

  padding-bottom: 9px;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header.scrolled .callrequest {
  background: #0062bd;

  transition: all ease-in-out 0.5s;
}

.header.scrolled .callrequest:hover {
  background: #cd5103 !important;
  padding: 14px 28px;
}

.header.shrink {
  transform: translateY(-10px); /* Slightly move it up when scrolling down */
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header a {
  color: #fff;
  transition: color 0.3s ease;
  font-size: 18px;
  text-transform: capitalize;
}

.header.scrolled a {
  color: #000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 9%;
}
header .logo img {
  width: 100%;
}
header nav ul li {
  display: inline-block;
  margin-left: 28px;
}

/* header a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
} */

.header .callrequest {
  border-radius: 5px;
  color: #000;
  text-transform: capitalize;
  border: 1px solid #ffffff21;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #cd5103;
  border-radius: 25px;
  transition: all ease-in-out 0.5s;
  padding: 12px 26px;
}

.header .callrequest:hover {
  background-color: #f47120;
  padding: 14px 28px;
}
.header .callrequest a {
  color: #fff;
  font-size: 16px;
}

/* menu  */

/* Menu Styles */
.menu {
  list-style: none;
  display: flex;
  padding: 10px;
}

.menu > li {
  position: relative;
  padding: 10px;
  color: white;
  cursor: pointer;
  width: auto;
}
.menu > li a {
  display: flex;
  padding: 12px 16px;
  color: #fff;
  align-items: center;
  justify-content: space-between;
}

.menu > li > a:hover {
  color: var(--themeclrone);
}
.menu li a img {
  width: 15px;
  padding-left: 5px;
}

/* Submenu */
.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  display: none;
  min-width: 220px;
}

.submenu ul li a img {
  display: none;
}
.submenu li {
  color: white;
  cursor: pointer;
  width: 100%;
  margin-left: 0;
}

/* Sub-submenu */
.sub-submenu {
  list-style: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #d0d0d0;
  display: none;
  min-width: 265px;
}

.sub-submenu li {
  color: white;
  cursor: pointer;
}

/* Show submenu on hover */
.menu li:hover > .submenu {
  display: block;
  background: #f8f8f8;
  border-radius: 2px;
  height: 140px;
}

.submenu li a {
  color: #2c2c2d;
  font-size: 17px;
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
}

.submenu li a:hover {
  color: #fff;
  background-color: var(--themeclrone);
}

/* .menu li:hover > .submenu li a{
              color: #2c2c2d;
    font-size: 17px;

    display: inline-block;
        } */
.submenu li:hover > .sub-submenu {
  display: block;
}

/* about  */

/* banner */
.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  height: 100vh;
}
.banner-contant h1 {
  color: #fff;

  margin: 30px 0px;
  font-size: 45px;
  line-height: 55px;
}

.banner-contant {
  font-size: 32px;
  color: #fff;
  text-align: left;
  width: 55%;
}

.banner-contant a {
  background-color: var(--themeclrone);
  padding: 10px 25px;
  color: #fff;
  font-size: 25px;
  display: inline-block;
  margin-top: 10px;
  border-radius: 25px;
}
.banner-contant p {
  font-size: 18px;
  line-height: 28px;
  color: #d0d0d0;
}

.banner-contant ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px auto;
}
.banner-contant ul li {
  width: 50%;
}
.banner-contant ul li:first-child a {
  border-radius: 1px solid #fff;
  background-color: #fff;
  font-weight: 800;
  color: var(--themeclrone);
}
.banner-contant ul li a {
  border-radius: 16px;
  padding: 10px 25px;
  font-size: 20px;
  width: 49%;
  text-transform: capitalize;
  border: 1px solid #fff;
  color: #fff;
}
.banner .bammer-video {
  width: 60%;
  height: 500px;
  background-image: url(../img/bigx3.png);
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.banner .bammer-video iframe {
  width: 75%;
  margin: auto;
  height: 60%;
  margin-top: 24%;
  border-radius: 15px;
}
/* .banner .bammer-video::after {
  position: absolute;
  content: "";
  background-color: #cd5103;
  top: -119px;
  inset: 0;
  transform: rotate(45deg);
  z-index: 1;
  height: 90px;
  top: 35%;
  width: 630px;
  border-radius: 5px;
} */

/* .banner .bammer-video::after{

       background-image: url(../img/bigx3.png);
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    right: -25px;
    background-size: cover;
    bottom: -55px;
     filter: drop-shadow(1px 0px 0px rgba(0, 0, 0, 0.5));

} */

.banner .bammer-video video {
  width: 70%;
  height: 65%;
  object-fit: cover;
  border-radius: 30px;
  padding-top: 0;
  position: absolute;
  top: 24%;
  right: 17%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* why choose us  */
.whychoose {
  position: relative;
  padding: 80px 0px;
}
.whychoose .heading h2 {
  text-align: left;
}
.whychoose .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
}
.whychoose .left {
  text-align: left;
  width: 54%;
}
.whychoose .left .heading {
  text-align: left;
}
.whychoose .right {
  position: absolute;
  right: 0;
  width: 43%;
}
.whychoose .right img {
  width: 100%;
}

.whychoose .left p {
  font-size: 17px;
  color: #616161;
  margin: 10px 0;
  line-height: 23px;
  text-align: justify;
}
.whychoose .left a {
  background: #cd5103;
  padding: 14px 30px;
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  border-radius: 23px;
  font-size: 19px;
  transition: all ease-in-out 0.5s;
}

.whychoose .left a:hover {
  background: #0062bd;
  padding: 14px 35px;
}

.whychoose .left ul {
  margin: 17px 0;
}
.whychoose .left ul li {
  list-style: none;
  font-size: 18px;
  line-height: 30px;
  background-image: url(../img/check.png);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 31px;
}

/* programs  */
.programs {
  background: #ebebeb6e;
}
.programs .heading h2 {
  text-align: center;
}
.programs .heading p {
  text-align: center;
}
.programs .programbody .left {
  width: 44%;
}

.programs .programbody .left img {
  width: 100%;
  border-radius: 5px;
  transition: all ease-in-out 0.5s;
}

.programs .programbody {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programs .programbody .right {
  width: 54%;
}

.programs .programbody .right .box {
  margin-bottom: 28px;
  height: 350px;
  border-radius: 25px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.programs .programbody .right img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  height: 100%;
  border-radius: 25px;
  transition: all ease-in-out 0.5s;
}
.programs .programbody .box {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.programs .programbody .box:hover img {
  transform: scale(1.2);
}

.programs .programbody .text {
  position: absolute;
  bottom: 5%;

  left: 5%;
  color: #fff;

  font-weight: 600;
  z-index: 1;
}
.programs .programbody .text a {
  font-size: 20px;
  color: #fff;
  background: #cd5103;
  padding: 13px 30px;
  font-weight: 400;
  display: inline-block;
  border-radius: 25px;
  margin-top: 15px;
  text-transform: capitalize;
  transition: all ease-in-out 0.5s;
}
.programs .programbody .text a:hover {
  background-color: #0062bd;
  padding: 13px 34px;
}
.programs .programbody .text h4 {
  color: #fff;

  font-weight: 600;
  font-size: 35px;
}
.programs .programbody .text p {
  color: #e2e1e1;
  font-weight: 400;
  margin-top: 5px;
  line-height: 25px;
  width: 90%;
}
.programs .programbody .box .transparent {
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(3deg, black, #00000012);
  border-radius: 5px;
}

/* youtube  */
.youtube {
  width: 100%;
  position: static;
  overflow: hidden;
}
.youtube .glblbtn {
  width: 200px;
  text-align: center;
  margin: auto;
  display: block;
  margin-top: 50px;
  padding: 15px 25px;
  font-size: 17px;
  border-radius: 25px;
  background-color: #cd5103;
  transition: all ease-in-out 0.5s;
  color: #fff;
}
.youtube .glblbtn:hover {
  padding: 15px 28px;
  background-color: #0062bd;
  width: 210px;
}
.youtube .heading {
  text-align: center;
  margin-bottom: 15px;
}
.slider-container {
  width: 100%;

  overflow: hidden;
}

.slider-track {
  display: flex;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.slider-container.slider-bottom .slider-item img {
  filter: grayscale(1);
}

/* Top slider moves right */
.slider-top .slider-track {
  margin: 25px 0px;
  animation-name: scroll-right;
  animation-duration: 50s;
}

/* Bottom slider moves left */
.slider-bottom .slider-track {
  animation-name: scroll-left;
  animation-duration: 40s;
}

.slider-item {
  flex: 0 0 auto;
  width: 16%;
  margin-right: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 250px;
  position: relative;
}

.slider-item span {
  background-color: #cd5103;
  padding: 11px 15px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 5%;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  text-transform: capitalize;
  font-weight: 500;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.slider-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-265px * 5));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-265px * 5));
  }

  100% {
    transform: translateX(0);
  }
}

/* growth  */
.growth .heading {
  text-align: center;
}

.growth p {
  font-size: 19px;
  color: #333;
  text-align: center;
  line-height: 25px;
  margin-bottom: 12px;
}

.growth ul li {
  list-style: none;
  margin: 13px 0;
  font-size: 18px;
}
.growth .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.growth .box .left {
  width: 55%;
}
.growth .box .left p {
  text-align: left;
}
.growth .box .right {
  width: 60%;
}

.growth .box .right img {
  width: 100%;
}

/* testimonial */

/* feedback  */
.feedback {
  background: linear-gradient(182deg, #1e2f5f, #0068f3);
  overflow: hidden;
}

.feedback .heading h2 {
  font-size: 50px;
  color: #cd5103;
  text-align: center;
  text-transform: capitalize;
}
.feedback .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feedback .leftfeedback {
  width: 100%;
}

.feedback .leftfeedback:first-child img {
  width: 200px;
}

.feedback .leftfeedback p {
  font-size: 23px;
  font-weight: 500;
  margin: 25px 0px;
  line-height: 42px;
  color: #fff;
  text-align: center;
}
.feedback .right {
  width: 42%;
  text-align: center;
}

.feedback .right img {
  width: auto;
}

.feedback .leftfeedback .box .left img {
  width: auto;
  margin-right: 20px;
}

.feedback .leftfeedback .box {
  display: flex;
  align-items: center;
}

.feedback .leftfeedback .box .left {
  width: 10%;
  margin-right: 15px;
}

.feedback .leftfeedback .box p {
  margin: auto;
  line-height: 10px;
  text-align: left;
}
.feedback .leftfeedback .box .right h5 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 400;
}
.feedback .leftfeedback .box {
  color: #1c1c1c;
  font-size: 32px;

  text-align: center;
  justify-content: center;
}

.feedback #testimonial .owl-nav span {
  color: #fff;
  font-size: 45px !important;
}

#testimonial {
  position: relative;
}

#testimonial button.owl-prev {
  position: absolute;
  left: 38%;
  top: 110%;
}
#testimonial button.owl-next {
  position: absolute;
  right: 38%;
  top: 110%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: unset !important;
  color: #fff;
  text-decoration: none;
}

.feedback .feedbackbody {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback .feedbackbody .left {
  width: 50%;
  margin-left: 5%;
}

.feedback .heading {
  text-align: left;
  margin-bottom: 0px;
}

/* footer  */
.whychoose.about .right {
  position: static;
  width: 38%;
}

/* footer  */
footer {
  padding: 50px 0 0;
  background-color: var(--themeclrone);
  position: relative;
}

footer .footer-body {
  text-align: center;
}
footer ul li {
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
}
footer ul li a {
  color: #fff;
  text-transform: capitalize;
}
footer h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 15px;
}
footer .social-links li {
  height: 40px;
  width: 40px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 100%;
  margin: 0px 5px;
}
footer .social-links li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .social-links li img {
  width: 55%;
}

footer .footer-body img {
  width: 150px;
}
.copyright {
  text-align: center;
  padding: 10px 0px;
  border-top: 1px solid #fff;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p {
  color: #1c1c1c;
}
.quicklinks {
  display: flex;
  justify-content: center;
}

.quicklinks li {
  font-size: 17px;
  color: #fff;

  margin: 10px 30px;
}
.quicklinks li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
}

.copyright p {
  color: #fff;
}

.menu a.active {
  color: var(--themeclrone); /* Highlight color */
  font-weight: bold;
}

/* cta */
.cta {
  background: #cd5103;
}

.cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta .container .left {
  width: 70%;
}
.cta h2 {
  font-size: 50px;
  color: #fff;
}

.cta .container .right a {
  background-color: #fff;
  padding: 18px 70px;
  text-transform: capitalize;
  border-radius: 50px;

  color: #0068f3;
  font-size: 21px;
  font-weight: 600;
}

.cta h4 {
  font-size: 24px;
  margin: 15px 0;
  color: #fff;
  font-weight: 400;
}

.cta p {
  color: #f5f5f5;
  line-height: 30px;
  font-weight: 500;
}

/* contact  */
.program-contact {
  background-color: #cd5103;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  overflow: hidden;
  padding: 50px 0px;
  position: relative;
}

.sib-form-block p {
  line-height: 25px !important;
}

/* about  */
.inner-banner {
  background: linear-gradient(182deg, #1e2f5f, #0068f3);
  height: 15vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-banner h1 {
  font-size: 40px;
  color: #fff;
  padding-top: 60px;
}
.about-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-banner .left {
  width: 55%;
}
.about-banner .left .heading h2 {
  font-size: 30px;
  color: #0062bd;
  text-align: left;
  margin-bottom: 10px;
}

.about-banner .right {
  width: 40%;
}

.about-banner .right img {
  width: 100%;
  border-radius: 5px;
}

/* mission  */
.mission {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}
.mission .mission-left {
  width: 50%;
}

.mission .mission-left .left {
  padding: 15px;
  height: 200px;
  background: #1e2f5f;
}
.mission .mission-left .right {
  padding: 15px;
  height: 200px;
  background: var(--themeclrone);
}

.mission-right {
  position: relative;
  width: 51%;
  height: 400px;
  overflow: hidden;
}

.mission-right iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* acts like background-size: cover */
}

.mission .mission-left h2 {
  margin-bottom: 15px;
  font-size: 35px;
  color: #fff;
}

.mission .mission-left p {
  line-height: 27px;
  font-size: 17px;
  color: #fff;
}

/* program meet  */

.accordion {
  /* border: 1px solid #ccc; */
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.accordion-header {
  background: #003366;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all ease-in-out 0.5s;
}
.accordion-header h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.accordion-header:hover {
  background: #153e66;
}

.accordion-content {
  display: none;
  padding: 15px;
  border-top: 1px solid #ccc;
}
.accordion-content .boxparent-body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-content .boxparent-body .ac-box {
  width: 48%;
}

.accordion-content .boxparent-body .ac-box ul li {
  line-height: 30px;
}

.accordion-content .boxparent-body .ac-box h4 {
  font-size: 23px;
  margin: 10px 0;
}
.accordion-header span {
  font-size: 25px;
  color: #fff;
}
.programmeet {
  padding-top: 0;
}
.programmeet .glbl-btn {
  background: #0062bd;
  transition: all ease-in-out 0.5s;
  color: #fff;
  padding: 14px 25px;
  border-radius: 25px;
  font-size: 20px;
  display: inline-block;
  margin-top: 8px;
  margin-top: 20px;
}

.programmeet .top-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/program.jpg);
  height: 190px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;

  background-position: center;
}

.programmeet .top-banner .text {
  width: 100%;
  margin: auto;
  text-align: center;

  padding: 25px;
  border-radius: 5px;
}
.programmeet .top-banner .text h1 {
  font-size: 40px;
  color: #fff;
}
.programmeet .top-banner .text .tagline {
  font-size: 20px;
  margin: 15px 0px;
}
.programmeet .top-banner .text a {
  background: #cd5103;
  padding: 14px 35px;
  display: inline-block;
  margin-top: 8px;
  border-radius: 20px;
  color: #fff;
  font-size: 17px;
}

.programmeet .highlight {
  background: #eaf4ff;
  padding: 20px 16px;
  border-left: 4px solid #0077cc;
  margin: 25px 0;
  border-radius: 4px;
}

.programmeet .highlight strong {
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
}

.programmeet .box {
  border-radius: 5px;
  margin: 30px 0;
}
.programmeet .box ul li {
  list-style: none;
  font-size: 17px;
  line-height: 22px;
  margin: 6px 0;
}
.programmeet .box iframe {
  width: 45%;
  border-radius: 5px;
  border: 1px solid #00000026;
  height: 300px;
}
.programmeet .box h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #003366;
  position: relative;
}
.programmeet p {
  font-size: 16px;
  margin: 10px 0;
  line-height: 25px;
  font-weight: 500;
}

.whyjoin {
  background: #eaf4ff;
  padding: 10px;
  border-left: 4px solid #0077cc;
}

.whyjoin h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #003366;
  position: relative;
}
.whyjoin ul li {
  color: #003366;
  font-size: 18px;
  line-height: 35px;
}
.programmeet .boxparent .heading h2 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #003366;
  text-align: left;
}
.programmeet .boxparent .heading {
  margin-bottom: 18px;
}

.programmeet .boxparent b {
  color: #000;
  font-weight: 500;
  font-size: 16px;
}
.programmeet .boxparent .boxparent-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programmeet .boxparent .left {
  width: 50%;
  background-color: var(--themeclrone);
  padding: 30px 20px;
  height: 265px;
}

.programmeet .boxparent .right {
  width: 50%;
  background-color: var(--themclrtwo);
  padding: 30px 20px;
  height: 265px;
}

.boxparent {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 8px 0px;
}
.boxparent ul li {
  list-style: none;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}

.programmeet .boxparent .left h2,
.programmeet .boxparent .right h2 {
  font-size: 23px;
  margin-bottom: 10px;
}

#custom-leapyear-form label {
  font-size: 15px;
  color: #fff;
  display: block;
}

#custom-leapyear-form input {
  height: 45px;
  width: 100%;
  border-radius: 3px;
  outline: none;
  border: none;
  padding: 15px;
  display: block;
  margin: auto;
}

#custom-leapyear-form textarea {
  width: 100%;
  margin: auto;
  display: block;
  border-radius: 4px;
  padding: 10px;
}

#custom-leapyear-form legend {
  color: #fff;
  font-size: 26px;
}

#custom-leapyear-form input[type="submit"] {
  background: var(--themeclrone);
  border: unset;
  outline: unset;
  width: 100%;
  display: block;
  margin: 15px auto;
  padding: 15px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 6px;
  display: inline-block;
  height: auto;
}
#custom-leapyear-form fieldset {
  border: 1px solid #c74800;
  padding: 5px 13px;
}

/* contact  */
.main-contact {
  background: #ebebeb6e;
}

.main-contact-heading {
  background: #ebebeb6e;
  text-align: center;
  padding-top: 60px;
}
.main-contact-heading h3 {
  font-size: 35px;
  color: var(--themeclrone);
}

.main-contact-heading b {
  font-size: 22px;
  display: inline-block;
  margin: 20px 0;
}
.contact-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/contact-banner.png);
  height: 210px;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-banner h2 {
  font-size: 50px;
  color: #fff;
}
.main-contact .contact {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  overflow: hidden;
  padding: 0px 0px;
  position: relative;
}

.main-contact .contact .contact-heading {
  font-size: 40px;
  color: var(--themeclrone);
  font-weight: 700;
  text-align: center;
  margin: 5px 0px;
}
.main-contact .contact .right {
  width: 50%;
  height: 700px;
}
.main-contact .contact .right .calendly-inline-widget {
  height: 100%;
}

.mainbanner.innerheader {
  height: 0 !important;
}

.mainbanner.innerheader .about-banner .left {
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 25px;
  border-radius: 10px;
}
.mainbanner.innerheader .main-about.about-banner .left {
  width: 55%;
  box-shadow: unset;
}
.mainbanner.innerheader .about-banner .left .about-box {
  font-size: 22px;
  margin-bottom: 20px;
}

.mainbanner.innerheader .about-banner .left .about-box h4 {
  font-size: 18px;
  color: #1c1c1c;
  margin-bottom: 6px;
}
.mainbanner.innerheader .about-banner .left .about-box p {
  font-size: 16px;
  margin: 8px 0;
  line-height: 25px;
}

/* innerfooter */
.innerfooter {
  background-color: var(--themclrtwo);
}

.innerfooter h3,
.innerfooter .quicklinks li a,
.innerfooter p {
  color: #fff;
}

/* event  */

.events-container {
  margin: auto;
  background: #1e1e2f;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.event-header h2 {
  margin: 0;
  font-size: 24px;
}

.event-meta p {
  margin: 8px 0px;
}

.tabs button {
  background: none;
  border: none;
  color: #aaa;
  margin-left: 10px;
  font-size: 14px;
  cursor: pointer;
}

.tabs button.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.event-date {
  font-size: 15px;
  font-weight: 500;
  margin-top: 30px;
}

.event-card {
  display: flex;
  justify-content: space-between;
  background: #2a2a40;
  border-radius: 10px;
  padding: 15px;
  margin-top: 10px;
}

.event-info {
  flex: 1;
}

.event-info h4 {
  margin: 0;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}

.event-meta {
  font-size: 12px;
  color: #ccc;
  margin: 5px 0;
}

.event-actions {
  margin-top: 10px;
}

.manage-btn {
  padding: 5px 10px;
  font-size: 12px;
  background: #cd5103;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin: 8px 0;
}

.event-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-left: 15px;
  background-size: cover;
  background-position: center;
}

.dot {
  height: 6px;
  width: 6px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.events-content {
  display: none;
}

.events-content.active {
  display: block;
}

/* contact form  */
.main-contact .sib-form {
  padding: 6px !important;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
}
#sib-container {
  background: linear-gradient(182deg, #1e2f5f, #0068f3) !important;
  background: transparent !important;
}
.entry__choice label p {
  display: inline;
  color: #333;
}

.sib-form-block__button.sib-form-block__button-with-loader {
  width: 100% !important;
  padding: 14px !important;
  font-size: 18px !important;
}

/* resources  */
.resources-parent .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.morning-ritual-section {
  padding: 35px 8px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  font-family: sans-serif;
  width: 33%;
}

.ritual-box {
  max-width: 400px;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.ritual-image img {
  max-width: 65%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.ritual-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #000;
}

.ritual-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #444;
  text-transform: uppercase;
  line-height: 22px;
}

.ritual-content p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ritual-highlight {
  font-size: 15px;
  background-color: #f9f5ef;
  border: 1px dashed #e0a646;
  color: #000;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 4px;
  line-height: 22px;
}

.ritual-btn {
  display: inline-block;
  background-color: #2e7d32;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.ritual-btn:hover {
  background-color: #1b5e20;
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Main popup box */
.popup-box {
  background: #fff;
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 37px;
  cursor: pointer;
  color: #cd5103;
}
/* Content wrapper */
.popup-content {
  display: flex;
  flex-wrap: wrap;
}

/* Left image */
.popup-image {
  flex: 1;
  min-width: 250px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.popup-image img {
  max-width: 100%;
  height: auto;
}

/* Right form */
.popup-form {
  flex: 1;
  /* padding: 40px 30px; */
  background: #003366;
  padding: 10px 0px 0px;
  text-align: center;
}
.popup-form h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}
.popup-form p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}
.popup-form form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  font-size: 15px;
}
.popup-form form button {
  background-color: #112100;
  color: white;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}
.popup-form form button:hover {
  background-color: #1a3300;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #cd5103 !important;
}

.page-speed ul {
  margin: 25px 0px;
}
