:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #444d4d;
  --heading-color: #003a36; 
  --accent-color: #018880;
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;

}


:root {
  --nav-color: rgba(255, 255, 255, 0.7);  
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444d4d;
  --nav-dropdown-hover-color: #018880; 
}


.light-background {
  --background-color: #f1f8f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #005751;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #018880;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #181a4e;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #181a4e, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #181a4e;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #181a4e;
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
  .footer {
    color: var(--default-color);
    background-color: #e7e8ed;
    font-size: 14px;
    padding: 40px 0 0 0;
    position: relative;
  }

  .footer .icon {
    color: #181a4e;
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
  }

  .footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .footer .address p {
    margin-bottom: 0px;
  }

  .footer .social-links a {
    display: flex;    
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid
    color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: 
    color-mix(in srgb, var(--default-color), transparent 50%);
    /* margin-right: 4px; */
    transition: 0.3s;
    margin-left: 10px;
  }

  .footer .social-links a:hover {
    color: #181a4e;
    border-color: #181a4e;
  }

  .footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .footer .copyright p {
    margin-bottom: 0;
  }

  .footer .credits {
    margin-top: 5px;
    font-size: 13px;
  }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #181a4e;
  border-top-color: color-mix(in srgb, #181a4e, transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #181a4e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #181a4e, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 120px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 73px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #181a4e, transparent 90%);
  color: #181a4e;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: #181a4ead;
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: #181a4e;
}
/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-content {
  padding-right: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .work-process .steps-content {
    padding-right: 0;
  }
}

.work-process .steps-content h2 {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 768px) {
    .work-process .steps-content h2 {
        font-size: 27px;
    }
}

.work-process .steps-content .lead {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.work-process .steps-content p {
  color: var(--default-color);
}

.work-process .steps-content .steps-cta {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .work-process .steps-content .steps-cta {
    flex-direction: column;
  }
}

.work-process .steps-content .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.work-process .steps-content .steps-cta .btn-primary {
  background-color: #181a4e;
  border-color: #181a4e;
  color: var(--contrast-color);
}

.work-process .steps-content .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, #181a4e, #000 10%);
  border-color: color-mix(in srgb, #181a4e, #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-process .steps-content .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid #181a4e;
  color: #181a4e;
}

.work-process .steps-content .steps-cta .btn-outline:hover {
  background-color: #181a4e;
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-process .steps-list {
  position: relative;
}

.work-process .steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: color-mix(in srgb, #181a4e, transparent 70%);
}

@media (max-width: 576px) {
  .work-process .steps-list::before {
    left: 20px;
  }
}

.work-process .steps-list .step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.work-process .steps-list .step-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-list .step-item:hover .step-number {
  background-color: #181a4e;
  color: var(--contrast-color);
  transform: scale(1.1);
}

.work-process .steps-list .step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, #181a4e 10%, white 90%);
  color: #181a4e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.work-process .steps-list .step-item .step-content {
  padding-top: 5px;
}

.work-process .steps-list .step-item .step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-content h3 {
    font-size: 1.1rem;
  }
}

.work-process .steps-list .step-item .step-content p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Consultation Section
--------------------------------------------------------------*/
.consultation {
  padding-top: 60px;
  padding-bottom: 60px;
}

.consultation .cta-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px 60px 30px 60px ;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.consultation .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #181a4e, color-mix(in srgb, #181a4e, #fff 30%));
}

@media (max-width: 992px) {
  .consultation .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .consultation .cta-wrapper {
    padding: 30px 20px;
  }
}

.consultation .cta-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .consultation .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.consultation .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .consultation .cta-content h2 {
    font-size: 25px;
  }
}

.consultation .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.consultation .cta-content .cta-stats {
    display: flex;
    gap: 7px;
}

.consultation .cta-content .cta-stats .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #181a4e;
  display: block;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .consultation .cta-content .cta-stats .stat-item .number {
    font-size: 26px;
  }
  .consultation .cta-content .cta-stats .stat-item .text {
    font-size: 13px;
  }
}

.consultation .cta-content .cta-stats .stat-item .text {
  font-size: 0.9rem;
  color: var(--default-color);
}

.consultation .cta-form {
  background-color: color-mix(in srgb, var(--surface-color), #000 3%);
  border-radius: 10px;
  padding: 30px 30px 0px 30px;
}

.consultation .cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .consultation .cta-form h3 {
    font-size: 1.5rem;
  }
}



.consultation .cta-form .form-control {
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.consultation .cta-form .form-control:focus {
  border-color: #181a4e;
  box-shadow: none;
}

.consultation .cta-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.consultation .cta-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.consultation .cta-form button[type=submit] {
  background-color: #181a4e;
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.consultation .cta-form button[type=submit]:hover {
  background-color: color-mix(in srgb, #181a4e, #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  padding: 80px 0;
  background-color: var(--background-color);
}

.why-choose-us .features-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .why-choose-us .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.why-choose-us .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .why-choose-us .features-content h2 {
    font-size: 2rem;
  }
}

.why-choose-us .features-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.why-choose-us .features-content p {
  color: var(--default-color);
}

.why-choose-us .features-content .features-list .feature-item {
  display: flex;
  margin-bottom: 2rem;
}

.why-choose-us .features-content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: color-mix(in srgb, #181a4e, transparent 90%);
  color: #181a4e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon:hover {
  background-color: #181a4e;
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.why-choose-us .features-content .features-list .feature-item .feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-choose-us .features-content .features-list .feature-item .feature-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--default-color);
}

.why-choose-us .features-image {
  position: relative;
}

.why-choose-us .features-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.why-choose-us .features-image .stats-card {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  z-index: 2;
  width: 220px;
}/*
.features-image > img{
  width: 100%;
  height: 550px;
}*/
@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card {
    width: 180px;
    padding: 15px;
    top: -20px;
    left: -10px;
  }
}

.why-choose-us .features-image .stats-card .stat-item {
  text-align: center;
}

.why-choose-us .features-image .stats-card .stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #181a4e;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item h3 {
    font-size: 1.2rem;
  }
}

.why-choose-us .features-image .stats-card .stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item p {
    font-size: 0.7rem;
  }
}

.why-choose-us .features-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #181a4e;
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge {
    padding: 15px;
    right: 0;
  }
}

.why-choose-us .features-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose-us .features-image .experience-badge .badge-content .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge .badge-content .number {
    font-size: 2rem;
  }
}

.why-choose-us .features-image .experience-badge .badge-content .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# why work with me Section
--------------------------------------------------------------*/
    .feature-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      padding: 25px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      backdrop-filter: blur(10px);
      height: 100%;
      display: flex;
      align-items: center;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      background: #181a4e;
    }

    .feature-card:hover h5{
      color: #ffffff;
    }

    .feature-card h5 {
      font-weight: 600;
      font-size: 1.1rem;
      margin-top: 10px;
    }
    .work-img > img {
      width: 70px;
      height: 70px;
      margin-right: 20px;
      border-radius: 50px;
      box-shadow: 0px 0px 20px 0px #b8bae6;
      padding: 5px;
  }

    @media (max-width: 992px) {
     
      section {
        padding: 60px 0;
      }
    }

    @media (max-width: 768px) {
      .feature-card {
        padding:20px;
      }
      .feature-card h5 {
        font-size: 1rem;
      }
    }
    .feature-section {
      padding: 60px 0;
    }

    .feature-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
/*--------------------------------------------------------------
# /* Zigzag Feature Boxes */
--------------------------------------------------------------*/
    .zigzag-box h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .zigzag-box p {
      font-size: 14px;
      margin: 0;
      color: #555;
    }

    .zigzag-box:nth-child(1) {
      background: #fff;
      border-radius: 15px;
      padding: 13px 20px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-left: 6px solid #181a4e;
      margin-left: 0;
       padding: 13px 20px;
    }

    .zigzag-box:nth-child(2) {
      background: #fff;
      border-radius: 15px;
      padding: 13px 20px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-left: 6px solid #181a4e;
      margin-left: 40px;
    }

    .zigzag-box:nth-child(3) {
      background: #fff;
      border-radius: 15px;
      padding: 13px 20px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-left: 6px solid #181a4e;
      margin-left: -0px;
    }
    .zigzag-box:nth-child(4) {
      background: #fff;
      border-radius: 15px;
      padding: 13px 20px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-left: 6px solid #181a4e;
      margin-left: 40px;
    }
    .zigzag-box:nth-child(5) {
      background: #fff;
      border-radius: 15px;
      padding: 13px 20px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-left: 6px solid #181a4e;
      margin-left: -0px;
    }
    .zigzag-box:nth-child(6) {
      background: #fff;
      border-radius: 15px;
      padding: 13px 20px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-left: 6px solid #181a4e;
      margin-left: 40px;
    }

    @media (max-width: 991px) {
      .zigzag-box {
        margin-left: 0 !important;
      }
      .feature-section {
        text-align: center;
      }
      .feature-image {
        margin-bottom: 40px;
      }
    }
