@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Root colors for TanAir Branding */
:root {
  --blue-color: #0073e6;
  --yellow-color: #ffc800;
  --text-color: #333333;
  --button-hover: #005bb5;
  --opacity: 0.9;
  --primary: #0073e6;
  --primary-dark: #0052cc;
  --secondary: #6c757d;
  --success: #28a745;
  --bg-light: #f8f9fa;
  --text-main: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --gradient-start: #0073e6;
  --gradient-end: #00c6fb;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  overflow-x: hidden;
}
ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 70px;
  background: var(--yellow-color);
  position: relative;
}
.text-primary {
  color: var(--blue-color);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: #fff;
  opacity: 0.6;
  width: 100%;
  height: 70px;
  position: absolte;
  top: 0px;
  padding: 0 30px;
}

.navbar.top {
  background: transparent;
}
.navbar a {
  color: var(--blue-color);
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 20px;
  font-weight: 500;
}

.navbar a:hover {
  border-bottom: #fff 4px solid;
}

.navbar ul {
  display: flex;
}

.navbar .logo {
  font-size: 30px;
  font-weight: bold;
}
.banner {
  background: url(/Images/banner.jpg) no-repeat center center/cover fixed;
  height: 100vh;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.homepageContainer {
  width: 100%;
  max-width: 900px;
  position: absolute;
  margin: 0 auto;
  padding-left: 200px;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.banner * {
  z-index: 10;
}
.bannerHeader h1 {
  font-size: 100px;
  color: var(--blue-color);
  opacity: var(--opacity);
}
.bannerHeader p {
  font-size: 40px;
  color: var(--yellow-color);
  opacity: var(--opacity);
  text-transform: uppercase;
  line-height: 100px;
}
.bannerTagline {
  font-size: 30px;
  color: #f4f4f4;
  opacity: var(--opacity);
}
.bannerTagline > span {
  color: var(--blue-color);
  font-weight: bold;
}
.homepageContainer {
  width: 100%;
  max-width: 900px;
  height: 100vh;
  margin: 0 auto;
}
.bannerIcons {
  margin-top: 150px;
}
.bannerIcons a {
  font-size: 22px;
  margin-left: 40px;
  padding: 7px 15px;
  background: var(--yellow-color);
  color: var(--blue-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-block;
  cursor: pointer;
  padding-top: 20px;
  padding-left: 15px;
}
.bannerIcons a:first-child {
  margin-left: 0px;
}
.bannerIcons a:hover {
  font-size: 25px;
  background: var(--button-hover);
  transition: 0.5s all;
  color: var(--yellow-color);
}

/* Homepage Features */
.homepageFeatures {
  display: flex;
  flex-direction: row;
  background: #f4f4f4;
  text-align: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 50px 200px;
}
.homepageFeature {
  padding: 30px 0;
  text-align: center;
}
.homepageFeature:hover {
  border-top: 4px solid var(--yellow-color);
  border-bottom: 4px solid var(--yellow-color);
}
.homepageFeature i {
  background-color: var(--yellow-color);
  color: #333;
  padding: 2rem;
  border-radius: 50%;
  margin-bottom: 25px;
}
.homepageFeature h3 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 30px;
}

.homepageFeature p.featureDescription {
  font-size: 20px;
  color: #4e4b4b;
}

/* Blog Page */
.container {
  display: flex;
  flex-direction: row;
  padding: 50px 200px;
  background: #e3e3e3;
}
.homepageNotified {
  padding-right: 100px;
}
/* .emailForm {
  width: 50%;
}
.video {
  width: 50%;
} */
.homepageNotified h3 {
  margin-bottom: 20px;
  font-size: 28px;
}
.homepageNotified p {
  color: #4e4b4b;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.formContainer {
  width: 100%;
  position: relative;
}
.formContainer input {
  width: 100%;
  height: 60px;
  font-size: 20px;
  border-radius: 15px;
}
.formContainer input:focus {
  outline: none;
}
.formContainer button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  font-size: 25px;
  background: var(--yellow-color);
  cursor: pointer;
  color: #333;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border: none;
}

/* Contact form */
.socialsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 50px 200px;
  background: #f4f4f4;
  text-align: center;
  padding: 50px 0 50px;
}
.socialHeader {
  padding-bottom: 20px;
  font-size: 25px;
}
.socialText {
  padding-bottom: 30px;
  font-size: 20px;
}
.socialIcons a {
  font-size: 23px;
  height: 70px;
  width: 70px;
  padding-top: 11px;
  display: inline-block;
  background: #e3e3e3;
  border-radius: 50%;
  color: #333;
  margin-left: 20px;
  margin-top: 20px;
}
.socialIcons a:hover {
  background: var(--yellow-color);
  color: #333;
  transition: 0.4s ease-in;
  font-size: 28px;
}
.footerContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 50px 200px;
  background: #e3e3e3;
  text-align: center;
}

.footerContainer a {
  color: #333;
  margin-left: 20px;
  margin-top: 20px;
  font-size: 20px;
}
.footerContainer a:hover {
  text-decoration: underline;
  color: var(--yellow-color);
}
.footer p {
  background: #e3e3e3;
  text-align: center;
  padding-bottom: 20px;
}

/* Animated Background */
.bg-elements {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.gradient-circle {
  position: absolute;
  width: 800px;
  height: 800px;
  background: linear-gradient(
    45deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.floating-elements .element {
  position: absolute;
  opacity: 0.1;
  animation: floatElement 15s ease-in-out infinite;
}

/* Navigation Styles */
.main-header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Enhanced Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Enhanced Logo Styles */
.logo-wrapper {
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  position: relative;
}

.logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: translateY(-2px) rotateY(10deg);
}

.logo-icon i {
  font-size: 1.75rem;
  color: white;
}

.logo-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.logo-particles span:nth-child(1) {
  top: -10px;
  right: -10px;
  animation: particle1 2s ease-in-out infinite;
}

.logo-particles span:nth-child(2) {
  top: 50%;
  right: -15px;
  animation: particle2 2s ease-in-out infinite 0.5s;
}

.logo-particles span:nth-child(3) {
  bottom: -10px;
  right: -8px;
  animation: particle3 2s ease-in-out infinite 1s;
}

@keyframes particle1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(10px, -10px) scale(1.5);
    opacity: 1;
  }
}

@keyframes particle2 {
  0%,
  100% {
    transform: translate(0, -50%) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(15px, -50%) scale(1.5);
    opacity: 1;
  }
}

@keyframes particle3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(10px, 10px) scale(1.5);
    opacity: 1;
  }
}

/* Enhanced Navigation Styles */
.main-nav {
  margin-left: auto;
  margin-right: 3rem;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(0, 115, 230, 0.08);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-link i {
  font-size: 1rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: translateY(-1px);
  opacity: 1;
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border-radius: 16px;
  min-width: 520px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Enhanced Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.search-trigger {
  position: relative;
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: var(--bg-light);
  color: var(--text-main);
  transition: all 0.3s ease;
}

.btn-icon:hover {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-login,
.btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-login {
  background: var(--bg-light);
  color: var(--text-main);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-login:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 115, 230, 0.2);
}

/* Mobile Menu Styles */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s ease;
  transform-origin: left;
}

.mobile-toggle.active span:first-child {
  transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:last-child {
  transform: rotate(-45deg);
}

/* Logo Styles */
.logo-wrapper {
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
}

.logo-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: particle 2s ease-in-out infinite;
}

.logo-particles span:nth-child(1) {
  animation-delay: 0s;
}
.logo-particles span:nth-child(2) {
  animation-delay: 0.3s;
}
.logo-particles span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes particle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(10px, -10px) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translate(20px, -20px) scale(1);
    opacity: 0;
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-text strong {
  color: var(--primary);
}

/* Navigation Styles */
.main-nav {
  margin-left: auto;
  margin-right: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(0, 115, 230, 0.05);
  color: var(--primary);
}

.nav-link i {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 480px;
  padding: 1.5rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.menu-section h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: rgba(0, 115, 230, 0.05);
}

.menu-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 1rem;
}

.menu-item div {
  display: flex;
  flex-direction: column;
}

.menu-item small {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-icon:hover {
  background: rgba(0, 115, 230, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .main-nav,
  .header-actions .btn-login {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-container {
    padding: 1rem;
  }
}

/* Enhanced Search Functionality */
.search-trigger {
  position: relative;
}

.search-popup {
  position: absolute;
  top: calc(100% + 15px);
  right: -100px;
  width: 450px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-popup::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 110px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.search-content {
  position: relative;
}

.search-content input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.search-content input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.1);
}

.search-shortcuts {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
  pointer-events: none;
}

.shortcut {
  display: flex;
  align-items: center;
  gap: 4px;
}

.shortcut kbd {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", monospace;
  color: var(--text-light);
}

.search-results {
  margin-top: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.result-group {
  margin-bottom: 15px;
}

.result-group h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  padding-left: 10px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.result-item:hover {
  background: var(--bg-light);
}

.result-item i {
  color: var(--text-light);
  width: 16px;
}

.result-item span {
  font-size: 0.9rem;
}

.result-item .highlight {
  color: var(--primary);
  font-weight: 500;
}

.search-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-footer .hint {
  font-size: 0.8rem;
  color: var(--text-light);
}

.search-footer .advanced-search {
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-footer .advanced-search:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(
    45deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  padding: 180px 0 120px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 115, 230, 0.05) 0%,
    rgba(0, 115, 230, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

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

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-large {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary.btn-large {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 115, 230, 0.3);
}

.btn-outline.btn-large {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-main);
}

.btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 115, 230, 0.4);
}

.btn-outline.btn-large:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item {
  position: relative;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

.stat-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-item:last-child::after {
  display: none;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.dashboard-preview {
  width: 120%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.floating-card {
  position: absolute;
  padding: 15px 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  right: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 1.5s;
}

.floating-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.floating-card span {
  font-weight: 600;
  color: var(--text-main);
}

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

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero {
    padding: 140px 20px 80px;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .dashboard-preview {
    width: 100%;
    transform: none;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-item::after {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }
}

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--bg-light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.bento-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

/* Card Layouts */
.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

/* Card Content */
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: inherit;
  border-radius: inherit;
  filter: blur(8px);
  opacity: 0.4;
  z-index: -1;
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.bento-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Special Card Styles */
.bento-card.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: white;
}

.bento-card.highlight h3,
.bento-card.highlight p {
  color: white;
}

.bento-card.highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.feature-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat {
  flex: 1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Feature Links */
.feature-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  margin-top: auto;
}

.highlight .feature-link {
  color: white;
}

.feature-link i {
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Card Patterns */
.pattern-dots {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.1;
  background-image: radial-gradient(var(--text-main) 2px, transparent 2px);
  background-size: 10px 10px;
}

.highlight .pattern-dots {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.5) 2px,
    transparent 2px
  );
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .bento-card.large,
  .bento-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Solutions Section */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}

.solution-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Solutions Section */
.solutions {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.solution-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card.enterprise {
  background-image: url("../images/solutions/enterprise-bg.jpg");
}

.solution-card.ecommerce {
  background-image: url("../images/solutions/ecommerce-bg.jpg");
}

.solution-card.smb {
  background-image: url("../images/solutions/smb-bg.jpg");
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 20%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: all 0.5s ease;
}

.card-content {
  position: relative;
  padding: 40px;
  color: white;
  width: 100%;
  transform: translateY(30%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .card-content {
  transform: translateY(0);
}

.solution-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 115, 230, 0.98) 20%,
    rgba(0, 115, 230, 0.8) 100%
  );
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon i {
  font-size: 1.8rem;
  color: white;
}

.card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.solution-features {
  list-style: none;
  margin-bottom: 30px;
  display: grid;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.solution-card:hover .solution-features {
  opacity: 1;
  transform: translateY(0);
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.solution-features i {
  color: #22c55e;
}

.btn-solution {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
}

.solution-card:hover .btn-solution {
  opacity: 1;
  transform: translateY(0);
}

.btn-solution:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Industry Selector */
.industry-selector {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.selector-header {
  margin-bottom: 40px;
}

.selector-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.industry-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-btn i {
  font-size: 2rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.industry-btn span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
}

.industry-btn:hover,
.industry-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.industry-btn:hover i,
.industry-btn.active i,
.industry-btn:hover span,
.industry-btn.active span {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .solution-card {
    min-height: 350px;
  }

  .card-content {
    transform: translateY(45%);
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
  padding: 100px 0;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    45deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

/* Enhanced CTA Section */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 100px;
  transform: rotate(45deg) translate(100px, -200px);
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-content {
  color: white;
}

.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.cta-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: #4ade80;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.btn-glow {
  padding: 18px 36px;
  font-size: 1.1rem;
  background: white;
  color: var(--primary);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
}

.cta-demo {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.btn-play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.trust-badges {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Stats Cards */
.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stats-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.stats-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.stats-content {
  flex: 1;
}

.stats-content h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 5px;
}

.stats-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.stats-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 20px;
}

.stats-trend.positive {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-stats {
    flex-direction: row;
  }

  .stats-card {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-demo {
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }

  .cta-stats {
    flex-direction: column;
  }
}

/* Footer */
.main-footer {
  background: var(--text-main);
  color: #fff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

/* Blog Section Styles */
.blog-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
  overflow: hidden;
}

.blog-slider {
  position: relative;
  max-width: 1400px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-card {
  flex: 0 0 400px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.category {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

.card-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-main);
}

.blog-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: -25px;
}

.slider-arrow.next {
  right: -25px;
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0;
  transition: width 0.3s ease;
}

/* Categories */
.blog-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.category-tag {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  background: white;
  transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-card {
    flex: 0 0 350px;
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 300px;
  }

  .slider-arrow {
    display: none;
  }
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(to bottom right, var(--bg-light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 115, 230, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testimonials-slider {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  padding: 0 20px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}

.testimonial-card {
  flex: 0 0 500px;
  background: white;
  border-radius: 24px;
  padding: 35px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.quote-icon {
  position: absolute;
  top: -15px;
  right: 35px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transform: rotate(5deg);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  padding: 2px;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}

.rating {
  color: #ffc107;
  font-size: 0.9rem;
}

/* Progress Dots */
.slider-progress {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: var(--primary);
}

/* Client Logos */
.client-logos {
  margin-top: 80px;
  padding: 60px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.client-logos::before,
.client-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.client-logos::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.client-logos::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.logos-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scrollLogos 30s linear infinite;
  padding: 0 40px;
}

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

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.client-logo i {
  font-size: 2.5rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.client-logo span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo:hover i {
  color: var(--primary);
}

.client-logo:hover span {
  color: var(--text-main);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-120px * 5 - 80px * 5));
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logos-track {
    gap: 40px;
  }

  .client-logo {
    min-width: 100px;
  }

  .client-logo i {
    font-size: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 400px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 320px;
    padding: 25px;
  }

  .testimonial-content p {
    font-size: 1rem;
  }
}

/* Enhanced Footer Styles */
.main-footer {
  position: relative;
  background: var(--text-main);
  color: #fff;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  color: #fff;
  line-height: 0;
}

.footer-content {
  position: relative;
  padding: 100px 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: 60px;
  padding: 0 20px;
  margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-info {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-info p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

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

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links ul li a {
  color: var(--text-light);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-newsletter p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.newsletter-form .input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form button {
  width: 50px;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* App Badges */
.app-badges {
  display: flex;
  gap: 15px;
}

.app-badge img {
  height: 40px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.app-badge:hover img {
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-info p {
  color: var(--text-light);
}

.footer-links-inline {
  display: flex;
  gap: 30px;
}

.footer-links-inline a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-inline a:hover {
  color: var(--primary);
}

.footer-certifications {
  display: flex;
  gap: 20px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-info {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links-inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
