/**
* Template Name: Softdap
* Template URL: https://bootstrapmade.com/softland-bootstrap-app-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Outfit", sans-serif;
  /* Updated to Outfit */
  --nav-font: "Outfit", sans-serif;
  /* Updated to Outfit */
}

/* ... existing code ... */

/* Header CTA Button */
.btn-getstarted {
  background: var(--accent-color);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(85, 155, 204, 0.4);
}

.btn-getstarted:hover {
  background: #4a90e2;
  box-shadow: 0 6px 20px rgba(85, 155, 204, 0.6);
  transform: translateY(-2px);
  color: white;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #0b1120;
  /* Dark Premium Background */
  /* Background color for the entire website, including individual sections */
  --default-color: #ffffff;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #559bcc;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1e293b;
  /* Dark Surface */
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #004272;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1e293b;
  /* Surface Dark */
  --surface-color: #0b1120;
}

.dark-background {
  --background-color: #0b1120;
  /* Deep Dark */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===============================
   Services Pages (Clean & Premium)
================================ */

.service-page {
  padding: 110px 20px;
  background: var(--background-color);
  color: var(--default-color);
}

/* HERO */
.service-hero {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.service-hero h1 {
  font-size: 44px;
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 18px;
}

.service-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--default-font);
}

/* GRID */
.service-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.service-box {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  border-color: rgba(85, 155, 204, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ICON */
.service-box .icon {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 14px;
}

/* CARD TEXT */
.service-box h3 {
  font-size: 20px;
  font-family: var(--heading-font);
  font-weight: 500;
  margin-bottom: 8px;
}

.service-box p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

/* CTA */
.service-cta {
  text-align: center;
  margin-top: 80px;
}

.service-cta .btn-primary {
  padding: 14px 38px;
  border-radius: 50px;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--nav-font);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(85, 155, 204, 0.45);
  transition: all 0.3s ease;
}

.service-cta .btn-primary:hover {
  background: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(85, 155, 204, 0.6);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  /* White Background Always */
  --nav-color: #2d465e;
  /* Theme Dark */
  --nav-hover-color: #004272;
  --heading-color: #2d465e;
  color: var(--default-color);
  padding: 8px 0;
  /* Reduced padding from 15px */
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for white header */
}

.header .logo h1 {
  font-size: 28px;
  /* Slightly smaller for balance */
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -1px;
}

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

.navmenu a {
  color: #0052a5;
  position: relative;
  padding: 5px 0;
  /* Balanced padding */
  margin: 0 18px;
  /* Slightly more space between links */
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Enhanced Hover: Color + Glow */
.navmenu a:hover,
.navmenu a.active {
  color: #014e9b;
    text-shadow: 0 0 15px rgba(85, 155, 204, 0.4);
  /* Glow effect */
}

/* Improved Sliding Underline Animation */
.navmenu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  bottom: 0px;
  left: 50%;
  /* Center start */
  background: var(--accent-color);
  transition: width 0.3s ease, left 0.3s ease;
  -webkit-transition: width 0.3s ease, left 0.3s ease;
  box-shadow: 0 0 8px var(--accent-color);
  /* Glowing line */
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 100%;
  left: 0;
}

.mobile-nav-toggle {
  color: var(--nav-color);
}


.action-buttons {
    display: flex;
    gap: 12px; /* space between buttons */
    align-items: center;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    /* add margin-left if gap alone doesn't work */
    margin-left: 0;
}


/* View */
.action-btn.view {
    background: rgba(85, 155, 204, 0.12);
    color: #559bcc;
}
.action-btn.view:hover {
    background: #559bcc;
    color: #fff;
    box-shadow: 0 6px 18px rgba(85, 155, 204, 0.35);
}

/* Delete */
.action-btn.delete {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}
.action-btn.delete:hover {
    background: #ff6b6b;
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
}

/*--------------------------------------------------------------
# Portfolio Section ("Visionary Projects")
--------------------------------------------------------------*/
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  /* Fixed height rows */
  gap: 24px;
}

/* Item Spanning Logic */
.project-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  grid-column: span 4;
  /* Default to 3 columns */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.hero-item {
  grid-column: span 8;
  /* Hero takes 2/3 width */
  grid-row: span 2;
  /* Full height */
}

.wide-item {
  grid-column: span 4;
}

/* For smaller screens, adjust grid */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-rows: auto;
  }

  .project-item,
  .hero-item,
  .wide-item {
    grid-column: span 12;
    /* Full width on mobile */
    height: 350px;
  }
}

.project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.project-item:hover .project-bg {
  transform: scale(1.1);
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5), transparent);
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-item:hover .project-content {
  transform: translateY(0);
}

.badge-tech {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  display: inline-block;
}

.project-content h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.project-item:hover .project-content p {
  opacity: 1;
  transform: translateY(0);
}

.btn-case-study {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.btn-case-study i {
  margin-left: 8px;
  transition: 0.3s;
}

.project-item:hover .btn-case-study {
  opacity: 1;
}

.project-item:hover .btn-case-study:hover {
  color: var(--accent-color);
}

.project-item:hover .btn-case-study:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Process Section (Timeline Redesign)
--------------------------------------------------------------*/
.process-timeline {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  /* Applied Font */
}

/* Connecting Line (Absolute) */
.timeline-line {
  position: absolute;
  top: 50%;
  /* Align with the icons */
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 1;
}

/* Animated Pulse on Line (Pseudo-element) */
.timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: flowLine 3s linear infinite;
}

@keyframes flowLine {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  /* Glass Effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  /* Sit above the line */
  transition: all 0.4s ease;
  height: 100%;
  /* Floating Animation */
  animation: floatCard 6s ease-in-out infinite;
}

/* Stagger animations for cards */
.col-lg-4:nth-child(1) .process-card {
  animation-delay: 0s;
}

.col-lg-4:nth-child(2) .process-card {
  animation-delay: 2s;
}

.col-lg-4:nth-child(3) .process-card {
  animation-delay: 4s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
}

.step-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px auto;
  background: var(--surface-color);
  /* Match dark bg */
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  /* Top most for the icon */
  transition: 0.4s;
}

.process-card:hover .step-icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
  /* Kinetic movement on hover */
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 36px;
  color: var(--accent-color);
  transition: 0.3s;
}

.process-card:hover .step-icon {
  color: #fff;
}

.process-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.process-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Breadcrumbs Styling */
.breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs ul li {
  display: flex;
  align-items: center;
}

.breadcrumbs ul li+li::before {
  content: "/";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs ul li a {
  color: white;
  transition: 0.3s;
}

.breadcrumbs ul li a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Timeline Finisher Node Styling */
.timeline-finish-wrapper {
  position: relative;
  z-index: 2;
}

.timeline-finish-node {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  animation: pulseScale 2s infinite;
}

.timeline-finish-node .finish-icon {
  font-size: 20px;
  margin-right: 10px;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 155, 204, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(85, 155, 204, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 155, 204, 0);
  }
}



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

.header .logo img {
  max-height: 58px;
  margin-right: 8px;
  width: auto;
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: #ffffff;
  /* White Background */
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  --nav-color: #2d465e;
  /* Theme Dark for links */
  --nav-hover-color: #004272;
  /* Accent for hover */
  --heading-color: #2d465e;
  /* Theme Dark for logo */
}

/* Ensure links use the new variables on scroll */
.scrolled .navmenu a {
  color: var(--nav-color);
}

.scrolled .navmenu a:hover,
.scrolled .navmenu a.active {
  color:  #004272;
}

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

.scrolled .mobile-nav-toggle {
  color: var(--nav-color);
}

/* --- Tech Card UI Styling (UPDATED) --- */

.tech-card-item {
  /* Background colour jo pehle tha (perfect) */
  background: #002d5a;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  height: 100%;
  /* Change to 100% to fill column */
  min-height: 350px;
  /* Ensure enough space for button */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
  color: white;
}

.tech-card-item .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  /* Text color white */
  color: white;
}

/* 2. TEXT COLOR: Paragraph ko light grey */
.tech-card-item p {
  /* Light color for better readability on dark background */
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 20px;
}

/* 2. ICON COLOR: Icon ko light/theme color */
.tech-card-item .icon-wrap i {
  font-size: 48px;
  color: #4a90e2;
  transition: 0.3s;
}

/* CTA Button Styling */
.btn-tech {
  margin-top: auto;
  /* Push to bottom */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}

.btn-tech i {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-tech:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 5px 15px rgba(85, 155, 204, 0.4);
}

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

/* --- Attractive Hover Effect (UPDATED) --- */
.tech-card-item:hover {
  background: #003a74;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #4a90e2;
}

.tech-card-item:hover .icon-wrap i {
  color: white;
}

/*--------------------------------------------------------------
# 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;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:  #004272;
  }

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

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

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

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

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

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

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

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

/* 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);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

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

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

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

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

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

@media (max-width: 1199px) {

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

.light-background {
  background-color: var(--surface-color);
}

.dark-background {
  background-color: var(--background-color);
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section (Carousel)
--------------------------------------------------------------*/
.hero {
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full Screen Height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay to darken background for text readability */
.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 4, 32, 0.9), rgba(2, 4, 32, 0.7), rgba(2, 4, 32, 0.4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  /* Ensure text is above overlay */
}

/* Typography & Animations */
.hero h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.hero .highlight-text {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero .highlight-text:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 5px;
  left: 0;
  background: rgba(85, 155, 204, 0.3);
  /* Accent color wash */
  z-index: -1;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  color: #ffffff;
  background: var(--accent-color);
  text-transform: uppercase;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: transparent;
  color: var(--accent-color);
}

.hero .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.hero .btn-outline-light:hover {
  background: white;
  color: var(--accent-color);
  border-color: white;
}

/* Swiper Animations (Triggered when slide is active) */
.hero-slide .animate-title,
.hero-slide .animate-text,
.hero-slide .animate-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.swiper-slide-active .animate-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active .animate-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.swiper-slide-active .animate-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Swiper Navigation Customization */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  color: var(--accent-color);
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* General Styling for the Section (Assuming a dark background like your image) */
.testimonial-section-container {
    background-color: #0d122b; /* Deep Navy Blue / Dark Background */
    color: #ffffff; /* White text for high contrast */
    padding: 80px 0;
}

/* Swiper Slide (The individual testimonial card container) */
.swiper-slide {
    display: flex;
    justify-content: center;
    text-align: center;
    /* Isse har testimonial centered rahega */
}

/* Testimonial Card Styling (The main content wrapper) */
.testimonial-card {
    /* Main card ki width ko control karein */
    max-width: 800px; 
    margin: 0 auto;
    padding: 40px 20px; 
    /* No shadow needed for this clean look */
}

/* Client Name Styling */
.testimonial-header h3 {
    font-size: 28px; /* Bara aur zyada visible name */
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff; 
}

/* Designation/Title Styling */
.testimonial-header h4 {
    font-size: 18px;
    font-weight: 400;
    color: #aeb4be; /* Thora light color taake name se alag lage */
    margin-bottom: 25px;
}

/* The Quote Text Container */
.testimonial-body {
    margin: 30px 0;
}

/* The Actual Quote Text */
.quote-text {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic; /* Quote ko stylish banane ke liye */
    max-width: 90%;
    margin: 0 auto;
}

/* Quote Icons (Bi-quote) Styling */
.quote-icon-left,
.quote-icon-right {
    font-size: 30px; 
    color: #4a69ff; /* Ek primary brand color (Blue) use karein */
    vertical-align: middle;
    /* Agar aap quote icons ko aur prominent karna chahte hain */
}

/* Star Rating Styling */
.rating-stars i {
    color: #ffc107; /* Yellow or Gold for stars */
    font-size: 20px; 
    margin: 0 2px;
}

/* Swiper Dots/Pagination (Agar aapke Swiper mein hai) */
.swiper-pagination-bullet {
    background: #4a69ff !important; /* Dots ka color */
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

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

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  height: 100%;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
}

.featured .card .img {
  position: relative;
  padding: 20px 20px 0 20px;
}

.featured .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 100%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.featured .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.featured .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.featured .card h2 a {
  color: var(--heading-color);
}

.featured .card h2 a:hover {
  color: var(--accent-color);
}

.featured .card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .steps-img img {
  max-width: 575px;
}

@media (max-width: 575px) {
  .cards .steps-img img {
    max-width: 100%;
  }
}

.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.1);
    border-radius: 25px;
    transition: none;
  }
}

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

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

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

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

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item {
  background: rgba(255, 255, 255, 0.05);
  /* Glass Dark */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

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

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: rgba(255, 255, 255, 0.05);
  /* Dark Card */
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pricing .pricing-item h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

/* Footer Styling */
#footer {
  background-color: #020420;
  /* Deepest Dark for Footer */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.faq .faq-container .faq-item.faq-active {
  background-color: rgba(255, 255, 255, 0.08);
  /* Active state lighter */
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  min-height: 0;
  color: rgba(255, 255, 255, 0.7);
  /* Improved readability */
  line-height: 1.6;
}

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

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  /* Centered visually with title */
  right: 25px;
  font-size: 18px;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--accent-color);
}

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

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

/* Fix Text Visibility for Dark Theme */
.testimonials .testimonial-item p {
  color: rgba(255, 255, 255, 0.9);
}

.pricing ul {
  color: rgba(255, 255, 255, 0.8);
}

.pricing h4 span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing .buy-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.faq .faq-container .faq-item .faq-content p {
  color: rgba(255, 255, 255, 0.8);
}

.faq .faq-container .faq-active {
  background-color: rgba(85, 155, 204, 0.1);
  /* Accent Tint */
  border-color: var(--accent-color);
}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: #fff;
}

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

.contact .php-email-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: #fff;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# About Page Redesign
--------------------------------------------------------------*/
.about-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 160px 0 100px 0;
  color: white;
  text-align: center;
  overflow: hidden;
  background-attachment: fixed;
  /* Parallax effect */
}

/* Abstract overlay */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(85, 155, 204, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(85, 155, 204, 0.1), transparent 50%),
    rgba(11, 17, 32, 0.95);
  /* Deep dark overlay */
  z-index: 1;
}

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

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.about-hero .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.about-card,
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: 0.4s;
}

.about-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

.about-card:hover,
.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-card i,
.feature-card i {
  font-size: 42px;
  color: var(--accent-color);
  margin-bottom: 25px;
  display: inline-block;
  background: rgba(85, 155, 204, 0.1);
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.about-card:hover i,
.feature-card:hover i {
  background: var(--accent-color);
  color: white;
  transform: rotateY(180deg);
}

.about-card h3,
.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.about-card p,
.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Pricing Card Redesign */
.pricing-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: 0.4s;
}

.pricing-item:hover::before {
  opacity: 1;
}

.pricing-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pricing-item h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.pricing-item h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.pricing-item h4 sup {
  font-size: 28px;
  top: -15px;
}

.pricing-item h4 span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
}

.pricing-item ul {
  padding: 0;
  list-style: none;
  text-align: left;
  line-height: 20px;
  margin-bottom: 30px;
}

.pricing-item ul li {
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.pricing-item ul li i {
  color: var(--accent-color);
  font-size: 20px;
  padding-right: 12px;
}

.pricing-item ul li .na {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.pricing-item .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  font-weight: 600;
}

.pricing-item .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.pricing-item.featured {
  background: linear-gradient(135deg, rgba(85, 155, 204, 0.1), rgba(11, 17, 32, 0.8));
  border-color: var(--accent-color);
  transform: scale(1.02);
  z-index: 2;
}

/* Contact Page Redesign */
.contact .info-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  background: rgba(85, 155, 204, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
  transition: 0.3s;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: white;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact .php-email-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  /* Slightly lighter on focus */
  border-color: var(--accent-color);
  box-shadow: none;
  color: white;
}

.contact .php-email-form ::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: white;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 10px;
  font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}