* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;

  overflow-x: hidden;

  font-weight: 400;

  color: #0e2351;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #ef842d;
  --bs-btn-border-color: #ef842d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4fb0c6;
  --bs-btn-hover-border-color: #4fb0c6;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4fb0c6;
  --bs-btn-active-border-color: #4fb0c6;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ef842d;
  --bs-btn-disabled-border-color: #ef842d;
  border-radius: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.btn-info {
  background-color: #4fb0c6;
  border-color: #4fb0c6;
  color: #fff;
}
.btn-info:hover {
  color: #fff;
}
a {
  text-decoration: none;

  -moz-transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 22;
}

.navbar.nav-fixed {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

.navbar.nav-fixed > .container {
  -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
  box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
}
.navbar > .container {
  position: relative;
  background-color: #d0d0d0e2;
  padding: 10px 20px;
  border-radius: 0 0 15px 15px;
}
.navbar > .container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/header-bg.jpg);
  opacity: 1;
  z-index: -1;
  border-radius: 0 0 15px 15px;
}

.navbar .navbar-brand {
  color: #1a98b5;
  font-weight: 700;
}

.navbar .nav-item .nav-link,
.dropdown-item {
  font-size: 14px;
}

.navbar .nav-item .nav-email {
  color: #0e2351;
  margin-left: 10px;
}

.navbar .nav-item .nav-phone {
  background-color: #0e2351;
  color: #fff;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
}

.navbar .nav-item .nav-phone:hover {
  background-color: #ef842d;
  border-color: #ef842d;
}

.banner-section {
  position: relative;
  background-color: #0e2351;
  overflow: hidden;
}

.banner-inner {
  position: relative;
  width: 100%;
}

.banner-section .banner-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.banner-section .banner-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to bottom, transparent 80%, #0e2351);
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.banner-content {
  position: relative;
  padding: 190px 0 60px;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 3;
}

/* .banner-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
} */

.banner-content h1 {
  font-size: 70px;
  font-weight: bold;
}

.banner-content p {
  font-size: 20px;
  font-weight: 600;
}

.banner-content .banner-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.section-heading-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-heading-block h2 {
  color: #4fb0c6;
  text-transform: uppercase;
  font-size: 70px;
  font-weight: 700;
}

.about-section .section-heading-block p {
  color: #fff;
}

.about-section {
  padding: 30px 0 60px;
  background-color: #0e2351;
  color: #fff;
}

.about-section img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.service-section {
  padding: 60px 0;
}

.service-section .service-card {
  position: relative;
}

.service-section .service-card img {
  width: 100%;
  border-radius: 10px;
}

.service-section .service-card-body {
  position: relative;
  background-color: #0e2351;
  color: #fff;
  padding: 16px;
  text-align: center;
  max-width: calc(100% - 40px);
  margin: -80px auto 0;
  border-radius: 10px;
  z-index: 2;
}

.service-section .service-card-body h5 {
  font-size: 22px;
  font-weight: 600;
}

.service-section .service-card-body p {
  font-weight: 300;
}

.service-section .service-card-body p:last-child {
  margin-bottom: 0;
}

.why-choose-section {
  padding: 60px 0;
  background-color: #e0e7f8;
  background-image: linear-gradient(to bottom, #e0e7f8, #fff);
}

.why-choose-section h3 {
  font-size: 30px;
  font-weight: 600;
}

.why-choose-section .why-choose-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.why-choose-section .move-forward-block {
  text-align: center;
  position: relative;
  padding: 100px 0;
  margin-top: 50px;
}

.why-choose-section .move-forward-block h2 {
  font-size: 45px;
  font-weight: bold;
}

.why-choose-section .move-forward-block p {
  font-size: 20px;
}

.why-choose-section .move-forward-block img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  position: absolute;
}

.why-choose-section .move-forward-block-content {
  position: relative;
  z-index: 2;
}

.whyChooseSwiper-nav {
  display: flex;
  gap: 50px;
}
.whyChooseSwiper-nav .swiper-cstm-button-next,
.whyChooseSwiper-nav .swiper-cstm-button-prev {
  position: static;
}
.whyChooseSwiper-nav .swiper-cstm-button-next i,
.whyChooseSwiper-nav .swiper-cstm-button-prev i {
  font-size: 30px;
}

.recognition-section {
  padding: 60px 0;
  background-image: linear-gradient(to bottom, #e0e7f8 75%, #fff);
}

.recognition-section img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}

.recognition-section h3 {
  font-size: 30px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

/* Footer Styles */
footer {
  background-color: #0e2351;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-logo img {
  width: 200px;
  max-width: 100%;
}

footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links li {
  width: calc(50% - 5px);
}

.footer-links a {
  color: #d8d9e8;
  font-size: 15px;
}

.footer-links a:hover {
  opacity: 1;
  color: #4fb0c6;
}

.location-text {
  font-size: 14px;
  color: #d8d9e8;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer-contact {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a:hover {
  opacity: 1;
  color: #4fb0c6;
}
.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
}

.social-links a:hover {
  opacity: 1;
  color: #4fb0c6;
}

.contact-section {
  background-color: #0b162f;
}

.contact-content {
  color: #fff;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  padding: 130px 0 80px;
}

.contact-content h1 {
  color: #4fb0c6;
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contact-content p a {
  color: #fff;
}

.contact-content p a:hover {
  color: #ef842d;
}

.map-block {
  height: 100%;
  position: relative;
}
.map-block iframe {
  height: 100%;
  position: absolute;
  width: 50vw;
}

.inner-banner {
  position: relative;
  background-image: url("../images/inner-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 60px;
  text-align: center;
}

.inner-banner h1 {
  font-size: 70px;
  color: #4fb0c6;
  font-weight: bold;
  text-transform: uppercase;
}

.inner-service-section {
  padding: 60px 0;
}

.inner-service-section .inner-service-head {
  text-align: center;
  margin-bottom: 40px;
}

.inner-service-section .inner-service-body img {
  width: 100%;
  height: 380px;
  border-radius: 15px;
  object-fit: cover;
}

.inner-service-section .inner-service-head h2,
.inner-service-section .inner-service-body h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

#instantQuoteModal .modal-content {
  background-color: #0e2351;
  padding: 20px;
}

#instantQuoteModal .modal-header {
  border-bottom: 0;
}

#instantQuoteModal .modal-header .modal-title {
  color: #fff;
}

#instantQuoteModal .modal-body .form-label {
  color: #fff;
}

#instantQuoteModal .modal-body .form-control {
  color: #0e2351;
  padding: 15px 20px;
}

#instantQuoteModal .modal-body .btn-info {
  width: 100%;
  padding: 15px 20px;
}

#instantQuoteModal .modal-body .btn-info i {
  margin-left: 16px;
}

.single-blog-section {
  background-color: #0e2351;
}

.single-blog-content {
  color: #fff;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  padding: 130px 0 80px;
}

.single-blog-content h1 {
  color: #4fb0c6;
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.single-blog-img-block {
  height: 100%;
  position: relative;
}
.single-blog-img-block img {
  height: 100%;
  position: absolute;
  width: 50vw;
}

@media screen and (max-width: 1399px) {
  .navbar .navbar-brand {
    font-size: 16px;
  }
  .navbar .navbar-brand img {
    width: 80px;
  }
  .navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar .nav-item .nav-link,
  .dropdown-item {
    font-size: 13px;
  }
  .inner-banner h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar .navbar-brand {
    font-size: 14px;
  }
  .navbar .nav-item .nav-link,
  .dropdown-item {
    font-size: 12px;
  }
  .navbar .nav-item .nav-phone,
  .navbar .nav-item .nav-email {
    margin-left: 0px;
  }
  .service-section .service-card-body {
    padding: 12px;
  }
  .service-section .service-card-body h5 {
    font-size: 18px;
  }
  .footer-links li {
    width: 100%;
  }
  .contact-content h1 {
    font-size: 62px;
  }
  .inner-service-section .inner-service-body img {
    height: 280px;
  }
  .inner-banner h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .nav-item .nav-link,
  .dropdown-item {
    font-size: 16px;
  }
  .banner-content {
    padding: 150px 0 60px;
    min-height: unset;
  }
  .banner-content .swiper-slide {
    padding: 0 40px;
  }
  .banner-content h1,
  .section-heading-block h2,
  .contact-content h1 {
    font-size: 42px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .why-choose-section .move-forward-block {
    padding: 40px 0;
    margin-top: 40px;
  }
  .why-choose-section .move-forward-block h2 {
    font-size: 36px;
  }
  .why-choose-section .move-forward-block p {
    font-size: 16px;
  }
  .whyChooseSwiper-nav {
    margin-top: 30px;
    justify-content: center;
  }
  .footer-bottom .row > div {
    text-align: center;
  }
  /* .footer-contact {
    justify-content: center;
    flex-wrap: wrap;
  } */
  .contact-content {
    min-height: unset;
    padding-top: 160px;
  }
  .map-block {
    height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
  }
  .map-block iframe {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .inner-banner h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .banner-content h1,
  .section-heading-block h2,
  .contact-content h1 {
    font-size: 32px;
  }
  .footer-bottom {
    margin-top: 20px;
  }
  .footer-contact {
    gap: 16px;
    margin-bottom: 16px;
    justify-content: center;
  }
  /* .footer-contact {
    flex-wrap: wrap;
  } */
  .footer-copyright {
    flex-direction: column;
    text-align: center;
  }
  .inner-banner h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .section-heading-block {
    margin: 0 auto 32px;
  }
  .recognition-section img {
    height: 125px;
  }
  .why-choose-section h3 {
    font-size: 24px;
    text-align: center;
  }
  .why-choose-section p {
    text-align: center;
  }
  .why-choose-section .move-forward-block {
    margin-top: 0;
    padding: 16px 0;
  }
  .why-choose-section .move-forward-block h2 {
    font-size: 32px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 20px;
  }
  .banner-content .swiper-slide {
    padding: 0 20px;
  }
  .banner-content {
    padding: 150px 0 35px;
  }
  .service-section,
  .why-choose-section,
  .recognition-section {
    padding: 45px 0;
  }
  .inner-service-section .inner-service-body img {
    height: 200px;
  }
  .inner-service-section .inner-service-head h2,
  .inner-service-section .inner-service-body h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 390px) {
  .navbar .navbar-brand {
    font-size: 12px;
    gap: 0;
    margin-right: 2px;
  }
  .navbar .navbar-brand img {
    width: 60px;
  }
  .banner-content .banner-btns .btn {
    font-size: 13px;
  }
  .banner-content h1,
  .section-heading-block h2 {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: 50%;
  }
  .swiper-button-next {
    right: 50%;
  }
  .swiper-button-prev {
    transform: translateX(-350px);
  }
  .swiper-button-next {
    transform: translateX(350px);
  }
}

@media screen and (min-width: 992px) {
  .inner-service-body .row:not(:last-child) {
    margin-bottom: 2rem;
  }
  .inner-service-body .row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .swiper-button-prev {
    transform: translateX(-460px);
  }
  .swiper-button-next {
    transform: translateX(460px);
  }
  .whyChooseSwiper-nav {
    position: absolute;
    bottom: 0;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-prev {
    transform: translateX(-560px);
  }
  .swiper-button-next {
    transform: translateX(560px);
  }
}
@media screen and (min-width: 1400px) {
  .swiper-button-prev {
    transform: translateX(-650px);
  }
  .swiper-button-next {
    transform: translateX(650px);
  }
}

/*** Blog page css ***/

.blog-banner {
  background-image: url(../images/blog-banner.jpg);
}
.blogpost img {
  width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.blogpost h3 {
  color: #0e2351;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  margin: 15px 0;
}
.blogpost p {
  color: #0e2351;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}
.blog-readbtn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-color: #ef842d;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  min-width: 170px;
}
.blog-readbtn:hover {
  background-color: #0e2351;
}

.about-inner-section {
  padding-top: 190px;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  text-align: center;
  background: #f8f9fa;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: #1a4f7c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thank-you-icon i {
  font-size: 40px;
  color: #fff;
}

.thank-you-heading {
  color: #1a4f7c;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.thank-you-text {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.next-steps {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.next-steps h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.next-steps li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a4f7c;
}

.thank-you-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thank-you-links .btn {
  min-width: 150px;
}

.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  text-align: center;
  background: #f8f9fa;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.error-heading {
  font-size: 120px;
  color: #1a4f7c;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.error-subheading {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.error-text {
  color: #666;
  margin-bottom: 30px;
}

.error-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.error-links .btn {
  min-width: 150px;
}

.privacy-policy-section {
  padding: 140px 0 80px;
  background: #f8f9fa;
}

.privacy-policy-section .privacy-policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-policy-section .privacy-policy-content h1 {
  color: #1a4f7c;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
}

.privacy-policy-section .privacy-policy-content h2 {
  color: #333;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-policy-section .privacy-policy-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.privacy-policy-section .privacy-policy-content ul {
  color: #666;
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-policy-section .privacy-policy-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy-policy-section .contact-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.privacy-policy-section .contact-info p {
  margin-bottom: 10px;
}

.privacy-policy-section .contact-info p a {
  color: inherit;
}
.footer-bottom {
  position: relative;
}
.footer-bottom > * {
  position: relative;
  z-index: 2;
}
.footer-bottom::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: calc(100% + 30px);
  background: url(../images/copyright-bg.jpg);
  background-repeat: repeat;
  background-size: 280px;
  top: 0;
  left: 50%;
  opacity: 0.5;
  transform: translateX(-50%);
}
.footer-bottom::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: calc(100% + 30px);
  background: url(../images/copyright-earth.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: center;
  top: 0;
  left: 50%;
  opacity: 0.75;
  transform: translateX(-50%);
}
.navbar-toggler-icon {
  width: 1em;
  height: 1em;
}
.navbar-toggler {
  padding: 0;
  border: 0;
}
.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 20px;
  padding-bottom: 60px;
  color: #fff;
}
.contact-text > h5 {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-text::after,
.contact-text::before {
  position: absolute;
  content: "";
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-text::after {
  background-image: linear-gradient(to right, #122041 20%, #0e2351ad);
  z-index: 1;
}
.contact-text::before {
  background-image: url(../images/about-1.jpg);
  background-size: cover;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .contact-text::after,
  .contact-text::before {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-text {
    padding-bottom: 30px;
    aspect-ratio: auto;
  }
}

@media screen and (max-width: 575px) {
  .contact-text > h5 {
    font-size: 20px;
  }
}
