/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #040677; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1acc8d; /* 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: #ffffff; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1acc8d; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1acc8d; /* 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: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
background-color: #f4f5fe;
  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-weight: 700;
  font-family: 'Poppins';
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1e293b;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #8b5cf6;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

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

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

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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;
  }
}
.nav-name{
  font-family: 'Poppins' !important;
  font-weight: 600 !important;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color:#0f172a;
  font-size: 14px;
  position: relative;
}

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

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

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

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: #1e293b;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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: linear-gradient(90deg, #3b82f6, #8b5cf6);

  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);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section - Modern 2025 Design */
/* Hero Section - Modern 2025 Design */
/* Hero Section - Modern 2025 Design */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1;
}

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

.hero-tag {
  display: inline-block;
  width: 64%;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  /* font-weight: 800; */
  line-height: 1.2;
  color: #f8fafc;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-subtext {
  color: rgba(248, 250, 252, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-hover-effect:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: #f8fafc;
  border: 2px solid rgba(248, 250, 252, 0.3);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(248, 250, 252, 0.1);
  border-color: rgba(248, 250, 252, 0.5);
}

.hero-tech-stack {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.875rem;
}

.tech-logos {
  display: flex;
  gap: 12px;
}

.tech-logos img {
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tech-logos img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.hero-img {
  position: relative;
}

.hero-img-container {
  position: relative;
  max-width: 600px;
  margin-left: auto;
}

.hero-img-container {
  position: relative; /* Required for `top` animation */
  animation: float-top 6s ease-in-out infinite;
}

.hero-img-container {
  position: relative;
  animation: superFloat 4s ease-in-out infinite;
  will-change: transform; /* Boosts performance */
}

.hero-img-container img {
  position: relative;
  z-index: 2;
  filter: 
    drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4))
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2)); /* Multi-shadow for depth */
  transition: filter 0.3s ease; /* Smooth shadow on hover */
}

.hero-img-container:hover img {
  filter: 
    drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5))
    drop-shadow(0 40px 50px rgba(0, 0, 0, 0.3)); /* Enhanced hover effect */
}

@keyframes superFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.03); /* Floats higher + slight zoom */
  }
}

.hero-img-highlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Waves animation */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.wave1 use {
  animation: move-forever1 12s linear infinite;
}

.wave2 use {
  animation: move-forever2 10s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 8s linear infinite;
  animation-delay: -4s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding: 100px 0 80px;
  }
  
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-tech-stack {
    justify-content: center;
  }
  
  .hero-img-container {
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-tech-stack {
    flex-direction: column;
    gap: 12px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* About Section - Enhanced Interactive Design */
/* 2025 About Section Design */
.about {
  position: relative;
  padding: 120px 0;
  background-color: #0f172a;
  color: #f8fafc;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.section-tag span {
  font-size: 16px;
  font-weight: 600;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #7dd3fc, transparent);
}

.gradient-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #f8fafc, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 500px;
  margin-bottom: 40px;
}

.key-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.metric {
  position: relative;
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.9rem;
  color: #94a3b8;
  position: relative;
  padding-left: 15px;
}

.metric-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #7dd3fc;
  border-radius: 50%;
}

.neu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #f8fafc;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
              -5px -5px 15px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.neu-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.neu-button:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4),
              -8px -8px 20px rgba(255, 255, 255, 0.1);
}

.neu-button:hover::before {
  left: 100%;
}

.neu-button svg {
  transition: transform 0.3s ease;
}

.neu-button:hover svg {
  transform: translateX(5px);
}

/* Feature Cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(30, 41, 59, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: rgba(125, 211, 252, 0.1);
  color: #7dd3fc;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #7dd3fc;
  color: #0f172a;
  transform: rotate(10deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f8fafc;
}

.feature-card p {
  color: #94a3b8;
  line-height: 1.7;
}

.feature-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #7dd3fc, #38bdf8);
  transition: height 0.4s ease;
}

.feature-card:hover .feature-highlight {
  height: 100%;
}

/* Background Shapes */
.about-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gradient-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .key-metrics {
    flex-direction: column;
    gap: 20px;
  }
  
  .gradient-heading {
    font-size: 2rem;
  }
}

/* Counter Animation */
.metric-value {
  transition: all 1s ease-out;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
}

.features .section-title {
  font-size: 32px;
  font-weight: 800;
  /* margin-bottom: 40px; */
  color: #222;
  position: relative;
}

.features .features-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features .features-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.features .features-item i {
  font-size: 45px;
  margin-bottom: -10px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.features .features-item:hover i {
  transform: scale(1.3) rotate(10deg);
}

.features .features-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.features .features-item h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.features .features-item:hover h3 a {
  color: var(--accent-color, #007bff);
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.features .features-item i {
  animation: floatIcon 2s ease-in-out infinite;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color:#8b5cf6 !important;

  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details.section {
  background-color: #0f172a ;
  /* padding: 80px 0; */
  position: relative;
  overflow: hidden;
  color: #f8fafc;
}

.details .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.details .features-item {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 16px;
  margin-top: 50px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.details .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: rgba(30, 41, 59, 0.9);
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.details .features-item h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #60a5fa;
}

.details .features-item p {
  font-size: 17px;
  color: #e2e8f0;
  line-height: 1.6;
}

.details .features-item img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  max-height: 320px;
  object-fit: cover;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Decorative elements */
.details.section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(rgba(96, 165, 250, 0.15), transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 0;
}

.details.section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(rgba(96, 165, 250, 0.1), transparent 70%);
  bottom: -150px;
  right: -100px;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .details .features-item {
    padding: 30px;
  }
  
  .details .features-item h3 {
    font-size: 24px;
  }
  
  .details .features-item p {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# letast work Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  background-color: #1e293b;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonial-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(145deg, #334155, #1e293b);
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 20px;
  object-fit: cover;
}

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #e2e8f0;
  line-height: 1.6;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  color: #94a3b8;
  font-size: 26px;
  line-height: 0;
}

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #94a3b8;
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #6366f1, #8b5cf6) !important;
  opacity: 1;
  transform: scale(1.2);
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.description-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  text-align: center;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

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

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

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

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

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

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

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

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

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

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

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

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

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

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  --accent-color: #3b82f6;
  --text-color: #334155;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --hover-color: #f1f5f9;
  padding: 80px 0;
  background-color: #0f172a;
  
}

.faq .content {
  margin-bottom: 50px;
}

.faq-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.faq-heading span {
  color: var(--accent-color);
  position: relative;
}

.faq-heading span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  opacity: 0.3;
}

.faq-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.faq-header {
  padding: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #1e293b;
  transition: background-color 0.3s ease;
}


.faq-icon {
  font-size: 1.3rem;
  margin-right: 15px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: white;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  padding: 0 20px 20px 55px;
}

/* Active state */
.faq-item.active {
  border-color: var(--accent-color);
}

.faq-item.active .faq-header {
  background-color: var(--hover-color);
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 10px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
  
  .faq-heading {
    font-size: 2rem;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-header {
    padding: 16px;
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
  
  .faq-content p {
    padding: 0 16px 16px 50px;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
:root {
  --accent-color: #1e293b;        /* Main background */
  --contrast-color: #ffffff;      /* White text */
  --input-bg: #334155;            /* Darker input background */
  --input-border: #475569;        /* Subtle border */
  --input-placeholder: #94a3b8;   /* Light grey placeholder */
  --hover-bg: #0f172a;            /* Button hover */
}

.contact {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 60px 0;
}

.contact .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center !important;
    margin-bottom: 50px;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(248, 250, 252), rgb(125, 211, 252)) text;
}

.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item {
  color: var(--contrast-color);
}

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

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--contrast-color);
}

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

.contact .php-email-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 15px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  color: var(--contrast-color);
  width: 100%;
}

.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(--contrast-color);
  outline: none;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--input-placeholder);
}

.contact .php-email-form button[type=submit] {
background: linear-gradient(90deg, rgb(59, 130, 246), rgb(139, 92, 246)) !important;
   color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 15px;
}

.contact .php-email-form button[type=submit]:hover {
     background: linear-gradient(90deg, rgb(59, 130, 246), rgb(139, 92, 246)) !important;
  color: var(--contrast-color);
  transform: scale(1.02);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}












.clients-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.clients-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4caf50; /* techy green accent */
  letter-spacing: 1.2px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 120px;
  filter: grayscale(70%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #212432;
  border: none;
  color: #4caf50;
  font-size: 2rem;
  padding: 0 12px;
  cursor: pointer;
  user-select: none;
  border-radius: 4px;
  box-shadow: 0 0 8px #4caf50aa;
}

.carousel-arrow:hover {
  background: #4caf50;
  color: #0f111a;
}

.arrow-left {
  left: 5px;
}

.arrow-right {
  right: 5px;
}

/* Keyframes for continuous scroll */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .client-logo {
    flex: 0 0 80px;
    gap: 20px;
  }
  .clients-section h2 {
    font-size: 1.8rem;
  }
}


/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Services Section - Matching Hero & About Theme */
.services {
  position: relative;
  padding: 120px 0;
  background-color:#1e293b ;
  color: #f8fafc;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtext {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-top: 20px;
}

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

.service-card {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
  margin-bottom: 25px;
}

.service-icon svg {
  color: #3b82f6;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f8fafc;
}

.service-card p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

.service-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-highlight {
  opacity: 1;
}

/* Background shapes */
.service-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.service-shapes .shape-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.service-shapes .shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.05), transparent);
  bottom: -50px;
  left: -50px;
  animation: float 12s ease-in-out infinite reverse;
}

.service-shapes .shape-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 40%;
  left: 30%;
  animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  50% {
    transform: translate(0, 30px) rotate(0deg);
  }
  75% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.completed-cases {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.completed-cases .single-cases-info {
	position: relative;
	left: 58%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.completed-cases .single-cases-info {
		margin-top: 72px;
		left: 33%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.completed-cases .single-cases-info {
		left: 38%;
		margin-top: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.completed-cases .single-cases-info {
		left: 17%;
		margin-top: 40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.completed-cases .single-cases-info {
		left: 1%;
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.completed-cases .single-cases-info {
		left: 1%;
		margin-top: 10px;
	}
}

.completed-cases .single-cases-info h3 {
	color: #191d34;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
	padding-right: 30px;
}

@media (max-width: 767px) {
	.completed-cases .single-cases-info h3 {
		font-size: 30px;
	}
}

.completed-cases .single-cases-info p {
	margin-bottom: 50px;
	padding-right: 36px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.completed-cases .single-cases-info p {
		margin-bottom: 20px;
	}
}

.completed-cases .single-cases-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.completed-cases .single-cases-img .single-cases-cap {
	background: #fff;
	padding: 25px 30px 25px 30px;
	position: absolute;
	left: 40px;
	bottom: -55px;
	max-width: 371px;
	-webkit-transition: all 0.6s ease-out 0s;
	-moz-transition: all 0.6s ease-out 0s;
	-ms-transition: all 0.6s ease-out 0s;
	-o-transition: all 0.6s ease-out 0s;
	transition: all 0.6s ease-out 0s;
	opacity: 0;
	visibility: hidden;
	width: 80%;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 30px 0px rgb(9 17 74 / 10%);
	-moz-box-shadow: 0px 0px 30px 0px rgba(9, 17, 74, 0.1);
	box-shadow: 0px 0px 30px 0px rgb(9 17 74 / 10%);
	z-index: 5;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.completed-cases .single-cases-img .single-cases-cap {
		padding: 3px;
	}
}

.completed-cases .single-cases-img .single-cases-cap h4 a {
	color: #283a5e;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 23px;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
	cursor: pointer;
}

.completed-cases .single-cases-img .single-cases-cap h4 a:hover {
	color: #ff656a;
}

.completed-cases .single-cases-img .single-cases-cap p {
	margin-bottom: 30px;
}

.completed-cases .single-cases-img .single-cases-cap span {
	color: #707b8e;
}

.single-cases-img:hover .single-cases-cap {
	bottom: 20px;
	opacity: 1;
	visibility: visible;
	width: 80%;
}

.single-cases-img.size img {
	width: 100%;
}

.completed-cases .owl-carousel .owl-stage-outer {
	overflow: visible;
}

.completed-cases .no-js .owl-carousel,
.completed-cases .owl-carousel.owl-loaded {
	overflow: hidden;
	position: relative;
	right: -28%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.completed-cases .no-js .owl-carousel,
	.completed-cases .owl-carousel.owl-loaded {
		right: 0%;
	}
}

@media (max-width: 767px) {
	.completed-cases .no-js .owl-carousel,
	.completed-cases .owl-carousel.owl-loaded {
		right: 0%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.completed-cases .no-js .owl-carousel,
	.completed-cases .owl-carousel.owl-loaded {
		right: 0%;
	}
}

.completed-cases .owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.completed-cases .single-cases-img:hover:after {
	content: "";
	top: 0;
	left: 0;
	opacity: 0.4;
	height: 100%;
	border-radius: 10px;
	width: 100%;
	position: absolute;
	z-index: 0;
	transition: 0.3s all ease-in-out;
	background: rgba(255, 255, 255, 1);
}

.cases-description {
	margin-bottom: 50px;
	padding-right: 36px;
}

.cases-description ol {
	padding-left: 20px;
}

.cases-description li {
	list-style-type: '\e64c';
	padding-inline-start: 1ch;
	margin-bottom: 10px;
	padding-left: 10px;
	color: #606377;
	font-size: 16px;
	line-height: 30px;
}

.cases-description li::marker {
	font-family: "themify";
	font-weight: 600;
	color: #283a5e;
}

.single-cases-info:after {
	background-image: url(../img/shape/card_dot.png);
	content: "";
	width: 171px;
	height: 134px;
	position: absolute;
	right: -110px;
	bottom: -100px;
	z-index: -1;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

.single-cases-cap-cap-link {
	position: absolute;
	font-size: 14px;
	right: 15px;
	top: 31px;
	height: 55px;
	line-height: 55px;
	border-left: 1px solid #0000002b;
	padding-left: 15px;
}

.single-cases-cap-cap-link span {
	color: #606377;
}

.owl-filter-bar {
	position: relative;
	z-index: 1000;
	margin-bottom: 20px;
}

.owl-filter-bar a {
	display: inline-block;
	color: #606377;
	border-radius: 20px;
	padding: 2px 15px;
	font-size: 16px;
	margin-right: 10px;
	margin-bottom: 20px;
	border: 1px solid #606377;
}

.owl-filter-bar a.active {
	display: inline-block;
	color: #ffffff;
	border-radius: 20px;
	padding: 2px 15px;
	font-size: 16px;
	margin-right: 10px;
	background: #283a5e;
}







.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title .subtitle {
  display: block;
  font-size: 1.2rem;
  color: var(--default-color);
  font-weight: 400;
}

.tech-card {
  background: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  padding: 30px 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tech-card i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s ease;
}

.tech-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.tech-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.tech-card:hover i {
  transform: scale(1.2);
}
.tech-card.postgres i {
  color: #336791;
}
.tech-card.postgres h4::after {
  content: "🐘";
  margin-left: 6px;
}


/* choose us */

.why-choose-us {
  position: relative;
  padding: 120px 0;
  background-color: #1e293b;
  color: #f8fafc;
  overflow: hidden;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.choose-card {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

.choose-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f8fafc;
}

.choose-card p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Background floating shapes */
.choose-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.choose-shapes .shape-1,
.choose-shapes .shape-2,
.choose-shapes .shape-3 {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1), transparent);
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation-duration: 12s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 35%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, 20px) rotate(5deg); }
  50% { transform: translate(0, 30px) rotate(0deg); }
  75% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .choose-card {
    padding: 30px 20px;
  }
}



/* Technology Support */

.tech-unique-section {
  background: #0f172a;
  color: #e0f2fe;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.glow-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  /* margin-bottom: 50px; */
  background: linear-gradient(90deg, #f8fafc, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glow-blue {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.glow-blue::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  opacity: 0.7;
}

.section-subtext {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-top: 15px;
}

.tech-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}


.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.glass-card img {
  width: 40px;
  margin-bottom: 15px;
}

.glass-card h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
  color: white !important;
}

/* mobile view */

@media (max-width: 430px) {
  .glass-card h5  {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .glass-card h5  {
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  .glass-card h5  {
    font-size: 0.6rem;
  }
}

  /* .glass-card {
      position: relative;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 20px;
      padding: 40px 30px;
      backdrop-filter: blur(20px);
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
      overflow: hidden;
      cursor: pointer;
      text-align: center;
      min-height: 100%;
      display: flex;
      flex-direction: column;
    } */

/* .glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
  background: rgba(255, 255, 255, 0.08);
} */

.glass-icon-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.glass-icon-img img {
  width: 32px;
  height: 32px;
}

.glass-card h3 {
  font-size: 1.3rem;
  color: #e0f2fe;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}

.card-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #3b82f6, transparent);
  margin-top: 30px;
  animation: pulse-line 2s infinite ease-in-out;
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .tech-unique-section {
    padding: 80px 0;
  }

  .glass-card {
    padding: 30px 20px;
  }
  .hero-tag{
    width: 100%;
  }
}








.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%);
}