@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

/* CUSTOM CSS */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /* Modern AI color palette */
  --primary-color: #0f172a;
  --secondary-color: #4361ee;
  --accent-color: #10b981;
  --tertiary-color: #6366f1;
  --rare-color: #8b5cf6;
  --text-color: #374151;
  --text-light: #94a3b8;
  --white-color: #ffffff;
  --bg-light: #f0f4fd;
  --bg-dark: #0f172a;
  --grad-primary: linear-gradient(135deg, #4361ee, #8b5cf6);
  --grad-secondary: linear-gradient(135deg, #10b981, #0ea5e9);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-blue: 0 10px 25px rgba(67, 97, 238, 0.1);
  --shadow-purple: 0 10px 25px rgba(139, 92, 246, 0.1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  --main-font: "Manrope", sans-serif;
  --heading-font: "Space Grotesk", sans-serif;
  --para-font: "Inter", sans-serif;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: var(--main-font);
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

a {
  text-decoration: none !important;
}

/* Reset scrollbar for modern look */
::-webkit-scrollbar {
  width: 0;
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Modern button styling */
.btn {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  font-family: var(--para-font);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.white-btn {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.blue-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  box-shadow: var(--shadow-sm);
}

.blue-btn:hover {
  background-color: var(--tertiary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.gradient-btn {
  background-image: var(--grad-primary);
  background-size: 200% auto;
  color: var(--white-color);
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.gradient-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.btn-ex-small {
  padding: 8px 16px;
  font-size: 16px;
  border-radius: var(--border-radius-sm);
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--border-radius-sm);
}

.btn-med {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: var(--border-radius-sm);
}

.btn-large {
  padding: 14px 32px;
  font-size: 18px;
  border-radius: var(--border-radius-md);
}

.custom-btn {
  padding: 14px 32px;
  font-size: 18px;
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.custom-btn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Utility classes */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.bg-gradient {
  background: var(--grad-primary);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

.reveal {
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR CSS */
.navbar {
  background-color: rgba(246, 247, 255, 0.8) !important;
  padding: 20px 30px !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.navbar.shrink {
  padding: 12px 30px !important;
  background-color: rgba(246, 247, 255, 0.95) !important;
}

.navbar-brand p {
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--heading-font);
  margin: 0;
  position: relative;
  display: inline-block;
}

.navbar-brand p span {
  color: var(--secondary-color);
  position: relative;
}

.navbar-brand p span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  top: 5px;
  right: -8px;
  animation: pulse 2s infinite;
}

.navbar-nav .nav-link {
  font-size: 16px;
  margin-right: 24px;
  font-family: var(--para-font);
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: all var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium);
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 0 !important;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  color: var(--secondary-color);
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.nav-button {
  position: relative;
  overflow: hidden;
}

.nav-button::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: all 0.8s;
}

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

/* BANNER AREA CSS */
section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#home {
  background-color: var(--bg-light);
  padding-bottom: 96px;
  padding-top: 176px;
  position: relative;
}

#home::before,
#home::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary-color) 0%, rgba(67, 97, 238, 0) 70%);
  opacity: 0.1;
  z-index: 0;
}

#home::before {
  top: -300px;
  right: -200px;
  animation: pulse 8s infinite alternate;
}

#home::after {
  bottom: -300px;
  left: -200px;
  animation: pulse 12s infinite alternate;
}

.banner-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-text h1 {
  font-size: 64px;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 32px;
  animation: fadeIn 1s ease;
  width: 100%;
}

.banner-text h1 span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.banner-text h1 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--grad-primary);
  left: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: -1;
}

.banner-text p {
  font-size: 22px;
  font-family: var(--para-font);
  text-align: center;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.8;
  width: 90%;
  margin-bottom: 48px;
  animation: fadeIn 1s ease 0.2s both;
}

.banner-text p span {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}

.banner-btn {
  margin-bottom: 64px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeIn 1s ease 0.4s both;
}

.banner-btn .blue-btn {
  background-image: var(--grad-primary);
  background-size: 200% auto;
  transition: all var(--transition-medium);
}

.banner-btn .blue-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.banner-btn .white-btn {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(67, 97, 238, 0.1);
}

.banner-btn .white-btn:hover {
  background-color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.banner-img {
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease 0.6s both;
}

.banner-img img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-medium);
  transform: perspective(1000px) rotateX(5deg);
}

.banner-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  opacity: 0.1;
  border-radius: var(--border-radius-lg);
  transform: translateY(20px) scale(0.95);
  filter: blur(40px);
  z-index: -1;
}

.banner-img:hover img {
  transform: perspective(1000px) rotateX(0deg);
  box-shadow: var(--shadow-blue);
}

/* WHY AUTOPM */
#autopm {
  padding: 120px 16px;
  position: relative;
  overflow: visible;
}

#autopm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 90%, rgba(67, 97, 238, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.Auto-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Auto-text h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--heading-font);
  line-height: 1.3;
  margin-bottom: 64px;
  position: relative;
}

.bounce-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.bounce-icon {
  font-size: 32px;
  color: var(--secondary-color);
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(67, 97, 238, 0.3));
}

.pm-box {
  background-color: rgba(248, 249, 255, 0.7);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(67, 97, 238, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  height: 100%;
  width: 100% !important;
}

.pm-box.active {
  opacity: 1;
  transform: translateY(0);
}

.pm-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--grad-primary);
  top: 0;
  left: -100%;
  transition: all var(--transition-medium);
}

.pm-box:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
}

.pm-box:hover::before {
  left: 0;
}

.f-para {
  font-size: 40px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--heading-font);
  margin-bottom: 8px;
}

.s-para {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--para-font);
  line-height: 1.6;
}

.auto-para {
  font-size: 22px;
  font-family: var(--para-font);
  color: var(--primary-color);
  text-align: center;
  font-style: italic;
  margin-top: 64px;
  position: relative;
  padding: 0 24px;
}

.auto-para::before,
.auto-para::after {
  content: '"';
  font-size: 64px;
  font-family: var(--heading-font);
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.auto-para::before {
  top: -20px;
  left: 0;
}

.auto-para::after {
  bottom: -40px;
  right: 0;
}

/* AUTOPM_2 */
#autopm-2 {
  padding: 80px 16px;
  background: linear-gradient(135deg, #eef1ff 0%, #e6e9ff 100%);
  position: relative;
  overflow: hidden;
}

#autopm-2::before,
#autopm-2::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(var(--secondary-color), transparent 70%);
  opacity: 0.05;
}

#autopm-2::before {
  width: 800px;
  height: 800px;
  top: -400px;
  right: -200px;
}

#autopm-2::after {
  width: 600px;
  height: 600px;
  bottom: -300px;
  left: -100px;
}

#autopm-2 h1 {
  font-size: 40px;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

#autopm-2 h1.active {
  opacity: 1;
  transform: translateY(0);
}

.autopm2-para {
  font-size: 20px;
  font-family: var(--para-font);
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 5px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.autopm2-para.active {
  opacity: 1;
  transform: translateY(0);
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: left;
}

.auto-2-light {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 12px;
  border-radius: var(--border-radius-md);
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  transition: all var(--transition-medium);
  border: 1px solid rgba(67, 97, 238, 0.05);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(-30px);
}

.auto-2-light.active {
  opacity: 1;
  transform: translateX(0);
}

.auto-2-light:hover {
  background-color: var(--white-color);
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px) !important;
}

.light-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: var(--border-radius-full);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(99, 102, 241, 0.1));
  margin-right: 15px;
  transition: all var(--transition-medium);
}

.auto-2-light:hover .light-icon {
  background: var(--grad-primary);
}

.auto-2-light:hover .light-icon svg {
  stroke: var(--white-color);
  transform: scale(1.1);
}

.light-icon svg {
  transition: all var(--transition-medium);
}

.light-para {
  font-size: 16px;
  font-family: var(--para-font);
  font-weight: 500;
  margin: 0;
  color: var(--primary-color);
}

.con-gradiant {
  min-height: 480px;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all var(--transition-medium);
  opacity: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 650px;
  background-color: transparent;
  box-shadow: none;
}

.con-gradiant.active {
  opacity: 1;
}

.con-gradiant::before {
  display: none; /* Remove the inner border */
}

.con-gradiant::after {
  display: none; /* Remove the background blur effect */
}

.con-gradiant:hover {
  transform: perspective(1000px) rotateY(0);
}

/* Dashboard image styling */
.dashboard-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.12));
  transform: translateY(0);
  transition: all var(--transition-medium);
}

.con-gradiant:hover .dashboard-img {
  transform: translateY(-10px);
  filter: drop-shadow(0px 20px 30px rgba(67, 97, 238, 0.15));
}

/* FEATURES CSS */
#feature {
  padding: 120px 16px;
  position: relative;
  overflow: hidden;
}

#feature::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(67, 97, 238, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.feature-text {
  position: relative;
  z-index: 1;
}

.feature-text h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--heading-font);
  line-height: 1.3;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.feature-text h1.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-text p {
  text-align: center;
  font-size: 20px;
  color: var(--text-color);
  font-family: var(--para-font);
  line-height: 1.7;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.feature-text p.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-box {
  box-sizing: border-box;
  background-color: rgba(248, 249, 255, 0.7);
  border: 1px solid rgba(67, 97, 238, 0.05);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  padding: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.feature-box.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--grad-primary);
  transition: height var(--transition-medium);
  z-index: -1;
}

.feature-box:hover {
  border-color: rgba(67, 97, 238, 0.1);
  box-shadow: var(--shadow-blue);
  transform: translateY(-10px);
}

.feature-box:hover::before {
  height: 100%;
}

.feature-box-svg {
  margin-bottom: 24px;
  transition: all var(--transition-medium);
}

.feature-box:hover .feature-box-svg {
  transform: scale(1.1);
}

.feature-box-heading {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature-box-para {
  font-size: 16px;
  font-family: var(--para-font);
  color: var(--text-color);
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* vision CSS */

#vision {
  padding: 120px 16px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}

#vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.vision-heading {
  font-size: 40px;
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--white-color);
  line-height: 1.3;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.vision-heading.active {
  opacity: 1;
  transform: translateY(0);
}

.vision-para-1 {
  font-size: 20px;
  font-family: var(--para-font);
  font-weight: 400;
  margin-bottom: 32px;
  color: rgba(239, 231, 235, 0.9);
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.vision-para-1.active {
  opacity: 1;
  transform: translateY(0);
}

.vision-para-2 {
  font-size: 20px;
  font-family: var(--para-font);
  font-weight: 400;
  margin-bottom: 64px;
  color: rgba(239, 231, 235, 0.9);
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.vision-para-2.active {
  opacity: 1;
  transform: translateY(0);
}

.vision-box {
  padding: 32px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-medium);
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.vision-box.active {
  opacity: 1;
  transform: translateY(0);
}

.vision-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
  transition: all var(--transition-medium);
}

.vision-box::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  top: -50%;
  left: -50%;
  transform: rotate(25deg);
  transition: all var(--transition-medium);
  opacity: 0;
}

.vision-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.vision-box:hover::after {
  animation: shimmer 1.5s forwards;
  opacity: 1;
}

.top-vision-text {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 800;
  font-family: var(--heading-font);
  background: linear-gradient(to right, #4361ee, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.bottom-vision-text {
  font-size: 18px;
  color: rgba(239, 231, 235, 0.9);
  font-family: var(--para-font);
  line-height: 1.5;
}

/* VISION-2 */

#vision-2 {
  padding: 120px 16px;
  background: linear-gradient(135deg, #ebeeff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

#vision-2::before,
#vision-2::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--grad-primary);
  opacity: 0.05;
  filter: blur(40px);
}

#vision-2::before {
  top: -100px;
  right: -100px;
}

#vision-2::after {
  bottom: -100px;
  left: -100px;
}

.vision-2-heading {
  font-size: 40px;
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary-color);
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.vision-2-heading.active {
  opacity: 1;
  transform: translateY(0);
}

.vision-2-para-1 {
  font-size: 20px;
  font-family: var(--para-font);
  font-weight: 400;
  margin-bottom: 64px;
  color: var(--text-color);
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.vision-2-para-1.active {
  opacity: 1;
  transform: translateY(0);
}

.company-logos {
  margin-bottom: 80px;
}

.company-logos .col-lg-2 {
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(30px);
}

.company-logos .col-lg-2.active,
.company-logos .col-md-3.active,
.company-logos .col-6.active {
  opacity: 1;
  transform: translateY(0);
}

.company-logos .col-lg-2:hover,
.company-logos .col-md-3:hover,
.company-logos .col-6:hover {
  transform: translateY(-10px);
}

/* Fix container and alignment issues */
.container-fluid {
  padding-left: max(16px, 5%);
  padding-right: max(16px, 5%);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1320px;
  }
}

/* Update styling for company logos to ensure consistent sizing */
.logo-img-1,
.logo-img-2,
.logo-img-3,
.logo-img-4 {
  transition: all var(--transition-medium);
  filter: grayscale(0%);
  opacity: 1;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  max-width: 100%;
  display: block;
}

/* Add specific style for Y Combinator logo that needs more constraints */
.logo-img-1 {
  max-height: 35px;
  max-width: 80%;
}

/* Special container for Y Combinator logo */
.y-logo-container {
  width: 100%;
  max-width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  padding: 6px;
}

.company-logos .col-lg-2:hover .logo-img-1,
.company-logos .col-lg-2:hover .logo-img-2,
.company-logos .col-lg-2:hover .logo-img-3,
.company-logos .col-lg-2:hover .logo-img-4,
.company-logos .col-md-3:hover .logo-img-1,
.company-logos .col-md-3:hover .logo-img-2,
.company-logos .col-md-3:hover .logo-img-3,
.company-logos .col-md-3:hover .logo-img-4,
.company-logos .col-6:hover .logo-img-1,
.company-logos .col-6:hover .logo-img-2,
.company-logos .col-6:hover .logo-img-3,
.company-logos .col-6:hover .logo-img-4 {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

/* Create wrapper div to ensure consistent spacing */
.logo-wrapper {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: var(--border-radius-sm);
  padding: 15px;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
  overflow: hidden;
}

.logo-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1); /* More subtle hover effect */
  box-shadow: var(--shadow-sm);
  border-color: rgba(67, 97, 238, 0.05);
}

.testimonial {
  padding: 40px;
  border-radius: var(--border-radius-lg);
  background-color: var(--white-color);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-medium);
  border: 1px solid rgba(67, 97, 238, 0.05);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial::before {
  content: '"';
  font-size: 120px;
  line-height: 1;
  font-family: serif;
  color: rgba(67, 97, 238, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-blue);
}

.testimonial-para {
  font-size: 20px;
  font-family: var(--para-font);
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.review {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.review-img {
  height: 60px;
  width: 60px;
  border-radius: var(--border-radius-full);
  background-image: url(../Images/hamad.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 16px;
  border: 3px solid rgba(67, 97, 238, 0.1);
  transition: all var(--transition-medium);
}

.testimonial:hover .review-img {
  border-color: var(--secondary-color);
}

.review-bio p:nth-child(1) {
  font-size: 18px;
  font-family: var(--para-font);
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.review-bio p:nth-child(2) {
  font-size: 15px;
  font-family: var(--para-font);
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

/* FUTURE CSS */

#future {
  padding: 120px 16px;
  background: linear-gradient(135deg, #3b5bdb, #4c6ef5);
  position: relative;
  overflow: hidden;
}

#future::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.future-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.future-btns.active {
  opacity: 1;
  transform: translateY(0);
}

.future-heading {
  font-size: 42px;
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--white-color);
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.future-heading.active {
  opacity: 1;
  transform: translateY(0);
}

.future-para-1 {
  font-size: 22px;
  font-family: var(--para-font);
  font-weight: 400;
  margin-bottom: 48px;
  color: rgba(239, 231, 235, 0.9);
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.future-para-1.active {
  opacity: 1;
  transform: translateY(0);
}

.beneath-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-medium);
}

.beneath-btns.active {
  opacity: 1;
  transform: translateY(0);
}

.spot-box {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-sm);
  padding: 6px 12px;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse 3s infinite;
}

.spot-box p {
  font-size: 15px;
  font-family: var(--para-font);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.beside-spot {
  margin: 0;
  font-size: 16px;
  font-family: var(--para-font);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* FOOTER STYLING  */
.footer {
  background-color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.2), transparent);
}

.navbar-brand-footer {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.navbar-brand-footer span {
  color: var(--secondary-color);
}

.navbar-brand-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-brand-footer:hover::after {
  transform: scaleX(1);
}

.tagline {
  font-size: 16px;
  font-family: var(--para-font);
  color: var(--text-color);
  margin-bottom: 24px;
  opacity: 0.8;
}

.footer ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: all var(--transition-medium);
  position: relative;
  display: inline-block;
  padding: 2px 0;
  opacity: 0.7;
}

.footer ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: width var(--transition-medium);
}

.footer ul li a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

.footer ul li a:hover::after {
  width: 100%;
}

.icons {
  font-size: 20px;
  color: var(--text-color);
  opacity: 0.6;
  transition: all var(--transition-medium);
  margin-right: 5px;
}

.icons:hover {
  color: var(--secondary-color);
  transform: translateY(-5px);
  opacity: 1;
}

.list-head {
  font-size: 18px;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.list-head::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.list-item {
  font-size: 16px;
  font-family: var(--para-font);
  font-weight: 400;
}

/* WAITLIST FORM STYLING */
.waitlist-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  border: 1px solid rgba(67, 97, 238, 0.05);
  transition: all var(--transition-medium);
}

.waitlist-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
}

.waitlist-title {
  font-weight: 800;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  margin-bottom: 20px;
}

.form-control {
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(67, 97, 238, 0.1);
  padding: 12px 16px;
  font-family: var(--para-font);
  transition: all var(--transition-medium);
  background-color: rgba(240, 244, 253, 0.5);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.2);
  background-color: white;
}

.btn-submit-btn {
  border-radius: var(--border-radius-md);
  padding: 12px;
  font-weight: 600;
  background-image: var(--grad-primary);
  background-size: 200% auto;
  border: none;
  color: #fff;
  transition: all var(--transition-medium);
  font-family: var(--para-font);
}

.btn-submit-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

section#home.join-waitlist {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f6f7ff 0%, #ebeeff 100%);
  position: relative;
}

section#home.join-waitlist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, rgba(67, 97, 238, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 30%);
  z-index: 0;
}

form#waitlistForm {
  width: 100%;
}

section#home.join-waitlist p {
  width: 100%;
}

section#home.join-waitlist p.text-muted {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-light) !important;
}

img.waitlist-img {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 300px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

h2#waitlistNumber {
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 48px;
  margin: 24px 0;
}

section#home.join-waitlist p.line {
  margin-bottom: 20px;
  margin-top: 30px;
  font-family: var(--para-font);
}

div#waitlistSection {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(67, 97, 238, 0.05);
  position: relative;
  z-index: 2;
}

.join-waitlist .banner-text h1 {
  font-size: 48px;
  line-height: 1.3;
}

.join-waitlist .banner-text h1 + p {
  font-size: 16px;
}

a.cross-img img {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-full);
  height: 50px;
  width: 50px;
  padding: 13px;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 100;
  transition: all var(--transition-medium);
}

a.cross-img img:hover {
  transform: rotate(90deg);
  background-color: white;
  box-shadow: var(--shadow-blue);
}

/* Additional Animation Classes */
.ai-floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.5) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.1;
  animation: float 10s ease-in-out infinite;
}

/* CSS Optimizations */
[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* Additional layout and alignment fixes */
#autopm .row:nth-child(2) {
  margin-left: 0;
  margin-right: 0;
}

/* Fix row alignment */
.row {
  margin-left: 0;
  margin-right: 0;
}

/* Ensure all containers center their content */
.container-fluid section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fix for safari and older browsers */
@supports not (backdrop-filter: blur(10px)) {
  .pm-box,
  .auto-2-light,
  .feature-box,
  .testimonial,
  .custom-btn {
    background-color: rgba(255, 255, 255, 0.95);
  }
}

/* Performance optimization - reduce repaints */
.banner-text h1,
.banner-text p,
.banner-btn,
.banner-img,
.Auto-text h1,
#autopm-2 h1,
.autopm2-para,
.feature-text h1,
.feature-text p,
.vision-heading,
.vision-para-1,
.vision-para-2,
.vision-2-heading,
.vision-2-para-1,
.future-heading,
.future-para-1,
.future-btns,
.beneath-btns {
  will-change: transform, opacity;
}

/* Add CSS for mobile navigation menu */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 16px;
    margin-top: 10px;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    margin-bottom: 5px;
  }

  .nav-button {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .auto-2-light {
    margin-bottom: 15px !important;
  }
}

/* Fix spacing for mobile */
@media (max-width: 576px) {
  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .banner-text h1 {
    font-size: 36px;
  }

  .banner-text p {
    font-size: 16px;
    width: 100%;
  }

  .banner-btn {
    flex-direction: column;
    width: 100%;
  }

  .banner-btn .btn-med,
  .banner-btn .btn-ex-small {
    width: 100%;
    margin: 5px 0;
  }

  .Auto-text h1,
  #autopm-2 h1,
  .feature-text h1,
  .vision-heading,
  .vision-2-heading,
  .future-heading {
    font-size: 28px;
  }

  .future-btns {
    flex-direction: column;
    width: 100%;
  }

  .future-btns button {
    width: 100%;
    margin: 5px 0;
  }

  .beneath-btns {
    flex-direction: column;
    text-align: center;
  }

  .spot-box {
    margin-bottom: 10px;
    margin-right: 0 !important;
  }
}

/* Fix responsive behavior for banner heading */
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 54px;
  }
}

@media (max-width: 992px) {
  .banner-text h1 {
    font-size: 48px;
  }

  .banner-text p {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .banner-text h1 {
    font-size: 36px;
  }
}

.col-12.mb-3 {
  margin-bottom: 8px !important;
}

/* Extra adjustments to remove vertical spacing */
#autopm-2 .row.w-100 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Add this to ensure proper alignment in mobile views */
@media (max-width: 768px) {
  #autopm-2 h1 {
    margin-bottom: 12px;
  }

  .autopm2-para {
    margin-bottom: 5px;
  }
}

/* Additional fix for the first feature box to be closer to the paragraph */
#autopm-2 .col-12:first-child {
  margin-top: 0;
  padding-top: 0;
}

#autopm-2 .col-12:first-child .auto-2-light {
  margin-top: 0;
}
