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

/* Body */
body {
  font-family: 'Inter', sans-serif;
  background-color: #1d0d3f; /* deep purple */
  color: white;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
}


a span {
  color: inherit; /* Keeps the original text color */
  text-decoration: none; /* Removes underline */
}



/* Navbar */
/* Base Styles (Your Original Code) */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: linear-gradient(90deg, #110235, #130135, #151414);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width : 100%;
  z-index: 10;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}

.logo img {
  width: 36px;
  height: 36px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffffd9;
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #c084fc;
}

/* Active Link Animation */
.nav-links a.active {
  color: #df0dd8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: flow-border 3s linear infinite;
}

@keyframes flow-border {
  0% { box-shadow: 0 0 5px #947dab, 0 0 10px #ac9abe inset; }
  50% { box-shadow: 0 0 15px #b7a8c6, 0 0 25px #ac9abf inset; }
  100% { box-shadow: 0 0 5px #d0bee2, 0 0 10px #e4dbed inset; }
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.login {
  background: #111;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.login:hover {
  background-color: #2a003f;
  color: #c084fc;
}

.get-started {
  background: linear-gradient(135deg, #1f1b2e, #3c246d);
  color: white;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.get-started:hover {
  background: linear-gradient(135deg, #2c2544, #4b2e91);
  transform: scale(1.05);
}

/* Social Icons */
.social-icons a {
  color: white;
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b9a7ff;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');


/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    gap: 15px;
  }

  .buttons {
    gap: 10px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .login, .get-started {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start; /* Align to left instead of center */
    padding: 1rem;
  }

  .logo {
    font-size: 1.4rem;
    margin-bottom: 15px;
    justify-content: flex-start; /* Left-align logo */
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start; /* Left-align links */
    width: 100%;
    gap: 15px;
  }

  .nav-links a {
    padding: 12px 20px;
    width: 100%;
    text-align: left; /* Align text to left */
    border-radius: 6px;
   
  }

  .buttons {
    width: 100%;
    justify-content: flex-start; /* Left-align buttons */
    margin-top: 15px;
  }

  .get-started {
    width: auto; /* Button only as wide as needed */
    text-align: left;
  }

  .social-icons {
    margin-top: 15px;
    justify-content: flex-start;
  }
}


@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 1rem;
  }

  .login, .get-started {
    padding: 5px 10px;
    font-size: 0.85rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}






/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 90px;
  flex-wrap: wrap;
  background-color: transparent;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  position: relative;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.animated-word {
  display: inline-block;
  position: relative;
  font-weight: 900;
  padding: 0;
  background: transparent !important;
}

.animated-word::after {
  content: "|";
  position: absolute;
  right: -10px;
  animation: blink 0.7s infinite;
  color: #9015ce;
  font-weight: 900;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtext {
  flex: 1 1 45%;
  margin-top: 1rem;
}

.hero-subtext p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-button {
  display: inline-block;
  background-color: rgb(134, 9, 9);
  color: #bab8be;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ded6ff;
}

/* Cover Section */
.cover-section {
  padding-top: 50px;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  padding-top: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.video-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: white;
  background: rgba(3, 0, 8, 0.6);
  backdrop-filter: blur(4px);
}

.video-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.video-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.video-overlay .cta-button {
  background-color: #9896a1;
  color: #1c0e3b;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-overlay .cta-button:hover {
  background-color: #ded6ff;
  transform: scale(1.05);
}

/* About Section */
.about-section {
  padding-top: 50px;
  padding: 4rem 2rem;
  background-color: #1D0F33;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ddd;
}

.about-button {
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #1D0F33;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {


  .cover-section {
    margin-top: 175px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    height: auto;
  }

  .video-overlay h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {



  .cover-section {
    margin-top: 175px;
  }

  .hero {
    padding: 2rem 1.5rem; /* Less vertical padding */
    text-align: center;   
  }

  .hero-text, .hero-subtext {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3; /* Ensure enough line space */
    margin-bottom: 1rem;
  
  }

  .hero-subtext p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
  padding: 0.8rem 1.5rem;

  }

  .video-overlay h1 {
    font-size: 2rem;
  }

  .video-overlay p {
    font-size: 1rem;
  line-height: 1.5;

  }

  .about-section {
    padding: 2rem 1rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }

  .video-overlay h1 {
    font-size: 1.7rem;
  }

  .video-overlay p {
    font-size: 0.9rem;
  }

  .about-text h2 {
    font-size: 1.7rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}


.about-button {
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #1D0F33;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #f0f0f0;
}

/* Image styling */
.about-image {
  flex: 1 1 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.services-section {
  background: linear-gradient(to bottom, #1D0F33, #220847);
  color: white;
  padding: 4rem 2rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.services-title .highlight {
  color: #7C3AED; /* Bright purple accent */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #7C3AED;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0d8f7;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #140529;
  color: white;
}

.testimonial-section {
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  height: 200px;
  margin: 0 auto;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial.active {
  opacity: 1;
  z-index: 1;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #e6defa;
}

.testimonial h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #a57efb;
}

/* 🟣 Scrolling Banner Styling */
.banner-strip {
  background: linear-gradient(to right, #6a00ff, #8f00ff, #ff005d);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-size: 2.5rem;
  font-weight: 600;
}

.scrolling-text span {
  margin: 0 3rem;
  font-weight: 900;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Optional responsiveness */
@media (max-width: 600px) {
  .scrolling-text {
    font-size: 1.5rem;
  }
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 100px 20px;
  background: linear-gradient(90deg, #15022f, #4604aa, #13011e);
  flex-wrap: wrap;
  text-align: center;
}

.stat-box {
  min-width: 150px;
  flex: 1;
}

.counter {
  font-size: 4rem;
  font-weight: 800;
  color: #a09de3;
  transition: all 0.5s ease-in-out;
}

.green {
  color: #a09de3;
}

.blue {
  color: #a09de3;
}

.stat-box p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #a09de3;
}


/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0a2b; /* dark purple background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}

/* ROI Section Layout */
.roi-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(135deg, #1a0756, #0d1a54);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  gap: 50px;
  flex-wrap: wrap;
}

.roi-text {
  flex: 1;
}

.roi-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #c18fff;
}

.roi-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #e0dcf7;
}

.cta-button {
  background: linear-gradient(to right, #6b3df3, #3b1dcf);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #5221d6, #2a0db3);
  transform: scale(1.05);
}

/* Image Style */
.roi-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roi-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 900px) {
  .roi-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
  }

  .roi-text h2 {
    font-size: 2.2rem;
  }

  .roi-image img {
    max-width: 90%;
    margin-bottom: 30px;
  }
}


.smart-work-section {
  background-color: #12153b;
  color: white;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.smart-work-section h2 {
  font-size: 2.8rem;        /* Slightly bigger */
  font-weight: 900;         /* Extra bold */
  color: #8a6cff;           /* Purplish highlight */
  text-shadow: 1px 1px 4px rgba(90, 51, 255, 0.8);
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 1.2s ease forwards;
  margin-bottom: 15px;
}

/* Sliding in from left animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.bright-pink-text {
  font-family: 'Poppins', sans-serif; /* More modern and bold aesthetic font */
  font-weight: 900;
  color: #dadae9; /* Soft muted purple (aesthetic and dark-friendly) */
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.5);
}





.content-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text content styling */
.text-content {
  max-width: 500px;
  line-height: 1.6;
  color: white;
  text-align: left;
}

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #8a6cff; /* Purplish highlight for AI theme */
  font-weight: 700;
}

.text-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0ff; /* lighter text for readability */
}

/* Learn More Button */
.learn-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #5e33ff, #2a0a88);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(94, 51, 255, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* for anchor button */
  user-select: none;
}

.learn-more-btn:hover,
.learn-more-btn:focus {
  background: linear-gradient(90deg, #3b1f99, #120753);
  box-shadow: 0 6px 20px rgba(58, 23, 153, 0.8);
  outline: none;
}

/* === Globe + Orbit Container === */
.globe-orbit-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

/* Center the globe */
.globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #5e33ff, #2a0a88);
  border-radius: 50%;
  box-shadow: 0 0 25px #5e33ff;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Orbit rings containers with animation */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform-origin: center center;
  transform-style: preserve-3d;
}

.orbit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
}

/* Orbit sizes and animations */
.orbit-1 {
  width: 160px;
  height: 160px;
  margin-left: -80px;
  margin-top: -80px;
  animation: spin 12s linear infinite;
  z-index: 3;
}

.orbit-2 {
  width: 250px;
  height: 250px;
  margin-left: -125px;
  margin-top: -125px;
  animation: spin 20s linear infinite reverse;
  z-index: 2;
}

.orbit-3 {
  width: 340px;
  height: 340px;
  margin-left: -170px;
  margin-top: -170px;
  animation: spin 25s linear infinite;
  z-index: 1;
}

/* Orbit icons */
.orbit-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.orbit-icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}

/* Position icons on orbits */
.orbit-1 .orbit-icon:nth-child(1) {
  transform: rotate(0deg) translateX(80px) translateY(-50%) rotate(-0deg);
}

.orbit-1 .orbit-icon:nth-child(2) {
  transform: rotate(180deg) translateX(80px) translateY(-50%) rotate(-180deg);
}

.orbit-2 .orbit-icon:nth-child(1) {
  transform: rotate(0deg) translateX(125px) translateY(-50%) rotate(-0deg);
}

.orbit-2 .orbit-icon:nth-child(2) {
  transform: rotate(120deg) translateX(125px) translateY(-50%) rotate(-120deg);
}

.orbit-2 .orbit-icon:nth-child(3) {
  transform: rotate(240deg) translateX(125px) translateY(-50%) rotate(-240deg);
}

.orbit-3 .orbit-icon:nth-child(1) {
  transform: rotate(0deg) translateX(170px) translateY(-50%) rotate(-0deg);
}

.orbit-3 .orbit-icon:nth-child(2) {
  transform: rotate(180deg) translateX(170px) translateY(-50%) rotate(-180deg);
}

/* Spin animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .orbit {
    animation: none !important;
  }

  .orbit-icon:hover {
    transform: none !important;
  }
}

.services-list li {
  display: flex;
  align-items: center; /* vertically center icon and text */
  gap: 10px; /* space between icon and text */
}

.services-list li .icon {
  flex-shrink: 0; /* keep icon size fixed */
  font-weight: bold;
  font-size: 1.2em;
}

.services-list li > div {
  /* keep the text block normal */
}


#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b1b2f, #120e2d);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bars {
  display: flex;
  gap: 10px;
}

.bar {
  width: 8px;
  height: 40px;
  background: #9f5cf4;
  border-radius: 8px;
  animation: pulseBar 1.2s infinite ease-in-out;
  box-shadow: 0 0 10px #9f5cf4aa;
}

.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.1s; }
.bar3 { animation-delay: 0.2s; }
.bar4 { animation-delay: 0.3s; }
.bar5 { animation-delay: 0.4s; }

@keyframes pulseBar {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(1.8); opacity: 1; }
}






/* contact.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #120038, #050611);
  color: #e1e1e1;
}

.contact-section {
  padding: 100px 30px 60px;
  color: #e1e1e1;
  position: relative;
  text-align: center;
}

.contact-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  height: 200px;
}

.kinetic-text {
  font-size: 140px;
  font-weight: bold;
  letter-spacing: 10px;
  color: transparent;
  -webkit-text-stroke: 1.5px #ff00ff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #d633ff, #ff00ff);
  -webkit-background-clip: text;
  background-clip: text;
  animation: stroke-animation 6s infinite linear;
}

@keyframes stroke-animation {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.send-button {
  background: #d633ff;
  color: #fff;
  padding: 15px 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.send-button:hover {
  transform: scale(1.05);
}

.contact-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.footer-column h3 {
  color: #d633ff;
  margin-bottom: 15px;
}

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

.footer-column ul li {
  margin: 8px 0;
  transition: color 0.3s;
  color: #c7a1fc;
}

.footer-column ul li:hover {
  color: #ffffff;
}

.footer-column p {
  margin: 8px 0;
  color: #aaa;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.social-icons i {
  font-size: 18px;
  margin-right: 15px;
  color: #d633ff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
}

.bottom-bar {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  flex-wrap: wrap;
}

.bottom-bar span {
  color: #ff00ff;
}

.policy-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #d633ff;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
  z-index: 10;
}

.scroll-top:hover {
  transform: scale(1.2);
}

.blog-updates {
  position: relative;
}

.full-section-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px; /* Hide link text visually */
  z-index: 10;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px 40px;
  }

  .kinetic-text {
    font-size: 80px; /* Bigger than before, but still mobile-friendly */
    letter-spacing: 4px;
  }

  .send-button {
    padding: 7px 16px;
    font-size: 7px;
  }

  .contact-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .social-icons i {
    font-size: 16px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .kinetic-text {
    font-size: 60px;
    letter-spacing: 2px;
  }

  .send-button {
    width: 100%;
    padding: 5px 10px;
    font-size: 10px;
  }


  .scroll-top {
    padding: 8px;
    font-size: 18px;
  }
}


/* contact messeging.css */
/* Contact Section */
.contact-sectionss {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 50px;
  padding: 80px 10%;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #120038, #050611); /* Updated background */
}

/* Left Info Panel */
.contact-info {
  flex: 1;
  max-width: 450px;
}

.section-title span {
  color: #00ff88;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 28px;
  margin-top: 10px;
  color: #ffffff;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(135deg, #1c1c3a, #2e1c4a);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: none; /* glow removed */
  transition: transform 0.3s;
}

.info-box:hover {
  transform: scale(1.05);
}

.icon {
  font-size: 26px;
  color: #00ffcc;
  margin-top: 5px;
}

.info-box h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 5px;
}

.info-box p {
  color: #ccc;
  font-size: 14px;
}

/* Right Contact Form */
.contact-form {
  flex: 1;
  background: linear-gradient(135deg, #1c1c3a, #2e1c4a);
  padding: 40px;
  border-radius: 15px;
  box-shadow: none; /* glow removed */
}


.contact-form h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: #0f001f;
  color: #fff;
  font-size: 14px;
}

.submit-btn {
  background-color: #6c4ae4;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn span {
  margin-left: 10px;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #8e65ff;
}

/* Animations */
.slide-left, .slide-right {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.slide-right {
  transform: translateX(100px);
}

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


















/* ai-cta.css */
.ai-cta-section {
  background: linear-gradient(135deg, #120038, #050611);
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  background-color: #4d2eff;
  border-radius: 50px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.ai-robot {
  flex: 1;
  text-align: center;
}

.ai-robot img {
  max-width: 300px;
  animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.ai-text {
  flex: 1;
  color: white;
  padding: 20px;
  animation: slideText 2s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}

@keyframes slideText {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-subtitle {
  font-size: 16px;
  color: #d1d1d1;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.ai-heading {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
}

.ai-button {
  background: #000;
  color: #fff;
  padding: 15px 25px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ai-button:hover {
  transform: scale(1.05);
  background: #1a1a1a;
}





