* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --red: #e13833;
  --blue: #162842;
  --white: #fff;
  --transition-base: 0.5s ease;
  --light-gray: #d0d4d9;
}

@font-face {
  font-family: "light";
  src: url("../font/Merriweather-Light.woff2") format("truetype");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "regular";
  src: url("../font/Merriweather-Regular.woff2") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "bold";
  src: url("../font/Merriweather-Bold.woff2") format("truetype");
  font-display: swap;
  font-weight: 700;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "regular", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #fff;
  color: #111;
  user-select: none;
}

h1 {
  font-size: 6rem;
  font-family: "light";
}

h2 {
  font-size: 4.5rem;
  font-family: "light";
}

h3 {
  font-size: 2.5rem;
  font-family: "bold";
}

h4 {
  font-size: 2.2rem;
  color: var(--blue);
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 2rem;
  line-height: 3.5rem;
}

a {
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "bold";
}

li {
  list-style: none;
}

span {
  color: var(--white);
}

input {
  font-size: 1.6rem;
}

input::placeholder {
  font-size: 1.6rem;
}

/* ============= */
.wrapper-heading {
  padding: 8rem 0rem 0rem 0rem;
}

.wrapper {
  margin: auto;
  padding: 8rem 0;
}

.grid {
  display: grid;
  gap: 7rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-five-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* --------reused code---- */
.enquiry-btn {
  background-color: #e31e24;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.enquiry-btn:hover {
  background-color: var(--blue);
  color: var(--white);
}

/* --------reused code---- */
/* ----------preloader code-------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.loading06 span {
  position: relative;
  display: inline-block;
  margin: 0 0.2rem;
  font-size: 7rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  font-family: "bold";
  text-align: center;
}

.loading06 span::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  opacity: 0;
  transform: rotateY(-90deg);
  animation: loading06 4s infinite;
}

.loading06 span:nth-child(1)::after {
  animation-delay: 0.2s;
}
.loading06 span:nth-child(2)::after {
  animation-delay: 0.4s;
}
.loading06 span:nth-child(3)::after {
  animation-delay: 0.6s;
}
.loading06 span:nth-child(4)::after {
  animation-delay: 0.8s;
}
.loading06 span:nth-child(5)::after {
  animation-delay: 1s;
}
.loading06 span:nth-child(6)::after {
  animation-delay: 1.2s;
}
.loading06 span:nth-child(7)::after {
  animation-delay: 1.4s;
}
.loading06 span:nth-child(8)::after {
  animation-delay: 1.6s;
}
.loading06 span:nth-child(9)::after {
  animation-delay: 1.8s;
}
.loading06 span:nth-child(10)::after {
  animation-delay: 2s;
}
.loading06 span:nth-child(11)::after {
  animation-delay: 2.2s;
}
.loading06 span:nth-child(12)::after {
  animation-delay: 2.4s;
}
.loading06 span:nth-child(13)::after {
  animation-delay: 2.6s;
}
.loading06 span:nth-child(14)::after {
  animation-delay: 2.8s;
}
.loading06 span:nth-child(15)::after {
  animation-delay: 3s;
}
.loading06 span:nth-child(16)::after {
  animation-delay: 3.2s;
}
.loading06 span:nth-child(17)::after {
  animation-delay: 3.4s;
}
.loading06 span:nth-child(18)::after {
  animation-delay: 3.6s;
}

@keyframes loading06 {
  0%,
  75%,
  100% {
    transform: rotateY(-90deg);
    opacity: 0;
  }
  25%,
  50% {
    transform: rotateY(0);
    opacity: 1;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-bottom-color: #ff3d00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ----------preloader code-------- */
/* -----header----- */
header {
  position: fixed;
  width: 100%;
  z-index: 99;
}

.top-header {
  background-color: var(--blue);
  padding: 1.5rem 0;
  transition: transform var(--transition-base);
  will-change: transform;
  margin-top: -10.3rem;
}

.top-header.hide {
  transform: translateY(-100%);
}

.main-header {
  position: fixed;
  top: 4.5rem; /* same height as top-header */
  width: 100%;
  z-index: 999;
  transition: top var(--transition-base), transform var(--transition-base);
  transform-origin: top;
  will-change: top, transform;
}
.top-header-social-icons{
  width: 20px;
  height: 20px;
}
.main-header.move-to-top {
  top: 0;
}
.navbar-expand-lg .navbar-nav {
  align-items: center;
}
.main-header.rotate-hide {
  overflow: hidden;
  transform: perspective(300px) rotateX(-90deg);
}
.top-header-left a img {
  width: 25px;
  height: 25px;
}

.top-header-right-contact a img {
  width: 15px;
  height: 15px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  top: 5.5rem;
}
/* ----main header---- */
/* Mega Dropdown Styles */
.mega-dropdown {
  position: static !important;
}
.mega-menu-fullscreen {
  position: absolute;
  top: 100%; /* Below navbar */
  left: 0;
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  background: white;
  z-index: 9999;
  display: none; /* shown via JS */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mega-dropdown .dropdown-menu {
  width: 100%;
  max-width: 1000px;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.mega-dropdown-content {
  display: flex;
  min-height: 400px;
}

/* Hover functionality */
.mega-dropdown:hover .dropdown-menu {
  display: block;
}

.mega-dropdown .dropdown-menu {
  display: none;
}

.mega-dropdown.show .dropdown-menu {
  display: block;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--red) !important;
}
.nav-pills .nav-link{
  font-size: 1.6rem;
}
/* Sidebar Styles */
.mega-sidebar {
  background: #162842 !important;
  width: 280px;
  padding: 0;
}
.dropdown-menu {
  padding: 0 !important;
}
.mega-sidebar .nav-link {
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  text-align: left;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.mega-sidebar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(5px);
}

.mega-sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.mega-sidebar .nav-link i {
  margin-right: 10px;
  width: 20px;
}

/* Content Styles */
.mega-content {
  flex: 1;
  padding: 30px;
  background: white;
}

.mega-content-section {
  display: none;
}

.mega-content-section.active {
  display: block;
}

.mega-content h5 {
  color: #6b46c1;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
}

.mega-content .row {
  margin-bottom: 25px;
}

.mega-content .col-md-4 h6 {
  color: #374151;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-content .col-md-4 a {
  display: block;
  color: #6b7280;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mega-content .col-md-4 a:hover {
  color: #e13833;
  transform: translateX(5px);
}

/* Navbar Styles */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 5rem !important;
}

.navbar-nav .nav-link {
  color: var(--blue);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
  font-size: 1.2rem;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 3px !important;
    padding-left: 3px !important;
}
.navbar-nav .nav-link:hover {
  color: var(--red);
}

/* Dropdown Toggle Styles */
.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

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


 /* -------header search btn----------- */
.hsb-btn{
  position: absolute;
  border: none;
  outline: none;
  background-color: transparent; 
}
.hsb-btn img{
 height: 20px;
  width: 20px;
}
.header-search-btn{
   position: relative; 
   background-color: #d6dbe2;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem; 
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a1e3a;
  margin-right: 2rem;
  width: 19%;
    margin-left: auto; 
}
.header-search-btn input , .header-search-btn input::placeholder{
  color: var(--blue);
  font-size: 1.2rem;
  font-family: "bold";
}
.header-search-btn input { 
  padding-left: 2.5rem;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 1.3rem;
}

.mobile-header{
  display: none;
}
/* -------slider------- */
.slide {
  margin-top: 10rem;
}
.carousel-item {
  height: calc(70vh - 0rem);
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}

.carousel-caption {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  bottom: 0;
  right: 0;
  transform: translate(-50%, -50%) !important;
  color: #fff;
  /* text-align: center; */
  width: 100%;
}

.slider-heading {
  color: var(--blue);
  font-weight: 400;
  font-size: 8.6rem;
  font-family: "light";
}

.slider-heading span {
  color: var(--red);
}

.slider-para {
  color: var(--blue);
  width: 50%;
  margin: 0 auto;
  margin-top: 4rem;
}

.slider-btn {
  font-size: 1.6rem;
  margin-top: 5rem;
  padding: 1rem 3rem;
  border-radius: 33rem;
  letter-spacing: 0.3rem;
  font-family: "light";
  font-weight: 500;
}

/* -----brand logo---- */
.brand-logo {
  text-align: center;
  padding-bottom: 15rem;
}

.brand-logo img {
  width: 67%;
  height: auto;
}

.brand-logo2 {
  width: 90% !important;
}
.brand-logo-heading {
  letter-spacing: 0.3rem;
}

/* -----our features---- */
.feature-bg {
  background-color: var(--blue);
}
.left-right-margin {
  width: 1200px;
  margin: 0 auto;
}
.feature-bg .grid {
  gap: 5rem;
}
.feature-heading h4 {
  color: var(--white);
  padding-bottom: 3rem;
  letter-spacing: 0.3rem;
}

.feature-heading h2 {
  color: var(--light-gray);
  width: 50%;
}

.features-cards {
  background-color: #475c7aba;
  padding: 4rem;
  border-radius: 4rem;
}

.features-cards h3 {
  color: var(--white);
  width: 90%;
}

.features-cards p {
  color: var(--white);
  padding-top: 3rem;
  width: 80%;
}

/* -----choose services section---- */
.choose-services-bg {
  background: linear-gradient(-10deg, #dcedf9, #ffffff);
  padding: 5rem 0;
}

.choose-services-heading {
  color: var(--blue);
  width: 50%;
}
.choose-services-heading h1 {
  font-family: "light";
  width: 80%;
  /* padding-top: 5rem; */
}
.cs-top {
  margin-top: 8rem;
}

.choose-serives-box-heading h3 {
  color: var(--blue);
}

.choose-serives-box-heading img {
  width: 25px;
  height: 25px;
}
.choose-serives-box-heading {
  width: 85%;
}
.choose-serives-para {
  margin-top: 4rem;
  border-bottom: 2px solid rgba(96, 96, 96, 0.525);
  padding-bottom: 1.5rem;
  color: var(--blue);
  width: 85%;
}
.choose-serives-para p {
  width: 80%;
}
/* -----about us---- */
.about-us {
  position: relative;
  padding: 8rem 1rem;
}

.about-bg {
  width: 31%;
  height: auto;
  position: absolute;
  left: 17%;
  bottom: 7%;
}

.about-us .grid {
  align-items: start;
  min-height: 100%;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.about-left h4 {
  color: var(--blue);
}

.about-left h1 {
  color: var(--blue);
  padding-top: 4rem;
  width: 50%;
}

.about-btn {
  margin-top: auto;
}
.about-right {
  width: 100%;
}
.about-right p {
  color: var(--blue);
}

.about-right p:nth-child(1),
.about-right p:nth-child(2) {
  padding-bottom: 2rem;
}

/* ------select language----- */
.select-language {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.lang-main-box {
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
}

.language-box {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

.language-box-heading {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  background-color: #e63946;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
  transition: all 0.5s ease;
  height: 370px;
}

.language-box-heading h4 {
  color: white;
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

.language-box-ans {
  display: none;
  padding: 4rem;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  max-height: 0;
}
.language-box-ans h4 {
  color: var(--blue);
  letter-spacing: 0.3rem;
}
.language-box-ans h2 {
  width: 70%;
  color: var(--blue);
  padding: 2rem 0;
}
.language-box-ans .enquiry-btn {
  padding: 0.7rem 2rem;
  font-size: 1.3rem;
  border-radius: 33rem;
  font-family: "light";
  letter-spacing: 0.3rem;
}
.language-left-data .enquiry-btn {
  padding: 0.7rem 2rem;
  font-size: 1.3rem;
  border-radius: 33rem;
  font-family: "light";
  letter-spacing: 0.3rem;
  font-weight: 600;
}
.language-box.active .language-box-heading h4 {
  transform: rotate(0deg);
}

.language-box.active .language-box-ans {
  display: block;
  opacity: 1;
  max-height: 500px;
}

.language-left-data {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  transition: opacity 0.1s ease;
}
.language-left-data h4 {
  color: var(--blue);
  letter-spacing: 0.3rem;
}
.language-left-data h2 {
  color: var(--blue);
  width: 70%;
  padding: 2rem 0;
}
.language-left-data.hidden {
  opacity: 0;
  pointer-events: none;
}
.english {
  background: #c0392b;
}
.spanish {
  background: #f1c40f;
}
.hindi {
  background: #e67e22;
}
.punjabi {
  background: #e91e63;
}
.urdu {
  background: #27ae60;
}
.mandarin {
  background: #2c3e50;
}
.romanian {
  background: #8b4513;
}
/* -------common left right------- */
.common-left-right .grid-two-cols {
  align-items: end;
}

.common-left h1 {
  padding-top: 4rem;
  color: var(--blue);
  padding-bottom: 4rem;
  text-transform: capitalize;
}

.common-left h4 {
  text-transform: uppercase;
  color: var(--blue);
}

.common-left-data-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(96, 96, 96, 0.525);
  padding-bottom: 2rem;
  padding-top: 3rem;
}

.common-left-data-main h3 {
  color: var(--blue);
}

.common-left-data-main img {
  width: 25px;
  height: 25px;
}

.common-right {
  text-align: right;
}
.common-right img {
  width: 82%;
  height: auto;
}
.sec-common-right {
  text-align: left;
}
.padding-bottom {
  padding-bottom: 8rem;
}

/* ------why choose----- */
.why-choose {
  background-color: var(--blue);
  padding: 6rem 0;
}
.why-choose-right-data-h1-h3 h1,
.why-choose-right-data-h1-h3 h3 {
  color: var(--blue) !important;
  font-family: "light" !important;
}
.why-choose-right-data h1,
.why-choose-right-data h3 {
  font-family: "light" !important;
}
.why-choose-right-data h3 {
  font-size: 3rem;
}
.why-choose-left h4 {
  text-transform: uppercase;
  color: var(--white);
}
.why-choose-left h2 {
  text-transform: capitalize;
  color: var(--white);
  padding: 4rem 0;
}
.why-choose-left p {
  text-transform: capitalize;
  color: var(--light-gray);
}

/* ----why choose right---- */
.why-choose-right .grid {
  gap: 0rem;
}

.why-choose .grid-two-cols {
  align-items: end;
}

.why-choose-right-data {
  background-color: #3d495f;
  padding: 8rem 4rem;
  border-radius: 5rem;
  text-align: center;
}

.why-choose-right-data h1,
.why-choose-right-data h3 {
  color: var(--white);
  font-family: "regular";
}

.wcrd-2 {
  background-color: #6c7688;
}

.wcrd-3 {
  background-color: #a1a8b2;
}

.wcrd-4 {
  background-color: #d3d7dd;
}

/* -------testimonails----- */
.testimonail-heading .grid-two-cols {
  grid-template-columns: 2fr 1fr;
}

.testimonail-heading-data h4 {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.testimonail-heading-data h1 {
  color: var(--blue);
  font-family: "light";
  padding-top: 4rem;
  width: 91%;
}

.testimonail-heading .grid {
  align-items: end;
}

.testi-rating-img {
  width: 100%;
  height: auto;
}

/* -------testimonal slider------ */
.test-data-main .wrapper {
  padding-top: 0rem;
}

.testi-feedback p {
  color: var(--blue);
}

.testi-feedback h4 {
  color: var(--blue);
  font-family: "bold";
  margin-top: 3rem;
}

.testi-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}

.testi-rating img {
  width: 20px !important;
  height: 20px !important;
}

/* ------contact------- */
.contact {
  background: linear-gradient(to right, #edf5fb 0%, #f5f7f8 100%);
  padding: 6rem 0;
}

.contact-left h4 {
  color: var(--blue);
  text-transform: uppercase;
}

.contact-left h1 {
  color: var(--blue);
  padding: 3rem 0 4rem 0;
  width: 85%;
}

.contact-left h3 {
  color: var(--blue);
  padding-bottom: 4rem;
}

.contact-left-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.contact-left-info img {
  width: 45px;
  border: 1px solid rgba(0, 0, 0, 0.212);
  border-radius: 1.5rem;
}

/* -----contact right------- */
.appointment-card {
  background: linear-gradient(to right, #f8fbfd, #edf5fb);
  border: 1px solid #dce6f0;
  border-radius: 5rem;
  padding: 5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.appointment-card h3 {
  color: var(--blue);
  padding-bottom: 3rem;
}
select.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: none;
  cursor: pointer;
}
.custom-select-wrapper {
  position: relative;
}
/* Custom arrow */
.custom-select-wrapper::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 40%;
  transform: translateY(-50%, -50%);
  pointer-events: none;
  width: 35px;
  height: 35px;
  background-image: url("../assets/svg_icons/contact_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-from select {
  padding: 2rem;
  border-radius: 1rem;
  font-size: 2rem;
  background-color: transparent;
}

.contact-from input {
  font-size: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: transparent;
}

.contact-from input::placeholder {
  font-size: 2rem;
}

.contact-btn {
  background-color: var(--red);
  padding: 1.5rem 4rem;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 2rem;
  border-radius: 33rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
  background-color: var(--blue);
}

/* ------latest blogs------ */
.latest-blogss {
  padding: 6rem 0;
}
.latest-blog-left-right-space {
  padding: 8rem 8rem;
}

.latest-blog-heading h1 {
  color: var(--blue);
  padding-bottom: 6rem;
}

.latest-blog-data-box {
  background-color: #e9ecef;
  padding: 4rem;
  border-radius: 5rem;
}

.latest-blog-data-box p {
  color: var(--blue);
}

.latest-blog-data-box h3 {
  padding: 2rem 0;
  color: var(--blue);
}

.latest-blog-para {
  color: var(--blue);
  padding-bottom: 2rem;
}

.latest-blog-button {
  font-size: 1.8rem;
  font-family: "light";
  color: var(--blue);
  font-weight: 600;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--blue);
}

.owl-theme .owl-dots .owl-dot span {
  width: 18px;
  height: 18px;
}

/* ------faq------ */
.faq {
  background-color: rgb(243, 245, 247);
  padding: 6rem 0;
}

.faq-heading h1 {
  color: var(--blue);
  width: 50%;
}

.accordion-button {
  color: #1d2d44;
  background-color: transparent;
  box-shadow: none;
  font-size: 2.5rem;
  font-family: "bold";
  padding-top: 3rem;
  padding-bottom: 3rem;
  justify-content: space-between;
  padding-right: 4rem;
}
.accordion-button::after {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  margin-left: 4rem;
  background-image: url("../assets/svg_icons/contact_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.accordion-button:not(.collapsed) {
  color: #1d2d44;
  background-color: transparent;
  box-shadow: none;
}

.accordion-body {
  color: var(--blue);
  font-size: 2rem;
  line-height: 3.5rem;
}

.accordion-item {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
}

.accordion-item .accordion-body {
  padding: 1rem 1.25rem 3rem 1.25rem;
}
.accordion {
  --bs-accordion-bg: transparent !important;
}
/* ------faq right------ */
.faq-right {
  text-align: center;
}
.faq-right img {
  width: 70%;
  height: auto;
}
/* ----footer------ */
footer {
  background-color: var(--blue);
}
footer .grid-four-cols {
  grid-template-columns: 1fr 0.5fr 1fr 1fr;
}
footer .wrapper {
  padding-bottom: 30rem;
}
.footer-logo {
  height: 10rem;
}
.footer1 p {
  color: rgb(195, 198, 205);
  padding: 4rem 0;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
.fb-img {
  height: 10rem;
  display: block;
}
.footer-brand1,
.footer-brand2 {
  margin-bottom: 1rem;
}
.footer-brand2,
.footer-brand3 {
  height: 7rem;
}
/* ----footer2---- */
.footer2 p {
  color: var(--white);
  font-size: 1.6rem;
}
.footer2 ul {
  padding-left: 0rem;
}
.footer2 ul li {
  padding: 1.5rem 0;
}
.footer2 ul li a {
  font-size: 1.6rem;
  color: rgb(195, 198, 205);
  font-family: "regular", sans-serif;
}
.footer4 {
  padding-top: 2rem;
}
.footer4-img {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
.footer4-img img {
  width: 50px;
}
.footer4-img p {
  color: var(--light-gray);
}
.footer-relative {
  position: relative;
}
.footer-payment {
  position: absolute;
  bottom: 75px;
  left: 28%;
  padding: 2rem;
}
.footer-payment h4 {
  color: var(--white);
  letter-spacing: 0.2rem;
  padding-bottom: 2rem;
}
/* .footer-payment-img */
.footer-payment-img img {
  height: 3rem;
}
.footer-payment-img {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-payment-select {
  padding: 1.5rem;
  width: 45%;
  border: none;
  outline: none;
  border-radius: 1rem;
  font-size: 2rem;
  background-color: #d0d4d9;
}
.footer-buy-now-btn {
  border: none;
  outline: none;
  color: var(--white);
  padding: 0.5rem 2.5rem;
  border-radius: 33rem;
  background-color: #df653a;
  margin-top: 2rem;
}
.footer-payment p {
  font-size: 1.6rem;
  color: rgb(195, 198, 205);
  font-family: "regular", sans-serif;
  padding-top: 2rem;
  width: 90%;
  line-height: 2.5rem;
}
/* --------click to top btn------ */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 1000;
  background-color: var(--red);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#backToTopBtn:hover {
  background-color: #bb2d3b;
}
/* -------------contact us page ------ */
.about-banner {
  background-image: url(assets/images/about-bg.webp) !important;
}
.contact-banner {
  position: relative;
  background-image: url(assets/images/contact-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 10rem;
}
.contact-banner-data {
  text-align: center;
}
.contact-banner-data h1 {
  color: var(--blue);
  font-size: 8.6rem;
  width: 90%;
  margin: auto;
}
.contact-banner-data h1 span {
  color: var(--red);
}
.contact-banner-data p {
  color: var(--blue);
  padding-top: 3rem;
  padding-bottom: 4rem;
  width: 60%;
  margin: auto;
}
.contact-banner-btn {
  display: inline-flex;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
  border-radius: 33rem;
}
/* ------contact map section-------- */
.contact-page {
  background: linear-gradient(to right, #edf5fb 0%, #f5f7f8 100%);
  padding: 4rem 0;
}
.contact-page-left-data {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}
.contact-page-left-data img {
  width: 50px;
  height: 50px;
}
.contact-page-icon-email {
  font-size: 1.8rem;
  color: var(--blue);
  font-family: "regular", sans-serif;
}
.contact-page-icon-location {
  font-family: "bold";
  width: 65%;
  font-size: 2.5rem;
}
.contact-page-map-location {
  margin-top: 4rem;
  color: var(--blue);
  margin-top: 3rem;
}
.contact-page-map-location iframe {
  border-radius: 4rem;
}
/* ---------blog page section------- */
.blog {
  background-color: var(--blue);
  margin-top: 10rem;
}
.blog .grid {
  gap: 20rem;
  height: 100%;
  align-items: stretch;
}

.blog .grid-two-cols {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
}

.blog-left p {
  color: var(--white);
}

.blog-left h1 {
  padding: 2rem 0;
  color: #ffffff79;
  font-family: "light";
}

.blog-btn-top {
  font-size: 1.6rem;
  color: var(--white);
  background-color: var(--red);
  display: inline-flex;
  padding: 0.5rem 3rem;
  border-radius: 33rem;
  margin-top: 12rem;
  align-self: flex-start; /* Optional: align button to left side */
}
/* ----blog data section------ */
.blog-page-section .grid {
  gap: 4rem;
}
.blog-page-section .wrapper {
  padding: 1rem 0rem 10rem 0rem;
}
.blog-page-box-data-heading {
  color: var(--blue);
}
.blog-page-all-box-data {
  margin-top: 8rem;
}
.blog-page-box-data {
  padding: 4rem 3rem;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 5rem;
}
.blog-page-box-data-para1 {
  color: var(--blue);
}
.blog-page-box-data h3 {
  color: var(--blue);
  padding: 2rem 0;
}
.blog-page-box-data-para2 {
  color: var(--blue);
  padding-bottom: 2rem;
  line-height: 3rem;
}
.blog-page-box-data a {
  font-size: 1.8rem;
  color: var(--blue);
  font-family: "light";
  font-weight: 500;
}
/* --------blog details page-------- */
/* .blog-details-pages .grid-two-cols{
  grid-template-columns: 2fr 1.5fr;
} */
/* --------about page ----------- */
.about-director-message {
  padding: 4rem 0;
}
.about-page {
  padding: 3rem 0;
}
.about-page-data h2 {
  font-family: "bold";
  padding-bottom: 3rem;
  color: var(--blue);
}
.about-page-data p {
  width: 70%;
  color: var(--blue);
}
.about-page-2 .wrapper {
  padding-top: 0;
}
.about-director-message-left {
  margin-top: 8rem;
  text-align: center;
}
.about-director-message-left img {
  width: 75%;
  height: auto;
}
.about-director-message-right h4 {
  color: var(--blue);
  letter-spacing: 0.3rem;
}
.about-director-message-right h1 {
  color: var(--blue);
  padding: 4rem 0 8rem 0;
  width: 90%;
}
.about-director-message-right p {
  color: var(--blue);
}
/* --------services page--------  */
.services-page {
  margin-top: 10rem;
  background: linear-gradient(to right, #edf5fb 0%, #f5f7f8 100%);
  padding-top: 8rem;
}
.services-page .grid-two-cols {
  grid-template-columns: 2fr 1.5fr !important;
}
.services-page .grid {
  gap: 20rem;
}
.services-page-left h1 {
  color: var(--blue);
  font-family: "light";
}
.services-page-left p {
  color: var(--blue);
  padding: 2rem 0;
}
.services-page-top-images {
  margin-top: 4rem;
}
.services-page-top-images img {
  width: 100%;
  height: auto;
}
.services-page-brand-logo {
  width: 200px !important;
}
.services-reting-img {
  margin: 4rem 0;
  width: 300px;
  height: auto;
}
.services-page-btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  border-radius: 33rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
/* ------services page links------ */
.services-page-links {
  background-color: var(--blue);
  padding: 2rem 0;
}
.services-page-links-left-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #a2a9b3;
  padding-bottom: 2rem;
}
.services-page-links-left-data h3 {
  color: #d8d4d4;
}
.services-page-links-left-data img {
  width: 30px;
}
/* ---------services page more details-------- */
.services-page-more-details .grid {
  gap: 10rem;
}
.services-page-more-details .grid-two-cols {
  grid-template-columns: 2fr 1.3fr;
}
.services-page-more-details .wrapper-heading h1 {
  width: 40%;
  color: var(--blue);
  font-family: "light";
}
.spmdl-data h3 {
  color: var(--blue);
  padding-bottom: 3rem;
  font-size: 4rem;
}
.spmdl-data p {
  padding: 1rem 0;
  color: var(--blue);
}
/* ----  */
.spmdr-links h2 {
  color: var(--blue);
  font-family: "light";
  font-size: 6rem;
}
.spmdr-links a {
  color: var(--blue);
  font-size: 2rem;
  background-color: #d5d8dd;
  padding: 1rem 2rem;
  margin: 3rem 0;
  border-radius: 1rem;
}
.smpdr-latest-blog {
  margin-top: 8rem;
  border-bottom: 2px solid #d5d8dd;
  padding-bottom: 2rem;
}
.smpdr-latest-blog h2 {
  color: var(--blue);
  font-size: 6rem;
  padding-bottom: 1rem;
}
.smpdr-latest-blog h4 {
  padding-bottom: 2rem;
  font-family: "bold";
}
.smpdr-latest-blog p {
  color: var(--blue);
  padding-bottom: 2rem;
}
.smpdr-latest-blog a {
  color: var(--blue);
  font-size: 2rem;
  font-family: "regular";
}
.smpdr-latest-blog-2 {
  margin-top: 3rem;
  border: none;
}
/* -------services details page------  */
.services-details-apply-now {
  background-color: var(--blue);
}
.services-details-apply-now .wrapper {
  padding: 3rem 0;
}
.sdan-data {
  display: flex;
  align-items: center;
  gap: 20rem;
}
.sdan-data h3 {
  color: var(--light-gray);
  width: 47%;
  line-height: 3.8rem;
}
.spmd-padding {
  padding: 5rem 0;
}

.services-details-btn {
  font-size: 2rem;
  padding: 1.5rem 3rem;
  border-radius: 33rem;
  border: 2px solid var(--blue);
  font-family: "light";
  letter-spacing: 0.3rem;
  font-weight: 500;
}
.services-details-btn:hover {
  border: 2px solid var(--red);
}
/* --------- */
.smpdr-table-contents {
  border: 1px solid #d5d8dd;
  padding: 4rem;
  border-radius: 4rem;
  margin-bottom: 8rem;
}
.smpdr-table-contents h3 {
  color: var(--blue);
  padding-bottom: 1rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-item {
  position: relative;
  border-bottom: 1px solid #f1f3f4;
}

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

.toc-link {
  display: flex;
  align-items: center;
  padding: 1.6rem 0rem;
  text-decoration: none;
  color: #495057;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.toc-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #dee2e6;
  margin-right: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.toc-text {
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
  color: var(--blue);
}

/* Active State - Blue bullet and underline */
.toc-link.active .toc-bullet {
  background-color: var(--blue);
}

.toc-link.active .toc-text {
  color: #2c3e50;
  font-weight: 600;
}

.toc-link.active .toc-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dee2e6;
  border-radius: 1px;
}

/* Hover Effects */
.toc-link:hover {
  color: #343a40;
}

.toc-link:hover .toc-bullet {
  background-color: #adb5bd;
  transform: scale(1.1);
}

.blog-page-box-data p a{
  font-size: 2rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}

.services-page-more-details-left p a{
  font-size: 2rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}
.services-page-more-details-left ul li{
  list-style-type: disc;
  font-size: 2rem;

}
.services-page-more-details-left ul li a{
    font-size: 1.5rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}
.pagination li a{
  font-size: 20px;
}
.pagination li span{
  font-size: 20px;
}

.about-page-data ul li{
  list-style-type: disc;
  font-size: 2rem;
}
.about-page-data ul li a{
    font-size: 2rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}
.about-page-data p a{
  font-size: 2rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}
.cta-txt h5 a{
  display: inline;
  text-decoration: underline;
  color: var(--red);
}
.contact-page-left p a{
   font-size: 2rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}

.about-page-data ol li{
  list-style-type: disc;
  font-size: 2rem;
}
.about-page-data ol li a{
    font-size: 2rem;
  display: inline;
  text-decoration: underline;
  color: var(--red);
}
.iti { 
    width: 100% !important;
}
.iti__country-name, .iti__flag-box { 
    color:var(--blue);
}