
/* Fonts */
: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: #0f0000; 
  --heading-color: #0d3035;
  --accent-color: #1e4098; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: rgba(
    255,
    255,
    255,
    0.8
  ); 
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #0f0000; 
  --nav-dropdown-hover-color: #1e4098;
}


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

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

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

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  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 var(--accent-color);
  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 Header
--------------------------------------------------------------*/
.header {
  --background-color: #0f0000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 55px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  padding-bottom: 5px;
}

.header .logo h1 span {
  color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  font-style: italic;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 30px 0 11px;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -15px;
    left: 0;
    background-color: var(--nav-dropdown-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px auto 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
@media (max-width: 1199px) {
  /* Toggle icon */
  .mobile-nav-toggle {
    position: relative;
    z-index: 10000;
    font-size: 28px;
    cursor: pointer;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.85);
    z-index: 9998;
  }
  .navmenu ul {
    display: none;
    position: fixed;
    top: 65px;
    left: 0px;
    right: auto;
    width: calc(100% - 24px);

    padding: 10px 0;
    margin: 0;
    background: var(--nav-mobile-background-color);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  .navmenu a,
  .navmenu a:focus {
    padding: 12px 20px;
    font-size: 16px;
    text-align: left;
  }
  .header .btn-getstarted {
    width: auto !important;
    min-width: 140px;
    padding: 8px 18px;
    margin: 0 12px;
    text-align: center;
    white-space: nowrap;
  }
  html,
  body {
    overflow-x: hidden;
  }
}
/* ================= CTA WIDTH FIX (GLOBAL) ================= */

/* Always keep CTA auto width */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  width: auto !important;
  max-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Mobile & Tablet safety */
@media (max-width: 1199px) {
  .header .btn-getstarted {
    width: auto !important;
    min-width: 140px;
    padding: 8px 18px;
    margin-left: 12px;
  }
}

/* Very small screens */
@media (max-width: 576px) {
  .header .btn-getstarted {
    min-width: 130px;
    padding: 8px 16px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #000000;
  color: #d0d0d0;
  font-size: 16px;
  padding-top: 60px;
}

.footer h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer p {
  margin: 0 0 12px;
  line-height: 24px;
  font-size: 15px;
  margin-top: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  transition: 0.35s ease;
}

.social-link:hover {
  background: #1e4098;
  transform: translateY(-4px);
  color: #ffffff;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #1e4098;
  padding-left: 5px;
}

.footer-links .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-links .contact-item i {
  color: #1e4098;
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-links .contact-item span,
.footer-links .contact-item a {
  display: block;
  color: #cfcfcf;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links .contact-item a:hover {
  color: #1e4098;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  margin-top: 32px;
  font-size: 14px;
  color: #bcbcbc;
}

@media (max-width: 768px) {
  .footer {
    text-align: left !important;
  }

  .social-links {
    justify-content: flex-start !important;
  }

  .footer-links ul {
    padding-left: 0;
  }

  .footer-links .contact-item {
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: var(--accent-color);
  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, var(--accent-color), 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);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  color: #0f0000;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 120px 0;
  background-image: url("../../images/about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;

  min-height: 90vh; /* desktop */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.hero .hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 55px;
  color: #ffffff;
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #eaeaea;
  font-weight: 500;
  line-height: 24px;
}
.btn-primary {
  background-color: #1e4098;
  font-size: 16px;
  font-weight: 600;
}
.btn-outline {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background-color: #1e4098;
  border: 1px solid #007bff;
}
.btn-outline:hover {
  color: #ffffff;
  background-color: #007bff;
  border: 1px solid #007bff;
}

.hero .hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 992px) {
  .hero {
    padding: 90px 0 110px;
  }

  .hero .hero-content h1 {
    font-size: 38px;
  }
  .btn-primary {
    margin-left: 50px;
    margin-right: 50px;
  }
  .hero .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 0 90px;
  }

  .hero .hero-content h1 {
    font-size: 32px;
  }

  .hero .hero-content p {
    font-size: 15px;
  }

  .hero .hero-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero .hero-content h1 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media (max-width: 576px) {
  .hero .hero-btns .btn {
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero .hero-btns .btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 18px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 75vh;
    padding: 50px 0 60px;
  }
}

/*--------------------------------------------------------------
# How it works Section
--------------------------------------------------------------*/
.how-img-wrapper {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.how-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.lead {
  font-size: 16px;
  font-weight: 400;
}
.icon-circle {
  width: 90px;
  height: 90px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.35s ease;
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.2);
}

.icon-circle i {
  font-size: 38px;
  color: #0d6efd;
}

.work-step-card:hover .icon-circle {
  transform: scale(1.15);
  background: rgba(13, 110, 253, 0.18);
  box-shadow: 0 0 35px rgba(13, 110, 253, 0.35);
}

.work-step-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.work-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.work-step-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

#howitworks .col-lg-3:nth-child(1) .work-step-card {
  animation-delay: 0.1s;
}
#howitworks .col-lg-3:nth-child(2) .work-step-card {
  animation-delay: 0.2s;
}
#howitworks .col-lg-3:nth-child(3) .work-step-card {
  animation-delay: 0.3s;
}
#howitworks .col-lg-3:nth-child(4) .work-step-card {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .how-img-wrapper {
    max-width: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .icon-circle {
    width: 75px;
    height: 75px;
  }
  .icon-circle i {
    font-size: 30px;
  }
  .how-img-wrapper {
    max-width: 250px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 10px;
  padding-bottom: 10px;
}

.clients .clients-slider {
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 1.6rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 16px;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
}

.about .contact-label {
  font-size: 0.875rem;
  margin: 0;
  color: #777;
}

.about .contact-number {
  margin: 0;
  font-weight: 600;
}

.about .main-image {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  display: block;
}

@media (max-width: 992px) {
  .about .main-image {
    max-height: 350px;
  }
}

@media (max-width: 576px) {
  .about .main-image {
    max-height: 250px;
    width: 100%;
    margin-top: -25px;
  }
}
@media (max-width: 576px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
  .about .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .about [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .about .feature-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
  }
  .about .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 6px;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .about .feature-list li i {
    flex-shrink: 0;
    min-width: 20px;
    margin-top: 2px;
  }

  .about img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-hero {
  margin-bottom: 2.5rem;
}

.stats .stats-hero .headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.stats .stats-hero .lead {
  color: #0d3035;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
}

.stats .stats-hero .stats-rating {
  background: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 4px 32px
    color-mix(in srgb, var(--accent-color), transparent 90%);
  min-width: 270px;
  gap: 8px;
}

.stats .stats-hero .stats-rating .stats-rating-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stats-hero .stats-rating .rating-score .fs-5 {
  color: var(--accent-color);
}

.stats .stats-hero .stats-rating .rating-score .stars {
  color: color-mix(in srgb, var(--accent-color), #ffd700 70%);
  font-size: 1.15rem;
}

.stats .stats-hero .stats-rating .user-feedback {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  font-family: var(--default-font);
}

.stats .stats-counters {
  margin-top: 0.5rem;
}

.stats .stats-counters .stats-counter-card {
  background: var(--surface-color);
  border-radius: 5px;
  box-shadow: 0 2px 12px
    color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 1.75rem 1rem 1.25rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.stats .stats-counters .stats-counter-card:hover {
  box-shadow: 0 4px 32px
    color-mix(in srgb, var(--accent-color), transparent 82%);
}

.stats .stats-counters .stats-counter-card .counter-value {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
}

.stats .stats-counters .stats-counter-card .counter-value .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stats-counters .stats-counter-card .label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-family: var(--default-font);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .stats .stats-hero .headline {
    font-size: 1.7rem;
  }

  .stats .stats-counters .stats-counter-card {
    font-size: 0.97rem;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media (max-width: 767px) {
  .stats .stats-hero {
    flex-direction: column;
  }

  .stats .stats-hero .headline {
    font-size: 1.3rem;
    text-align: center;
  }

  .stats .stats-hero .lead {
    font-size: 1rem;
    text-align: center;
  }

  .stats .stats-hero .stats-rating {
    margin-inline: auto;
  }

  .stats .stats-counters .stats-counter-card {
    padding: 1rem;
    font-size: 0.93rem;
  }
}

.stats .bi-star-fill,
.stats .bi-star-half {
  color: #ffae00;
  font-size: 1.18em;
  vertical-align: -0.13em;
  margin-right: 2px;
}

.stats .bi-star-fill:last-child,
.stats .bi-star-half:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding: 60px 30px 80px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.services .service-item .service-icon {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 34px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.services .service-item .service-icon i {
  line-height: 1;
}

.services .service-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-item h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-item h3 a span {
  display: inline-block;
  color: var(--accent-color);
}

.services .service-item h3 a:hover {
  color: var(--accent-color);
}

.services .service-item p {
  color: var(--default-color);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.services .service-item .card-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services .service-item .card-action i {
  transition: transform 0.3s ease;
}

.services .service-item .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-item:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 50px 25px 70px;
  }

  .services .service-item h3 {
    font-size: 22px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}

.services .swiper-wrapper {
  height: auto !important;
}
#industries .row {
  align-items: stretch;
}

.services .service-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-item p {
  margin-bottom: auto;
}

@media (max-width: 1024px) {
  .services .service-item {
    min-height: 420px;
  }
}
#industries .section-title {
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
}

#industries .section-title h2 {
  margin-bottom: 8px !important;
}

#industries .section-title p {
  margin-bottom: 40px !important;
}

/*--------------------------------------------------------------
# Alt Services Section /why choose us section
--------------------------------------------------------------*/

#whychooseus {
  padding: 30px 0 !important;
  overflow: hidden;
}

.whychooseus-swiper {
  padding-bottom: 35px !important;
}

.whychooseus-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.alt-services .service-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 !important;
}

.alt-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.alt-services .service-card.featured {
  border-color: #1e4098;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.2);
}

.alt-services .card-header {
  text-align: center;
  padding: 20px 16px 8px;
}

.alt-services .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(13, 110, 253, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #1e4098;
}

.alt-services .service-card.featured .icon-box {
  background: #1e4098;
  color: #fff;
}

.alt-services .card-body {
  padding: 0 16px 16px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.alt-services .card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  margin-top: auto;
}

.alt-services .feature-image {
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.alt-services .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.alt-services .service-card:hover img {
  transform: scale(1.08);
}

.alt-services .card-footer {
  padding: 10px 16px 16px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.alt-services .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  width: auto;
  max-width: fit-content;
  margin: 0 auto;
  border: 2px solid rgba(13, 110, 253, 0.3);
  color: #1e4098;
  transition: 0.3s;
}

.alt-services .btn-explore:hover {
  background: #1e4098;
  color: #fff;
}

.whychooseus-swiper .swiper-pagination-bullet {
  background: rgba(13, 110, 253, 0.4);
  opacity: 1;
}

.whychooseus-swiper .swiper-pagination-bullet-active {
  background: #1e4098;
}

@media (max-width: 768px) {
  .alt-services .feature-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .alt-services .feature-image {
    height: 160px;
  }
}
#whychooseus .section-title {
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}

#whychooseus .section-title h2 {
  margin-bottom: 20px !important;
}
@media (max-width: 1024px) {
  .alt-services .feature-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  #whychooseus {
    padding: 25px 0 !important;
  }

  .alt-services .feature-image {
    height: 170px;
  }
}

@media (max-width: 576px) {
  #whychooseus {
    padding: 20px 0 !important;
  }

  .alt-services .feature-image {
    height: 155px;
  }
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features .features-intro {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .features .features-intro {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.features .features-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .features .features-intro h2 {
    font-size: 30px;
  }
}

.features .features-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #0f0000;
  margin-bottom: 25px;
}

.features .features-intro .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .features .features-intro .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features .features-intro .highlights-grid {
    grid-template-columns: 1fr;
  }
}

.features .featured-image-container img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .features .featured-image-container img {
    max-height: 320px;
  }
}

@media (max-width: 576px) {
  .features .featured-image-container img {
    max-height: 250px;
  }
}

.features .features-grid {
  margin: 50px 0;
}

.features .features-grid .feature-box {
  background-color: var(--surface-color);
  padding: 32px 24px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.features .features-grid .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .features-grid .feature-box .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #ff6b35 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features .features-grid .feature-box .feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.18;
  transform: scale(1.28);
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #ff6b35 20%)
  );
}
.features .features-intro .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .features .features-intro .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .features .features-intro .highlights-grid {
    grid-template-columns: 1fr;
  }
}

.features .highlights-grid .highlight-item {
  background: var(--surface-color);
  padding: 18px 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.features .highlights-grid .highlight-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.features .highlight-number {
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  display: block;
}

.features .highlight-text {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.features .features-grid .feature-box .feature-icon-wrapper i {
  font-size: 32px;
  color: var(--contrast-color);
}

.features .features-grid .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features .features-grid .feature-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #0f0000;
}

.features .progress-indicator {
  width: 100%;
  height: 6px;
  background-color: #e5e5e5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.features .progress-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #28a745 30%)
  );
  transition: width 1s ease;
}

.features .progress-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .features .features-grid {
    margin: 60px 0;
  }
}

@media (max-width: 767px) {
  .features .features-intro h2 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .features .features-grid {
    margin: 40px 0;
  }
}
@media (max-width: 576px) {
  .features {
    padding: 50px 0;
  }

  .features .features-intro {
    margin-bottom: 30px;
  }

  .features .features-grid {
    margin: 30px 0;
  }
}
/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonials {
  background: #f8f9ff;
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-swiper {
  padding: 20px 10px 50px;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  width: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

  position: relative;
  overflow: visible;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(111, 143, 255, 0.35);
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(111, 143, 255, 0.25),
    rgba(82, 110, 223, 0.25)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 4px solid #6f8fff;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.08);
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f2a6a;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-top: 12px;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 6px;
}

.swiper-pagination-bullet {
  background: #6f8fff;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 28px 22px;
  }
}

@media (max-width: 576px) {
  .testimonials-swiper {
    padding: 10px 6px 40px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card p {
    font-size: 14.5px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq .faq-container .faq-item.faq-active {
  background: rgba(0, 123, 255, 0.06);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0px 10px 25px rgba(0, 123, 255, 0.15);
  transition: 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-radius: 10px;
}

.faq .faq-container .faq-item.faq-active h3 {
  color: var(--accent-color);
  font-weight: 700;
}

.faq .faq-container .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq .faq-container .faq-item:hover {
  background: rgba(0, 123, 255, 0.04);
  transition: 0.3s ease;
}
#faq .section-title h2 {
  margin-bottom: 6px !important;
}

#faq .section-title p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#faq .section-title {
  margin-bottom: 14px !important;
  padding-bottom: 0 !important;
}
#faq .row.mt-4 {
  margin-top: 10px !important;
}

/*  CONTACT SECTION */
.contact-modern {
  padding: 80px 0;
}

/* FORM WRAPPER */
.modern-form-wrapper {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 8px !important;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
  background: #fff;
  padding: 0 6px;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #4e89ff;
}

.textarea-group textarea {
  resize: none;
}
.btn-modern-submit {
  background-color: #1e4098;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}
.btn-modern-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 137, 255, 0.4);
}

.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 991px) {
  .contact-modern {
    padding: 60px 0;
  }

  .map-wrapper iframe {
    min-height: 350px;
  }
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/* Chatbot Box */
.fixed-buttons {
    position: fixed;
    right: 15px;
    bottom: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 150px;
    z-index: 9999;
}


.dual-icon {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.chatbot {
    background: var(--primary);
}

.chatbot img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 350px;
  height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

/* Header */
.chatbot-header {
  background: #1e4098;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Body */
.chatbot-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f5f7ff;
}

.bot-msg,
.user-msg {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.bot-msg {
  background: #e0e7ff;
  color: #000;
}

.user-msg {
  background: #1e4098;
  color: #fff;
  margin-left: auto;
}

/* Footer */
.chatbot-footer {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-footer input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chatbot-footer button {
  background: #1e4098;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
