* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cairo;
  font-weight: normal;
  font-style: normal;
}

.calling,.whatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 999999;
    background-color: var(--white-color);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    font-size: 24px;
    cursor: pointer;
    transition: background-color .3s
}
.whatsapp {
    right: 20px;
    justify-content: center;
    align-items: center
}

.calling img,.whatsapp img {
    width: 100%;
    height: 100%
}

.calling {
    left: 20px;
    justify-content: center;
    align-items: center
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --main-color: #ed5353;
  --deep-color: #a31e1e;
  --white-color: #fff;
}
body {
  font-size: 16px;
}
.btn {
  position: relative;
  display: inline-block;
  background-color: var(--main-color);
  z-index: 2;
  overflow: hidden;
  padding: 10px 20px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  border: 0;
  transition: 0.3s all;
}
.btn:hover {
  background-color: var(--white-color);
  border-color: var(--main-color);
  color: var(--main-color);
  transition: 0.3s all;
}
.navbar {
  background-color: var(--main-color);
}
.navbar-nav .nav-link {
  color: white !important;
  position: relative;
  margin-left: 15px;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.section-title {
  color: var(--main-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.section-title::before {
  left: 0;
}

.section-title::after {
  right: 0;
}

.counter {
  background-image: url(/assetNew/images/talk-banner.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
  color: #fff;
  z-index: 1;
}
.counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a8;
  z-index: 0;
}

.counter::before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  background-color: rgb(0 0 0 / 61%);
  z-index: -1;
}

.counter-box h2 {
  font-size: 2.5rem;
  color: var(--main-color);
  font-weight: bold;
}

.counter-box p {
  font-size: 1rem;
  color: #333;
}
#testimonials {
  height: fit-content;
}
.testimonials-swiper .card {
  min-height: 180px;
  border-radius: 1rem;
  background-color: var(--white-color);
}
.testimonials-swiper .card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid var(--main-color);
}

.contact-section {
  position: relative;
  background: url("/assetNew/images/contact.webp") center center/cover no-repeat;
  /*max-height: 600px;*/
  /*padding: 60px 0;*/
}

.contact-overlay {
  background: linear-gradient(to top, rgb(0 0 0 / 80%), rgb(0 0 0 / 30%));
  padding: 60px 20px;
}

.contact-info h2 {
  font-size: 32px;
  color: var(--white-color);
}

.btn-contact {
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  transition: 0.3s;
}

.btn-contact:hover {
  background-color: #000;
  color: #fff;
}

.btnWA {
  background-color: #fff;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btnWA:hover {
  background-color: #1ebe5d !important;
  color: var(--white-color) !important;
  border-color: #000 !important;
}

.footer {
  background-color: #111;
  color: #ccc;
}

.footer h5,
.footer h6 {
  color: #fff;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--main-color);
}


/* page about */

.all-page-title {
    background-size: cover;
    background-color: var(--main-color);
    background-repeat: no-repeat;
    padding: 80px 0 110px;
    background-position: center bottom
}
.all-page-title h1 {
    position: relative;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3em;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.page-info {
    text-align: center;
}
.inner-container ul li {
    display: inline-block;
    color: #121212;
}
.inner-container ul li span {
    background: #121212;
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
}
.inner-container ul li a {
    display: inline-block;
    color: var(--white-color);
    padding: 0 5px;
}
.inner-container ul li a:hover {
    color: #fff;
}