* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #ffffff;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}
:focus-visible {
  outline-offset: 4px;
}
::-webkit-scrollbar {
  width: 0px;
}
ul li {
  list-style-type: none;
}
button {
  outline: 0;
  cursor: pointer;
}
a {
  text-decoration: none;
}
span,
button,
a,
i,
label {
  display: inline-block;
}
h1,
h2,
h3 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.1;
}
h4,
h5,
h6 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}
img {
  width: 100%;
  display: block;
}
.wrapper {
  width: 86%;
  margin: 0 auto;
}

/* ---------- Topbar Section Start---------- */
.topbar {
  background-color: #822212;
  color: white;
  font-size: 14px;
  padding: 10px 0;
}
.topbar-content {
  margin: auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
}
.topbar-content span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-content .right a {
  color: white;
  text-decoration: none;
}
.topbar-content span .line {
  color: white;
}
.topbar-content i {
  margin-right: 5px;
}
.topbar-content .sm-icons i {
  margin-right: 12px;
}
/* ---------- Topbar Section End---------- */

/* ---------- Navbar Section Start---------- */
.navbar {
  position: fixed;
  top: 38px;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background-color:#000;
  top: 0;
}
.nav-container {
  margin: auto;
  padding: 14px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 60px;
}
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
.nav-links a:hover {
  color: #ffafa1;
}
.contact-btn {
  background-color: #822212;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: rgb(255, 0, 0);
  font-size: 24px;
  margin-left: 10px;
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; /* directly below the navbar */
  left: 0;
  right: 0;
  background-color: rgb(0, 0, 0);
  text-align: center;
  flex-direction: column;
  z-index: 998;
}

.mobile-menu a {
  padding: 15px;
  color: white;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.show {
  display: flex;
}
/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links,
  .topbar .web,
  .topbar .line,
  .contact-btn,
  .topbar .left {
    display: none;
  }
  .topbar-content {
    justify-content: center;
  }
  .topbar-content i {
    margin-right: 24px;
  }
}
/* ---------- Navbar Section End---------- */

/* ---------- Dropdown Menu Start---------- */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: black;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
  border-radius: 5px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
/* ---------- Dropdown Menu End---------- */

/* ---------- Spotlight Section Start---------- */
.spotlight {
  position: relative;
  background-color: black; /* Black background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.spotlight .slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: 80%;
}
.spotlight .left {
  flex: 1;
  padding: 20px;
}
.spotlight .left h1 {
  text-transform: capitalize;
  font-size: 70px;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.1;
}
.spotlight .left p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.spotlight .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #822212;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
}
.spotlight .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spotlight .right img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.dots {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
}
.dot {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.dot.active {
  opacity: 1;
}
/* ---------- Spotlight Section End---------- */

/* ---------- About Section Start---------- */
.about {
  padding: 100px 0;
  color: #000;
}

.about .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.about .container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about .container .top .left {
  width: 52%;
}

.about .container .top .left label {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.about .container .top .left h2 {
  font-weight: 500;
}

.about .container .top .left p {
  margin-bottom: 30px;
  text-align: justify;
}
.about .container .top .left .btn {
  background-color: #822212;
  color: #fff;
  padding: 10px 26px;
  border-radius: 5px;
  font-size: 18px;
  display: inline-block;
}

.about .container .top .right {
  width: 50%;
}

.about .container .top .right img {
  border-radius: 8px;
}

/* ---------- Selection Section End---------- */
.selection {
  background: #822212;
  padding: 100px 0;
}

.selection .container {
}

.selection .container h2 {
  margin-bottom: 60px;
  text-align: center;
}
.selection .container .content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.selection .container .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.selection .container .box img {
  margin-bottom: 30px;
  border-radius: 8px;
}

.selection .container .box h5 {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
}

.selection .container .box .btn {
  background-color: #fff;
  color: #822212;
  padding: 10px 26px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
/* ---------- Selection Section Start---------- */

/* ---------- Question Section Start---------- */
.question {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.question .container {
  background: #822212;
  padding: 50px 30px;
  border-radius: 10px;
  text-align: center;
}

.question .container h2 {
  font-size: 50px;
  margin-bottom: 50px;
}

.question .container .btn {
  border-radius: 8px;
  background-color: #fff;
  color: #822212;
  width: 180px;
  margin: 0 auto 30px;
  font-size: 24px;
  padding: 10px 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.question .container .con-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.question .container .con-social a {
  color: #822212;
  background: #fff;
  padding: 9px;
  font-size: 26px;
  margin-top: 10px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: inline-block;
  transition: 0.3s ease;
}

.question .container .con-social a:hover {
  opacity: 0.8;
  background-color: #ba8200;
  transform: scale(1.2);
  color: #fff;
}
/* ---------- Question Section end---------- */

/* ---------- Counter Section End---------- */
.counter-section {
  padding: 100px 0px;
  text-align: center;
  background: #000;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.counter-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-box i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #822212;
}

.counter {
  font-size: 40px;
  margin-bottom: 10px;
  color: #000;
}

.counter-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

@media (max-width: 768px) {
  .counter-box {
    width: 100%;
    max-width: 300px;
  }
}
/* ---------- Counter Section Start---------- */

/* ---------- About Section End---------- */

/* ---------- About Section Start---------- */

/* ---------- About Section End---------- */

/* ---------- About Section Start---------- */

/* ---------- About Section End---------- */

/* ---------- About Section Start---------- */

/* ---------- About Section End---------- */

/* ---------- About Section Start---------- */

/* ---------- About Section End---------- */
/* -------- contact section Start-------- */
.contact {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  color: #fff;
  background: #822212;
}

.contact .container {
  /* max-width: 600px; */
}

.contact label {
  font-size: 1.2rem;
  color: #fff;
}

.contact h2 {
  font-size: 60px;
  line-height: 1.3;
  margin: 10px 0;
  text-transform: uppercase;
}

.contact p {
  margin: 20px 0 50px;
  width: 60%;
}

.contact .btn {
  display: inline-block;
  padding: 16px 24px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  border: 2px solid #fff;
}

.contact .btn:hover {
  color: #822212;
  background-color: #fff;
}
/* -------- contact section End-------- */

/* -------- Footer section Start-------- */
footer {
  background: #000000;
  width: 100%;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 80px 0;
}
footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
footer .content .top .logo-details {
  width: 170px;
}
footer .content .top .media-icons {
  display: flex;
}
.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #822212;
}

.top .media-icons a:nth-child(1):hover {
  color: #4267b2;
  background: #fff;
}

.top .media-icons a:nth-child(2):hover {
  color: #1da1f2;
  background: #fff;
}

.top .media-icons a:nth-child(3):hover {
  color: #e1306c;
  background: #fff;
}

.top .media-icons a:nth-child(4):hover {
  color: #0077b5;
  background: #fff;
}

.top .media-icons a:nth-child(5):hover {
  color: #ff0000;
  background: #fff;
}
footer .content .link-boxes {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name {
  color: #d2944e;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}

.content .link-boxes .box li {
  margin: 18px 0;
  list-style: none;
}
.content .link-boxes .box li a {
  color: #d3d3d3;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.link-boxes .input-box p {
  color: #a7a7a7;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
}
.link-boxes .input-box .btn {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  background: #822212;
  border-radius: 3px;
}
.link-boxes .input-box .btn:hover {
  background: #d2944e;
}
footer .bottom-details {
  width: 100%;
  background: #822212;
  color: #fff;
}
footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  /* opacity: 0.8; */
  text-decoration: none;
}
.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a {
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }
  footer .content .top {
    flex-direction: column;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 100%;
  }
}
/* -------- Footer section End-------- */
