* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(255, 255, 255); 
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo img {
  height: auto;  
  width: 120px;  
}

.logo:hover {
  transform: scale(1.05);
}


.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: rgba(0, 0, 0, 0.8); 
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3B82F6;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: black; 
}

.nav-link:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.signin-button {
  background: transparent;
  color: black; 
  border: 1px solid rgba(0, 0, 0, 0.2); 
}

.signup-button {
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
  color: rgb(255, 255, 255); 
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.signin-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.3);
}
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: rgba(0, 65, 265, 0.897); 
  font-size: 1.5rem;
  cursor: pointer;
}

 
.hero-section {
  min-height: 100vh;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem 1rem;
}

/* Gradient Background Effects */
.hero-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  mix-blend-mode: soft-light;
}

.sphere-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, rgba(3, 89, 226, 0.767), rgba(114, 16, 206, 0.712));
  animation: float 8s infinite ease-in-out;
}

.sphere-2 {
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, rgba(153, 6, 79, 0.534), rgba(34, 211, 238, 0.795));
  animation: float 10s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: #1e293b;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
  color: #3B82F6;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1e293b, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-button {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-button {
  background: #3B82F6;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  background: #2563eb;
}

.secondary-button {
  background: rgb(12, 218, 12);
  color: #eef5ff;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
  background:  rgb(0, 255, 0);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  background: linear-gradient(45deg, #1e293b, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;

}

.stat-label {
  font-size: 1rem;

  color: #64748b;
  font-size: 0.875rem;
}

.hero-image-container {
  position: relative;
  height: 600px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  background: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: #1e293b;
  animation: float 6s infinite ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-container {
    height: 400px;
  }
}
.projects-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Ambient gradient spheres */
.projects-section::before,
.projects-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.projects-section::before {
  background: linear-gradient(45deg, #ffffff, #ffffff);
  top: -300px;
  left: -200px;
}

.projects-section::after {
  background: linear-gradient(45deg, #ffffff, #ffffff);
  bottom: -300px;
  right: -200px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 1.5rem;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.project-card:hover .project-links {
  transform: translateY(0);
}

.project-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.project-link:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #3b82f6, #4f46e5);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.project-link i {
  transition: all 0.3s ease;
}

.project-link:hover i {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-tags {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 20px;
  color: #4f46e5;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(59, 130, 246, 0.2));
  transform: translateY(-1px);
}

.tag i {
  font-size: 0.875rem;
}

.projects-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.projects-section .section-title {
  background: linear-gradient(95deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 50px;
}

.projects-section .section-subtitle {
  background: linear-gradient(95deg,  #1b1c1d, #1b1c27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-top: 10px;
}

.project-content h3 {
  color: #1e293b;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1e293b, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-content p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}
    .testimonials-section {
      background: linear-gradient(to bottom, #ffffff, #ffffff);
      padding: 8rem 1rem;
      position: relative;
      overflow: hidden;
    }

    /* Floating Background Elements */
    .testimonials-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .bg-circle {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.15;
    }

 
    .section-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      margin-top: -50px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      color: white;
    }

    .testimonials-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  
}

.testimonials-section .section-title {
  background: linear-gradient(95deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 30px;
}

.testimonials-section .section-subtitle {
  background: linear-gradient(95deg, #1b1c1d, #1b1c27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
  font-weight: 800;
}

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      perspective: 1000px;
    }

    .testimonial-card {
      background: rgb(255, 255, 255);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2rem;
      color: rgb(0, 0, 0);
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      animation: float 6s infinite ease-in-out;
      border-color: rgba(59, 130, 246, 50.5);
      box-shadow: 0 20px 40px rgba(7, 30, 129, 0.1);
    }

    .testimonial-card:nth-child(2) {
      animation-delay: 2s;
    }

    .testimonial-card:nth-child(3) {
      animation-delay: 4s;
    }

    .testimonial-card:hover {
      transform: translateY(-10px) rotateX(5deg);
      border-color: rgba(59, 130, 246, 0.5);
      box-shadow: 0 20px 40px rgba(9, 36, 185, 0.2);
    }

    .testimonial-quote {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1rem;
      opacity: 0.5;
      color: #00009c;
    }

    .testimonial-content {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(45deg, #3B82F6, #8B5CF6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: rgb(255, 255, 255);
      font-weight: 600;
    }

    .author-info h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .author-info p {
      color: rgba(0, 0, 0, 0.6);
      font-size: 0.9rem;
    }

    .testimonial-rating {
      display: flex;
      gap: 0.25rem;
      margin-top: 0.5rem;
    }

    .star {
      color: #FFD700;
    }

    .author-company {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
      color: rgb(0, 0, 0);
      font-size: 0.9rem;
    }

    .company-icon {
      color: #3B82F6;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    @media (max-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .footer {
  background: linear-gradient(to bottom, #001529, #000510);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 5rem 0 3rem;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo  {
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
  -webkit-background-clip: text; /* For older WebKit browsers */
background-clip: text; /* Standard property */
display: flex;
align-items: center;
  -webkit-text-fill-color: transparent;
  justify-content: center;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.875rem;
  color: #3B82F6;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info i {
  color: #3B82F6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  outline: none;
}

.newsletter-form button {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}


    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-stats {
        flex-direction: column;
        gap: 2rem;
      }

      .hero-image-container {
    height: 300px;
    border: 3px solid #4169E1;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.15);
    overflow: hidden;
    position: relative; 
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 105, 225, 0.1); 
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(4);
}

.hero-image-container:hover::after {
    opacity: 1;
}

      .floating-card {
        display: none;
      }
      .mobile-menu-button {
        display: block;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
      }

      .nav-links.active {
        display: flex;
      }

      .auth-buttons {
        width: 100%;
        flex-direction: column;
      }

      .auth-button {
        width: 100%;
        text-align: center;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 2rem;
      }

      .testimonial-card {
        animation: none;
      }
      .projects-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .project-card {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-links a {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-badge{
    font-size: medium;
    background-color: #f8f8f827;
    margin-top: 10px;
  }

  .hero-badge:hover{
   box-shadow: #0062ff;
    background-color: #ffffff00;
    
  
  }
}
.footer-logo{
  align-items: center;
}

/* Additional animations and effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-col {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

/* Hover effects for interactive elements */
.footer input:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.contact-info p:hover i {
  animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Additional decorative elements */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.3), 
    transparent
  );
}

/* Gradient text effect for headings on hover */
.footer-col h4:hover {
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
  -webkit-background-clip: text; /* For older WebKit browsers */
background-clip: text; /* Standard property */

  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

/* Newsletter form enhancement */
.newsletter-form {
  position: relative;
  overflow: hidden;
}

.newsletter-form::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.newsletter-form:focus-within::after {
  transform: scaleX(1);
}
    
.contact-us-section {
  background: linear-gradient(to bottom, #ffffff, #f1f5f9);
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
}

/* Floating Background Elements */
.contact-us-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}



.contact-us-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: -90px;
}

.contact-us-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-us-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #0062ff, #3b7eeb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-us-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-us-form-wrapper {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(8, 106, 235, 0.815);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(1, 104, 248, 0.178);
  transition: all 0.5s ease;
}

.contact-us-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  color: #475569;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  background: #ffffff;
  border: 1px solid #0873ff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #1e293b;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #00000077;
}

.contact-form-group select {
  color: #1e293b;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-us-button {
  background: linear-gradient(45deg, #3B82F6, #8B5CF6);
  border: none;
  border-radius: 12px;
  padding: 1rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-us-button:hover {
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

  
  
  .whatsapp-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: white;
        font-size: 28px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none; 
        text-align: center;
        z-index: 1000;
        animation: pulse 1.5s infinite;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        background-color: #25d366;
    }

    /* Pulse Animation */
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
        }
    }
    
    /* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 88px; /* Adjusted to be above the WhatsApp icon */
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #111827; /* Dark premium color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    margin-bottom: 5px; /* Adds 5px spacing above the WhatsApp icon */
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.why-spire-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Modern CSS Reset and Variables */
.why-spire-section {
    --primary: #4f46e5;
    --secondary: #3b82f6;
    --accent: #f0abfc;
    --dark: #0f172a;
    --light: #f8fafc;
    
}

/* Noise Animation */
@keyframes grain {
    0%, 100% { transform: translate(0, 0) }
    10% { transform: translate(-5%, -5%) }
    30% { transform: translate(3%, -2%) }
    50% { transform: translate(-2%, 6%) }
    70% { transform: translate(5%, 3%) }
    90% { transform: translate(-1%, 4%) }
}

.why-spire-section {
    padding: 8rem 1.5rem;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

/* Noise Overlay */
.why-spire-section::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
    pointer-events: none;
    opacity: 0.5;
}

.why-spire-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.why-spire-title-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.why-spire-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(240, 171, 252, 0.1);
    border: 2px solid rgba(240, 171, 252, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.why-spire-badge i {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.why-spire-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.why-spire-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-spire-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    perspective: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    border-color: #0062ff;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(240, 171, 252, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    top: -50%;
    left: -50%;
    transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 
        0 20px 40px rgba(53, 117, 255, 0.418),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon-wrapper::after {
    transform: translateX(100%);
}

.feature-icon {
    font-size: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.feature-text {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
}

.services-wrapper {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 900px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.services-text {
    text-align: center;
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    position: relative;
}

.inquire-btn {
    display: flex;  /* Changed from inline-flex */
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2rem auto;  /* This centers horizontally */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.5);
    width: fit-content;  
    min-width: 200px;   
    max-width: 250px;   
}

.inquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.inquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 40px -20px rgba(79, 70, 229, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.inquire-btn:hover::before {
    transform: translateX(100%);
}

.inquire-btn i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.inquire-btn:hover i {
    transform: translateX(4px);
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

@media (max-width: 768px) {
    .why-spire-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .services-wrapper {
        padding: 2rem;
        margin: 2rem auto;
    }
    
    .services-text {
        font-size: 1.125rem;
    }
}


.services-section {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --light: #f8fafc;
    --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-2: linear-gradient(135deg, #ec4899, #f43f5e);
    --gradient-3: linear-gradient(135deg, #3b82f6, #14b8a6);
}

/* Noise Animation */
@keyframes grain {
    0%, 100% { transform: translate(0, 0) }
    10% { transform: translate(-5%, -5%) }
    20% { transform: translate(3%, -2%) }
    30% { transform: translate(-3%, 6%) }
    40% { transform: translate(5%, 3%) }
    50% { transform: translate(-2%, 4%) }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}




.services-section {
    padding: 8rem 1.5rem;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    margin-top: -50px;
}

/* Noise Overlay */
.services-section::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: -60px;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(10px);
    transform-origin: center;
    animation: pulse 3s infinite;
}

.services-badge i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.services-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    perspective: 1000px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    border-color: #0062ff;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1),
        rgba(139, 92, 246, 0.1),
        rgba(236, 72, 153, 0.1)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    top: -50%;
    left: -50%;
    transform: translate(-100%, -100%);
    transition: 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: translate(100%, 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-icon.gradient-1 { background: var(--gradient-1); }
.service-icon.gradient-2 { background: var(--gradient-2); }
.service-icon.gradient-3 { background: var(--gradient-3); }

.service-icon::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s ease;
}

.service-card:hover .service-icon::after {
    transform: translateX(100%);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.service-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: float 8s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: -150px;
    right: -150px;
    animation-delay: -2s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -200px;
    left: -200px;
    animation-delay: -4s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-3);
    top: 40%;
    right: 15%;
    animation-delay: -6s;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.2rem;
      
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: -50px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .shape {
        opacity: 0.2;
    }
    
    .hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1e293b, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.20rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}
}


.enquiry-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.enquiry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.enquiry-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.enquiry-button.gradient-1 { background: var(--gradient-1); }
.enquiry-button.gradient-2 { background: var(--gradient-2); }
.enquiry-button.gradient-3 { background: var(--gradient-3); }

/* New Journey Card Styles */
.journey-card {
    background: linear-gradient(135deg, #000000, #00397a94);
    border-radius: 30px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.journey-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.journey-buttons {
    display: flex;
    gap: 1rem;
}

.journey-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-button i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.journey-button.primary {
    background: var(--gradient-1);
    color: white;
}

.journey-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.journey-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
}

.journey-shape {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 200%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    transform: rotate(-15deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 10s infinite alternate;
}

@media (max-width: 768px) {
    .journey-card {
        padding: 2rem;
        text-align: center;
    }
    .journey-title {
      font-size: xl;
    }
    .journey-buttons {
        flex-direction: column;
    }

    .journey-decoration {
        display: none;
    }

    .shape-2 {
      display: none;
    }
}


.clients-logos {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.clients-scroll {
    display: flex;
    animation: scrollLeft 15s linear infinite; /* Loop animation */
}

.client-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

/* Animation to scroll the logos */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Moves it to the left */
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .client-logo {
        width: 150px;
        margin: 0 20px;
    }
}

.clients-logos {
  position: relative;
  overflow: hidden; /* Prevent section from overflowing */
}

.clients-logos .section-heading {
  text-align: center;
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 4rem;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.767), rgba(0, 0, 0, 0.712));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  padding-top: 20px;
}


.client-logo {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo img {
  max-width: 180px;
  max-height: 100px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.client-logo img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .clients-logos .section-heading {
    font-size: 40px;
  }
  .client-logo img {
    max-width: 150px;
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .clients-logos .section-heading {
    font-size: 30px;
  }
  .client-logo img {
    max-width: 120px;
    max-height: 60px;
  }
}

.spire-value-section {
      background: linear-gradient(135deg, #2a3b8f 0%, #29539b 100%);
      padding: 80px 20px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .spire-content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .spire-header-section {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .spire-highlight-text {
      font-size:3rem;
      font-weight: bold;
      margin-bottom: 50px;
      background: linear-gradient(120deg, #ffd700, #ff8c00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      display: inline-block;
    }

    .spire-highlight-text::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(120deg, #ffd700, #ff8c00);
    }

    .spire-cards-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin: 40px 0;
    }

    .spire-feature-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .spire-feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .spire-icon-wrapper {
      width: 70px;
      height: 70px;
      background: linear-gradient(120deg, #ffd700, #ff8c00);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: transform 0.3s ease;
    }

    .spire-feature-card:hover .spire-icon-wrapper {
      transform: rotate(360deg);
    }

    .spire-icon-wrapper i {
      font-size: 30px;
      color: #2a3b8f;
    }

    .spire-card-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .spire-card-description {
      font-size: 1rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }

    .spire-floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .spire-shape {
      position: absolute;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      animation: spire-float 15s infinite linear;
    }

    .spire-shape-1 { width: 100px; height: 100px; top: 10%; left: 10%; animation-delay: 0s; }
    .spire-shape-2 { width: 150px; height: 150px; top: 60%; right: 10%; animation-delay: -5s; }
    .spire-shape-3 { width: 70px; height: 70px; top: 30%; right: 30%; animation-delay: -2s; }

    @keyframes spire-float {
      0% { transform: rotate(0deg) translate(0, 0); }
      100% { transform: rotate(360deg) translate(50px, 50px); }
    }

    .spire-description {
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    @media (max-width: 1024px) {
      .spire-cards-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .spire-value-section {
        padding: 60px 15px;
      }
      
      .spire-highlight-text {
        font-size: 2.3rem;
      }
      
      .spire-description {
        font-size: 1.1rem;
      }

      .spire-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .spire-feature-card {
        padding: 20px;
      }
    }

    @media (max-width: 768px) {
    .service-card {
        transform: none !important;  /* Disable rotation effect on mobile */
    }
}


.reviews-section {
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #fff, #f8f9ff);
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.company-logo {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
    margin-top: 10px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4c6ef5;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

.reviews-slider {
    position: relative;
    padding: 0 50px;
}

.slider-container {
    overflow: hidden;
    margin: 0 -1rem;
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem;
}

.review-card {
    min-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 44px;
    height: 44px;
    background: #f0f4ff;
    border-radius: 50%;
    padding: 8px;
}

.avatar svg {
    width: 100%;
    height: 100%;
    fill: #4c6ef5;
}

.user-details h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.user-details p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.card-rating {
    margin-left: auto;
    color: #ffd700;
    font-size: 1rem;
}

.review-text {
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn svg {
    fill: #4c6ef5;
}

.nav-btn:hover {
    background: #4c6ef5;
}

.nav-btn:hover svg {
    fill: white;
}

.prev { left: 0; }
.next { right: 0; }

.reviews-slider:hover .slider-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .reviews-slider {
        padding: 0 40px;
    }
    
    .review-card {
        min-width: 260px;
    }
}

.review-form-section {
    padding: 60px 20px;
    background: linear-gradient(145deg, #f8faff 0%, #f0f4ff 100%);
}

.review-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.1);
}

.review-container h2 {
    color: #1E293B;
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.review-subtitle {
    color: #64748B;
    text-align: center;
    margin-bottom: 32px;
}

.stars-container {
    text-align: center;
    margin-bottom: 32px;
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 40px;
    color: #CBD5E1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating input:checked ~ label {
    color: #FFB800;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FFB800;
}

.rating-text {
    margin-top: 8px;
    color: #64748B;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.1);
}

.submit-review {
    width: 100%;
    background: #4169E1;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review:hover {
    background: #2851DB;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(65, 105, 225, 0.2);
}

@media (max-width: 768px) {
    .review-container {
        padding: 30px 20px;
    }

    .star-rating label {
        font-size: 32px;
    }
}

.premium-loader__main-content {
  transition: filter 0.3s ease-out;
}

.premium-loader__main-content--blurred {
  filter: blur(6px);
}

@media screen and (max-width: 768px) {
  
  
  .footer-bottom-links{
       display: none;
  }
  
  .premium-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    animation: premium-loader-fadeOut 0.6s ease-out 2.5s forwards;
    opacity: 1;
  }

  /* Larger logo with pulse and scale animation */
  .premium-loader__logo {
    width: 240px; 
    height: 240px;
    object-fit: contain;
    animation: premium-loader-pulse 1.5s ease-in-out infinite, premium-loader-fadeIn 1s ease-in-out, premium-loader-fadeOutLogo 0.6s ease-out 2.5s forwards;
    opacity: 1;
  }

  /* Pulse and scale animation for logo */
  @keyframes premium-loader-pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  /* Fade-in effect when the page loads */
  @keyframes premium-loader-fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* Smooth fade-out animation for logo */
  @keyframes premium-loader-fadeOutLogo {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }

  /* Smooth fade-out animation for the whole loader */
  @keyframes premium-loader-fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.6s ease-out;
    }
  }
}

@media screen and (min-width: 769px) {
  .premium-page-loader {
    display: none;
  }
}

@media screen and (max-width: 768px) {
    .hero-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-button i {
        margin-right: 8px;
        font-size: 22px; /* Adjust icon size */
    }
}




