@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Geologica:wght@100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Geologica:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap");
/* =================================
           CSS VARIABLES - REUSABLE DESIGN SYSTEM
           ================================= */

:root {
  /* Colors */
  --primary-gradient: linear-gradient(
    135deg,
    #0f0c29 0%,
    #302b63 50%,
    #24243e 100%
  );
  --accent-gradient: linear-gradient(
    135deg,
    #7dafff 0%,
    #0069ff 50%,
    #0863e3 100%
  );
  --card-gradient-hover: linear-gradient(
    90deg,
    #006aff,
    #6faeee,
    #6f9aff,
    #2669d4
  );
  --icon-gradient: linear-gradient(
    135deg,
    #86aae4 0%,
    #0069ff 50%,
    #6999dc 100%
  );
  --button-gradient: linear-gradient(
    to right,
    #0575e6 0%,
    #2360ee 51%,
    #0575e6 100%
  );
  --benefit-icon-gradient: linear-gradient(45deg, #ff6b6b, #4ecdc4);

  --iconBacgoundColor: linear-gradient(
    135deg,
    #86aae4 0%,
    #0069ff 50%,
    #6999dc 100%
  );

  --navbarBtnColor: linear-gradient(
    to right,
    #0575e6 0%,
    #215ce3 51%,
    #0575e6 100%
  );

  --sectionMainHeadingColor: linear-gradient(
    135deg,
    #003c9e 0%,
    #245aa5 50%,
    #345789 100%
  );
  /* Text Colors */
  --text-primary: #2d3748;
  --text-secondary: #718096;
  --text-white: #ffffff;
  --text-white-90: rgba(255, 255, 255, 0.9);

  /* Background Colors */
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --bg-benefits: rgba(255, 255, 255, 0.1);
  --bg-benefit-item: rgba(255, 255, 255, 0.1);
  --bg-benefit-item-hover: rgba(255, 255, 255, 0.2);
  --bg-cta: rgba(255, 255, 255, 0.95);

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Manrope", sans-serif;
  --font-size-h1: 40px;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.5rem;
  --font-size--very-large-heading: 65px;
  --font-size-subtitle: 1.3rem;
  --font-size-body: 1rem;
  --font-size-benefit: 1.1rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.7;

  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 25px;
  --spacing-xl: 30px;
  --spacing-2xl: 40px;
  --spacing-3xl: 50px;
  --spacing-4xl: 60px;
  --spacing-5xl: 80px;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 10px 30px rgba(102, 126, 234, 0.3);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.15);
  --shadow-icon: 0 8px 25px rgba(102, 126, 234, 0.3);
  --shadow-text: 0 4px 20px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s ease;

  /* Sizes */
  --icon-size: 80px;
  --icon-size-sm: 50px;
  --icon-font-size: 2rem;
  --icon-font-size-sm: 1.2rem;
  --container-max-width: 1400px;
  --content-max-width: 1000px;
  --card-min-width: 350px;
  --benefit-min-width: 250px;

  /* Animation Durations */
  --animation-duration-fast: 800ms;
  --animation-duration-normal: 6s;
  --animation-duration-slow: 2s;

  /* Mobile Breakpoints */
  --mobile-breakpoint: 768px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-primary);
  background: #f3f4f6;
}
.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container_1000 {
  max-width: 1000px;
  margin: auto;
  margin-bottom: 4rem;
}

/* navbar */
/* Header Styles */
.navbar {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.navbar.scrolled {
  background: #001a37;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.navOption {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-text {
  color: #fff;
}
.logotextai {
  color: rgb(255, 94, 0);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::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: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.dropdown-item:hover::before {
  left: 100%;
}

.dropdown-item:hover {
  color: #fff;
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(8px);
}

/* CTA Button */
.navbarbutton {
  background: var(--navbarBtnColor);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.navbarbutton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.navbarbutton:hover::before {
  left: 100%;
}

.navbarbutton:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.dropdown.dropdown-item.active {
  background-color: red;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--iconBacgoundColor);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-menu {
  list-style: none;
  padding: 40px 20px;
  margin: 0;
}

.mobile-nav-item {
  margin: 0 0 8px 0;
}

.mobile-nav-link {
  display: block;
  padding: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  /* background: rgba(255, 255, 255, 0.05); */
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(10px);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown {
  max-height: 500px;
}

.mobile-dropdown-item {
  display: block;
  padding: 5px 30px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
  color: #fff;
  border-left-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.mobile-cta {
  margin: 30px 20px;
}

/* Demo content */
.demo-content {
  padding: 120px 20px 60px;
  text-align: center;
  color: white;
}

.demo-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.demo-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    background: rgb(15, 15, 35);
  }
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbarbutton {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-content {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .demo-title {
    font-size: 2rem;
  }

  .demo-content {
    padding: 100px 20px 40px;
  }
}

/* services  */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.service-cfo-header {
  text-align: center;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-top: 10rem;
}
.finance-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/finance-process-banner.jpg);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.virtual-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/Virtual-cfo-feature.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.account-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/Accounts-payable-Receivables-Management-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.digital-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/digital_bpo_banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.audit-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/Audit-Accounting-Services-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.manpower-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/Manpower-Payroll-Services-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inventory-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/Inventory-Fixed-Assets-Management-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fixed-background {
  background: linear-gradient(black, rgba(0, 0, 0, 0.514)),
    url(./img/fixassest.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.servicebg {
  background: linear-gradient(
      rgba(255, 255, 255, 0.843),
      rgba(255, 255, 255, 0.809)
    ),
    url(./Hexagon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.servicebg2 {
  background: linear-gradient(
      rgba(255, 255, 255, 0.767),
      rgba(255, 255, 255, 0.753)
    ),
    url(./ContourLine.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-cfo-header h1 {
  font-family: "Geologica", sans-serif;
  font-size: var(--font-size--very-large-heading);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
  text-shadow: var(--shadow-text);
}

.service-cfo-highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: rgba(53, 95, 234, 0.755); */
  -webkit-text-fill-color: rgb(20 114 255);
  background-clip: text;
  position: relative;
}

.service-cfo-subtitle {
  font-size: var(--font-size-subtitle);
  color: var(--text-white-90);
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-normal);
}

.service-cfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding-bottom: 80px;
}

.service-card-heading {
  margin: auto;
  text-align: center;
  max-width: var(--content-max-width);
  padding: 4rem;
}
.service-card-heading p {
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
  font-style: italic;
}

.service-cfo-card {
  background: white;
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0 0;
  box-shadow: 0 9px 11px rgb(0 0 0 / 6%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-cfo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-gradient-hover);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-cfo-card:hover::before {
  transform: scaleX(1);
}

.service-cfo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.067);
}

.service-cfo-icon {
  /* border-radius: 20px; */
  /* background: var(--icon-gradient); */
  display: flex;
  align-items: end;
  justify-content: start;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); */
  color: var(--icon-gradient);
  padding: 10px 0;
}

.service-cfo-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.service-cfo-card:hover .service-cfo-icon::before {
  left: 100%;
}

.iconbg {
  background: url(./iconbg/CircuitPrimary.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 99999;
  height: 100px;
}
.iconbg2 {
  background: url(./iconbg/CircuitPrimary2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 99999;
  height: 80px;
}

.service-cfo-icon i {
  font-size: 3rem;
  color: rgb(69, 84, 255);
  z-index: 1;
  position: relative;
  padding-left: 40px;
}

.service-cfo-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.3;
  padding: 0 40px;
}

.service-cfo-card p {
  color: #718096;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  padding: 0 40px;
  padding-bottom: 30px;
}

/* benefit  */

.benifitbg {
  background-color: #0f0c29;
}

.service-cfo-benefits {
  backdrop-filter: blur(20px);
  /* border-radius: var(--radius-xl); */
  padding: var(--spacing-4xl) var(--spacing-2xl);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  margin-bottom: var(--spacing-4xl);
}

.service-cfo-benefits h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-cfo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--benefit-min-width), 1fr)
  );
  gap: var(--spacing-lg);
}

.service-cfo-benefit-item {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  background: var(--bg-benefit-item);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-cfo-benefit-item:hover {
  background: var(--bg-benefit-item-hover);
  transform: translateX(5px);
}

.service-cfo-benefit-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: lightseagreen;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-sm);
  flex-shrink: 0;
}

.service-cfo-benefit-icon i {
  font-size: var(--icon-font-size-sm);
  color: var(--text-white);
}

.service-cfo-benefit-text {
  color: var(--text-white);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-benefit);
}

.contactbg {
  max-width: 70%;
  background: url(./iconbg/layered-waves-haikei.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}
.contactwhitebg {
  background-color: white;
}

.service-cfo-cta {
  padding: var(--spacing-3xl) var(--spacing-2xl);
  padding: 5rem;
}

.service-cfo-cta h2 {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--spacing-md);
}

.service-cfo-cta p {
  font-size: var(--font-size-benefit);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
}

.service-cfo-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--button-gradient);
  color: var(--text-white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-benefit);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

.service-cfo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  color: var(--text-white);
  text-decoration: none;
}

.service-cfo-btn i {
  font-size: var(--icon-font-size-sm);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contactbg {
    max-width: 100%;
  }
  .service-cfo-header h1 {
    font-size: 2rem;
  }
  .service-cfo-header p {
    font-size: 1rem;
  }

  .service-cfo-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .service-cfo-card {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
  .service-cfo-card h3 {
    padding: 0;
  }
  .service-cfo-card p {
    padding: 0;
  }

  .service-cfo-benefits {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .service-cfo-benefits h2 {
    font-size: 2rem;
  }

  .service-cfo-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-cfo-cta {
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin: 0 10px;
  }

  .service-cfo-icon i {
    padding: 0;
  }

  .service-cfo-cta h2 {
    font-size: 1.8rem;
  }

  .service-card-heading {
    padding: 1rem;
  }
}

/* Animation Classes */

.service-cfo-pulse {
  animation: pulse var(--animation-duration-slow) infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
  }
}

/* partner section  */

.container-fluid-partner {
  max-width: 1600px;
}

.partnersSection {
  padding: 5rem 0;
  background: var(--dark-bg);
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

.sectionHeadingBox {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}
.sectionHeadingBox p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-style: italic;
}

.sectionSubtitleText {
  background: linear-gradient(90deg, #ff006e, #8338ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
}

.sectionSubtitleText::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #8338ec);
  border-radius: 2px;
}

.mainHeading {
  font-size: 36px;
  font-weight: 800;
  color: var(--sectionMainHeadingColor);
  line-height: 1.1;
  background: var(--sectionMainHeadingColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2rem;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.scroll-content {
  display: flex;
  will-change: transform;
}

.item {
  flex: 0 0 auto;
  margin-right: 10px;
  /* background: linear-gradient(135deg, #2196f3, #21cbf3); */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.item img {
  height: 100px;
}

/* .testimonialSection  */

.tesimonialBox {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(15px);
  text-align: center;
}

.tesimonialBox img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent-blue);
  margin-bottom: 20px;
}

.testimonialSection {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.95) 50%,
    rgba(241, 245, 249, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  /* border-radius: 2rem; */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.testimonialSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(99, 102, 241, 0.3) 50%,
    transparent 100%
  );
}

.swiper {
  width: 100%;
  padding-bottom: 22px;
}

.swiper-slide {
  width: 350px;
  height: auto;
}

.testimonialBox {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.testimonialBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonialBox:hover {
  border-color: rgba(99, 102, 241, 0.2);
}

.testimonialBox:hover::before {
  transform: scaleX(1);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  /* border-radius: 50%; */
  margin: 0 auto 1rem auto;
  /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 1.5rem;
  font-weight: 600;
  /* box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3); */
}

.testiContent p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  flex: 1;
}

.testiContent p::before {
  content: '"';
  font-size: 4rem;
  color: rgb(99 102 241 / 10%);
  position: absolute;
  top: -3rem;
  left: -1rem;
}

.testiContent h4 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.company-info {
  color: #6366f1;
  font-size: 0.95rem;
  font-weight: 500;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: rgba(99, 102, 241, 0.3);
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #6366f1;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #6366f1 !important;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .mainHeading {
    font-size: 26px;
  }

  .testimonialSection {
    padding: 3rem 0;
  }

  .testimonialBox {
    padding: 2rem;
  }

  .container-fluid {
    padding: 0 1rem;
  }
  .item {
    min-width: 90px;
    height: 50px;
  }

  .item img {
    height: 40px;
  }
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  animation: floattesti 6s ease-in-out infinite;
}

.circle-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floattesti {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* footer  */

.ai-footer {
  position: relative;
  /* background: linear-gradient(
    135deg,
    #22357824 0%,
    #08001214 50%,
    #08247512 100%
  ); */
  padding: 60px 0 20px;
  overflow: hidden;
  background-size: 6px 6px;
  opacity: 1;
  background: linear-gradient(rgba(3, 11, 58, 0.538), rgba(0, 0, 0, 0.676)),
    url(../images/footer-img-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animated Background */
.ai-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d4ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d4ff;
  animation: pulsefooter 2s ease-in-out infinite;
}

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  animation: flow 3s linear infinite;
  transform-origin: left center;
}

.moving-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.glow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff006e,
    #8338ec,
    #3a86ff,
    transparent
  );
  border-radius: 1px;
  animation: moveLine 8s linear infinite;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.glow-line:nth-child(2) {
  animation-delay: -2s;
  background: linear-gradient(
    90deg,
    transparent,
    #00f5ff,
    #00d4ff,
    transparent
  );
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.glow-line:nth-child(3) {
  animation-delay: -4s;
  background: linear-gradient(
    90deg,
    transparent,
    #7209b7,
    #f72585,
    transparent
  );
  box-shadow: 0 0 10px rgba(114, 9, 183, 0.5);
}

.glow-line:nth-child(4) {
  animation-delay: -6s;
  background: linear-gradient(
    90deg,
    transparent,
    #06ffa5,
    #4cc9f0,
    transparent
  );
  box-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

/* Floating particleFooters */
.particleFooter {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

/* Main Content */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 10px;
}

.footer-section:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

.logo-section img {
  max-width: 180px;
  margin-bottom: 20px;
}

.ai-tagline {
  font-size: 14px;
  color: #0090ff;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #8338ec);
  border-radius: 1px;
}

.footer-list {
  list-style: none;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.footer-list a:hover {
  color: #0090ff;
  padding-left: 10px;
}

.address-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  /* margin-bottom: 15px; */
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--iconBacgoundColor);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  flex-shrink: 0;
  color: white;
}
.contact-item a {
  color: #0090ff;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 0fr);
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(228, 228, 228, 0.818);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 5px;
}

.social-link:hover {
  background: white;
  transform: scale(1.1);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Animations */
@keyframes pulsefooter {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes flow {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

@keyframes moveLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-section {
    padding: 20px;
  }

  .social-grid {
    grid-template-columns: repeat(4, 0fr);
  }
  .sectionSubtitleText {
    font-size: 10px;
  }
}
