/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
}
html {
  scroll-padding-top: 80px; /* Adjust this value to match your navbar height */
  scroll-behavior: smooth;
}


/* Navbar */
header {
  background: #000000;
  padding: 15px 0;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo {
  width: 180px;
}

/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #00bfa6;
  background: none;
  border: none;
  cursor: pointer;
}

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

nav li {
  display: inline-block;
}

nav a {
  color: #00bfa6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: #ffffff;
}

/* 📱 Mobile Styles */
/* @media (max-width: 768px) {
  .logo {
    width: 180px;
  }

  .nav-container {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    font-size: 35px;
    right: 40px;
    top: 15px;
    z-index: 1001;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
    padding: 10px 0;
    background-color: #000000;
  }

  nav.show ul {
    display: flex;
  }

  nav a {
    display: block;
    padding: 10px 20px;
    width: 100%;
  }
} */


@media (max-width: 768px) {
  .logo {
    width: 180px;
  }

  .nav-container {
    display: flex;
    flex-direction: row; /* ✅ keep them in a row */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
  }

  .menu-toggle {
    display: block;
    font-size: 35px;
    color: #00bfa6;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 0px;
    position: relative;
    z-index: 1001;
  }

  nav {
    position: absolute;
    top: 65px;
    right: 20px;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    width: 200px;
    overflow: hidden;
    z-index: 1000;
  }

  nav ul {
    display: none;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }

  nav ul.show {
    display: flex;
  }

  nav a {
    display: block;
    padding: 12px 20px;
    color: #00bfa6;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  nav a:hover {
    background: #111;
  }
}




/* Hero Section */
.hero h1, .hero h2, .hero p, .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.hero h2 { animation-delay: 0.3s; }
.hero p { animation-delay: 0.6s; }
.btn { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #fff;
}


.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
     /* backdrop-filter: blur(10px); */
    background: radial-gradient(circle at top, #00bfa6, #0a0a0a);
    height: 90vh;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: clamp(2rem, 5vw, 4rem);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    height: 50px;
    color: #fff;
    font-weight: 600;
}

.highlight {
    font-family: 'Poppins', monospace;
    font-weight: bold;
    color: #00ffcc;
    /* border-right: 2px solid #00ffcc; */
    white-space: nowrap;
    overflow: hidden;
}

.hero p {
    font-size: 1.1rem;
    margin: 0 auto 30px;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.6;
}


/* mobile view css */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 226px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.3rem;
    height: auto;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}



/* button  */
.btn {
    background: #00bfa6;
    color: #0a0a0a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);

}

.btn:hover {
    background: #00997a;
}



/* Services Section */
.services {
    padding: 60px 20px;
    background: #111;
    text-align: center;
}
.services h2 {
    font-size: 2.5rem;
    color: #00bfa6;
    margin-bottom: 40px;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 191, 166, 0.2);
}
.card h3 {
    margin-bottom: 15px;
    color: #00bfa6;
}
.project-card {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color same as parent */
    display: block; /* Make entire card clickable */
}



/* Projects Section view  */
.projects {
    padding: 60px 20px;
    background: #0a0a0a;
    text-align: center;
}
.projects h2 {
    font-size: 2.5rem;
    color: #00bfa6;
    margin-bottom: 40px;
}
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.project-card {
    background: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.project-card h3 {
    color: #00bfa6;
    margin: 15px 0 5px;
}
.project-card p {
    padding: 0 10px 15px;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 166, 0.2);
}
.project-card {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px; /* reserve space for view-more */
}

/* Content container */
.card-content {
    padding: 10px 15px 0 15px;
}

/* View → link style */
.view-more {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.9rem;
    color: #00bfa6;
    font-weight: 500;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* On hover for desktop */
.project-card:hover .view-more {
    opacity: 1;
    transform: translateY(0);
}

/* Always visible on mobile */
@media (max-width: 768px) {
    .view-more {
        opacity: 1;
        transform: translateY(0);
    }
}
.project-card:hover .view-more {
  opacity: 1;
  transform: translateY(0);
}










/* About Section */
.about {
    padding: 60px 20px;
    background: #111;
    text-align: center;
}
.about h2 {
    font-size: 2.5rem;
    color: #00bfa6;
    margin-bottom: 20px;
}
.about p {
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #0a0a0a;
    text-align: center;
}
.contact h2 {
    font-size: 2.5rem;
    color: #00bfa6;
    margin-bottom: 20px;
}
.contact form {
    max-width: 600px;
    margin: auto;
}
.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #1c1c1c;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
}
.contact button {
    background: #00bfa6;
    color: #0a0a0a;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}
.contact button:hover {
    background: #00997a;
}
.swal2-smaller {
  font-size: 0.9rem;
  padding: 10px 15px;
  min-width: 200px !important;
  max-width: 250px !important;
  border-radius: 10px;
}
.custom-toast {
  font-size: 0.85rem;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  box-shadow: 0 0 10px rgba(0, 191, 166, 0.3);
}
/* Section Styling with Grid Background */
.about-grid-section {
    position: relative;
    background: #0a0a0a;
    color: white;
    padding: 80px 20px;
    overflow: hidden;
}

/* Neon Grid Background */
.about-grid-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(to right, rgba(0,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(-2deg) scale(1.2);
    animation: gridMove 15s linear infinite;
}

/* Subtle grid movement */
@keyframes gridMove {
    from { transform: rotate(-2deg) translate(0,0) scale(1.2);}
    to { transform: rotate(-2deg) translate(-50px,-50px) scale(1.2);}
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
    z-index: 2;
    position: relative;
}

/* Image with Neon Accent */
.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,255,255,0.3);
    border: 2px solid rgba(0,255,255,0.2);
}

/* Text Styling */
.about-text {
    max-width: 600px;
    border-left: 4px solid  #00bfa6;
    padding-left: 25px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color:  #00bfa6;
}

.about-text h2 span {
    color:  #00bfa6;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive Design */
@media(max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid #00bfa6;
        padding-top: 20px;
    }
    .about-image img {
        max-width: 300px;
    }
}






 


/* Meet Our Team Section */
/* --- Team Slider Styles --- */
.team-slider {
  background: #111;
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-slider h2 {
  font-size: 2.5rem;
  color: #00bfa6;
  margin-bottom: 30px;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  animation: scroll 15s linear infinite;
  width: calc(320px * 12);
}

.slide-track:hover {
  animation-play-state: paused;
}

.team-card {
  background: #1f1f1f;
  border-radius: 15px;
  width: 280px;
  margin: 20px;
  text-align: center;
  padding: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 191, 166, 0.4);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00bfa6;
  cursor: pointer;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.team-card:hover .member-photo img {
  transform: scale(1.05);
}

.team-card h3 {
  color: #fff;
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.team-card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: #00bfa6;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Modal (Pop-up) Styles --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  padding-top: 60px;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation-name: zoom;
  animation-duration: 0.6s;
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 400px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 20px;
  font-size: 1.2rem;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoom {
  from {
    transform: scale(0.1);
  }

  to {
    transform: scale(1);
  }
}

/* --- Responsive Adjustments --- */

@media (max-width: 768px) {
  .team-slider {
    padding: 30px 0;
  }

  .team-slider h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .slide-track {
    animation: scroll 20s linear infinite;
    width: calc(280px * 12);
  }

  .team-card {
    width: 250px;
    margin: 15px;
    padding: 15px;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }

  .team-card h3 {
    font-size: 1.1rem;
  }

  .team-card p {
    font-size: 0.9rem;
  }

  .modal-content {
    width: 90%;
    max-width: 350px;
  }

  .modal-caption {
    width: 90%;
    max-width: 350px;
    font-size: 1.1rem;
  }

  .close {
    font-size: 35px;
    right: 20px;
    top: 10px;
  }
}

@media (max-width: 480px) {
  .team-slider h2 {
    font-size: 1.8rem;
  }

  .team-card {
    width: 220px;
    margin: 10px;
    padding: 10px;
  }

  .member-photo {
    width: 80px;
    height: 80px;
  }

  .team-card h3 {
    font-size: 1rem;
  }

  .team-card p {
    font-size: 0.85rem;
  }

  .social-icons {
    gap: 10px;
  }

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

  .modal-content {
    width: 95%;
    max-width: 280px;
  }

  .modal-caption {
    width: 95%;
    max-width: 280px;
    font-size: 1rem;
  }

  .close {
    font-size: 30px;
    right: 15px;
  }
}










/* Footer */
footer {
    background: #0a0a0a;
    text-align: center;
    padding: 15px 0;
    color: #777;
}
.footer {
    background-color: #0a0a0a;
    color: #ccc;
    padding: 40px 20px 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}
.footer-left h3 {
    color: #00bfa6;
    margin-bottom: 10px;
}
.footer-left p {
    margin: 8px 0;
    font-size: 0.95rem;
}
.footer-left i {
    margin-right: 8px;
    color: #00bfa6;
}
.footer-social h4 {
    color: #00bfa6;
    margin-bottom: 10px;
}
.footer-social .social-icons a {
    color: #00bfa6;
    margin-right: 12px;
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
}
.footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 10px;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-social {
    flex: 1 1 100%;
  }

  .footer-left p,
  .footer-left h3,
  .footer-social h4 {
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .footer-social .social-icons a {
    margin: 8px;
  }
}
