/* Importing Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova&family=PT+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #000000;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Headings - Serif fonts */
h1,
h2,
h3 {
  font-family: "PT Serif", serif;
}

/* Subheadings and Paragraph - Sans-serif fonts */
h4,
h5,
h6,
p {
  font-family: "Alegreya Sans SC", sans-serif;
}

/* Link Styles */
a {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 2s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  transition:
    transform 1.5s ease,
    opacity 1.5s ease;
}

#preloader.loaded .preloader-inner {
  transform: scale(0.9);
  opacity: 0;
}

.preloader-logo {
  width: 120px;
  height: auto;
  animation: preloaderGlow 2s ease-in-out infinite;
}

@keyframes preloaderGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3))
      drop-shadow(0 0 20px rgba(59, 130, 246, 0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7))
      drop-shadow(0 0 45px rgba(59, 130, 246, 0.5))
      drop-shadow(0 0 70px rgba(59, 130, 246, 0.3));
    transform: scale(1.05);
  }
}

.preloader-text {
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 20px rgba(59, 130, 246, 0.6),
      0 0 40px rgba(59, 130, 246, 0.3);
  }
}

.preloader-dots {
  display: flex;
  gap: 12px;
}

.preloader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3b82f6;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.preloader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.preloader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow:
      0 0 20px rgba(59, 130, 246, 0.8),
      0 0 40px rgba(59, 130, 246, 0.4);
  }
}

/*--------------------------------------------------------------
# Back to Top Button Styles
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 20px;
  bottom: 20px;
  z-index: 996;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e3a8a;
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.back-to-top i {
  font-size: 24px;
  color: #ffffff;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.back-to-top:hover {
  background: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Top Bar - Always Dark (Both Modes)
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
  background-color: #1a1a1a !important;
  border-bottom: 1px solid #333;
}

#topbar.dark-topbar {
  background: #1a1a1a !important;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #f8f6f3;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .social-icons ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

#topbar .social-icons ul a {
  color: white;
  padding: 0 8px;
}

#topbar .social-icons ul a:hover {
  color: #3b82f6;
}

#topbar .social-icons ul li + li {
  padding-left: 0;
}

@media (max-width: 1000px) {
  #topbar {
    display: none !important;
  }

  #header {
    top: 0px !important;
  }
}

/*--------------------------------------------------------------
# Header - Always Dark (Both Modes)
--------------------------------------------------------------*/
#header {
  background: #1a1a1a !important;
  border-bottom: 1px solid #333 !important;
  transition: all 0.5s ease-in-out;
  z-index: 997;
  padding: 0px 0;
  top: 40px;
}

#header.dark-header {
  background: #1a1a1a !important;
}

#header.header-scrolled {
  top: 0;
  background: #1a1a1a !important;
  border-bottom: 1px solid #333 !important;
}

/* Light/Dark Mode Styles */
body.light-mode {
  background-color: #f5f5f5;
  color: #2d3748;
}

body.light-mode #header {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

body.light-mode #topbar {
  background-color: #1e3a8a !important;
  color: #fff;
}

body.light-mode #topbar .contact-info i,
body.light-mode #topbar .contact-info i span {
  color: #fff;
}

body.light-mode #topbar .social-icons ul a {
  color: #fff;
}

body.light-mode .navbar a {
  color: #1a1a1a;
}

body.light-mode .navbar a:hover,
body.light-mode .navbar .active {
  color: #3b82f6;
}

body.light-mode .logo img {
  filter: none;
}

body.dark-mode {
  background-color: #000000;
  color: #fff;
}

/* Navbar Positioning */
.navbar {
  display: flex;
  width: 100%;
  justify-content: right;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #ffffff !important;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

body.light-mode .navbar a {
  color: #1e293b !important;
}

body.light-mode .navbar a:hover,
body.light-mode .navbar li:hover > a,
body.light-mode .navbar .active,
body.light-mode .navbar .active:focus {
  color: #3b82f6 !important;
}

.navbar a:hover,
.navbar li:hover > a {
  background-color: transparent;
  color: #3b82f6 !important;
  transform: translateY(-2px);
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: #2d3748;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  border: 1px solid #3b82f6;
  transition: background 0.3s ease;
  margin-left: 20px;
}

.theme-toggle i {
  font-size: 16px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.theme-toggle .sun-icon {
  color: #ffcc00;
  opacity: 1;
}

.theme-toggle .moon-icon {
  color: #dbeafe;
  opacity: 0;
}

body.light-mode .theme-toggle {
  background: #2d3748;
}

body.light-mode .theme-toggle .sun-icon {
  opacity: 0;
}

body.light-mode .theme-toggle .moon-icon {
  opacity: 1;
}

#header {
  border-bottom: 1px solid #333 !important;
  transition: all 0.5s ease-in-out;
  z-index: 1000;
  padding: 0;
  top: 40px;
  background: #1a1a1a !important;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  height: 80px;
}

#header.header-scrolled {
  top: 0;
  border-bottom: 1px solid #333 !important;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "PT Serif", serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

#header .logo a {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  max-height: 50px;
  animation: logoGlow 3s ease-in-out infinite;
}

#header .logo .logo-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: "PT Serif", serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

body.light-mode #header .logo .logo-text {
  color: #1e3a8a;
  text-shadow: 0 0 10px rgba(30, 58, 138, 0.2);
}

#header .logo img:hover {
  animation: logoGlowHover 1.5s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
      drop-shadow(0 0 25px rgba(59, 130, 246, 0.4));
  }
}

@keyframes logoGlowHover {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5))
      drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
      drop-shadow(0 0 35px rgba(59, 130, 246, 0.6));
  }
}

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 7px;
  transition: margin-left 0.3s ease;
}

.navbar a:hover,
.navbar li:hover > a {
  background-color: transparent;
  color: #93c5fd !important;
  transform: translateY(-2px);
}

.navbar .active {
  background-color: transparent;
  color: #85b4ef !important;
}

.navbar a:hover i {
  margin-left: 10px;
}

/* Mobile Navigation - Fixed */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s ease;
  z-index: 9999;
  position: relative;
}

body.light-mode .mobile-nav-toggle {
  color: #1a1a1a;
}

.navbar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 26, 0.95);
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.navbar-mobile.active {
  display: flex;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.navbar-mobile li {
  width: 100%;
  text-align: center;
}

.navbar-mobile a {
  display: block;
  padding: 15px 20px;
  color: #fff !important;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.navbar-mobile a:hover,
.navbar-mobile a.active {
  color: #3b82f6 !important;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 28px;
}

@media (max-width: 991px) {
  .navbar {
    width: auto;
  }

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

  .navbar ul {
    display: none;
  }

  #header .logo .logo-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  #header .logo .logo-text {
    font-size: 16px;
  }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .navbar-mobile {
    padding: 100px 15px 20px;
    justify-content: flex-start;
  }

  .navbar-mobile ul {
    gap: 6px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-mobile a {
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* Tablet landscape optimization */
@media (max-width: 991px) and (orientation: landscape) {
  .navbar-mobile ul {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
  }
}

/* Custom scrollbar for mobile menu */
.navbar-mobile ul::-webkit-scrollbar {
  width: 4px;
}

.navbar-mobile ul::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.navbar-mobile ul::-webkit-scrollbar-thumb {
  background: #084f87;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Updated Hero Section - With Premium Gradient
--------------------------------------------------------------*/
#hero {
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    url("../img/1.png") center center / cover no-repeat fixed;
  min-height: 100vh;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0 80px;
  font-family: "Montserrat", sans-serif;
}

/* Light Mode Hero Section */
body.light-mode #hero {
  background:
    linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.85) 0%,
      rgba(59, 130, 246, 0.8) 100%
    ),
    url("../img/1.png") center center / cover no-repeat fixed;
}

/* Content on top of overlay */
#hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 30px;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Heading - Reduced font size */
#hero h1 {
  margin: 0;
  font-size: 43px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#hero h1 span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #3b82f6;
  margin-top: 10px;
}

.dark-mode #hero h1 {
  color: #fff;
}

.light-mode #hero h1 {
  color: #ffffff;
}

.light-mode #hero h1 span {
  color: #bfdbfe;
}

/* Subheading */
#hero h2 {
  font-size: 18px;
  margin: 20px 0 0;
  color: #f8f6f3;
  font-weight: 600;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.light-mode #hero h2 {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Button Section */
#hero .btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Updated Button Styles - Blue Color and Smaller Height */
#hero .btn-modern {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: none;
  gap: 12px;
  height: 48px;
}

/* Button Background Colors - Blue */
#hero .btn-services,
#hero .btn-consultation {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Button Hover Effects - Updated Colors */
#hero .btn-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

#hero .btn-services:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

#hero .btn-consultation:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

/* Light Mode Button Adjustments */
.light-mode #hero .btn-services,
.light-mode #hero .btn-consultation {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #1e3a8a;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.light-mode #hero .btn-services:hover,
.light-mode #hero .btn-consultation:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.6);
  color: #1e40af;
}

/* Button Icon Animation */
.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

#hero .btn-modern:hover .btn-icon {
  transform: translateX(5px);
}

/* Ripple Effect */
#hero .btn-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

#hero .btn-modern:hover::before {
  width: 300px;
  height: 300px;
}

/* Button Text */
.btn-text {
  position: relative;
  z-index: 2;
  font-weight: 500;
}

/* Line Container */
.line-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  pointer-events: none;
  z-index: 2;
}

.line {
  position: relative;
  width: 2px;
  height: 120px;
  margin: 18px;
  animation: lineAnimation 5s infinite ease-in-out;
  transform-origin: bottom;
}

.dark-mode .line {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

.light-mode .line {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

.line::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.dark-mode .line::before {
  background-color: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

.light-mode .line::before {
  background-color: #ffffff;
  box-shadow:
    0 0 10px #ffffff,
    0 0 20px rgba(255, 255, 255, 0.3);
}

/* Line Animation */
@keyframes lineAnimation {
  0% {
    height: 120px;
    opacity: 0.7;
  }

  50% {
    height: 180px;
    opacity: 1;
  }

  100% {
    height: 120px;
    opacity: 0.7;
  }
}

/* Line Animation Delays */
.line:nth-child(3n) {
  animation-duration: 4.5s;
}

.line:nth-child(3n + 1) {
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}

.line:nth-child(3n + 2) {
  animation-duration: 6s;
  animation-delay: 1s;
}

/* Responsive Adjustments - Keep PC perfect, only change mobile */
@media (max-width: 1024px) {
  .line-container {
    bottom: 0;
  }

  .line {
    height: 100px;
    margin: 16px;
  }

  @keyframes lineAnimation {
    0% {
      height: 100px;
      opacity: 0.7;
    }

    50% {
      height: 150px;
      opacity: 1;
    }

    100% {
      height: 100px;
      opacity: 0.7;
    }
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 100vh;
    height: auto;
    padding: 100px 0 60px;
  }

  #hero h1 {
    font-size: 36px;
  }

  #hero h1 span {
    font-size: 22px;
  }

  #hero h2 {
    font-size: 16px;
  }

  #hero .btns {
    flex-direction: column;
    gap: 20px;
  }

  #hero .btn-modern {
    min-width: 180px;
    padding: 12px 25px;
    height: 50px;
  }

  /* Mobile-specific line adjustments */
  .line {
    height: 80px;
    margin: 14px;
    width: 1.5px;
  }

  @keyframes lineAnimation {
    0% {
      height: 80px;
      opacity: 0.7;
    }

    50% {
      height: 120px;
      opacity: 1;
    }

    100% {
      height: 80px;
      opacity: 0.7;
    }
  }
}

@media (max-width: 580px) {
  .line-container {
    visibility: hidden;
  }

  .line {
    margin: 12px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 100vh;
    height: auto;
    padding: 80px 0 40px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h1 span {
    font-size: 18px;
  }

  #hero h2 {
    font-size: 14px;
  }

  #hero .btn-modern {
    min-width: 160px;
    font-size: 14px;
    padding: 10px 20px;
    height: 45px;
  }

  .line-container {
    display: flex;
  }

  .line {
    margin: 10px;
    height: 60px;
  }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
  #hero {
    padding: 100px 0 40px;
    min-height: 100vh;
    height: auto;
  }

  #hero h1 {
    font-size: 32px;
  }

  #hero h1 span {
    font-size: 20px;
  }

  #hero h2 {
    font-size: 14px;
    margin: 10px 0;
  }

  #hero .btns {
    margin-top: 20px;
  }

  .line-container {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.section-title {
  padding-bottom: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "PT Serif", serif;
  color: #3b82f6;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

body.light-mode .section-title p {
  color: #1e3a8a;
}

body.light-mode .section-title h2 {
  color: #3b82f6;
}

/* Improved text readability for light mode */
body.light-mode p {
  color: #4a5568 !important;
}

body.light-mode .about-text p,
body.light-mode .service-card p,
body.light-mode .timeline-content p,
body.light-mode .testimonial-card p,
body.light-mode .faq-answer p,
body.light-mode .contact-content p {
  color: #4a5568 !important;
}

/* Increased font sizes for better readability */
p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  p {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 15px;
  }

  .section-title p {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# About Section - Modern Redesign
--------------------------------------------------------------*/
.about-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
}

body.light-mode .about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

/* Mission Banner */
.mission-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(30, 58, 138, 0.2)
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
}

body.light-mode .mission-banner {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(59, 130, 246, 0.15)
  );
  border: 1px solid rgba(30, 58, 138, 0.3);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon i {
  font-size: 36px;
  color: white;
}

.mission-content h3 {
  color: #3b82f6;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

body.light-mode .mission-content h3 {
  color: #1e3a8a;
}

.mission-content p {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

body.light-mode .mission-content p {
  color: #4a5568;
}

/* About Text Block */
.about-text-block {
  margin-bottom: 50px;
}

.about-text-block h3 {
  color: #3b82f6;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

body.light-mode .about-text-block h3 {
  color: #1e3a8a;
}

.about-text-block p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 17px;
}

body.light-mode .about-text-block p {
  color: #4a5568;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-text h3 {
  color: #3b82f6;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

body.light-mode .about-text h3 {
  color: #1e3a8a;
}

.about-text p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

body.light-mode .about-text p {
  color: #4a5568;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

body.light-mode .expertise-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.expertise-item:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

body.light-mode .expertise-item:hover {
  border-color: #1e3a8a;
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
}

body.light-mode .expertise-icon {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.expertise-content h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

body.light-mode .expertise-content h4 {
  color: #2d3748;
}

.expertise-content p {
  color: #999;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

body.light-mode .expertise-content p {
  color: #718096;
}

@media (max-width: 1200px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .about-text-block h3 {
    font-size: 26px;
  }
}

.stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

body.light-mode .stat-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

body.light-mode .stat-card:hover {
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
  line-height: 1;
}

body.light-mode .stat-number {
  color: #1e3a8a;
}

.stat-label {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.light-mode .stat-label {
  color: #718096;
}

/*--------------------------------------------------------------
# Services Section - Modern Redesign
--------------------------------------------------------------*/
.services-section {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

body.light-mode .services-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services-showcase {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Featured Service Card */
.featured-service-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(30, 58, 138, 0.15)
  );
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 30px;
  padding: 60px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

body.light-mode .featured-service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.95)
  );
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.12);
}

.featured-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}

.featured-service-bg {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.featured-service-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-badge i {
  font-size: 12px;
}

.featured-service-content h3 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

body.light-mode .featured-service-content h3 {
  color: #1e3a8a;
}

.featured-service-content > p {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

body.light-mode .featured-service-content > p {
  color: #4a5568;
}

.featured-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 15px;
}

body.light-mode .spec-item {
  color: #4a5568;
}

.spec-item i {
  color: #3b82f6;
  font-size: 18px;
  width: 24px;
}

body.light-mode .spec-item i {
  color: #1e3a8a;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 16px 32px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-cta:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  color: white;
}

.featured-cta i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.featured-cta:hover i {
  transform: translateX(5px);
}

.featured-service-icon {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(30, 58, 138, 0.3)
  );
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featured-service-icon i {
  font-size: 70px;
  color: #3b82f6;
}

body.light-mode .featured-service-icon i {
  color: #1e3a8a;
}

/* Services Grid New */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-card-new {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 35px;
  transition: all 0.3s ease;
  cursor: pointer;
}

body.light-mode .service-card-new {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(30, 58, 138, 0.15);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.service-card-new:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(10px);
}

body.light-mode .service-card-new:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(30, 58, 138, 0.3);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon i {
  font-size: 28px;
  color: white;
}

.service-card-content {
  flex: 1;
}

.service-card-content h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

body.light-mode .service-card-content h4 {
  color: #2d3748;
}

.service-card-content p {
  color: #888;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

body.light-mode .service-card-content p {
  color: #718096;
}

.service-card-arrow {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card-arrow i {
  color: #3b82f6;
  font-size: 18px;
}

.service-card-new:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .featured-service-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .featured-service-content {
    max-width: 100%;
  }

  .featured-specs {
    justify-items: center;
  }

  .featured-service-icon {
    order: -1;
    margin-bottom: 30px;
    width: 140px;
    height: 140px;
  }

  .featured-service-icon i {
    font-size: 50px;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .featured-service-content h3 {
    font-size: 32px;
  }

  .featured-specs {
    grid-template-columns: 1fr;
  }
}

/* Keep old styles for compatibility */
.service-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-featured {
  width: 100%;
}

.service-card.featured {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

body.light-mode .service-card.featured {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
}

.service-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

body.light-mode .service-card.featured:hover {
  box-shadow: 0 30px 60px rgba(30, 58, 138, 0.2);
}

.service-card.featured .service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  flex-shrink: 0;
}

body.light-mode .service-card.featured .service-icon {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.service-card.featured .service-content h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
}

body.light-mode .service-card.featured .service-content h3 {
  color: #2d3748;
}

.service-card.featured .service-content p {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

body.light-mode .service-card.featured .service-content p {
  color: #4a5568;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-features li {
  color: #3b82f6;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.light-mode .service-features li {
  color: #1e3a8a;
}

.service-features li::before {
  content: "✓";
  font-weight: bold;
}

.service-cta {
  color: #3b82f6;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

body.light-mode .service-cta {
  color: #1e3a8a;
}

.service-cta:hover {
  color: #fff;
  gap: 15px;
}

body.light-mode .service-cta:hover {
  color: #1e40af;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

body.light-mode .service-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

body.light-mode .service-card:hover {
  border-color: #1e3a8a;
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

body.light-mode .service-card .service-icon {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.service-card .service-content h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

body.light-mode .service-card .service-content h4 {
  color: #2d3748;
}

.service-card .service-content p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

body.light-mode .service-card .service-content p {
  color: #718096;
}

@media (max-width: 758px) {
  .service-card.featured {
    flex-direction: column;
    padding: 40px 30px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Workflow Section - Modern Redesign
--------------------------------------------------------------*/
.workflow-section {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.75) 100%),
    url("../img/2.png") center center / cover no-repeat;
  position: relative;
}

body.light-mode .workflow-section {
  background:
    linear-gradient(
      135deg,
      rgba(237, 242, 247, 0.85) 0%,
      rgba(226, 232, 240, 0.85) 100%
    ),
    url("../img/2.png") center center / cover no-repeat;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

body.light-mode .process-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.process-item:hover {
  transform: translateX(10px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

body.light-mode .process-item:hover {
  border-color: #1e3a8a;
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

/* Fixed border issue - removed the weird top border */
.process-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: linear-gradient(to bottom, #3b82f6, #1e3a8a);
  border-radius: 4px;
}

body.light-mode .process-item::before {
  background: linear-gradient(to bottom, #1e3a8a, #1e40af);
}

/* Fixed process numbers visibility */
.process-number {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body.light-mode .process-number {
  color: #2d3748;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.process-content {
  flex: 1;
}

.process-content h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

body.light-mode .process-content h4 {
  color: #2d3748;
}

.process-content p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

body.light-mode .process-content p {
  color: #4a5568;
}

.process-details {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.process-details span {
  background: rgba(255, 255, 255, 0.1);
  color: #f5f9ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

body.light-mode .process-details span {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
  border: 1px solid rgba(30, 58, 138, 0.3);
}

@media (max-width: 758px) {
  .process-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
    padding: 30px 25px;
  }
  .process-number {
    text-align: center !important;
  }
  .process-item::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 4px 4px 0 0;
  }

  .process-details {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Testimonials Section - Modern Redesign
--------------------------------------------------------------*/
.testimonials-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body.light-mode .testimonials-section {
  background: linear-gradient(135deg, #e2e8f0 0%, #edf2f7 100%);
}

.testimonials-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.testimonial-highlight {
  display: flex;
  align-items: center;
}

.testimonial-card.highlight {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

body.light-mode .testimonial-card.highlight {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
}

.testimonial-card.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

body.light-mode .testimonial-card.highlight:hover {
  box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
}

.quote-icon {
  font-size: 48px;
  color: #3b82f6;
  margin-bottom: 20px;
  opacity: 0.3;
}

body.light-mode .quote-icon {
  color: #1e3a8a;
}

.testimonial-card.highlight p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

body.light-mode .testimonial-card.highlight p {
  color: #2d3748;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #3b82f6;
}

body.light-mode .client-avatar {
  border-color: #1e3a8a;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h5 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
}

body.light-mode .client-details h5 {
  color: #2d3748;
}

.client-details span {
  color: #3b82f6;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

body.light-mode .client-details span {
  color: #1e3a8a;
}

.client-company {
  color: #ccc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.light-mode .client-company {
  color: #718096;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

body.light-mode .testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.light-mode .testimonial-card:hover {
  border-color: #1e3a8a;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.testimonial-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

body.light-mode .testimonial-card p {
  color: #4a5568;
}

.testimonial-card .client-info {
  justify-content: space-between;
  align-items: center;
}

.testimonial-card .client-details {
  flex: 1;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #3b82f6;
  font-size: 14px;
}

body.light-mode .rating i {
  color: #1e3a8a;
}

@media (max-width: 992px) {
  .testimonials-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/*--------------------------------------------------------------
# FAQ Section - Modern Redesign
--------------------------------------------------------------*/
.faq-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body.light-mode .faq-section {
  background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

body.light-mode .faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.light-mode .faq-item:hover {
  border-color: #1e3a8a;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

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

.faq-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

body.light-mode .faq-header:hover {
  background: rgba(30, 58, 138, 0.05);
}

.faq-header h4 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  flex: 1;
}

body.light-mode .faq-header h4 {
  color: #2d3748;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

body.light-mode .faq-toggle {
  background: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: #3b82f6;
  color: #000;
}

body.light-mode .faq-item.active .faq-toggle {
  background: #1e3a8a;
  color: #fff;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px 30px;
  max-height: 500px;
}

.faq-answer p {
  color: #ccc;
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

body.light-mode .faq-answer p {
  color: #4a5568;
}

/*--------------------------------------------------------------
# Contact Section - Modern Redesign
--------------------------------------------------------------*/
.contact-section {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 10, 10, 0.7) 100%),
    url("../img/3.png") center center / cover no-repeat;
  position: relative;
}

body.light-mode .contact-section {
  background:
    linear-gradient(
      135deg,
      rgba(226, 232, 240, 0.82) 0%,
      rgba(237, 242, 247, 0.82) 100%
    ),
    url("../img/3.png") center center / cover no-repeat;
}

/* New Contact Wrapper */
.contact-wrapper {
  margin-top: 50px;
}

.contact-main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(59, 130, 246, 0.05)
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 30px;
  overflow: hidden;
}

body.light-mode .contact-main-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.9)
  );
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 25px 60px rgba(30, 58, 138, 0.15);
}

.contact-left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-intro h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

body.light-mode .contact-intro h3 {
  color: #1e3a8a;
}

.contact-intro p {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

body.light-mode .contact-intro p {
  color: #4a5568;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(30, 58, 138, 0.3)
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-feature .feature-icon i {
  font-size: 24px;
  color: #3b82f6;
}

body.light-mode .contact-feature .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(59, 130, 246, 0.15)
  );
}

body.light-mode .contact-feature .feature-icon i {
  color: #1e3a8a;
}

.contact-feature .feature-text h5 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

body.light-mode .contact-feature .feature-text h5 {
  color: #2d3748;
}

.contact-feature .feature-text p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

body.light-mode .contact-feature .feature-text p {
  color: #718096;
}

.contact-right {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  padding: 60px;
  display: flex;
  align-items: center;
}

body.light-mode .contact-right {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.contact-cta-card {
  width: 100%;
}

.contact-cta-card h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

body.light-mode .contact-cta-card h4 {
  color: #2d3748;
}

.contact-cta-card > p {
  color: #888;
  font-size: 16px;
  margin-bottom: 30px;
}

body.light-mode .contact-cta-card > p {
  color: #718096;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #006699);
}

.contact-btn.email {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

.contact-btn.phone {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.contact-btn:hover {
  transform: translateX(8px);
  color: white;
}

.contact-btn.whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contact-btn.telegram:hover {
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.contact-btn.email:hover {
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.contact-btn.phone:hover {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.contact-btn > i:first-child {
  font-size: 24px;
  width: 30px;
  text-align: center;
}

.contact-btn > i:last-child {
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-btn:hover > i:last-child {
  opacity: 1;
  transform: translateX(0);
}

.contact-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-btn-text .btn-main {
  font-size: 16px;
  font-weight: 600;
}

.contact-btn-text .btn-sub {
  font-size: 13px;
  opacity: 0.85;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .response-time {
  background: rgba(30, 58, 138, 0.05);
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.response-time i {
  color: #3b82f6;
  font-size: 18px;
}

.response-time span {
  color: #888;
  font-size: 14px;
}

body.light-mode .response-time span {
  color: #718096;
}

@media (max-width: 992px) {
  .contact-main-card {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .contact-left,
  .contact-right {
    padding: 30px;
  }

  .contact-intro h3 {
    font-size: 28px;
  }
}

/* Keep old styles for compatibility */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center;
}

.contact-info {
  /* display: flex; */
  gap: 40px;
}

.contact-header h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

body.light-mode .contact-header h3 {
  color: #2d3748;
}

.contact-header p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
}

body.light-mode .contact-header p {
  color: #4a5568;
}

.contact-stats {
  display: flex;
  gap: 40px;
}

.contact-stat {
  text-align: center;
}

.contact-stat .stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
  line-height: 1;
}

body.light-mode .contact-stat .stat-value {
  color: #1e3a8a;
}

.contact-stat .stat-label {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.light-mode .contact-stat .stat-label {
  color: #718096;
}

.contact-actions {
  display: flex;
  align-items: center;
}

.action-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
}

body.light-mode .action-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
}

.action-content h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

body.light-mode .action-content h4 {
  color: #2d3748;
}

.action-content p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

body.light-mode .action-content p {
  color: #4a5568;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.email-btn {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
  color: white;
  background: linear-gradient(135deg, #128c7e, #0da65e);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.email-btn:hover {
  color: white;
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.action-btn i {
  font-size: 28px;
  width: 40px;
  text-align: center;
}

.btn-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.btn-title {
  font-size: 18px;
  font-weight: 600;
}

.btn-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.action-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .action-note {
  color: #718096;
  background: rgba(30, 58, 138, 0.05);
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.action-note i {
  color: #3b82f6;
  font-size: 16px;
}

body.light-mode .action-note i {
  color: #1e3a8a;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-stats {
    justify-content: center;
    gap: 30px;
  }

  .action-buttons {
    gap: 15px;
  }

  .action-btn {
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .contact-header h3 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-stat .stat-value {
    font-size: 36px;
  }

  .action-card {
    padding: 30px 25px;
  }

  .action-btn {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .btn-content {
    gap: 2px;
  }
}

/*--------------------------------------------------------------
# Footer - Landing Page Style
--------------------------------------------------------------*/
.footer-landing {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 60px 0 0;
  position: relative;
}

.footer-landing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a, #3b82f6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-landing .footer-logo {
  max-width: 160px;
  height: auto;
  animation: logoGlow 3s ease-in-out infinite;
}

.footer-landing .footer-logo:hover {
  animation: logoGlowHover 1.5s ease-in-out infinite;
}

.footer-brand p {
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 35px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #3b82f6;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-landing .footer-social {
  display: flex;
  gap: 15px;
  margin: 0;
}

.footer-landing .footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-landing .footer-social a:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
  transform: translateY(-5px);
}

.footer-landing .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: #666;
  font-size: 14px;
}

.footer-contact-mini {
  display: flex;
  gap: 30px;
}

.footer-contact-mini a {
  color: #888;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-contact-mini a i {
  color: #3b82f6;
}

.footer-contact-mini a:hover {
  color: #3b82f6;
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer-landing {
    padding: 50px 0 0;
  }

  .footer-content {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-nav {
    gap: 8px 25px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-landing .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 0 25px;
  }

  .footer-contact-mini {
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-mini a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-landing .footer-logo {
    max-width: 130px;
  }

  .footer-brand p {
    font-size: 12px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-landing .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* Footer Light Mode */
body.light-mode .footer-landing {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

body.light-mode .footer-landing::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
}

body.light-mode .footer-brand p {
  color: #64748b;
}

body.light-mode .footer-nav a {
  color: #334155;
}

body.light-mode .footer-nav a:hover {
  color: #3b82f6;
}

body.light-mode .footer-landing .footer-social a {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #334155;
}

body.light-mode .footer-landing .footer-social a:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

body.light-mode .footer-landing .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .footer-copyright {
  color: #64748b;
}

body.light-mode .footer-contact-mini a {
  color: #475569;
}

body.light-mode .footer-contact-mini a:hover {
  color: #3b82f6;
}

body.light-mode .footer-landing .footer-logo {
  filter: drop-shadow(0 0 8px rgba(30, 58, 138, 0.3));
}

body.light-mode .footer-landing .footer-logo:hover {
  filter: drop-shadow(0 0 15px rgba(30, 58, 138, 0.5));
}

/*--------------------------------------------------------------
# Footer - Fixed with White Text (Both Modes) - Legacy
--------------------------------------------------------------*/
.footer-modern {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
  width: 100%;
  overflow: hidden;
}

/* Ensure all footer text stays white in both modes */
.footer-modern,
.footer-modern *:not(.bi):not(.bx) {
  color: white !important;
}

.footer-modern p,
.footer-modern a,
.footer-modern span,
.footer-modern li,
.footer-modern h4,
.footer-modern .footer-info p,
.footer-modern .footer-about p,
.footer-modern .footer-links a,
.footer-modern .copyright {
  color: white !important;
}

/* Specific override for light mode */
body.light-mode .footer-modern,
body.light-mode .footer-modern p,
body.light-mode .footer-modern a,
body.light-mode .footer-modern span,
body.light-mode .footer-modern li,
body.light-mode .footer-modern h4,
body.light-mode .footer-modern .footer-info p,
body.light-mode .footer-modern .footer-about p,
body.light-mode .footer-modern .footer-links a,
body.light-mode .footer-modern .copyright {
  color: white !important;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 40px 0 30px;
  border: none;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 18px;
}

.social-circle:hover {
  background: #3b82f6;
  transform: translateY(-3px);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-links ul li i {
  color: #3b82f6;
  margin-right: 10px;
  font-size: 12px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #3b82f6;
  margin-left: 5px;
}

.footer-about p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-whatsapp {
  margin-top: 20px;
}

.whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-footer:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: white;
}

/* Mobile Footer Alignment - Left Aligned */
@media (max-width: 768px) {
  .footer-modern .row > div {
    text-align: left !important;
  }

  .footer-info,
  .footer-links,
  .footer-about {
    text-align: left !important;
  }

  .footer-links ul li {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-modern .container .row {
    text-align: left;
  }
}

/* Ensure all columns are left aligned on mobile */
@media (max-width: 768px) {
  .footer-modern .col-lg-4,
  .footer-modern .col-lg-2,
  .footer-modern .col-lg-3,
  .footer-modern .col-md-6 {
    text-align: left;
  }
}
/*--------------------------------------------------------------
# Mobile Optimizations - Complete
--------------------------------------------------------------*/

/* General Mobile Adjustments */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 12px;
  }

  .section-title p {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 50px 0;
  }

  .section-title p {
    font-size: 24px;
  }
}

/* About Section Mobile */
@media (max-width: 576px) {
  .mission-banner {
    padding: 25px;
    gap: 20px;
  }

  .mission-icon {
    width: 60px;
    height: 60px;
  }

  .mission-icon i {
    font-size: 26px;
  }

  .mission-content h3 {
    font-size: 18px;
  }

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

  .about-text-block h3 {
    font-size: 22px;
  }

  .about-text-block p {
    font-size: 15px;
  }

  .expertise-item {
    padding: 25px 20px;
  }

  .expertise-icon {
    width: 55px;
    height: 55px;
  }

  .expertise-icon i {
    font-size: 22px;
  }

  .expertise-content h4 {
    font-size: 16px;
  }
}

/* Services Section Mobile */
@media (max-width: 768px) {
  .featured-service-card {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .featured-service-content h3 {
    font-size: 28px;
  }

  .featured-service-content > p {
    font-size: 15px;
  }

  .featured-specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spec-item {
    justify-content: center;
    font-size: 14px;
  }

  .featured-cta {
    padding: 14px 28px;
    font-size: 15px;
  }

  .featured-service-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
  }

  .featured-service-icon i {
    font-size: 40px;
  }

  .service-card-new {
    padding: 22px 20px;
    gap: 18px;
  }

  .service-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
  }

  .service-card-icon i {
    font-size: 22px;
  }

  .service-card-content h4 {
    font-size: 17px;
  }

  .service-card-content p {
    font-size: 13px;
  }

  .service-card-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .featured-service-card {
    padding: 30px 20px;
  }

  .featured-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .featured-service-content h3 {
    font-size: 24px;
  }

  .featured-service-icon {
    width: 80px;
    height: 80px;
  }

  .featured-service-icon i {
    font-size: 32px;
  }
}

/* Workflow Section Mobile */
@media (max-width: 576px) {
  .process-item {
    padding: 25px 20px;
  }

  .process-number {
    font-size: 36px;
  }

  .process-content h4 {
    font-size: 18px;
  }

  .process-content p {
    font-size: 14px;
  }

  .process-details {
    flex-wrap: wrap;
  }

  .process-details span {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* Documents/FAQ Section Mobile */
@media (max-width: 576px) {
  .faq-header {
    padding: 20px;
  }

  .faq-header h4 {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-header h4 i {
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-toggle i {
    font-size: 16px;
  }
}

/* Contact Section Mobile */
@media (max-width: 576px) {
  .contact-intro h3 {
    font-size: 24px;
  }

  .contact-intro p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-features {
    gap: 20px;
  }

  .contact-feature .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .contact-feature .feature-icon i {
    font-size: 20px;
  }

  .contact-feature .feature-text h5 {
    font-size: 15px;
  }

  .contact-feature .feature-text p {
    font-size: 13px;
  }

  .contact-cta-card h4 {
    font-size: 22px;
  }

  .contact-btn {
    padding: 15px 18px;
    gap: 12px;
  }

  .contact-btn > i:first-child {
    font-size: 20px;
  }

  .contact-btn-text .btn-main {
    font-size: 14px;
  }

  .contact-btn-text .btn-sub {
    font-size: 12px;
  }

  .contact-btn > i:last-child {
    display: none;
  }

  .response-time {
    padding: 12px 15px;
  }

  .response-time span {
    font-size: 13px;
  }
}

/* Footer Mobile */
@media (max-width: 576px) {
  .footer-modern {
    padding: 50px 0 25px;
  }

  .footer-info p {
    font-size: 14px;
  }

  .footer-links h4,
  .footer-about h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  .footer-about p {
    font-size: 14px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .copyright {
    font-size: 13px;
  }
}

/* Fix for touch devices - larger tap targets */
@media (max-width: 768px) {
  .nav-link,
  .action-btn,
  .contact-btn,
  .featured-cta,
  .service-card-new {
    min-height: 44px;
  }

  .mobile-nav-toggle {
    font-size: 28px;
    padding: 10px;
  }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

/*--------------------------------------------------------------
# Contact Form Section
--------------------------------------------------------------*/
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(30, 58, 138, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

body.light-mode .contact-form-section {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
}

body.light-mode .contact-form-section::before {
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(30, 58, 138, 0.08) 0%,
      transparent 50%
    );
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}

.contact-form-card {
  background: linear-gradient(
    145deg,
    rgba(30, 58, 138, 0.12),
    rgba(17, 24, 39, 0.9)
  );
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.light-mode .contact-form-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.9)
  );
  border: 1px solid rgba(30, 58, 138, 0.2);
  box-shadow:
    0 25px 60px rgba(30, 58, 138, 0.12),
    0 0 80px rgba(59, 130, 246, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header .form-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoPulse 3s ease-in-out infinite;
}

.form-header .form-logo::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.4),
    rgba(30, 58, 138, 0.5)
  );
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.6;
  animation: formLogoGlow 3s ease-in-out infinite;
}

.form-header .form-logo img {
  width: 85px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
  transition: all 0.3s ease;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes formLogoGlow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

body.light-mode .form-header .form-logo::before {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.3),
    rgba(59, 130, 246, 0.4)
  );
}

body.light-mode .form-header .form-logo img {
  filter: drop-shadow(0 0 15px rgba(30, 58, 138, 0.3));
}

.form-header h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

body.light-mode .form-header h3 {
  color: #1e3a8a;
}

.form-header p {
  color: #9ca3af;
  font-size: 16px;
}

body.light-mode .form-header p {
  color: #64748b;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-form label i {
  color: #3b82f6;
  font-size: 16px;
}

body.light-mode .contact-form label {
  color: #374151;
}

body.light-mode .contact-form label i {
  color: #1e3a8a;
}

.contact-form label .required {
  color: #ef4444;
  font-size: 14px;
}

.contact-form label .optional {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(30, 58, 138, 0.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 58, 138, 0.2);
  color: #1f2937;
}

body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder {
  color: #9ca3af;
}

body.light-mode .contact-form input:focus,
body.light-mode .contact-form textarea:focus {
  border-color: #1e3a8a;
  background: #fff;
  box-shadow: 0 0 20px rgba(30, 58, 138, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border: none;
  border-radius: 15px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

body.light-mode .submit-btn {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

body.light-mode .submit-btn:hover {
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.35);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit-btn .spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Form Status Messages */
.form-status {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
}

.form-status .status-success,
.form-status .status-error {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.form-status.success .status-success {
  display: flex;
  color: #10b981;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-status.error .status-error {
  display: flex;
  color: #ef4444;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-status i {
  font-size: 20px;
}

body.light-mode .form-status.success {
  background: rgba(16, 185, 129, 0.15);
}

body.light-mode .form-status.error {
  background: rgba(239, 68, 68, 0.15);
}

.form-consent {
  margin: 20px 0;
  text-align: center;
}

.form-consent p {
  color: #9ca3af;
  font-size: 13px;
  margin: 0;
}

.form-consent a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-consent a:hover {
  color: #60a5fa;
}

body.light-mode .form-consent p {
  color: #64748b;
}

body.light-mode .form-consent a {
  color: #1e3a5f;
}

body.light-mode .form-consent a:hover {
  color: #3b82f6;
}

.form-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
}

.security-note i {
  color: #10b981;
  font-size: 18px;
}

body.light-mode .security-note {
  color: #64748b;
}

body.light-mode .form-footer {
  border-top-color: rgba(30, 58, 138, 0.15);
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-card {
    padding: 35px 25px;
    border-radius: 25px;
  }

  .form-header .form-logo {
    width: 80px;
    height: 80px;
  }

  .form-header .form-logo img {
    width: 65px;
  }

  .form-header h3 {
    font-size: 24px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 18px;
  }

  .submit-btn {
    padding: 16px 25px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
  min-height: 200px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.breadcrumbs ol li {
  color: #9ca3af;
  font-size: 14px;
}

.breadcrumbs ol li + li::before {
  content: "/";
  padding-right: 10px;
  color: #6b7280;
}

.breadcrumbs ol li a {
  color: #3b82f6;
  transition: color 0.3s ease;
}

.breadcrumbs ol li a:hover {
  color: #60a5fa;
}

body.light-mode .breadcrumbs {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
}

body.light-mode .breadcrumbs h2 {
  color: #1e3a5f;
}

body.light-mode .breadcrumbs ol li {
  color: #64748b;
}

body.light-mode .breadcrumbs ol li + li::before {
  color: #94a3b8;
}

body.light-mode .breadcrumbs ol li a {
  color: #1e3a5f;
}

body.light-mode .breadcrumbs ol li a:hover {
  color: #3b82f6;
}

/*--------------------------------------------------------------
# Inner Pages & Legal Pages
--------------------------------------------------------------*/
.inner-page {
  padding: 60px 0;
}

.legal-page {
  padding: 60px 0 100px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 50px;
}

.legal-content .last-updated {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 35px 0 15px;
  padding-top: 15px;
}

.legal-content h3:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.legal-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
  margin: 25px 0 12px;
}

.legal-content p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

.legal-content ul {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.legal-content ul.contact-list {
  list-style: none;
  padding-left: 0;
}

.legal-content ul.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.legal-content ul.contact-list li i {
  color: #3b82f6;
  font-size: 18px;
}

.legal-content ul.contact-list li a {
  color: #3b82f6;
  transition: color 0.3s ease;
}

.legal-content ul.contact-list li a:hover {
  color: #60a5fa;
}

.legal-content a {
  color: #3b82f6;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #60a5fa;
}

body.light-mode .legal-content {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(30, 58, 138, 0.15);
}

body.light-mode .legal-content .last-updated {
  color: #64748b;
  border-bottom-color: rgba(30, 58, 138, 0.1);
}

body.light-mode .legal-content h3 {
  color: #1e3a5f;
}

body.light-mode .legal-content h4 {
  color: #334155;
}

body.light-mode .legal-content p,
body.light-mode .legal-content ul {
  color: #475569;
}

body.light-mode .legal-content a {
  color: #1e3a5f;
}

body.light-mode .legal-content a:hover {
  color: #3b82f6;
}

/*--------------------------------------------------------------
# Footer Legal Links
--------------------------------------------------------------*/
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 15px 0;
}

.footer-legal a {
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #3b82f6;
}

body.light-mode .footer-legal a {
  color: #64748b;
}

body.light-mode .footer-legal a:hover {
  color: #1e3a5f;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 120px 0 30px;
    min-height: auto;
  }

  .breadcrumbs h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .breadcrumbs .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }

  .legal-content {
    padding: 30px 20px;
    margin: 0 10px;
    border-radius: 15px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-content h4 {
    font-size: 16px;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 14px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
