/* Reset & Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 600;
  font-weight: 600;
  font-weight: 600;
  background-color: #fcfcfc;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

button {
  border: none;
}

a {
  text-decoration: none;
}

section {
  padding: 60px 0;
}

.common-title {
  text-align: center;
}

.common-title h2 {
  position: relative;
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 500;
}

.common-title h2 span {
  font-weight: 600;
}

.common-title p {
  font-style: italic;
}

.common-title h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-color: gainsboro;
  width: 30%;
  height: 2px;
}

.common-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: gainsboro;
  width: 30%;
  height: 2px;
}

@media screen and (max-width: 991px) {

  .common-title h2::after,
  .common-title h2::before {
    width: 23%;
  }
}

@media screen and (max-width: 768px) {

  .common-title h2::after,
  .common-title h2::before {
    display: none;
  }
}

.common-btn {
  border-radius: 4px;
  background-color: var(--primary-color);
  display: inline-block;
  padding: 7px 20px;
}

.common-btn p {
  color: white;
  margin-bottom: 0;
  text-transform: capitalize;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Forms */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

:root {
  --primary-color: #0e4f77;
}

/* navbar  */
.navbar {
  background-color: rgb(255 255 255) !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand img {
  width: 70px;
}

.navbar .nav-item a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 17px;
  text-transform: capitalize;
}

.navbar-nav {
  gap: 20px;
}

@media screen and (max-width: 991px) {
  .navbar .common-btn {
    display: none;
  }
}

/* banner  */
.banner {
  position: relative;
  background-image: url(../../images/backgrounds/71+YRLJAYfL._AC_UF350,350_QL80_.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  padding-top: 150px;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(17, 33, 52) 40%, rgba(255, 0, 0, 0));
  z-index: 1;
}

.banner>* {
  position: relative;
  z-index: 2;
}

.banner a {
  color: white;
}

.banner a:nth-last-child(1) {
  color: rgb(0, 0, 0);
  background-color: #fff;
}

.banner-logo img {
  width: 100px;
}

.banner h2 {
  color: white;
  font-size: 38px;
  text-transform: capitalize;
  margin-top: 10px;
}

.banner .services-para {
  color: white;
  border-bottom: 1px solid gainsboro;
  padding-bottom: 7px;
  display: inline-block;
}

.banner p {
  color: white;
}

.banner-contanct-tab {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-contanct-tab .icon img {
  width: 20px;
}

.banner-contanct-tab p {
  margin-bottom: 0;
}

.badge-circle {
  position: absolute;
  right: 50px;
  bottom: -20px;
  width: 198px;
  height: 198px;
  border-radius: 50%;
  background-color: #000000de;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.badge-circle::after {
  content: "";
  position: absolute;
  inset: 5px;
  /* controls gap */
  border-radius: 50%;
  border: 1px dashed #dfbe2d5b;
  z-index: -1;
}

.title-badge {
  border-bottom: 1px solid rgb(255, 255, 255);
}

.title-badge h3 {
  margin-bottom: 0;
  font-size: 23px;
  padding-bottom: 10px;
  color: #ffffff;
}

.badge-desc {
  padding-top: 10px;
}

.badge-desc p {
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .badge-circle {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .banner-logo img {
    width: 80px;
  }

  .banner h2 {
    font-size: 30px;
  }

  .banner a {
    margin-bottom: 10px;
  }

  .banner::after {
    background: linear-gradient(to right, rgb(17, 33, 52) 50%, rgba(255, 0, 0, 0));
  }
}

/* about section  */
.about-home .about-card {
  display: flex;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(128, 128, 128, 0.788);
  padding: 4px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  height: 280px;
  position: relative;
}

.about-home .about-card .image {
  width: 100%;
  height: auto;
  position: relative;
}

.about-home .about-card .image img {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.about-home .about-card .card-content {
  background-color: gainsboro;
  width: 100%;
  padding: 30px;
}

.about-home .about-card .card-content .heading {
  border-bottom: 1px solid rgb(179, 179, 179);
  margin-bottom: 20px;
}

.about-home .about-card .card-content .heading h4 {
  font-size: 24px;
  text-transform: capitalize;
  color: var(--primary-color);
  font-weight: 600;
}

.para p {
  position: relative;
  margin-bottom: 0;
  padding-left: 25px;
}

.para p::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 15%;
  left: 0;
  background-image: url("/assets/images/icons/check.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.about-home .about-card .image-right {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-home .about-card .image-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.658), transparent);
}

.about-home .about-card .image-right img {
  object-fit: cover;
  /* position: absolute; */
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .about-home .about-card {
    height: 100%;
  }
}

@media screen and (max-width: 425px) {
  .about-home .about-card {
    flex-direction: column;
  }

  .about-home .about-card .image img {
    position: relative;
  }
}

.modal-dialog {
  max-width: 800px;
  width: 800px;
}

@media screen and (max-width: 991px) {
  .modal-dialog {
    max-width: 100%;
    width: 95%;
    margin: 10% auto;
  }

  .tax-modal {
    padding: 5px !important;
  }
}

.modal-title {
  text-transform: capitalize;
  color: var(--primary-color);
}

.modal-body p {
  font-size: 14px;
}

/* service  */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(128, 128, 128, 0.788);
  padding: 14px;
  background-color: #ffffff00;
  width: 100%;
  height: 100%;
}

.service-card .heading {
  display: flex;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid gainsboro;
}

.service-card .heading .icon img {
  width: 60px;
  height: auto;
}

.service-card .para p {
  font-size: 14px;
}

.service-card .heading h4 {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.service-card .read-more {
  padding-top: 10px;
  border-top: 1px solid gainsboro;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card .read-more p {
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 15px;
}

.service-card .read-more .icon img {
  width: 12px;
  height: 12px;
}

.tax-modal {
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.modal-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.service-block {
  margin-bottom: 18px;
  padding: 12px 15px;
  border-left: 3px solid var(--primary-color);
  background: #f9f9f9;
  border-radius: 6px;
}

.service-block h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.service-block ul {
  padding-left: 18px;
  margin: 0;
}

.service-block li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.service-block li strong {
  color: #000;
}

/* service strip  */
.service-strip {
  background-image: url("/assets/images/backgrounds/abstract-textured-backgound.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.service-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(17, 33, 52);
  z-index: 1;
}

.service-strip>* {
  position: relative;
  z-index: 2;
}

.strip {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.strip h4 {
  margin-bottom: 0;
  color: white;
  font-size: 21px;
  text-transform: capitalize;
}

@media screen and (max-width: 375px) {
  .strip h4 {
    font-size: 16px;
  }
}

/* footer  */
.footer {
  background-color: rgb(236, 236, 236);
}

.footer-inner {
  /* background-image: url("/assets/images/backgrounds/abstract-textured-backgound.jpg"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  position: relative;
  border-radius: 8px;
}

.footer-inner>* {
  position: relative;
  z-index: 2;
}

.footer-title h2 {
  color: var(--primary-color);
  font-size: 30px;
  position: relative;
  text-transform: capitalize;
}

.footer-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: gainsboro;
  width: 70%;
  height: 2px;
}

@media screen and (max-width: 1124px) {
  .footer-title h2::after {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .footer-title h2::after {
    display: none;
  }
}

.contact-box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-box .icon img {
  width: 25px;
}

.contact-box h6 {
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 0;
}

.footer form {
  background-color: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 1px 1px 2px solid gainsboro;
}

.footer form input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid gainsboro;
  padding: 8px 0 4px;
  margin-bottom: 10px;
  outline: none;
}

.footer form input::placeholder {
  font-size: 14px;
  text-transform: capitalize;
}

.footer-form-btn {
  border: 1px solid gainsboro;
  padding: 8px;
}

.sticky-social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

@media screen and (max-width: 425px) {
  .sticky-social-icons img {
    width: 50px;
  }
}

/* footer style start  */
.footer-dark {
  background: rgb(17, 33, 52);
  color: #fff;
  padding: 30px 0 20px;
  border-top: 1px solid rgb(63, 63, 63);
}

.footer-title {
  font-size: 18px;
  margin-bottom: 40px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #e3c500;
  display: block;
  margin-top: 8px;
}

/* Links */
/* .footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #E3C500;
  padding-left: 5px;
}


.footer-contact p {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: orange;
} */

/* Form */
/* .footer-form input,
.footer-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  background: #0a1f3d;
  border: none;
  color: #fff;
  border-radius: 4px;
}

.footer-form button {
  width: 100%;
  padding: 10px;
  background: #f6771a;
  border: none;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #ff8800;
} */

/* Bottom */
/* .footer-bottom {
  border-top: 1px solid #0a2a4a;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
}

.footer-bottom-links a {
  margin-left: 15px;
  color: #aaa;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: orange;
}

.contact-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-info .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  min-height: 35px;
}

.contact-info .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
} */

/* footer section */
.footer-dark {
  /* background:#2C3947; */
  background: linear-gradient(171deg, rgba(13, 27, 54, 1) 39%, rgba(23, 23, 43, 1) 70%);
  color: #fff;
  padding: 30px 0 20px;
}

/* Main Container Layout */
.footer-dark .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left Side - Contact Form */

.footer-left {
  flex: 1;
  min-width: 250px;
}

/* Right Side - Links & Address */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right .row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* titles */
.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* contact form */
.footer-form {
  display: flex;
  justify-content: center;
  width: 80%;
  flex-direction: column;
  gap: 15px;
  box-shadow: none;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  color: #fff;
  padding: 10px 0;
  background: transparent;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.footer-form textarea {
  height: 50px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #ccc;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #0e4f77;
}

.footer-form button {
  padding: 12px 20px;

  border: 1px solid #d0c3c3;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #0e4f77;
  color: #fff;
}

/* link section */
.links {
  flex: 1;
  min-width: 220px;
}

.li-contact {
  margin-bottom: 0 !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #0e4f77;
  padding-left: 5px;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.contact-info:hover {
  color: #0e4f77;
}

.icons {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-info p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

.map iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: none;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  border-top: 1px solid #ffffff;
  margin-top: 20px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-dark .container {
    flex-direction: column;
  }

  .footer-form {
    width: 100%;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right .row {
    justify-content: space-between;
  }
}

/* mobile */
@media (max-width: 768px) {
  .footer-dark {
    padding: 40px 0 20px;
  }

  .footer-right .row {
    flex-direction: column;
    gap: 30px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-form button {
    width: 100%;
  }

  .contact-info {
    align-items: center;
  }

  .footer-bottom {
    margin-top: 0;
  }
}

#about {
  overflow-x: hidden;
}