
: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: #666666;
  --heading-color: #333333;
  --accent-color: #043fe1; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #043fe1;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #043fe1; 
}

.light-background {
  --background-color: #f7f7f7;
  --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;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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: transparent;
  transition: 0.4s;
  padding: 15px 0;
  z-index: 999;
}

.scrolled .header {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav-toggle {
  display: none;
}

#navmenu ul li {
  list-style: none;
  
}

@media (min-width: 1200px) {
  #navmenu {
    display: flex;
    align-items: center;
  }

  #navmenu ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  #navmenu ul li {
    list-style: none;
  }

  #navmenu ul li a {
    position: relative;
    padding: 18px 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--nav-color);
    transition: 0.3s ease;
  }

  #navmenu ul li a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #043fe1;
    transform: translateX(-50%);
    transition: 0.3s;
  }

  #navmenu ul li:hover > a::after,
  #navmenu ul li a.active::after {
    width: 80%;
  }
  .cta-btn-desktop {
    padding: 10px 22px !important;
    background: #043fe1;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
  }

  .cta-btn-desktop:hover {
    background: #406ff1;
    color: #fff;
  }

  .mobile-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10001;
  }

  #navmenu {
    position: relative;
  }

  #navmenu ul {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 20px 20px auto 0px;
    padding: 15px;
    background: #0a0d14;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    
  }

  .mobile-nav-active #navmenu ul {
    display: flex;
  }

  #navmenu ul li {
    width: 100%;
    margin: 0;
  }

  #navmenu ul li a {
    padding: 10px 14px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    width: auto;
  }

  .cta-btn-desktop {
    display: none !important;
  }

  .mobile-cta {
    display: block;
    text-align: left;
    margin-top: 10px;
  }

  .cta-btn-mobile {
    display: inline-block;
    width: fit-content;
    background: #043fe1;
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.crm-footer {
  background: #0b0f19;
  color: #d1d5db;
  padding-top: 50px;
}
.crm-footer .logo img {
  width: 100px;
  margin-right: 8px;
}
.crm-footer .logo .sitename {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.crm-footer .footer-description {
  margin-top: 15px;
  line-height: 1.6;
  color: #b4b9c3;
}
.crm-footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}
.crm-footer .footer-links ul {
  list-style: none;
  padding: 0;
}
.crm-footer .footer-links ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.crm-footer .footer-links ul li i {
  color: #043fe1;
  font-size: 16px;
}
.crm-footer .footer-links ul a {
  color: #b4b9c3;
  text-decoration: none;
  transition: 0.3s;
}
.crm-footer .footer-links ul a:hover {
  color: #043fe1;
}
.contact-icon {
  color: #043fe1;
  margin-right: 8px;
  font-size: 18px;
}
.crm-footer .contact-link {
  color: #b4b9c3;
  text-decoration: none;
  transition: 0.3s;
}

.crm-footer .contact-link:hover {
  color: #043fe1;
}
.crm-footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #b4b9c3;
  transition: 0.3s;
}
.crm-footer .social-links a:hover {
  background: #043fe1;
  border-color: #043fe1;
  color: #ffffff;
}
.crm-footer .copyright {
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-footer .footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 10px;
}

/*--------------------------------------------------------------
# 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: #043fe1;
  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: #406ff1;
  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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  position: absolute;
  inset: 0;
}

.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: 20px 0;
  scroll-margin-top: 85px;
  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-top: 10px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #043fe1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.static-hero {
  width: 100%;
  height: 90vh;
  background: url("../../images/herosection.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.static-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  color: #fff;
  animation: fadeInUp 1.2s ease;
}

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

.hero-content p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 25px;
  font-weight: 400;
}

.btn-get-started {
  color: #ffffff;
  background: #043fe1;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-get-started:hover {
  background: #406ff1;
  color: #ffffff;
}

@media (max-width: 768px) {
  .static-hero {
    height: auto;
    padding: 120px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #060606;
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;   
  gap: 10px;                 
  padding-bottom: 10px;
}

.about .content ul li i {
  font-size: 1.2rem;
  color: #043fe1;
  margin-top: 3px;          
  flex-shrink: 0;            
}

.about .content ul li span {
  display: block;
  line-height: 1.6;
}


.about .content .read-more {
  background: #043fe1;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: #406ff1;
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .about .about-images .col-lg-6,
  .about .about-images .col-lg-12 {
    max-width: 100% !important;
  }

  .about .about-images img {
    width: 85%;
    height: 380px !important;
    object-fit: contain !important;
    border-radius: 10px;
    margin: 0 auto 0;
    display: block;
  }
}

@media (max-width: 576px) {
  .about .about-images img {
    width: 75%;
    height: auto !important;
    object-fit: contain !important;
  }
}
.about.section {
  padding-top: 80px;
  
}

@media (max-width: 991px) {
  .about.section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .about.section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (max-width: 991px) {
  .about .content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about .content p {
    margin-bottom: 12px;
  }

  .about .content ul li {
    padding-bottom: 6px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.stats-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stats-card span {
  font-size: 42px;
  color: #043fe1;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.stats-card p {
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.percentage-counter::after {
  content: "%";
  font-size: 32px;
  font-weight: 700;
  margin-left: 2px;
  color: #043fe1;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .stats-card span {
    font-size: 34px;
  }
  .stats-card {
    padding: 25px 15px;
  }
}

/*--------------------------------------------------------------
# Featured  Section
--------------------------------------------------------------*/

.crm-feature-section {
  padding: 80px 0;
  background: #f5f7fc;
}

.feature-main-title {
  font-size: 34px;
  font-weight: 800;
  color: #1f2a37;
  margin-bottom: 15px;
}

.feature-subtitle {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #4b5563;
}

.feature-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 42px;
  color: #043fe1;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.feature-box p {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  .feature-main-title {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
#   Why choose us Section
--------------------------------------------------------------*/
.whychooseus .choose-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  text-align: center;
  height: 100%;
}

.whychooseus .choose-card .choose-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.whychooseus .choose-card .choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s ease;
}

.whychooseus .choose-card .title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 18px;
  color: #1f2937;
}

.whychooseus .choose-card .description {
  font-size: 16px;
  color: #6b7280;
  padding: 0 18px;
  margin-top: 10px;
  line-height: 1.5;
}
.whychooseus .choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.whychooseus .choose-card:hover img {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .whychooseus .choose-card .choose-img {
    height: 200px;
  }

  .whychooseus .choose-card .title {
    font-size: 18px;
  }

  .whychooseus .choose-card .description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .whychooseus .choose-card {
    margin-bottom: 20px;
  }

  .whychooseus .choose-card .choose-img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Use case Section
--------------------------------------------------------------*/
.usecase-modern-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.usecase-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f2a37;
}

.usecase-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 16px;
}
.choose-card {
  cursor: pointer;
}
.usecase-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 10px 0;
  transition: 0.3s ease;
}

.usecase-icon {
  font-size: 42px;
  color: #043fe1;
  min-width: 50px;
  transition: 0.3s ease;
}

.usecase-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.usecase-item p {
  color: #6b7280;
  font-size: 16px;
}

.usecase-item:hover .usecase-icon {
  transform: scale(1.2) rotate(6deg);
  color: var(--accent-color);
}

.usecase-item:hover h4 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #043fe1;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #043fe1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 70px 0;
  background: #f7f9fc;
}

.faq-subtitle {
  max-width: 700px;
  margin: 10px auto 30px;
  font-size: 16px;
  font-weight: 500;
  color: #4b5563;
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 20px;
  color: #1f2937;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #043fe1;
  background: #eef4ff;
}

.accordion-body {
  padding: 15px 20px;
  font-size: 16px;
  color: #4b5563;
}

@media (max-width: 768px) {
  .accordion-button {
    font-size: 16px;
  }
  .faq-subtitle {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-modern {
  padding: 0 0;
  background: #f7f9fc;
}

.contact-heading {
  font-size: 20px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 18px;
  max-width: 100% !important;
}
.contact-highlights {
  padding-left: 0;
  margin-top: 0;
}
.contact-highlights li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-highlights li i {
  color: #043fe1;
  font-size: 20px;
}

.contact-form-modern {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-modern .form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 14px;
}

.contact-form-modern .form-control:focus {
  border-color: #043fe1;
  box-shadow: none;
}

.contact-form-modern .btn-submit {
  background: #043fe1;
  color: #fff;
  padding: 12px 35px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-form-modern .btn-submit:hover {
  background: #406ff1;
}

@media (max-width: 768px) {
  .contact-heading {
    font-size: 24px;
  }
  .contact-description {
    font-size: 15px;
  }
}

/* Service Details Section */
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
/* Chatbot Box */
.fixed-buttons {
    position: fixed;
    right: 30px;
    bottom: 15%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* justify-content: space-between; */
    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;
}
