/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, sans-serif;
  --heading-font: "Outfit", sans-serif;
  --nav-font: "Outfit", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #334155;
  --heading-color: #0f172a;
  --accent-color: #0ea5e9;
  --accent-soft: #e0f2fe;
  --surface-color: #f8fafc;
  --contrast-color: #ffffff;
  --border-color: #e2e8f0;
}

/* Nav Menu Colors */
:root {
  --nav-color: #475569;
  --nav-hover-color: #0ea5e9;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #334155;
  --nav-dropdown-hover-color: #0ea5e9;
}

/* Color Presets */
.light-background {
  --background-color: #f8fafc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f172a;
  --default-color: #f1f5f9;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: var(--accent-color);
  --default-color: var(--contrast-color);
  --heading-color: var(--contrast-color);
  --surface-color: rgba(255, 255, 255, 0.1);
  background-color: var(--background-color);
  color: var(--default-color);
}

/* 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);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--heading-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: transparent;
  --nav-color: #ffffff;
  --heading-color: #ffffff;
  color: #ffffff;
  background-color: var(--background-color);
  padding: 25px 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.header .logo h1 span.logo-fix {
  color: var(--accent-color) !important;
  font-style: normal;
  font-weight: 900;
}

/* Global Header on Scroll */
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #0f172a;
  --nav-color: #475569;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.scrolled .header .mobile-nav-toggle {
  color: #0f172a;
}

.scrolled .header .logo h1 {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 8px 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--accent-color);
    background: var(--accent-soft);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }

  .navmenu a {
    color: #334155;
    padding: 12px 0;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--accent-color);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}



.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.footer .credits {
  margin-top: 6px;
  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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), 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: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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



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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 800;
  padding: 8px 20px;
  margin-bottom: 15px;
  background: var(--accent-soft);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 4px;
  font-family: var(--heading-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-visual-bg {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  color: var(--accent-color);
  display: block;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  color: var(--accent-color);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.btn-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #0f172a;
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
  padding: 20px;
}

.hero-main-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

.hero-shape-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  animation: blob-float 10s infinite alternate linear;
}

.hero-shape-2 {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 150px;
  height: 150px;
  border: 15px solid var(--accent-soft);
  border-radius: 50%;
  z-index: 1;
  animation: blob-float 8s infinite alternate-reverse ease-in-out;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  100% {
    transform: translate(20px, 30px) rotate(15deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

@media (max-width: 991px) {
  .hero-visual-bg {
    display: none;
  }

  .hero {
    text-align: center;
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    margin: 0 auto 40px;
  }

  .hero-main-img {
    height: 400px;
  }

  .hero-content {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about .content p {
  margin-bottom: 25px;
  font-size: 17px;
}

.about .content .about-btn {
  padding: 12px 30px;
  color: var(--accent-color);
  background: var(--accent-soft);
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: none;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 8px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

.about .icon-box {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid var(--border-color);
}

.about .icon-box i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about .icon-box p {
  font-size: 15px;
  color: var(--default-color);
  margin-bottom: 0;
}

.about .icon-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: #ffffff;
  padding: 50px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 24px;
}

.services .service-item .icon {
  width: 70px;
  height: 70px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
}

.services .service-item h4 {
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 22px;
}

.services .service-item p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0;
  color: var(--default-color);
}

.services .service-item:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-10px);
}

.services .service-item:hover h4,
.services .service-item:hover p {
  color: #fff;
}

.services .service-item:hover .icon {
  background: var(--accent-color);
}

.services .service-item:hover .icon i {
  color: #fff;
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
  background: var(--heading-color) !important;
  color: #fff;
  text-align: center;
}

.call-to-action h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
}

.call-to-action .cta-btn {
  padding: 18px 48px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.3s;
}

.call-to-action .cta-btn:hover {
  background: #fff;
  color: var(--heading-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: 0.3s;
  position: relative;
  /* Add this */
}

.faq .faq-container .faq-item h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
  margin: 0;
  cursor: pointer;
  padding-right: 40px;
  /* Add space for the icon */
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
}

.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 {
  overflow: hidden;
  margin-bottom: 0;
}

.faq .faq-container .faq-active {
  border-color: var(--accent-color);
  background: var(--accent-soft);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.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);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: 100%;
}

.contact .info-item i {
  color: var(--accent-color);
  font-size: 28px;
  margin-right: 20px;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact .info-item p {
  font-size: 16px;
  margin: 0;
}

/*--------------------------------------------------------------
# Service Details Sections
--------------------------------------------------------------*/
.section .content h3 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 25px;
}

.section .content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.section .content ul li {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 500;
}

.section .content ul i {
  color: var(--accent-color) !important;
}

.section .info-box {
  background: var(--accent-soft);
  padding: 30px;
  border-left: 5px solid var(--accent-color);
  border-radius: 4px;
}

/*--------------------------------------------------------------
# Service Area Section
--------------------------------------------------------------*/
.area-pill {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;
  margin: 5px;
}

.area-pill:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #0f172a !important;
  /* Force dark background */
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 80px 0 30px 0;
}

.footer h4 {
  color: #fff !important;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer p,
.footer span,
.footer strong,
.footer a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer .footer-contact p strong {
  color: #fff !important;
}

.footer a:hover {
  color: var(--accent-color) !important;
}

.footer .sitename {
  font-size: 28px;
  font-weight: 900;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.footer .logo-fix {
  color: var(--accent-color) !important;
}

.footer .footer-contact p {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  font-size: 14px;
}