/**
* Template Name: FlexBiz - Inzwi Care Edition
* Updated: Dec 2025
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Lato", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - Blue and Gold Theme */
:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  
  /* Inzwi Care Blue (Navy) - Trust & Safety */
  --heading-color: #0a2647; 
  
  /* Inzwi Care Gold - Quality & Compassion */
  --accent-color: #d4af37; 
  
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

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

/* Color Presets */
.light-background {
  --background-color: #f4f7fa; /* Very subtle blue-grey for warmth */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0a2647; /* Deep Navy */
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --surface-color: #14355b; /* Slightly lighter navy for cards */
  --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), black 15%);
  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;
  border-radius: 4px;
}

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

.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 {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0 0 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .top-row {
  padding-bottom: 10px;
}

.header .top-row .logo {
  text-decoration: none;
}

.header .top-row .logo .sitename {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color); /* Navy */
  font-family: var(--heading-font);
  margin: 0;
  letter-spacing: -0.5px;
}

.header .social-links a {
  color: var(--heading-color);
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--accent-color); /* Gold on hover */
}

.header .nav-wrap {
  background-color: var(--heading-color); /* Navy Background for Nav */
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

/* Global Header on Scroll */
.scrolled .header {
  --background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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; }

  /* Changed text color to white because background is Navy */
  .navmenu a, .navmenu a:focus {
    color: #ffffff; 
    padding: 18px 25px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

  .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
    color: var(--accent-color); /* Gold active state */
    background-color: rgba(255,255,255,0.05);
  }

  /* Dropdowns */
  .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: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color); /* Gold top border */
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #ffffff;
  }

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

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

/* Navmenu - Mobile */
@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 20px 20px;
    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); /* Mobile link color */
    color: #333;
    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:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--accent-color);
  }

  .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(10, 38, 71, 0.9); /* Navy Overlay */
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background-color: var(--heading-color); /* Navy Background */
  font-size: 14px;
  padding: 60px 0 30px 0;
  position: relative;
  /* Gold Top Border for Separation */
  border-top: 4px solid var(--accent-color); 
}

/* Brand Section */
.footer .logo .sitename {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  font-family: var(--heading-font);
}

.footer .tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  line-height: 1.6;
}

/* Social Icons */
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--heading-color); /* Navy Icon on hover */
  background-color: var(--accent-color); /* Gold Background on hover */
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Headings */
.footer h5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  color: var(--accent-color); /* Gold Headings */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Links & Contact Lists */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

/* Contact Specific Icons */
.footer .footer-contact .icon {
  font-size: 18px;
  color: var(--accent-color); /* Gold Icons */
  margin-right: 12px;
  flex-shrink: 0;
}

/* Hover Effects for Links */
.footer .footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 8px; /* Slide effect */
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Copyright Section */
.footer .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer .copyright strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer .copyright {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Preloader & Scroll Top
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color); /* Gold dots */
  border-radius: 50%;
  position: absolute;
  left: 50%;
}

/* ... keep preloader animations same as original ... */
#preloader div:nth-child(1) { left: calc(50% + 8px); animation: animate-preloader-1 0.6s infinite; }
#preloader div:nth-child(2) { left: calc(50% + 8px); animation: animate-preloader-2 0.6s infinite; }
#preloader div:nth-child(3) { left: calc(50% + 32px); animation: animate-preloader-2 0.6s infinite; }
#preloader div:nth-child(4) { left: calc(50% + 56px); animation: animate-preloader-3 0.6s infinite; }
@keyframes animate-preloader-1 { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes animate-preloader-3 { 0% { transform: scale(1); } 100% { transform: scale(0); } }
@keyframes animate-preloader-2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } }

.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: 50%; /* Circle looks better */
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--heading-color); /* Navy on hover */
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0; /* Increased padding for elegance */
  scroll-margin-top: 135px;
  overflow: clip;
}

.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;
  color: var(--heading-color);
}

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

/*--------------------------------------------------------------
# Hero Section with Background Slider
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 140px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* We removed the static background: url(...) here */
}

/* Background Carousel Positioning 
   This places the slider BEHIND everything else 
*/
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background .carousel-inner,
.hero-background .carousel-item {
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers screen without stretching */
  object-position: center;
}

/* The Overlay - Dark Blue Tint */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Slightly darker gradient to ensure text readability over changing images */
  background: linear-gradient(
    to bottom, 
    rgba(10, 38, 71, 0.85), 
    rgba(10, 38, 71, 0.75)
  );
  z-index: 1; /* Sits on top of the images (z-index 0) */
}

/* Content Positioning (Sits on top of Overlay) */
.hero .container {
  position: relative;
  z-index: 2;
}

/* --- Keep the rest of your text/button styles below --- */

.hero .eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

.hero h1 {
  color: #ffffff;
  line-height: 1.2;
}

.hero h1 .accent-text {
  color: var(--accent-color);
  font-style: italic;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Buttons */
.hero .btn-primary-hero {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.hero .btn-primary-hero:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
}

.hero .btn-outline-hero {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

/* CORRECTED: Fix invisible text on hover */
.hero .btn-outline-hero:hover {
  background-color: #ffffff;
  color: #0a2647 !important; /* Force Navy Blue text on White background */
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Stats */
.hero .hero-stats {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .stat-item .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero .stat-item strong {
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .stat-item span {
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px !important;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 80px 0;
}

.featured-services .service-item {
  height: 100%;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  /* Visual Pop: Border and Shadow by default */
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

/* Gold Icon Circle */
.featured-services .service-item .icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1); /* Soft Gold Background */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color); /* Gold Icon */
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

/* Typography */
.featured-services .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--heading-color); /* Navy */
  transition: 0.3s;
}

.featured-services .service-item p {
  color: #555555;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Read More Link */
.featured-services .service-item .readmore {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.featured-services .service-item .readmore i {
  margin-left: 5px;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover Effects */
.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: transparent;
  /* Optional: Background becomes Navy on hover */
  background: var(--heading-color); 
}

.featured-services .service-item:hover h3,
.featured-services .service-item:hover p,
.featured-services .service-item:hover .readmore {
  color: #ffffff;
}

.featured-services .service-item:hover .icon {
  background: #ffffff;
}

.featured-services .service-item:hover .icon i {
  color: var(--heading-color); /* Icon turns Navy */
}

.featured-services .service-item:hover .readmore i {
  margin-left: 10px; /* Slight movement arrow */
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: #ffffff;
  overflow: visible; /* Allows badge to float */
}

/* Image Wrapper */
.about .about-image-wrapper {
  position: relative;
  padding-bottom: 30px; /* Space for the floating badge */
}

.about .about-image-wrapper .main-img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Soft shadow */
  border: 5px solid #ffffff; /* White border frame */
}

/* Floating Badge Styling */
.about .about-image-wrapper .badge-note {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--accent-color); /* Gold Accent Border */
}

.about .badge-note .icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
}

.about .badge-note .text strong {
  display: block;
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1.2;
}

.about .badge-note .text small {
  color: #6c757d;
}

/* Typography & Colors */
.text-gold {
  color: var(--accent-color) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.text-navy {
  color: var(--heading-color) !important;
}

.about .lead {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Value Items Grid */
.about .value-item {
  background: #f8f9fa; /* Very light gray bg for items */
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: 0.3s;
}

.about .value-item:hover {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.about .value-item .icon {
  width: 40px;
  height: 40px;
  background: var(--heading-color); /* Navy Background */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.about .value-item:hover .icon {
  background: var(--accent-color); /* Turns Gold on Hover */
}

.about .value-item .icon i {
  color: #ffffff; /* White Icon */
  font-size: 18px;
}

/* Button Styling */
.btn-navy {
  background-color: var(--heading-color);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--heading-color);
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-navy:hover {
  background-color: var(--accent-color); /* Gold on Hover */
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about .about-image-wrapper {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  /* Key change: Added visible border and strong shadow by default */
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

/* Decorative top line */
.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--heading-color); /* Navy Blue line */
  transition: 0.3s;
  z-index: 0;
}

.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.services .service-card:hover::before {
  height: 100%; /* Fills background on hover */
  background: var(--heading-color);
  opacity: 0.03; /* Very subtle fill */
}

/* Number Badge */
.services .service-card .service-number {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(10, 38, 71, 0.05);
  color: var(--heading-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

/* Icons */
.services .service-card .service-icon-wrapper {
  margin-bottom: 25px;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color); /* Gold Background */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  transition: 0.3s;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: #ffffff; /* White Icon */
}

/* Content Typography */
.services .service-card .service-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card .service-content p {
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

/* List Styling */
.services .service-card .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services .service-card .service-list li {
  padding: 8px 0;
  color: #444;
  font-size: 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.services .service-card .service-list li:last-child {
  border-bottom: none;
}

.services .service-card .service-list li i {
  color: var(--accent-color); /* Gold Checkmark */
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* FEATURED CARD (Card 02) - Distinct Look */
.services .service-card.featured {
  background: var(--heading-color); /* Navy Background */
  border-color: var(--heading-color);
  color: #ffffff;
  transform: scale(1.02); /* Slightly larger */
}

.services .service-card.featured::before {
  background: var(--accent-color); /* Gold top line */
}

.services .service-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.services .service-card.featured .service-number {
  background: rgba(255,255,255,0.1);
  color: var(--accent-color);
}

.services .service-card.featured .service-icon {
  background: #ffffff;
  box-shadow: none;
}

.services .service-card.featured .service-icon i {
  color: var(--heading-color); /* Navy Icon */
}

.services .service-card.featured h4 {
  color: #ffffff;
}

.services .service-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.services .service-card.featured .service-list li {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.1);
}

.services .service-card.featured .service-list li i {
  color: var(--accent-color);
}


/* Featured Card Styling (Service 2) */
.services .service-card.featured {
  background: var(--heading-color); /* Navy Background */
  border-color: var(--heading-color);
  transform: scale(1.02);
  color: white;
}

.services .service-card.featured h4,
.services .service-card.featured p,
.services .service-card.featured li {
  color: white;
}

.services .service-card.featured .service-icon-wrapper .service-icon {
  background: rgba(255,255,255,0.1);
}

.services .service-card.featured .service-icon-wrapper .service-icon i {
  color: var(--accent-color); /* Gold icon */
}

.services .service-card.featured .service-list li::before {
  background: var(--accent-color);
}

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

.services .service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.services .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--accent-color);
}

.testimonials .testimonial-item .stars i {
  color: var(--accent-color); /* Gold Stars */
}

.testimonials .testimonial-item p {
  font-style: italic;
  color: #555;
}

.testimonials .testimonial-profile img {
  border: 3px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
}

.faq .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between items */
}

.faq .faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover Effect */
.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.3); /* Subtle gold border on hover */
}

/* Active State (Open Question) */
.faq .faq-item.faq-active {
  background-color: #ffffff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--accent-color); /* Gold Highlight Line */
}

.faq .faq-item .faq-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

/* Question Icon */
.faq .faq-item .faq-header .faq-icon {
  width: 40px;
  height: 40px;
  background: rgba(10, 38, 71, 0.08); /* Light Navy */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.faq .faq-item .faq-header .faq-icon i {
  color: var(--heading-color); /* Navy Blue */
  font-size: 20px;
}

/* Question Text */
.faq .faq-item .faq-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--heading-color);
  flex-grow: 1; /* Pushes toggle to the right */
  line-height: 1.4;
}

/* Toggle Buttons (+ / -) */
.faq .faq-item .faq-header .faq-toggle {
  font-size: 20px;
  color: var(--default-color);
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

/* Toggle Logic */
.faq .faq-item .faq-header .faq-toggle i {
  transition: 0.3s;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
  color: var(--accent-color); /* Gold minus sign */
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
  color: var(--heading-color);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

/* Active State Colors */
.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color); /* Question turns Gold when active */
}

.faq .faq-item.faq-active .faq-icon {
  background: var(--heading-color); /* Icon bg turns Navy */
}

.faq .faq-item.faq-active .faq-icon i {
  color: #ffffff; /* Icon turns White */
}

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

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item .faq-content .content-inner {
  overflow: hidden;
  padding: 0 30px 25px 90px; /* Indented text alignment */
}

.faq .faq-item .faq-content p {
  color: #555555;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
  }
  
  .faq .faq-item .faq-header .faq-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
  }
  
  .faq .faq-item .faq-header .faq-icon i {
    font-size: 16px;
  }
  
  .faq .faq-item .faq-header h4 {
    font-size: 16px;
  }
  
  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px 20px 20px; /* Remove indentation on mobile */
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  /* Using the dark background preset, so specific overrides here */
  position: relative;
}

.contact .info-item {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  color: rgba(255,255,255,0.8);
}

/* Contact Form Styling */
.contact .php-email-form {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact .php-email-form label {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea {
  background-color: rgba(255, 255, 255, 0.95); /* High contrast input bg */
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--heading-color); /* Navy text inside inputs */
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  background-color: #ffffff;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: #ffffff;
  border: 0;
  padding: 14px 40px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fff;
  color: var(--heading-color);
}
/* Force visibility on mobile or if AOS is laggy */
[data-aos] {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Vercel Contact Form Styling
--------------------------------------------------------------*/
.vercel-contact-form {
  background: rgba(255, 255, 255, 0.05); /* Glass effect */
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.vercel-contact-form .form-control,
.vercel-contact-form select {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  border: 1px solid transparent;
  color: #0a2647; /* Navy Text */
  padding: 12px 15px;
  font-size: 14px;
}

.vercel-contact-form .form-control:focus {
  border-color: #d4af37; /* Gold focus border */
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  background-color: #ffffff;
}

.vercel-contact-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.vercel-contact-form .btn-submit {
  background: #d4af37; /* Gold Button */
  color: #ffffff;
  border: 0;
  padding: 14px 40px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 15px;
  cursor: pointer;
}

.vercel-contact-form .btn-submit:hover {
  background: #ffffff;
  color: #0a2647; /* Navy text on hover */
  transform: translateY(-2px);
}
/*--------------------------------------------------------------
# Fix Invisible Text in Contact Form
--------------------------------------------------------------*/
.vercel-contact-form input,
.vercel-contact-form textarea,
.vercel-contact-form select {
  /* Force the text color to be Navy Blue so it shows up on white */
  color: #0a2647 !important; 
  
  /* Ensure the background stays white */
  background-color: #ffffff !important; 
  
  /* Make placeholder text (like "Client Name") visible but lighter */
  ::placeholder {
    color: #6c757d !important;
    opacity: 1;
  }
}

/* Fix for browser autofill (when Chrome turns the background blue/yellow) */
.vercel-contact-form input:-webkit-autofill,
.vercel-contact-form textarea:-webkit-autofill,
.vercel-contact-form select:-webkit-autofill {
  -webkit-text-fill-color: #0a2647 !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}