* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

body {
  margin: 0;
  height: 100vh;
  color: white;
  font-family: "Poppins", sans-serif;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 1000;
    scroll-behavior: smooth;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
}

.company-name {
    color: #fff;
     font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-center {
    display: flex;
    list-style: none;
    gap: 30px;
    border: 0px solid white;
    padding: 14px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.445);
}

.nav-center a {
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-center a:hover {
  color: #00e0ff;
  text-shadow: 0 0 8px #00e0ff;
}

.nav-right .contact-btn {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-right .contact-btn:hover {
    background: #ddd;
}

/* 🔥 Responsive for mobile */
@media (max-width: 900px) {
    .nav-center {
        display: none;
    }

    .navbar {
        padding: 15px 25px;
    }
}







/* ----------------------------------------------------------------------------- */



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Orbitron:wght@600&display=swap');

.landing-container {
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at top right, #1b2735, #090a0f 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 100px;
  padding-top: 100px;
}

/* Subtle background glow particles */
.landing-container::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: repeating-radial-gradient(
    circle at center,
    rgba(0, 188, 212, 0.05) 0,
    rgba(0, 188, 212, 0.05) 1px,
    transparent 2px,
    transparent 100px
  );
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

.content-card {
  text-align: center;
  padding: 50px 30px;
  max-width: 850px;
  z-index: 2;
  transition: box-shadow 0.4s ease;
}



h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
    margin-top: 150px;
}

h1 span {
  color: #00e0ff;
}

p {

  font-size: 1.2rem;
  color: #d8e9f0;
  max-width: 600px;
  margin: 15px auto 40px;
}

button {
  background: linear-gradient(90deg, #00bcd4, #007bff);
  border: none;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.6);
  background: linear-gradient(90deg, #00e0ff, #0088ff);
}

.image-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

.image-container img {
  width: 90%;
  aspect-ratio: 40 / 10;
  image-resolution: inherit;
}

@media (max-width: 768px) {
  p {
    font-size: 1rem;
  }
  .image-container img {
    width: 100%;
  }

  h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
  margin-top: 10px;
}
.landing-container {
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at top right, #1b2735, #090a0f 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 100px;
  padding-top: 150px;
}
}





















/* ----------------------------------------------------------------------------- */
/* styles.css */

.services-section {
  position: relative;
  padding: 100px 20px;
   background:black;
/* translucent background to let stars show through */
  backdrop-filter: blur(4px);     /* optional soft glass effect */
  color: #ffe4e4;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}


/* Title */
.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  color: white;
  text-shadow: 0 0 20px #31e0ff62;
}


/* Cards layout */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.03), 0 0 15px rgba(49, 225, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.233);
  border-radius: 4px;
  width: 260px;
  padding: 22px;
  min-height: 340px;     /* equal height */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left aligned content inside card */
  text-align: left;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,179,255,0.08);
  border: 1px solid rgba(255, 255, 255, 0.637);
  background: rgb(0, 0, 0);
}

.card-image img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 18px;
  border: 1px solid black;
  background-color: black;
}

/* Card text */
.service-card h3 {
  font-size: 1.05rem;
  color: #ffffff;
}

.service-card p {
  font-size: 0.80rem;
  line-height: 1.5;
  color: #cfcfcf;
  text-align: justify;
}

/* Responsive -> stack vertically on small screens */
@media (max-width: 768px) {
  .cards-container {
    align-items: center;
    flex-direction: column;
  }
  .service-card {
    width: 92%;
    min-height: 240px;   
  }
  .service-card p {
    padding: 0px;
    margin: 0px;
      }
}

/* -----------------
   STARS LAYER
   ----------------- */
.stars {
  position: fixed; /* full viewport layer */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* don't block clicks */
  z-index: 10; /* behind content (services-section z-index:1) */
  overflow: hidden;
}

/* single star */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.85;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  transform: translateZ(0);
  will-change: opacity, transform;
  animation-name: twinkle;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* twinkle keyframes */
@keyframes twinkle {
  0%   { opacity: 0.15; transform: scale(0.9); }
  50%  { opacity: 1;    transform: scale(1.4); }
  100% { opacity: 0.15; transform: scale(0.9); }
}

/* optional subtle upward drift for some stars (adds life) */
.star.drift {
  animation-name: driftTwinkle;
}

@keyframes driftTwinkle {
  0%   { opacity: 0; transform: translateY(0) scale(0.9); }
  40%  { opacity: 1; transform: translateY(-6px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-14px) scale(0.9); }
}








hr {
  border: none;
  height: 4px;
  background: linear-gradient(90deg, #000000, #007bff, #000000);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.7), 0 0 25px rgba(0, 123, 255, 0.4);
  animation: glow 3s infinite alternate;
}

/* Optional glow animation */
@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6), 0 0 20px rgba(0, 123, 255, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.9), 0 0 40px rgba(0, 123, 255, 0.6);
  }
}









/* ----------------------------------------------------------------------------- */
/* styles.css */



.case-study-section {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 100vh;
  background: radial-gradient(ellipse at bottom, #0d1b2a 0%, #000000 100%);
}

.header-text {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  text-shadow: 0 0 20px #31e0ff62;
}

.boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px;
}

.box1 {
  background:rgba(0, 0, 0, 0.685);
  flex: 1 1 48%;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(49, 225, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo1 {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.company-name {
  font-weight: 600;
  font-size: 1.2em;
}

.title {
  margin-top: 20px;
  font-size: 1.5em;
   background: linear-gradient(90deg, #00bcd4, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  margin-top: 10px;
  font-size: 0.95em;
  line-height: 1.6em;
  color: #ccc;
}

.bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.logos {
  display: flex;
  gap: 10px;
}

.small-logo {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  opacity: 0px;
}

.know-more {
  background: linear-gradient(90deg, #00bcd4, #007bff);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.know-more:hover {
  background: #00bcd4;
  transform: scale(1.05);
}

/* Responsive layout for phones */
@media (max-width: 768px) {
  .boxes {
    flex-direction: column;
    margin: 10px;
  }
  .box {
    flex: 1 1 100%;
  }
  .header-text {
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
  text-shadow: 0 0 20px #31e0ff62;
}
}























.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.subheading {
    font-size: 1rem;
    color: #cdd9da;
    max-width: 700px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    margin: 50px 0;
}

/* Timeline line */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    radius: 100px;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #029aff;
    transition: height 0.5s ease;
    radius: 100px;
}

/* Timeline items */
.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item-content {
    display: flex;
    width: 100%;
    max-width: 900px;
    align-items: center;
}

.timeline-item-info {
    flex: 1;
    padding: 20px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-item-info {
    order: 2;
    text-align: left;
}

.timeline-item-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.timeline-item img {
     width: 400px;
     height: 260px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 4px solid #3498db;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background-color: #ffffff;
    box-shadow: 0 0 0 8px rgba(52, 152, 219, 0.2);
}

.timeline-item-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
   background: linear-gradient(90deg, #00bcd4, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-item-description {
    color: #7f8c8d;
}

.get-started-container {
    text-align: center;
    margin-top: 60px;
}

.get-started-btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.get-started-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Mobile styles */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item-content {
        flex-direction: column;
    }

    .timeline-item-info {
        text-align: left !important;
        order: 1 !important;
        padding: 20px 20px 20px 60px;
    }

    .timeline-item-image {
        order: 2;
        padding: 0 20px 20px 60px;
    }

    .timeline-item img {
          width: 300px;
          height: 200px;
    }
} 
























  footer {
    background: linear-gradient(180deg, #0e0e0e 0%, #111 100%);
    padding: 60px 100px 30px;
    position: relative;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00b4d8, transparent 70%);
    opacity: 0.15;
    filter: blur(40px);
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
  }

  .footer-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .footer-logo p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
  }

  .footer-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
  }

  .footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00b4d8;
    border-radius: 2px;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links ul li {
    margin: 10px 0;
  }

  .footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links ul li a:hover {
    color: #00b4d8;
  }

  .newsletter h3 {
    color: #fff;
    margin-bottom: 20px;
  }

  .newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #1a1a1a;
    color: #fff;
    outline: none;
  }

  .newsletter button {
    width: 100%;
    padding: 12px;
    background: #00b4d8;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .newsletter button:hover {
    background: #0090b3;
  }

  .footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding-top: 25px;
    font-size: 0.9rem;
    color: #888;
    margin-top: 50px;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    color: #aaa;
    font-size: 1.2rem;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .social-icons a:hover {
    color: #00b4d8;
    transform: translateY(-4px);
  }

  @media (max-width: 768px) {
    footer {
      padding: 50px 30px 20px;
    }
  }
