


:root {
  --theamOrange: #ff7f00;
  --theamBlack: #252628;
  --fontFira: "Poppins", sans-serif;
}

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

body {
  font-family: "Rubik", sans-serif;
  line-height: 1.5;
  color: #6d6d6d;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.flex {
  display: flex !important;
  flex-wrap: wrap;
}

.align-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.spacer {
  padding-top: 70px;
  padding-bottom: 70px;
}

.spacer-top {
  padding-top: 70px;
}

.spacer-bottom {
  padding-bottom: 70px;
}

.bgBlack {
  background-color: var(--theamOrange);
  color: #fff;
}

.bgOrange {
  background-color: var(--theamOrange);
  color: #fff;
}

.rotateme {
  animation-name: rotateme;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.topdown {
  animation-name: topdown;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes topdown {
  0% {
    top: 351px;
  }

  25% {
    top: 341px;
  }

  50% {
    top: 351px;
  }

  75% {
    top: 361px;
  }

  100% {
    top: 351px;
  }
}

.text-left {
  text-align: left !important;
}

.text-white {
  color: #fff !important;
}

/* =========================================================
                        Start Header
============================================================*/

/* Logo Header */
.logo_header {
  padding: 10px 0;
}

/* Desktop Menu */
.main_menu > li {
  padding: 15px 20px;
}

.main_menu > li > a {
  color: var(--theamBlack);
  transition: 0.3s;
  padding-bottom: 10px;
}

.main_menu > li > a:hover {
  color: var(--theamOrange);
}

/* Mobile Styles */
@media (max-width: 991px) {
  .main_menu {
    text-align: center;
    padding-top: 10px;
  }

  .main_menu > li {
    padding: 10px 0;
  }

  .main_menu > li > a {
    padding-bottom: 5px;
  }
}

/* =========================================================
                        End Header
============================================================*/

/* =========================================================
                        Start banner
============================================================*/

.banner {
  background: url("../image/banner.png") center / cover no-repeat;
  padding: 80px 0;
}


.hero-inner img {
  max-height: 710px;
  width: 100%;
}

/* Heading */
.hero-content h1 {
  font-size: 60px;
  line-height: 75px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

/* Paragraph */
.hero-content p {
  font-size: 20px;
  color: #fff;
  margin: 32px 0 45px;
}

/* Store Buttons */
.store_btn {
  max-width: 180px;
  margin-right: 20px;
}

.store_btn img {
  width: 100%;
}

/* ------------------ */
/* Mobile Adjustments */
/* ------------------ */
@media (max-width: 991px) {
  .banner {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-content p {
    font-size: 16px;
    margin: 20px 0 30px;
  }

  .store_btn {
    max-width: 150px;
    margin: 10px;
  }

  .hero-inner img {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-content p {
    font-size: 15px;
  }
}


/* =========================================================
                        End banner
============================================================*/

/* =========================================================
                        Start about section
============================================================*/
.about-section {
  padding: 80px 0;
}

.left-section img {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 10px;
}

.about-content {
  padding-left: 27px;
}

/* Heading */
.top-head h3 {
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 69px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Paragraph */
.top-head p {
  color: #455a64;
  font-size: 20px;
  line-height: 30px;
  margin-top: 15px;
}

/* ------------------ */
/* Mobile Adjustments */
/* ------------------ */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }

  .top-head h3 {
    font-size: 36px;
    line-height: 44px;
  }

  .top-head p {
    font-size: 16px;
    line-height: 26px;
    padding-top: 15px;
  }
}

@media (max-width: 575px) {
  .top-head h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .top-head p {
    font-size: 15px;
  }
}

/* =========================================================
                        End about section
============================================================*/

/* =========================================================
                        Start service section
============================================================*/
.service-section {
  background: #f4f7fc;
  padding: 80px 0 70px;
}

.section-head {
  padding-bottom: 65px;
}

.section-head h3 {
  font-size: 35px;
  color: #232323;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* Work Cards */
.work h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
}

.work p {
  font-size: 15px;
  color: #555;
}

/* Icon Background */
.car_bg {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}

/* ------------------ */
/* Mobile Adjustments */
/* ------------------ */
@media (max-width: 991px) {
  .service-section {
    padding: 60px 0;
  }

  .section-head {
    padding-bottom: 40px;
  }

  .section-head h3 {
    font-size: 28px;
  }

  .work h3 {
    font-size: 18px;
  }

  .work p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .section-head h3 {
    font-size: 24px;
  }

  .section-head p {
    font-size: 14px;
  }
}




/* =========================================================
                        End Service section
============================================================*/

/* =========================================================
                        Start Choose us section
============================================================*/
.feature {
  background: var(--theamOrange);
  padding: 113px 0 74px;
}

/* Title */
.feature_title {
  font-weight: 700;
  font-size: 60px;
  line-height: 69px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 71px;
}

/* Feature List */
.custom-bullet-list {
  list-style: none;
  padding-left: 0;
}

.custom-bullet-list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 30px;
}

/* Icon */
.custom-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 24px;
  height: 24px;
  background-image: url("../image/feature_option.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Text */
.custom-bullet-list h4 {
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
  color: #ffffff;
  margin-bottom: 12px;
}

.custom-bullet-list p {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

/* ------------------ */
/* Responsive Styles */
/* ------------------ */
@media (max-width: 991px) {
  .feature {
    padding: 80px 0 60px;
  }

  .feature_title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 40px;
  }

  .custom-bullet-list h4 {
    font-size: 22px;
    line-height: 28px;
  }

  .custom-bullet-list p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  .feature_title {
    font-size: 28px;
    line-height: 36px;
  }
  .custom-bullet-list{
    padding: 0px 20px;
  }
  .custom-bullet-list li {
    padding-left: 45px;
  }

  .custom-bullet-list li::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
}

/* =========================================================
                        End Choose us section
============================================================*/

/* =========================================================
                       Start taem section
============================================================*/
/* Make carousel relative */
#blog-section {
  position: relative;
}

/* Nav wrapper */
#blog-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none; /* allows clicks only on buttons */
}

/* Buttons */
#blog-section .owl-prev,
#blog-section .owl-next {
  position: absolute;
  background: var(--theamOrange) !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
  pointer-events: all;
}

#blog-section .owl-next-btn,
#blog-section .owl-prev-btn
{
  background: transparent;
  font-size: 35px;
  padding-top: 6px;
}

/* Left button */
#blog-section .owl-prev {
  left: -60px;
}

/* Right button */
#blog-section .owl-next {
  right: -60px;
}

/* Hover */
#blog-section .owl-prev:hover,
#blog-section .owl-next:hover {
  background: #bd2d10 !important;
}

/* Mobile: move arrows inside */
@media (max-width: 767px) {
  #blog-section .owl-prev {
    left: 5px;
  }

  #blog-section .owl-next {
    right: 5px;
  }
}
/* Dots */
#blog-section .owl-dots {
  margin-top: 25px;
  text-align: center;
}

#blog-section .owl-dot span {
  width: 24px;
  height: 24px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

#blog-section .owl-dot.active span {
  background: #FF3A44;
}

.team_section_head {
  background: transparent;
  padding: 134px 0 146px;
}

/* Section Title */
.section-title h3 {
  font-weight: 700;
  font-size: 60px;
  line-height: 69px;
  text-align: center;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 50px;
}

/* Carousel Images */
.blog-img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ------------------ */
/* Responsive Styles */
/* ------------------ */
@media (max-width: 991px) {
  .team_section_head {
    padding: 80px 0 90px;
  }

  .section-title h3 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .team_section_head {
    padding: 60px 0 70px;
  }

  .section-title h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
  }
}

/* =========================================================
                        End team section
============================================================*/

/* =========================================================
                        Start Appointment section
============================================================*/
.appointment_section {
  padding: 134px 0 95px;
}

/* Heading */
.appointment_content h3 {
  font-weight: 700;
  font-size: 60px;
  line-height: 69px;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 26px;
}

.appointment_content p {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #1e1e1e;
  margin-bottom: 48px;
}

/* Form Fields */
.form_box {
  margin-bottom: 30px;
}

.form_box input,
.form_box .form_select {
  width: 100%;
  height: 54px;
  border: 1px solid #e6e6e6;
  padding-left: 15px;
  border-radius: 5px;
}

.form_box textarea {
  width: 100%;
  height: 150px;
  padding: 10px 15px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}

/* Button */
.appoinment_btn button {
  background: #ff7f00;
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  transition: 0.3s;
}

.appoinment_btn button:hover {
  background: #bd2d10;
  color:#fff;
}

/* Focus */
.form_box input:focus,
.form_box textarea:focus,
.form_box select:focus {
  border-color: var(--theamOrange);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(241, 42, 2, 0.25);
}

/* ------------------ */
/* Responsive Styles */
/* ------------------ */
@media (max-width: 991px) {
  .appointment_section {
    padding: 80px 0 70px;
  }

  .appointment_content h3 {
    font-size: 36px;
    line-height: 44px;
  }

  .appointment_content p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .appointment_content h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .appointment_content p {
    font-size: 16px;
  }

  .form_box input,
  .form_box .form_select {
    height: 48px;
  }

  .appoinment_btn button {
    width: 100%;
  }
}

/* =========================================================
                    End Appointment section
============================================================*/

/* =========================================================
                    Start study section
============================================================*/

/* Base Section */
.section_head {
  background: radial-gradient(
    59.04% 209.37% at 50% 50%,
    #ff7f00 0%,
    #562b00 100%
  );
  padding: 55px 0 50px;
  position: relative;
}

/* QR Image */
.qr_img {
  max-width: 290px;
  margin-right: 40px;
}

.qr_img img {
  width: 100%;
}

/* Text */
.download_app h2 {
  font-weight: 700;
  font-size: 45px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.download_app p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

/* Store Buttons */
.store_btn {
  margin-right: 15px;
  display: inline-block;
}

.store_btn img {
  max-width: 160px;
}

/* Phone Image */
.download_phone {
  position: absolute;
  top: -74px;
  right: 120px;
}

.download_phone img {
  width: 100%;
  max-width: 320px;
}

/* ========================= */
/* Tablet (≤ 991px) */
/* ========================= */
@media (max-width: 991px) {
  .qr_img {
    max-width: 220px;
    margin-right: 25px;
  }

  .download_app h2 {
    font-size: 34px;
  }

  .download_app p {
    font-size: 22px;
  }

  .download_phone {
    right: 40px;
    top: -80px;
  }
}

/* ========================= */
/* Mobile (≤ 767px) */
/* ========================= */
@media (max-width: 767px) {
  .section_head {
    padding: 50px 0 40px;
    text-align: center;
  }

  .d-flex.flex-md-row {
    flex-direction: column !important;
  }

  .qr_img {
    margin: 0 0 20px;
    max-width: 180px;
  }

  .download_app h2 {
    font-size: 28px;
  }

  .download_app p {
    font-size: 18px;
  }

  .store_btn img {
    max-width: 140px;
  }

  /* Reset phone positioning */
  .download_phone {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 30px;
    text-align: center;
  }

  .download_phone img {
    max-width: 260px;
  }
}

/* ========================= */
/* Small Mobile (≤ 575px) */
/* ========================= */
@media (max-width: 575px) {
  .download_app h2 {
    font-size: 24px;
  }

  .download_app p {
    font-size: 16px;
  }

  .store_btn {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .store_btn img {
    max-width: 180px;
  }

  .qr_img {
    max-width: 150px;
  }
}

/* =========================================================
                    End study section
============================================================*/

/* =========================================================
                    Start Footer section 
============================================================*/
.footer {
  background: var(--theamOrange);
  color: #fff;
  padding: 60px 0;
}

/* Logo */
.footer-logo {
  max-width: 175px;
}
.footer-logo img {
  width: 100%;
}

/* Footer links */
.footer_link {
  list-style: none;
  display: flex;
  margin: 28px 0 44px;
  padding: 0;
}

.footer_link li {
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

/* Store buttons */
.store_btn img {
  max-height: 55px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .footer {
    padding: 40px 0;
  }

  .footer_link {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer_link li {
    padding: 6px 0;
  }

  .store_btn img {
    max-height: 48px;
  }
}

/* =========================================================
                    End Footer section 
============================================================*/

/* =========================================================
                    Start Copy-right section 
============================================================*/

.footer-copyright-section {
  background: #1a1a1a;
  color: #fff;
  position: relative;
}
.footer-copyright-text p {
  padding: 18px 0px;
  margin: 0;
  text-align: center;
}
/* =========================================================
                    End Copy-right section 
============================================================*/
