@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* Navbar */
.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.nav-log {
  width: 25%;
}

.nav-log a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.nav-menu {
  width: 65%;
}

.nav-btn {
  width: 10%;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.nav-menu ul li a:hover {
  color: #ff0000;
}

.nav-menu ul li a:hover svg {
  transform: rotate(-90deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 30px;
  right: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: max-content;
  border-radius: 8px;
  padding: 10px 10px 20px 10px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-parent:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown ul li a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.dropdown ul li a:hover {
  color: #ff0000;
}

/* Button */
.nav-btn a {
  padding: 10px 35px;
  background: #ff0000;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}

.nav-btn a:hover {
  background-color: ;
  border-color: transparent;
}

/* Hero Section */
.hero-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* fallback image */
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black overlay */
  z-index: 1;
}

.hero-banner2 {
  background-image: url(images/9.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 0;
}

.hero-banner2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 40, 47, 0.6);
  z-index: 1;
}

.hero-banner3 {
  background-image: url(images/23.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 0;
}

.hero-banner3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 40, 47, 0.6);
  z-index: 1;
}

.hero-banner4 {
  background-image: url(images/24.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 0;
}

.hero-banner4::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 40, 47, 0.6);
  z-index: 1;
}

.hero-banner5 {
  background-image: url(images/23.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 0;
}

.hero-banner5::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 40, 47, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Hero Button */
.hero-btn {
  padding: 14px 40px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 200px;
}

.hero-btn:hover {
  background-color: transparent;
  border: 2px solid #d40000;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dots span {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background-color: #ff0000;
}

/* header-end */
/* Main Hero Banner Section */
.main-hero-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("images/hero_bg_1_1.jpg");
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.main-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.main-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.main-hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.main-hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Hero Button */
.main-hero-btn {
  padding: 14px 40px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 200px;
}

.main-hero-btn:hover {
  background-color: transparent;
  border: 2px solid #d40000;
}

/* Dots */
.main-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.main-hero-dots span {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.main-hero-dots span.active {
  background-color: #ff0000;
}

/*respanive-header-end */
.homepage-seaction4-main-div {
  background-image: url(images/12.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 80px 0 0 0;
}

.homepage-seaction2-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.homepage-seaction2-context {
  max-width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.homepage-seaction2-context h6 {
  font-size: 18px;
  color: #ffffff;
}

.homepage-seaction2-context p {
  text-align: left;
  color: #ffffff;
}

.homepage-seaction2-context h1 {
  color: #ffffff;
  margin: 10px 0;
}

.homepage-seaction2-images {
  width: 392px;
  height: 418px;
  top: -50px;
  position: relative;
  z-index: 2;
}

.homepage-seaction2-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.homepage-seaction2-images img {
  width: 100%;
  height: auto;
}

.homepage-seaction5-left {
  position: relative;
  width: 50%;
}
/* .homepage-seaction4-main-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  opacity: 0.92;

  z-index: 1;
} */

.border {
  border: 8px solid #d40000;
  height: 400px;
  width: 540px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.homepage-seaction5-img {
  height: 400px;
  width: 540px;
  position: absolute;
  left: 17px;
  top: -17px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.homepage-seaction5-img img {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.homepage-seaction5-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 2;
}

.homepage-seaction5-img:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.homepage-seaction5-img:hover {
  transform: translate(-17px, 17px);
  z-index: 5;
}

.pricing-card {
  background: #fff;
  border: 1px solid #d8dde1;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  width: 24%;
  height: max-content;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border: 1px solid #ff0000;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.currency {
  font-size: 20px;
  margin-right: 5px;
}

.price h1 {
  font-size: 48px;
  margin: 0;
}

.duration {
  font-size: 14px;
  margin-left: 5px;
  color: #aaa;
}

.plan-title h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.enrolled p {
  font-size: 14px;
  color: #d40000;
  font-weight: 400;
  padding: 10px;
  margin: 20px 0;
  background-color: #f6f2f1;
  border-radius: 6px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.features .save {
  color: #ff0000;
  font-weight: 600;
  margin-left: 5px;
}

.pricing-btn a {
  display: inline-block;
  padding: 12px 30px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.pricing-btn a:hover {
  background: transparent;
  border: 2px solid #ff0000;
  color: #d40000;
}

.pricing-btn2 a {
  display: inline-block;
  padding: 12px 30px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

.pricing-btn2 a:hover {
  background: transparent;
  border: 2px solid #ff0000;
  color: #ffffff;
}

.homepage-seaction3-main-tilte h6 {
  font-size: 14px;
  font-weight: 400;
  color: #ff0000;
  text-align: center;
}

.homepage-seaction3-main-tilte h1 {
  font-size: 32px;
  font-weight: 400;
  color: black;
  text-align: center;
  margin-top: 10px;
}

.homepage-seaction3-main-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 60px 80px 60px;
  flex-wrap: wrap;
}

.homepage-seaction3-main {
  margin: 80px 0 0 0;
}

/* homepage-seaction3-end */
.homepage-seaction4-img1 {
  width: 580px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.homepage-seaction4-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.homepage-seaction4-img1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
}

.homepage-seaction4-img1:hover img {
  transform: scale(1.1);
}

.homepage-seaction4-img1:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.homepage-seaction4-img2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.homepage-seaction4-img4 {
  width: 285px;
  height: 208px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.homepage-seaction4-img4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.homepage-seaction4-img4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
  pointer-events: none;
}

.homepage-seaction4-img4 img:hover {
  transform: scale(1.1);
}

.homepage-seaction4-img4:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.homepage-seaction4-main {
  display: flex;
  justify-content: space-between;
  margin: 80px 60px 0 60px;
}

.homepage-seaction4-context h6 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.homepage-seaction4-context h1 {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
  margin: 6px 0;
}

.homepage-seaction4-context p {
  font-size: 18px;
  font-weight: 400;
  color: #4d4b4b;
  line-height: 25px;
}

.homepage-seaction4-points-icons span svg {
  color: #d40000;
  width: 22px;
  height: 22px;
}

.homepage-seaction4-points-text p {
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}

.homepage-seaction4-point1 {
  display: flex;
  gap: 5px;
}

.homepage-seaction4-points-main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-wrap: wrap;
}

.homepage-seaction5-btn {
  margin-top: 20px;
}

.homepage-seaction5-btn a {
  background-color: #d40000;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 14px 55px;
  text-decoration: none;
  text-transform: capitalize;
}

.homepage-seaction5-btn a:hover {
  border: 2px solid #d40000;
  background-color: transparent;
  color: #d40000;
}

.homepage-seaction4-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}

/* homepage-seaction4-end */
.homepage-seaction5-context {
  display: flex;
  flex-direction: column;
}

.homepage-seaction5-context h1 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 9px 0 25px 0;
}

.homepage-seaction5-context h6 {
  font-size: 18px;
  font-weight: 600;
  color: #d40000;
}

.homepage-seaction5-context p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 27px;
}

.homepage-seaction5-context a {
  background-color: #d40000;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 14px 55px;
  text-decoration: none;
  text-transform: capitalize;
  text-align: center;
  min-width: 200px;
  width: 200px;
  margin-top: 60px;
  transition: all 0.3s ease-in-out;
}

.homepage-seaction5-context a:hover {
  border: 2px solid #d40000;
  background-color: transparent;
  color: #d40000;
}

.homepage-seaction5-right {
  width: 50%;
}

.homepage-seaction5-imges {
  width: 650px;
  height: 350px;
}

.homepage-seaction5-imges img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-seaction5-main {
  display: flex;
  justify-content: space-between;
  margin: 120px 0px;
  padding: 40px 60px;
  background-color: #f5f5f5;
}

/*
 homepage-seaction5-end  */
.footer-logo a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
}

.footer1-description p {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
}

.footer1-icon-main ul {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer1-icon-main ul li {
  list-style: none;
}

.footer1-icon-main ul li a {
  text-decoration: none;
}

.footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4d4b4b;
  transition: all 0.3s ease;
}

.footer-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.footer-icon:hover {
  background: #d40000;
  color: #fff;
  transform: scale(1.1);
}

.footer-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}

.footer2-main h1 {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 17px;
}

.footer2-main ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.footer2-main ul li {
  padding: 6px 0;
  list-style: none;
}

.footer2-main ul li:hover {
  color: #d40000;
}

.footer2-main ul li a:hover {
  color: #d40000;
}

.footer2-main {
  width: 19%;
}

.footer4-main h1 {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 23px;
}

.footer4-main {
  width: 18%;
}

.footer4-input input {
  padding: 14px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
  outline: none;
  font-size: 16px;
  font-weight: 400;
}

.footer4-input input:focus {
  border: 2px solid #d40000;
  box-shadow: 0 0 5px rgba(212, 0, 0, 0.5);
  background: #fff;
}

.footer4-input a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: #ffffff;
  color: #000000;
  padding: 16px 75px;
  letter-spacing: 1px;
  border-radius: 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.footer4-input a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #d40000;
  transition: all 0.3s ease-in-out;
  width: 0;
  height: 100%;
  z-index: -1;
}

.footer4-input a:hover::after {
  width: 100%;
}

.footer4-input a span {
  position: relative;
  z-index: 1;
}

.footer4-input a:hover {
  color: #ffffff;
}

.footer4-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid #4d4b4b;
}

.footer-main-div {
  background-color: black;
  padding: 80px 60px 40px 60px;
}

.footer-end h1 {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-top: 30px;
}

/* .footer-end */
.rules-logo {
  background: linear-gradient(105deg, #ffffff, #d40000);
  color: #fff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.rules-logo3 {
  background-color: #ffffff;
  border: 1px solid #d40000;
  color: #d40000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.hero-banner2 {
  background-image: url(images/9.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 0;
}

.hero-banner2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 40, 47, 0.6);
  z-index: 1;
}

.hero-content1 {
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fff;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 0 0;
  z-index: 99;
  text-transform: capitalize;
  text-align: center;
}

.hero-content1 h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.rules-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f9f9f9;
  margin-bottom: 10px;
}

.rules-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-main-div {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-main-title {
  text-align: center;
  padding: 20px 0;
  background: #000000;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-main-context {
  padding: 0 20px;
}

.faq-main-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-main-heading:hover {
  background: #f9f9f9;
}

.rules-logo2 {
  background: linear-gradient(105deg, #ffffff, #d40000);
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.rules-title h1 {
  font-size: 18px;
  color: #333;
  margin-left: 20px;
  font-weight: 600;
}

.rules-icon {
  transition: transform 0.4s ease;
  margin-left: auto;
  color: #d40000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 20px;
}

.faq-answer p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 20px 20px 100px;
  /* space for logo */
}

.faq-item.active .rules-icon {
  transform: rotate(180deg);
}

.rules-content h1 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.rules-content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}

.rules-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.rule-andregulaton-main-div {
  margin: 80px 40px;
}

.rule-andregulaton-main-title h1 {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
}

.faq-main-dive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 40px;
}

.faq-images {
  width: 617px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-images::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.accordion-container {
  width: 50%;

  border-radius: 12px;
}

.accordion-title {
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  text-transform: capitalize;
  border-radius: 8px;
  margin-bottom: 30px;
}

.accordion-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item.active {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #f9f9f9;
}

.accordion-question {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 30px;
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: #d40000;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  /* Large enough to handle content */
  padding: 15px 20px 20px 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.faq-title h1 {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  margin: 0px 0 60px 40px;
  text-align: center;
}

.faq-seaction2-main-div2 {
  margin: 80px 0;
}

.homepage-seaction3-mian-context h1 {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  text-align: center;
}

.homepage-seaction3-mian-context p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin-top: 5px;
}

.homepage-seaction3-mian-pdf {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 40px 40px 40px;
  flex-wrap: wrap;
}

.pdf-download-btn,
.pdf-upload-btn {
  background: linear-gradient(90deg, #d40000, #ff4d4d);
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.4s ease, transform 0.3s ease;
  cursor: pointer;
}

.pdf-download-btn:hover,
.pdf-upload-btn:hover {
  background: linear-gradient(90deg, #b30000, #ff3333);
  transform: translateY(-3px);
}

#pdf-container {
  position: relative;
  width: 100%;
  height: 90vh;
  display: none;
}

#pdf-preview {
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.delete-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d40000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.delete-btn:hover {
  background: #b30000;
}

.hmbc-main-context h1 {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 20px;
}

.hmbc-main-context p {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 25px;
  margin-bottom: 10px;
}

.hmbc-seaction1-context h1 {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 10px;
}

.hmbc-seaction1-context p {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 25px;
  margin-bottom: 10px;
}

.hmbc-seaction1-context {
  text-align: center;
}

.hmbc-seaction1-main {
  margin: 0 40px 80px 40px;
}

.hmbc-main {
  margin: 80px 40px;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.seaction11-images {
  width: 100%;
  height: 100%;
}

.seaction11-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seaction11-main {
  margin: 20px 40px 40px 40px;
}

.contact-seaction1-card1 {
  text-align: center;
  padding: 60px 40px;
  border-radius: 6px;
  background-color: #b30000;
  border: 2px solid transparent;
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-seaction1-card1::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  width: 0;
  height: 100%;
}

.contact-seaction1-card1:hover::after {
  border: 4px solid #b30000;
  width: 100%;
}

.contact-seaction1-card1:hover .contact-seaction1-descrption p {
  color: #000000;
}

.contact-seaction1-card1:hover .contact-seaction1-icon svg {
  color: #000000;
}

.contact-seaction1-card1:hover .contact-seaction1-title h1 {
  color: #000000;
}

.contact-seaction1-icon svg {
  width: 55px;
  height: 55px;
  color: #ffffff;
}

.contact-seaction1-descrption p {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.contact-seaction1-title h1 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
}

.contact-seaction1-card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 40px;
  gap:30px
}

.contact-form-section {
  width: 94%;
  margin: 50px auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-form-section h1 {
  font-size: 28px;
  color: #d40000;
  margin-bottom: 10px;
}

.contact-form-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input {
  padding: 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus {
  border-color: #d40000;
  box-shadow: 0 0 8px rgba(212, 0, 0, 0.2);
}

textarea {
  padding: 20px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

textarea:focus {
  border-color: #d40000;
  box-shadow: 0 0 8px rgba(212, 0, 0, 0.2);
}

.contact-form button {
  background: linear-gradient(90deg, #d40000, #ff4d4d);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #b30000, #ff3333);
  transform: translateY(-2px);
}

.new-seaction-card1-img {
  width: 250px;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.new-seaction-card1-img::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 70px;
  transition: all 0.3s ease-in-out;
}

.new-seaction-card1-img:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.new-seaction-card1-img img:hover {
  transform: scale(1.1);
}

.new-seaction-card1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 70px;
}

.new-seaction-context h1 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
}

.new-seaction-card1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 19%;
  gap: 20px;

  animation-name: updowns;
  animation-timing-function: 4s;
  animation-iteration-count: infinite;
  animation-duration: 6s;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

@keyframes updowns {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.new-seaction-card2-img {
  width: 250px;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.new-seaction-card2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 70px;
}

.new-seaction-card2-img::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 70px;
  transition: all 0.3s ease-in-out;
}

.new-seaction-card2-img:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.new-seaction-card2-img img:hover {
  transform: scale(1.1);
}

.new-seaction-context2 h1 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
}

.new-seaction-card2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 19%;
  gap: 20px;
  animation-name: updown;
  animation-timing-function: 4s;
  animation-iteration-count: infinite;
  animation-duration: 6s;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

@keyframes updown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.new-seaction-divmain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px 20px 0px 20px;
}
.new-seaction-maindiv1-context h1 {
  font-size: 18px;
  font-weight: 400;
  color: #b30000;
  text-align: center;
}
.new-seaction-maindiv1-context p {
  font-size: 38px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
.new-seaction-maindiv1 {
  margin: 0px 0px 150px 0;
}

.during-context h1 {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
}
.during-context p {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
  margin-top: 10px;
}
.during-context {
  width: 80%;
  margin: 0 40px;
}
.homepage-seaction4-left {
  width: 50%;
}

.pillars-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
  display: none; /* Now visible */
}

.pillars-header {
  text-align: center;
  margin-bottom: 30px;
}

.pillars-slider-container {
  overflow: hidden;
  position: relative;
}

.pillars-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.pillar-card {
  flex: 0 0 50%; /* Show 2 at a time */
  box-sizing: border-box;
  padding: 10px;
}

.pillar-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-title h2 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
}
/* Navbar */
.responsive-navbar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #fff;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
}
.main-div4 {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  z-index: 9999;
}
.responsive-navbar-logo a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.responsive-navbar-icon {
  cursor: pointer;
}

/* Sidebar */
/* Wrapper with full background */
.hero-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  color: white;
}

/* Navbar */
.custom-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  width: 100%;
  position: absolute;

  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.custom-logo a {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.custom-menu-icon {
  cursor: pointer;
}

/* Hero content center */
.hero-center-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}

.hero-center-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-center-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-cta-btn {
  padding: 12px 35px;
  background-color: #ff0000;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.hero-cta-btn:hover {
  background-color: #b30000;
}

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.custom-navbar {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.custom-logo a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
}

.custom-menu-icon {
  cursor: pointer;
}

/* Hero Center Content */
.hero-center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.hero-center-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-center-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-cta-btn {
  padding: 14px 40px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-cta-btn:hover {
  background-color: transparent;
  border: 2px solid #ff0000;
}

/* Sidebar */
.custom-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 250px;
  height: 100%;
  background-color: #333;
  color: white;
  transition: left 0.3s ease-in-out;
  z-index: 100;
}

.custom-sidebar.active {
  left: 0;
}

.sidebar-inner {
  padding: 20px;
}

.sidebar-close {
  font-size: 30px;
  cursor: pointer;
  display: block;
  text-align: right;
}

.custom-sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.custom-sidebar ul li {
  margin: 20px 0;
}

.custom-sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Dots */
.main-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.main-hero-dots span {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.main-hero-dots span.active {
  background-color: #ff0000;
}
