:root {
  --primary-color: #0066ff;
  --secondary-color: #00d4ff;
  --accent-color: #ff6b35;
  --dark-color: #0a0a0a;
  --light-color: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  color: white;
}

.plane-animation {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fly 2s ease-in-out infinite;
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.8;
}

@keyframes fly {
  0%,
  100% {
    transform: translateX(-20px) rotate(-5deg);
  }
  50% {
    transform: translateX(20px) rotate(5deg);
    -webkit-transform: translateX(20px) rotate(5deg);
    -moz-transform: translateX(20px) rotate(5deg);
    -ms-transform: translateX(20px) rotate(5deg);
    -o-transform: translateX(20px) rotate(5deg);
}
}

/* Navigation */
/* .custom-navbar {
  background: rgb(1 5 33 / 95%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  padding: 0rem 0;
  z-index: 1050;
} */
.custom-navbar {
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 0rem 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 1);  
}

.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 0rem 0;
  box-shadow: var(--shadow-lg);
}

.logo-container {
  transition: var(--transition);
}

.logo-container:hover {
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgb(88, 88, 88);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}



.nav-link {
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  padding: 0.75rem 1rem !important;
  border-radius: var(--border-radius);
   color: var(--dark-color) !important;
}

.nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--accent-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  background: var(--gradient-secondary);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 96%;
}

/* Mega Menu */
.mega-dropdown .dropdown-menu {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  margin-top: 1rem;
}

.mega-menu {
  min-width: 600px;
}

.mega-menu h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-menu .dropdown-item {
  color: #ccc;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.mega-menu .dropdown-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(5px);
}

.mega-menu-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dropdown-menu {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.dropdown-item {
  color: #ccc;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-bottom: 0.25rem;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(91deg, rgb(6 30 67 / 86%) 0%, rgb(196 220 255 / 15%) 100%); */
  z-index: 1;
}

.hero-content-row {
  height: 80vh;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: rgb(22, 22, 22);
  animation: slideInUp 1s ease-out;
  padding-top:0px; /* Account for fixed navbar */
  padding-bottom: 50px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInDown 1s ease-out 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
  -webkit-animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;  
  animation: fadeInUp 1s ease-out 0.6s both;
  -webkit-animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-footer{
  position: relative;
    bottom:96px;
    z-index: 2;
    text-align: center;
    background: rgba(2, 12, 41, 0.8); 
    font-size: 20px; 
    color: #fff;
}

  @media(max-width:992px){
    .hero-content{
      padding-top:80px;
    }
  }
   @media (max-width:768px){
    .hero-footer{
      font-size: 12px;
      bottom: 68px;
    }
  }
    @media (max-width:536px){
    .hero-footer{
      bottom: 90px;
    }
  }
     @media (max-width:425px){
        .hero-footer{
          bottom: 90px;
        }
    }

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

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

.hero-features {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--light-color);
  margin-right: 0rem;
  font-size: 1.2rem;
}

.technology-showcase {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.tech-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tech-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.carousel-indicators {
  bottom: 6rem;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  margin: 0 5px;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  z-index: 3;
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: white;
  position: relative;
  animation: scroll 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

@keyframes scroll {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

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

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

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--dark-color);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Mission Section */


/* Section Styling */
.mission-vision-section {
    background: #cfcfcf;
    padding: 80px 0; /* Vertical padding for spacing */
    color: #fff; /* Text color */
    position: relative;
}

.mission-vision-section .section-badge {
    font-size: 16px;
    font-weight: 700;
    color: #f25c5c;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.mission-vision-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.mission-vision-section .gradient-text {
    background: linear-gradient(45deg, #f25c5c, #fd9c3e);
    -webkit-background-clip: text;
    color: transparent;
}

.mission-vision-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Card Styling */
.mission-card, .vision-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: slideIn 0.7s ease-in-out forwards;
    text-align: center;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
    font-size: 60px;
    color: #f25c5c;
    margin-bottom: 20px;
}

.mission-content, .vision-content {
    text-align: center;
}

.mission-content h3, .vision-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mission-content p, .vision-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.mission-points, .vision-points {
    margin-top: 20px;
}

.point-item {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.point-item i {
    color: #f25c5c;
    margin-right: 10px;
}

/* Slide-In Animations */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 20px;
    }

    .mission-vision-section .section-title {
        font-size: 2rem;
    }

    .mission-card, .vision-card {
        padding: 25px;
    }
    .stat-number {
      font-size: 1.2rem;
    }
}


.about-hero{
    background-size: cover; /* Adjust image to cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
    /* min-height: 42vh; */
}
.about-banner{
  padding-top: 150px;
  padding-bottom: 50;
}

@media (max-width: 768px){
.about-hero{
   min-height: 27vh;
}
.hero-content {
    padding-top: 80px;
    padding-bottom: 0;
    }
}










/* Enabling People Section */
.enabling-people-section {
  padding: 60px 0;
  background: var(--light-color);
}

.image-stack {
  position: relative;
  height: 500px;
}

.image-card {
  position: absolute;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.image-card-1 {
  top: 0;
  left: 0;
  width: 70%;
  height: 60%;
  z-index: 2;
}

.image-card-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 50%;
  z-index: 1;
}

/* .image-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
} */

.floating-stats {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.content-wrapper {
  padding-left: 0rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.feature-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 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.02'%3E%3Cpath d='M20 20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm0-20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z'/%3E%3C/g%3E%3C/svg%3E");
}

.video-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.video-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.video-info {
  text-align: center;
  margin-top: 2rem;
  color: white;
}

.video-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.video-info p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Solutions Section */
.solutions-section {
  padding: 120px 0;
  background: var(--gray-100);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.solution-card-modern {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  -webkit-border-radius: var(--border-radius-lg);
  -moz-border-radius: var(--border-radius-lg);
  -ms-border-radius: var(--border-radius-lg);
  -o-border-radius: var(--border-radius-lg);
}

/* .solution-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
} */

.solution-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* .solution-card-modern:hover .solution-image img {
  transform: scale(1.1);
} */

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 102, 255, 0.8), rgba(0, 212, 255, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.solution-card-modern:hover .solution-overlay {
  opacity: 1;
}

.solution-overlay .solution-icon {
  font-size: 3rem;
  color: white;
}

.solution-content {
  padding: 2rem;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.solution-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.solution-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.solution-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Technology Section */
.technology-section {
  padding: 120px 0;
  background: white;
}

.tech-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.tech-card .tech-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.tech-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.tech-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Testimonials Section */

/* Section Styling */
.modern-testimonials-section {
    background: #f0f5fa;
    padding: 80px 0;
    position: relative;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg-pattern.svg') no-repeat center center;
    opacity: 0.1;
}

.section-badge-modern {
    font-size: 16px;
    font-weight: 700;
    color: #f25c5c;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(45deg, #f25c5c, #fd9c3e);
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Testimonials Carousel */
.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}



/* Testimonial Content */
/* ------------------------- General Styling ------------------------- */

.modern-testimonials-section {
    position: relative;
    background-color: #f9f9f9;
    padding: 60px 0;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('your-pattern-image.jpg'); /* Replace with your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
}

.container {
    position: relative;
    z-index: 1;
}

.section-badge-modern {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title-modern {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle-modern {
    font-size: 18px;
    font-weight: 400;
    color: #777;
    margin-bottom: 50px;
}

.testimonials-carousel-container {
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card-modern {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card-modern.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-mark i {
    font-size: 30px;
    color: #f1a5a1;
}

.rating-stars i {
    font-size: 16px;
    color: #FFD700;
}

.testimonial-content-modern p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.client-avatar {
    margin-right: 15px;
}

.client-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.company-badge {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #007BFF;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.company-badge i {
    margin-right: 5px;
}

.testimonials-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.testimonials-dots .dot.active {
    background-color: #007BFF;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
}

.nav-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 2px 10px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #0056b3;
}

.trust-indicators {
    margin-top: 50px;
}

.trust-stat {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.trust-stat .trust-number {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.trust-stat .trust-label {
    font-size: 16px;
    color: #777;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .section-title-modern {
        font-size: 28px;
    }

    .testimonial-card-modern {
        padding: 20px;
    }

    .client-avatar img {
        width: 50px;
        height: 50px;
    }

    .client-info h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonials-controls {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-dots {
        margin-bottom: 20px;
    }

    .nav-btn {
        margin-bottom: 10px;
    }
}












/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--gradient-primary);
  color: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-visual img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.cta-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: white;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-brand img {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  color: white;
}

.footer h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.contact-item strong {
  color: white;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--gray-400);
  margin: 0;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray-400);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

.cta-modal .modal-content {
            border-radius: 0.75rem;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
    .cta-modal .modal-header {
        background: var(--secondary-color);
        color: white;
        padding: 1.5rem;
        border-bottom: none;
        position: relative;
    }
    
    .cta-modal .modal-header h5 {
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .cta-modal .modal-header p {
        opacity: 0.85;
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .cta-modal .modal-body {
        padding: 1.5rem;
    }
    
    .cta-modal .form-control {
        border-radius: 0.5rem;
        padding: 0.75rem 1rem 0.75rem 3rem;
    }
    
    .cta-modal .input-group {
        position: relative;
        margin-bottom: 1.25rem;
    }
    
    .cta-modal .input-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #a1a5b7;
        z-index: 5;
    }
    
    .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
    }
    
    .btn-close:hover {
        opacity: 1;
    }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-stats {
    gap: 1rem;
  }

  .technology-showcase {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .content-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .mega-menu {
    min-width: auto;
  }

  .mega-dropdown .dropdown-menu {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }


  .hero-subtitle {
    font-size: 1rem;
  }

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

  .mission-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-stack {
    height: 300px;
  }

  .floating-stats {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 2rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .about-aim-section,
  .solutions-section,
  .technology-section,
  .cta-section {
    padding: 60px 0;
  }

  .hero-banner {
    min-height: 50vh;
  }

  .image-stack {
    height: 250px;
  }
    .contact-item {
    display: block;
  }
  .social-icons {
    justify-content: center;
  }
  .footer{
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .mission-text {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .tech-card .tech-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about-aim-section,
  .solutions-section,
  .technology-section,
  .cta-section {
    padding: 40px 0;
  }

  .hero-banner {
    min-height: 45vh;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-slide-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Intersection Observer Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hero Banner for Inner Pages */
.hero-banner {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-banner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  z-index: 1;
}

.hero-banner .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-top: 100px;
}

.hero-banner .hero-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto;
}

/* About AIM Section */
.about-aim-section {
  padding: 120px 0;
  background: var(--light-color);
}

/* Update all section paddings */
.about-aim-section,
.solutions-section,
.technology-section,
.cta-section {
  padding: 80px 0;
}

.hero-banner {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.image-stack {
  position: relative;
  height: 400px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .about-aim-section,
  .solutions-section,
  .technology-section,
  .cta-section {
    padding: 60px 0;
  }

  .hero-banner {
    min-height: 50vh;
  }

  .image-stack {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .about-aim-section,
  .solutions-section,
  .technology-section,
  .cta-section {
    padding: 40px 0;
  }

  .hero-banner {
    min-height: 45vh;
  }
}


/*------------Values Section--------------*/
/* Section Styling */
.values-section {
    background: #f4f7fa;
    padding: 60px 0;
}

.values-section .section-badge {
    font-size: 16px;
    font-weight: 700;
    color: #f25c5c;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.values-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.values-section .gradient-text {
    background: linear-gradient(45deg, #f25c5c, #fd9c3e);
    -webkit-background-clip: text;
    color: transparent;
}

/* Value Cards */
.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

/* .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

.value-card .value-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Animation for Fade-In Effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .values-section {
        padding: 40px 20px;
    }

    .values-section .section-title {
        font-size: 2rem;
    }

    .col-lg-4 {
        max-width: 100%;
    }

    .value-card {
        padding: 20px;
    }
}



/* Mission Section */
.mission-section {
  position: relative;
  padding: 120px 0;
  background: var(--gradient-dark);
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  animation: float 30s ease-in-out infinite;
}

.mission-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.mission-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.highlight {
  color: var(--secondary-color);
  font-weight: 600;
}

.mission-visual {
  margin-top: 3rem;
}

.orbit-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.orbit-1 {
  width: 100px;
  height: 100px;
  top: 50px;
  left: 50px;
}

.orbit-2 {
  width: 150px;
  height: 150px;
  top: 25px;
  left: 25px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  animation-duration: 40s;
}

.orbit-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  top: -20px;
  left: -20px;
}

.features-section {
  background: #f9fcff;
  color: #2b2d42;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width:800px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e3eaf3;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.feature-list {
  padding-left: 18px;
  margin: 0;
}

.feature-list li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #0077b6;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-in-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



 /* Key Features Section */
        .key-features {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 80px;
        }

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

        .key-features .section-title {
            text-align: center;
            font-size: 2em;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        /* Features List */
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 7px;
        }

        .feature {
            background-color: #ecf0f1;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
         .feature  h3{
          margin-bottom: 0px;
         }

        /* .feature:hover {
            transform: translateY(-5px);
        } */

        .icon {
            font-size: 20px;
            color: var(--primary-color);
            margin-right: 10px;
        }

        .feature-text h3 {
            font-size: 1.2em;
            color: #34495e;
        }

        /* key features Mobile Responsiveness */
        @media screen and (max-width: 768px) {
            .key-features .container {
                padding: 0 15px;
            }
        }


        
/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #ebebeb;
}



/* Benefits Image and Stats */
.benefits-visual {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.benefits-visual img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/* Stats Overlay */
.benefits-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.benefit-stat {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #2980b9;
}

.stat-label {
    font-size: 1.1em;
    color: #34495e;
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-left.scrolled, .reveal-right.scrolled {
    transform: translateX(0);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-up.scrolled {
    transform: translateY(0);
}

/* Content Section */
.benefits-content {
    /* padding-left: 40px; */
}

.benefit-item {
    display: flex;
    align-items:start;
    margin-bottom: 30px;
    /* opacity: 0;
    transform: translateX(100%); 
    animation: slideIn 0.8s ease-out forwards;*/
}

.benefit-item .benefit-icon {
    font-size: 30px;
    color:var(--primary-color);
    margin-right: 20px;
}

.benefit-item .benefit-content h5 {
    font-size: 1.5em;
    font-weight: 600;
    color: #2c3e50;
}

.benefit-item .benefit-content p {
    font-size: 1.1em;
    color: var(--gray-800);
    line-height: 1.5;
}

/* Slide-in Animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefits-visual:hover img {
    transform: scale(1.1);
}

.slide-left {
    animation: slide-left 1s ease-out forwards;
}

.slide-right {
    animation: slide-right 1s ease-out forwards;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .benefits-section {
    padding: 40px 0;
}
    /* .benefits-section .row {
        flex-direction: column-reverse;
        text-align: center;
    } */
     .about-aim-section .row {
      flex-direction: column-reverse;
     }

    .benefits-content {
        padding-left: 0;
        padding-bottom: 40px;
    }

    .benefit-item {
        margin-bottom: 20px;
    }

    .benefit-icon {
        font-size: 30px;
    }

    .benefit-content h5 {
        font-size: 1.3em;
    }

    .benefit-content p {
        font-size: 1em;
    }
    .section-subtitle-modern{
      margin-bottom:0px;
    }
}

/* Workflow Section */
.workflow {
  padding: 80px 0;
  background-color: var(--light-color);
}

.workflow-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.workflow-step {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 150px;
}

.step-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.workflow-step h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
}

.workflow-arrow {
  font-size: 1.5rem;
  color: var(--primary-color);
}

@media (max-width: 480px) {
    .demo-tabs {
        flex-wrap: wrap;
    }
      
  }
  @media (max-width: 480px) {
      .workflow-steps {
        flex-direction: column;
    }
      .workflow-arrow{
    transition: 1s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    }

  }




/* Interactive Demo Section */
.interactive-demo {
    padding: 80px 0;
    background-color: #e1edff;
    color: #1a1a1a;
}

.section-header.light {
    color: #1a1a1a;
}

.section-header.light .separator {
    background-color: var(--accent-color);
}

.demo-container {
    /* margin-top: 50px; */
}

.demo-tabs {
    display: flex;
    border-bottom: 1px solid rgb(7 88 157 / 20%) ;
    /* 1px solid rgba(255, 255, 255, 0.2);  */
    margin-bottom: 30px;
}

.demo-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    color: rgb(34 64 111 / 70%);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.demo-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.demo-tab.active {
    color: #0660a3;
}

.demo-tab.active::after {
    transform: scaleX(1);
}

.demo-tab-content {
    display: none;
}

.demo-tab-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.demo-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-image img {
    width: 100%;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.hotspot-dot {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.8);
    box-shadow: 0 0 0 rgba(255, 107, 0, 0.4);
    animation: pulse 2s infinite;
    position: relative;
}

.hotspot-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}

.demo-description {
    flex: 1;
    min-width: 300px;
}

.demo-description h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.demo-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}  

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .demo-tabs {
        flex-wrap: wrap;
    }}

    @media (max-width:768px){
        .workflow-steps {
            gap: 5px;
            flex-direction: column;
          }
    }

    /*===================---------/ Why eAIP /---------=================*/
            .why-choose-us {
              background: url('your-background.jpg') center center/cover no-repeat;
              position: relative;
              padding: 80px 20px;
              color: #272727;
            }
      
            .why-choose-us .overlay {
              background: rgba(255, 255, 255, 0.85);
              padding: 60px 20px;
            }
      
            .why-choose-us h2 {
              text-align: center;
              margin-bottom: 15px;
            }
      
            .why-choose-us .subtitle {
              text-align: center;
              max-width: 900px;
              margin: 0 auto 50px auto;
              line-height: 1.6;
              font-size: 16px;
            }
      
            .stats-box {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              max-width: 900px;
              margin: 0 auto;
              border: 1px solid rgba(0, 0, 0, 0.3);
              border-radius: 125px;
              -webkit-border-radius: 125px;
              -moz-border-radius: 125px;
              -ms-border-radius: 125px;
              -o-border-radius: 125px;
}
      
            .stat {
              padding: 30px 20px;
              text-align: center;
              border-right: 1px solid rgba(0, 0, 0, 0.3);
              /* border-bottom: 1px solid rgba(255,255,255,0.3); */
            }
      
            .stat:nth-child(3),
            .stat:nth-child(6) {
              border-right: none;
            }
      
            .stat:nth-child(4),
            .stat:nth-child(5),
            .stat:nth-child(6) {
              border-bottom: none;
            }
      
            .stat img {
              width: 40px;
              margin-bottom: 10px;
              /* filter: invert(1); */
            }
      
            .stat h3 {
              font-size: 20px;
              margin-bottom: 5px;
            }
      
            .stat p {
              font-size: 14px;
              letter-spacing: 1px;
            }
      
            /* Responsive adjustments */
            @media (max-width: 768px) {
              .stat {
        
               border-bottom: 1px solid rgba(0, 0, 0, 0.3); 
            }
              .stats-box {
                grid-template-columns: repeat(2, 1fr);
              }
      
              .stat:nth-child(2n) {
                border-right: none;
              }
              
      
              .stat:nth-child(3){
                grid-column: 1 / -1; 
              }
              .stat:nth-child(3),
              .stat:nth-child(4) {
                border-bottom: 0px solid rgba(0, 0,0 , 0.3);
              }
              
            }
      
            @media (max-width: 480px) {
              .stats-box {
                grid-template-columns: 1fr;
              }
      
              .stat {
                border-right: none;
                border-bottom: 1px solid rgba(0, 0, 0, 0.3);
              }
      
              .stat:last-child {
                border-bottom: none;
              }
            }