/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #0a192f;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #64ffda;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ccd6f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #64ffda;
  border-bottom: 2px solid #64ffda;
  padding-bottom: 2px;
}

/* Home Section */
.home-section {
  height: 100vh;
  background: linear-gradient(to right, #0a192f, #172a45);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.home-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.home-content h1 span {
  color: #64ffda;
}

.home-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #ccd6f6;
}

.cta-button {
  background-color: #64ffda;
  color: #0a192f;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #52e0c4;
}

/* About Section */
.about-v2 {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  color: #0a192f;
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.about-header p {
  font-size: 1.1rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
 
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.about-card {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card img {
  width: 60px;
  margin-bottom: 15px;
}

.about-card h3 {
  margin-bottom: 10px;
  color: #0a192f;
}

.about-card ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.about-card ul li::before {
  content: '✔️ ';
  color: #64ffda;
}

/* Founder Card */
/* Section wrapper */
#founder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;   /* full screen height */
  background: #f9f9f9; /* optional background */
  padding: 40px 20px;
}

/* Founder card styling */
.founder-card {
  background-color: #ffffff;
  border: 2px solid #64ffda;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.founder-card img {
  width: 190px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #64ffda;
}

.founder-card h3 {
  margin-bottom: 5px;
  font-size: 1.6rem;
  color: #0a192f;
}

.founder-role {
  color: #52e0c4;
  font-weight: bold;
  margin-bottom: 10px;
}




/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



.services-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  color: #0a192f;
}

.services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: #64ffda;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #0a192f;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

body{  
font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f7fb;
      color: #0a192f;
    }

    .projects-section {
      padding: 80px 20px;
      text-align: center;
    }

    .projects-header h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .projects-header p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 50px;
      color: #555;
    }

    .project-subsection {
      margin-bottom: 60px;
    }

    .project-subsection h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: #0eb890;
      text-decoration: underline;
    }

    .slider-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: auto;
    }

    .slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .project-slide {
      min-width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      box-sizing: border-box;
    }

    .project-card {
      flex: 1;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      text-align: left;
    }

    .project-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .project-card h4 {
      margin: 15px;
      font-size: 1.2rem;
      color: #0a192f;
    }

    .project-card p {
      margin: 0 15px 20px;
      color: #555;
      font-size: 0.95rem;
    }

    
    .iconic-project {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      text-align: left;
    }

    .iconic-project h3 {
      text-align: center;
      margin-bottom: 30px;
      color: #0eb890;
      text-decoration: underline;
      font-size: 1.8rem;
    }

    .iconic-slider {
      overflow: hidden;
    }

    .iconic-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .iconic-card {
      display: flex;
      flex-direction: column;
      min-width: 100%;
      gap: 20px;
    }

    .iconic-card img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      max-height: 400px;
    }

    .iconic-text {
      padding: 20px;
    }

    .iconic-text h4 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .iconic-text p {
      color: #444;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .iconic-card {
        flex-direction: row;
        align-items: center;
      }

      .iconic-card img {
        flex: 1;
        max-width: 50%;
      }

      .iconic-text {
        flex: 1;
        padding: 0 20px;
      }
    }
/* ===== Projects Section ===== */
/* Project Card */
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;   /* ✅ REMOVE if it hides long text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: auto;       /* ✅ auto height so full text shows */
  min-height: 300px;  /* optional baseline height */
}

.project-card p {
  margin: 0 0 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  max-height: none;   /* ✅ remove restriction */
  overflow: visible;  /* ✅ allow full text */
  text-overflow: unset;
  display: block;
}

.projects-section {
  padding: 60px 20px;
  background-color: #f4f7fb;
}

.projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0a192f;
}

.projects-header p {
  color: #555;
  font-size: 1rem;
}

/* Project Container */
.projects-container {
  width: 100%;
  margin: 0 auto;
}

/* Project Grid */
.projects-slide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h4 {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #0a192f;
}

.project-card p {
  margin: 0 0 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
  .projects-header h2 {
    font-size: 2rem;
  }

  .projects-slide {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 180px;
  }
}


#blog {
  padding: 40px 20px;
  background-color: #f4f7fb;
  text-align: center;
}

#blog h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
}

.card-body {
  padding: 15px;
  text-align: left;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a192f;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

#gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-container img:hover {
  transform: scale(1.05);
}
.contact-section {
  background-color: #f4f7fb;
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0a192f;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.form-section {
  flex: 1;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

#contactForm textarea {
  resize: vertical;
  min-height: 120px;
}

#contactForm button {
  background-color: #64ffda;
  color: #0a192f;
  font-weight: bold;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contactForm button:hover {
  background-color: #52e0c4;
}

.form-status {
  margin-top: 10px;
  color: green;
  font-weight: 500;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.6rem;
  color: #0a192f;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #64ffda;
}

.map-section {
  flex: 1;
  min-height: 300px;
}

.animated-footer {
  background-color: #0a192f;
  color: #ccd6f6;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
  overflow: hidden;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: #64ffda;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.footer-column ul li:hover {
  transform: translateX(8px);
}

.footer-column ul li a {
  color: #ccd6f6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #64ffda;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ccd6f6;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #64ffda;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #233554;
  font-size: 0.85rem;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-column {
    flex: 1;
  }
}

/* Scroll Animation Reuse */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay {
  transition-delay: 0.2s;
}
.fade-in.delay2 {
  transition-delay: 0.4s;
}
.fade-in.delay3 {
  transition-delay: 0.6s;
}



/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #64ffda;
  border-radius: 2px;
  transition: 0.3s;
}


/* ===== Responsive Styles ===== */

/* Navbar & Hamburger */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: -100%;
    flex-direction: column;
    background-color: #0a192f;
    width: 200px;
    padding: 20px;
    transition: right 0.3s ease;
  }
  .nav-links.show {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .home-content h1 {
    font-size: 2.2rem;
  }
  .home-content p {
    font-size: 1rem;
  }
  .about-header h2,
  .services-header h2,
  .projects-header h2,
  .contact-section h2 {
    font-size: 2rem;
  }
}

/* Projects Section */
@media (max-width: 768px) {
  .project-slide {
    flex-direction: column;
  }
}

/* Contact Section */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 30px;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}


/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; /* fixed menu on mobile */
    top: 60px;
    right: -100%;
    width: 220px;
    flex-direction: column;
    background-color: #0a192f;
    padding: 20px;
    height: calc(100vh - 60px); /* full height */
    overflow-y: auto;
    box-shadow: -4px 0 8px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}



