@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@layer bootstrap, base, components, utilities;
@layer base {
  input,
  textarea,
  select,
  a,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    text-decoration: none;
    outline: none;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  * {
    box-sizing: border-box;
  }
  a,
  a:hover,
  a:focus,
  *:focus-visible {
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    outline: none;
  }
  button {
    cursor: pointer;
  }
  button:focus,
  input:focus {
    box-shadow: none !important;
  }
  html,
  body {
    margin: 0;
    padding: 0;
    background: #fff;
    text-wrap: balance;
    font-family: "Jost", sans-serif !important;
    overflow-x: hidden;
    scroll-padding-top: 60px;
  }
}
:root {
  --font-base: 16px;
  --font-small: 18px;
  --font-medium: 25px;
  --font-large: 42px;
  --font-xl: 55px;
  --black: #1a1a1a;
  --dark: #4d4d4d;
  --white: #fff;
}

@media (max-width: 1800px) and (min-width: 1400px) {
  :root {
    --font-base: 17px;
    --font-small: 18px;
    --font-medium: 25px;
    --font-large: 55px;
    --font-xl: 65px;
  }
}
@media (max-width: 767px) {
  :root {
    --font-base: 16px;
    --font-small: 18px;
    --font-medium: 22px;
    --font-large: 26px;
    --font-xl: 38px;
  }
}
input,
textarea,
select,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-decoration: none;
  outline: none;
  word-break: break-word;
  overflow-wrap: break-word;
  text-wrap: auto;
}

* {
  box-sizing: border-box;
}

a,
a:hover,
a:focus,
*:focus-visible {
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  outline: none;
}

button {
  cursor: pointer;
}

button:focus,
input:focus {
  box-shadow: none !important;
}

section {
  overflow-x: hidden;
}

.text-accent {
  color: #4eb6c5 !important;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 333;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.anim-t {
  animation: stick 0.6s linear !important;
}

@keyframes stick {
  0% {
    opacity: 0%;
  }
  50% {
    opacity: 50%;
    background-color: #000;
  }
  100% {
    opacity: 100%;
  }
}
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.global_btn {
  background-color: #D81F26;
  padding: 9px 25px;
  color: var(--white);
  border-radius: 50px;
  border: none;
  font-size: var(--font-base);
  transition: 0.3s all ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.global_btn:hover {
  scale: 1.1;
  transition: 0.3s all ease-in-out;
}
.navbar-brand{
	width:140px;
}
.navbar-brand img {
	width: 100%;
	height: auto;
}
.main_head {
  background: var(--white);
  height: -moz-fit-content;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.main_head .hero_content {
  position: relative;
  z-index: 2;
  color: var(--black);
}

.main_head .hero_content h1 {
  font-size: var(--font-large);
  font-weight: 700;
  line-height: normal;
  border-radius: 50px;
  color: #2258a3;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 1px;
  line-height: 1.1;
}

.main_head .hero_content h2 {
  font-size: var(--font-small);
  font-weight: 500;
	color:#5e5e5e;
  line-height: normal;
}

.hero_home {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}


.arrow_para .arrow-image {
  width: 70px;
}

.arrow_para p {
  font-size: var(--font-base);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8274509804);
}

.main_head .shape-bottom img.bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.main_head .offcanvas {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
}

.main_head .nav-link {
  font-size: var(--font-base);
  font-weight: 400;
  color: var(--black);
  padding: 0;
  transition: 0.3s all ease-in-out;
  border-bottom: 2px solid transparent;
}

.border_bottom {
  border-bottom: 1px solid rgba(12, 12, 12, 0.1882352941);
}

.main_head .nav-link:hover {
  scale: 1.1;
  color: #D81F26;
  transition: 0.3s all ease-in-out;
}

@media only screen and (max-width: 991.98px) {
  .main_head .nav-link:hover {
    scale: 1;
  }
}
.main_head .btn-close {
  filter: invert(0);
}

.main_head .navbar-toggler-icon {
  filter: invert(0);
}

.main_head .hero_section {
  position: relative;
  z-index: 9;
  min-height: calc(80vh - 106px);
  max-height: -moz-fit-content;
  max-height: fit-content;
}

@media only screen and (max-width: 1399.98px) {
  .main_head .hero_section {
    min-height: 100%;
  }
}
.main_head .hero_section h1 {
  font-size: var(--font-xl);
  line-height: normal;
  color: var(--black);
  font-weight: 500;
}

.main_head .hero_section .bullets i {
  font-size: var(--font-small);
  color: var(--black);
  stroke-width: 1px;
}

.main_head .hero_section .bullets span {
  font-size: var(--font-small);
  color: var(--black);
  font-weight: 300;
}

.main_head .hero_section .main_mob {
  margin-left: 150px;
}

.main_head .hero_section .main_mob .hero_phone {
  height: 450px;
  margin-left: -100px;
}

.main_head .hero_section .main_mob .hero_phone img {
  border-radius: 40px;
}

.main_head .hero_section .main_mob .hero_phone1 {
  position: relative;
  z-index: 9;
  transition: 0.3s all ease-in-out;
}

.main_head .hero_section .main_mob .hero_phone1:hover {
  z-index: 99;
  scale: 1.2;
  transition: 0.3s all ease-in-out;
}

.main_head .hero_section .main_mob .hero_phone2 {
  position: relative;
  z-index: 8;
  transition: 0.3s all ease-in-out;
}

.main_head .hero_section .main_mob .hero_phone2:hover {
  z-index: 99;
  scale: 1.2;
  transition: 0.3s all ease-in-out;
}

.main_head .hero_section .main_mob .hero_phone3 {
  position: relative;
  z-index: 7;
  transition: 0.3s all ease-in-out;
}

.main_head .hero_section .main_mob .hero_phone3:hover {
  z-index: 99;
  scale: 1.2;
  transition: 0.3s all ease-in-out;
}

footer h5 {
  color: #000;
  font-size: var(--font-small) !important;
  font-weight: 500 !important;
}

footer .icon_btn {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: #D81F26;
  font-size: 25px;
  transition: 0.1s all ease-in-out;
}

footer .icon_btn:hover {
  scale: 1.1;
  transition: 0.1s all ease-in-out;
}

.para {
  font-size: var(--font-base);
  font-weight: 400;
  color: var(--black);
}

.lead {
  font-size: var(--font-small);
  font-weight: 400;
  color: var(--black);
}

.menu-item.active {
  color: #D81F26 !important;
  border-bottom: 2px solid #D81F26 !important;
  font-weight: 500 !important;
  padding-bottom: 2px !important;
}

.nhead {
  font-size: var(--font-medium);
  font-weight: 500;
  color: #D81F26;
}

.hero_home_content {
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
}

.count_home {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #D81F26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-base);
  font-weight: 500;
  line-height: normal;
  flex-shrink: 0;
}

.topbar {
  background-color: #2258a3;
  position: relative;
  z-index: 98;
}
.topbar .social-icons .icon-circle {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2258a3;
  text-decoration: none;
  transition: all 0.2s ease;
}
.topbar .social-icons .icon-circle i {
  font-size: var(--font-base);
  line-height: normal;
}
.topbar .social-icons .icon-circle:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
@media only screen and (max-width: 575.98px) {
  .topbar .social-icons {
    display: none !important;
  }
}

.hero_bg {
  background: url("../images/about-us.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .hero_bg {
    padding: 80px 0px;
  }
}
.hero_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4509803922);
  z-index: 1;
}
.hero_bg .hero_overlay {
  position: relative;
  z-index: 9;
}
.hero_bg h1 {
  font-size: var(--font-large);
  line-height: 50px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 991.98px) {
  .hero_bg h1 {
    font-size: 32px;
    line-height: 42px;
  }
}

.our_team .team_content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.our_team .team_image {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}
.our_team .social-icons .icon-circle {
  width: 35px;
  height: 35px;
  background: #D81F26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.our_team .social-icons .icon-circle i {
  font-size:20px;
  line-height: normal;
}
.our_team .social-icons .icon-circle:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.read-more-btn {
  color: #D81F26;
  font-weight: 500;
  cursor: pointer;
}

.careers-apply-section {
  background: #f8f9fa;
}
.careers-apply-section .section-title {
  font-size: 31px;
  font-weight: 600;
  color: #D81F26;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .careers-apply-section .section-title {
    font-size: var(--font-medium);
  }
}
.careers-apply-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #D81F26;
  margin: 1rem auto;
  border-radius: 2px;
}
.careers-apply-section .apply-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}
.careers-apply-section .apply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}
.careers-apply-section .apply-card .card-body {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.careers-apply-section .apply-card .card-body .card-icon {
  width: 60px;
  height: 60px;
  background: #D81F26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}
.careers-apply-section .apply-card .card-body .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
}
.careers-apply-section .apply-card .card-body .card-text {
  color: #6c757d;
  flex-grow: 1;
}
.careers-apply-section .apply-card .card-body .btn-wrapper .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.careers-apply-section .apply-card .card-body .btn-wrapper .btn:hover {
  transform: translateY(-2px);
}
.careers-apply-section .apply-card .card-body .btn-wrapper .btn-outline-primary {
  border-width: 2px;
}
.careers-apply-section .careers-description {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  line-height: 1.7;
  color: #495057;
}
.careers-apply-section .careers-description .lead {
  font-size: 1.1rem;
  text-align: left;
}

@media (max-width: 768px) {
  .careers-hero .careers-title {
    font-size: 2.5rem;
  }
  .careers-apply-section .apply-card .card-body {
    padding: 2rem 1.5rem;
  }
  .careers-apply-section .careers-description {
    padding: 2rem 1.5rem;
  }
}
.services-groove-section {
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23333" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z" /%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.services-groove-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
}
.services-groove-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.services-groove-section .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.services-groove-section .service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  height: 100%;
}
.services-groove-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.services-groove-section .service-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D81F26, rgb(228.3927125506, 69.6072874494, 75.6153846154));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.services-groove-section .service-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.services-groove-section .service-card .card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .services-groove-section .section-title {
    font-size: 2.5rem;
  }
  .services-groove-section .service-card {
    padding: 2rem 1.5rem;
  }
}
.services-groove-section {
  background-color: #fff;
}
.services-groove-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.services-groove-section .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.services-groove-section .service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.services-groove-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.services-groove-section .service-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D81F26, rgb(228.3927125506, 69.6072874494, 75.6153846154));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.services-groove-section .service-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.services-groove-section .service-card .card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .services-groove-section .section-title {
    font-size: 2.5rem;
  }
  .services-groove-section .service-card {
    padding: 2rem 1.5rem;
  }
}
.contact .main_para {
  font-size: var(--font-base);
  line-height: auto;
  font-style: italic;
}

.contact h4 {
  font-size: var(--font-xl);
  font-weight: 500;
  text-align: center;
  line-height: normal;
  color: #D81F26;
}

.contact form input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.3215686275);
  font-size: var(--font-base);
}

.contact form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.3215686275);
  font-size: var(--font-base);
}

.our_properties .team_content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.our_properties .properites_image {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.our_properties .properites_image img {
  width: 100%;
}
.our_properties .pro_card:hover .arrow_round_dark {
  opacity: 1;
}
.our_properties .arrow_round_dark {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--white);
  flex-shrink: 0;
  background-color: #D81F26;
  transition: 0.3s all ease-in-out;
  position: absolute;
  bottom: 15px;
  right: 15px;
  opacity: 0;
  border: none;
}
.our_properties .arrow_round_dark i {
  transform: rotate(-45deg);
}
.our_properties .social-icons .icon-circle {
  width: 35px;
  height: 35px;
  background: #D81F26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.our_properties .social-icons .icon-circle i {
  font-size: var(--font-base);
  line-height: normal;
}
.our_properties .social-icons .icon-circle:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.our_properties h4 {
  font-size: var(--font-medium);
  font-weight: 500;
  color: #000;
}
.our_properties h5 {
  font-size: var(--font-base);
  font-weight: 500;
  color: #D81F26;
}


.hero_home {
  position: relative;
}
.heroform {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  z-index: 33;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
	min-width: 300px;
}
.heroform h4 {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.heroform form {
  display: flex;
  gap: 10px;
}
.heroform form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #888;
  background: #fff;
}
.heroform form select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #888;
  background: #fff;
}
.heroform form button {
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid transparent;
  background: #d81f26;
}


.tourblock {
  background: #f9f9f9;
}
.formtourblock {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  text-align: center;
}
.formtourblock h4 {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.formtourblock p {
  font-size: 14px;
  font-weight: 400;
  color: #a4a4a4cc;
  margin-bottom: 10px;
  text-transform: capitalize;
  display: block;
}
 
.formtourblock form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #888888;
  background: #fff;
  width: 100%;
}
.formtourblock form select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #888888;
  background: #fff;
  width: 100%;
}
.formtourblock form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #888888;
  background: #fff;
  width: 100%;
}
.formtourblock form button {
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid transparent;
  background: #d81f26;
}
.statsblock {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
}
.gslide {
  text-align: center;
}
.gslide h3{
	color:#2258a3;
	text-transform:capitalize;
}
.formtourblock form p {
	margin-bottom: 0;
}
 @media (max-width: 767px) {
.heroform form {
	flex-direction: column;
}
}
 