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

html, body {
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #0d0d0d;
}

section {
  padding: 100px 40px;
  text-align: center;
}

h1 {
  color: #a3c9f5;
}

h2 {
  color: #003366;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #444;
  max-width: 800px;
  margin: 10px auto;
}

@keyframes fadeGlow {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: drop-shadow(0 0 0px #00ffff);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 8px #00ffff);
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  height: 80px;
  width: auto;
  vertical-align: middle;
  animation: fadeGlow 1.6s ease-out forwards;
  margin-right: 10px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.2em;
  font-weight: bold;
}

.logo-tagline {
  font-size: 0.51em;
  color: #999;
  margin-top: 0px;
  margin-left: 65px; /* You may remove this if unnecessary with flex */
  letter-spacing: .2px; /* Adjust spacing as needed */
  text-transform: uppercase; /* Optional: makes it feel more like a tagline */
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  font-weight: bold;
  color: #007BFF;
  font-size: 1.5em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links .nav-item {
  padding: 10px 15px;
  cursor: pointer;
}

.nav-links .nav-item.active {
  color: #007BFF;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
#home {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#about {
   background: #ABAD9F;
}
#login {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/123456.jpg') center/cover no-repeat;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
#capabilities {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(270deg, #5C8DFF, #D6E4FF, #8BB7FF, #AFCBFF);
  background-size: 600% 600%;
  animation: bgShift 8s ease infinite;
}
#Login {
  max-width: 915px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-section {
  margin: 0 auto;
  padding: 0 1rem; /* for mobile spacing */
   background: #ff0000;
}

    .cta-btn {
      padding: 0.8rem 1.5rem;
      background: #a3c9f5;
      border: none;
      border-radius: 6px;
      color: #ffffff;
      font-size: 1rem;
      cursor: pointer;
      user-select: none;
      transition: background 0.3s ease;
    }

    .cta-btn:hover {
      background: #7fb5f0;
    }
	.cta-wrapper {
  	text-align: center;
  	margin-top: 40px;
	}

.overlay h1 {
  font-size: 2.5em;
}

.typing-text {
  font-size: 1.4em;
  color: #8389ff;
  margin-top: 10px;
  border-right: 3px solid #fff;
  user-select: none;
  animation: blink 0.4s step-end infinite;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 30px auto;
  font-size: 1.3em;
  line-height: 1.6;
  text-align: left;
  color: #444;
}

.section-outro {
  max-width: 850px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
  color: #444;
}

.section-msg {
  max-width: 850px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
  color: #000;
}

.section-lin {
  max-width: 850px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.parallax-services {
  background: url('images/services-bg.jpg') center / cover no-repeat fixed;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
}
.services-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 30px;
}

/* Carousel */
.carousel-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 40px;
  padding: 20px;
  scroll-behavior: smooth;
}

.carousel-card {
  flex: 0 0 260px;
  height: 340px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(245,245,245,0.95));
  border-radius: 13px;
  scroll-snap-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
  text-align: left;
}

.carousel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.carousel-card.dummy {
  flex: 0 0 260px;
  height: 180px;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  visibility: hidden; /* <-- This hides the element visually */
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #8389ff;
}

.carousel-card-ai {
  flex: 0 0 260px;
  height: 180px;
  background: #99A44D;
  border-radius: 13px;
  scroll-snap-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
}

.carousel-card-ds {
  flex: 0 0 260px;
  height: 180px;
  background: #00ffff;
  border-radius: 13px;
  scroll-snap-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
}

.carousel-card-ci {
  flex: 0 0 260px;
  height: 180px;
  background: #98fb98;
  border-radius: 13px;
  scroll-snap-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
}

.carousel-card-pe {
  flex: 0 0 260px;
  height: 180px;
  background: #FFFFED;
  border-radius: 13px;
  scroll-snap-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
}

.carousel-card-dt {
  flex: 0 0 260px;
  height: 180px;
  background: #ABAD9F;
  border-radius: 13px;
  scroll-snap-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
}

.carousel-card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.carousel-card h3 {
  font-size: 1.1em;
  margin: 0 0 8px;
  color: #333;
}


/* Contact */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

#contact input, #contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact button {
  background: #007BFF;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}
.contact-section {
  background: #f9f9f9;
  justify-content: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 920px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 300px;
  font-size: 1.1em;
  line-height: 1.6;
}
.contact-info,
.contact-form-wrapper {
  text-align: left; /* Force left alignment */
}

.contact-info h2 {
  margin-bottom: 1em;
}

.contact-form-wrapper {
  flex: 1 1 400px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

#contact-form button {
  padding: 0.75em 1.5em;
  background: #0052cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
}

#contact-form button:hover {
  background: #003f99;
}

#contact-form .thank-you {
  margin-top: 1em;
  color: green;
  font-weight: bold;
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.card-bullets {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
  opacity: 0;
  animation: fadeInUp 0.4s ease forwards;
}

.card-bullets li:nth-child(1) { animation-delay: 0.1s; }
.card-bullets li:nth-child(2) { animation-delay: 0.2s; }
.card-bullets li:nth-child(3) { animation-delay: 0.3s; }
.card-bullets li:nth-child(4) { animation-delay: 0.4s; }

.bullet {
  font-weight: bold;
  color: #555;
  min-width: 16px;
}

#login form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#login input[type="email"],
#login input[type="password"] {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

#login button {
  padding: 12px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#login button:hover {
  background: #555;
}


.site-footer {
  background: #fff;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 250px;
}

.footer-left p {
}

.footer-right {
  flex: 1 1 250px;
  text-align: right;
}

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

.footer-links li {
  display: inline-block;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-links li {
    display: block;
    margin: 0.5rem 0;
  }
}


/* Optional fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  #home h1 {
    font-size: 1.5em; /* Similar to h3 */
  }

  #home h2 {
    font-size: 1.2em; /* Similar to h4 or h3 */
  }
  
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 200px;
    border: 1px solid #ccc;
    display: none;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links .nav-item {
    padding: 15px;
    text-align: left;
  }
}

@media(min-width: 640px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  	max-width: 850px;
  	margin: 0 auto 30px auto;
  }

  .logo-img {
  	height: 50px;
  	width: auto;
  	vertical-align: middle;
  	margin-right: 4px;
  }
}

@media screen and (max-width: 480px) {
  #home h1 {
    font-size: 1.2em;
  }
  #home h1 {
    font-size: 1.1em;
  }

  #home h2 {
    font-size: 1em;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .logo-img {
  	height: 50px;
  	width: auto;
  	vertical-align: middle;
  	margin-right: 0px;
  }
}
