 /* ===============================
       Base Styles and Typography
    =============================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: 'Poppins', 'Segoe UI', 'Inter', 'Roboto', sans-serif;
      background-color: #0d1b2a;
      color: #cbd5e1;
      font-size: 16px;
      line-height: 1.7;
    }

    h1, h2, h3, h4 {
      color: #ffffff;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    h1 { font-size: 2.5rem; }
    h2 {
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-left: 4px solid #64ffda;
      padding-left: 1rem;
    }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }
	
/* ===============================
   Contact Section - Refined Look
=============================== */

.contact-section {
  background: linear-gradient(to bottom, #0d1b2a 0%, #0a1622 100%);
  color: #cbd5e1;
  padding: 40px 20px 30px;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-details,
.contact-social {
  flex: 1 1 280px;
  background-color: #112b3c;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details:hover,
.contact-social:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 255, 255, 0.15);
}

.contact-block {
  margin-bottom: 16px;
  text-align: left;
}

.contact-block h3 {
  color: #64ffda;
  margin-bottom: 6px;
  font-size: 1.05em;
}

.contact-block a {
  color: #64ffda;
  text-decoration: none;
  word-break: break-word;
}

.contact-block a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Social Buttons */
.social-icons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  background-color: transparent;
  color: #64ffda;
  padding: 8px 18px;
  border: 1px solid #64ffda;
  border-radius: 6px;
  font-size: 0.95em;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #64ffda;
  color: #0d1b2a;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 30px 15px 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-details,
  .contact-social {
    width: 100%;
    max-width: 500px;
  }

  .social-icons {
    justify-content: center;
  }
}



/* ===============================
   contact section End
=============================== */

	
	    /* Scroll Reveal Animations */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .scroll-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .scroll-reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .scroll-reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
	
	
	/* Cards Reveal Animations */
	
	
	 .cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .card {
      background: #1b2c3a;
      padding: 20px;
      border-radius: 10px;
      width: 280px;
      max-width: 90%;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }

    .card h3 {
      margin-top: 1rem;
      font-size: 1.25rem;
    }

    /* Scroll Animation */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .scroll-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .card {
        width: 100%;
      }
    }
	
	
	
	

    p {
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }
    li { margin-bottom: 0.5rem; }

    a {
      color: #64ffda;
      text-decoration: none;
      position: relative;
      display: inline-block;
      transition: all 0.3s ease;
    }
    a:hover {
      color: #ffffff;
      text-shadow: 0 0 8px #64ffda;
    }
    a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: -4px;
      background-color: #64ffda;
      transition: width 0.3s ease;
    }
    a:hover::after { width: 100%; }

    .main-header {
      background-color: #0F1111;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      box-shadow: 0 2px 4px rgba(0,0,0,0.5);
	  padding-bottom: 0; /* reduce if it was more */
      margin-bottom: 0;  /* ensure no unwanted margin */
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      position: relative;
    }

    .logo img {
      height: 50px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    .nav-links li a {
      color: #64ffda;
      font-weight: 500;
      font-size: 1rem;
    }

    .nav-links li a:hover {
      color: #ffffff;
      text-shadow: 0 0 6px #64ffda;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: -4px;
      background-color: #64ffda;
      transition: width 0.3s ease;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #64ffda;
      font-size: 2rem;
      cursor: pointer;
      z-index: 1002;
      transition: transform 0.3s ease;
    }

    .menu-toggle.open {
      transform: rotate(90deg);
    }

    @media (max-width: 768px) {
  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: rgba(15, 17, 17, 0.6); /* Semi-transparent */
    backdrop-filter: blur(12px);             /* Modern blur */
    padding: 1.5rem 2rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
  }

  .nav-links li {
    margin-bottom: 1.2rem;
    text-align: right;
  }

  .nav-links li a {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
  }

  .nav-links li a:hover {
    color: #64ffda;
    text-shadow: 0 0 8px #64ffda;
  }

  .nav-links li a::after {
    display: none;
  }
}


    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    section {
      padding: 0.5rem 0;
      border-bottom: 1px solid #1e2d3d;
    }

    footer {
      background-color: #1b263b;
      text-align: center;
      padding: 2rem 1rem;
      color: #aabecf;
      font-size: 0.9rem;
    }


/* YourTube Start */

  .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 1.5rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* YourTube End */

/* Client Side Bar Start */

#clients {
  padding: 1rem 0;
  border-bottom: 1px solid #1e2d3d;
  text-align: center;
}

.client-slider-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.client-slider {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: calc(200%);
  animation: scrollLoop 40s linear infinite;
  gap: 2rem;
}

.slider-track img {
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}

.slider-track img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Pause animation on hover */
.client-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-btn.left {
  left: 0;
}

.slider-btn.right {
  right: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .slider-track img {
    height: 140px;
  }

  .slider-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
  }
}

@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Client Side Bar End */


/* Our Process Image Styles */
.zoom-container {
  margin-top: 1.5rem;
  text-align: center;
}

.zoomable-image {
  max-width: 80%;
  height: auto;
  cursor: zoom-in;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.zoomable-image:hover {
  transform: scale(1.02);
}

/* Modal Overlay */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.image-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Zoom Animation */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .close-modal {
    right: 20px;
    font-size: 32px;
  }

  .image-modal .modal-content {
    max-width: 95%;
    max-height: 70vh;
  }
}


html {
  scroll-padding-top: 80px; /* Match your header height */
  scroll-behavior: smooth;
}


/* Hero section styling */


.hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 35vh;
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      text-align: center;
      padding: 2rem;
    }
	
	  .hero h4 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }



.hero-banner {
  position: relative;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(rgba(10, 15, 30, 0.7), rgba(10, 15, 30, 0.7)), url('images/hero-bg.webp'); /* Replace with your .webp */
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  animation: heroAnimate 30s infinite alternate ease-in-out;
  z-index: 1;
  overflow: hidden;
}

/* Keyframe animation for slow zoom + slight pan */
@keyframes heroAnimate {
  0% {
    background-size: 110%;
    background-position: center center;
  }
  50% {
    background-size: 112%;
    background-position: 48% 52%;
  }
  100% {
    background-size: 110%;
    background-position: 52% 48%;
  }
}

/* Optional: mobile optimization */
@media screen and (max-width: 768px) {
  .hero-banner {
    height: 45vh;
    background-size: cover;
    background-position: center top;
    animation-duration: 20s;
  }
}



	
	.hero-content {
  	background-color: rgba(0, 0, 0, 0.6);
  	padding: 0.5rem;
  	border-radius: 20px;
	}
	
/* Hero Section Buttons */
.hero-buttons button {
  background-color: #1e90ff; /* Primary blue tone */
  color: #ffffff;
  border: 2px solid transparent;
  padding: 0.75rem 1.8rem;
  margin: 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.hero-buttons button:hover {
  background-color: transparent;
  color: #1e90ff;
  border: 2px solid #1e90ff;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.5);
}

	
	
	.hero-buttons {
    display: flex;
	justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    }

    .hero-button {
      background-color: #64ffda;
      color: #0d1b2a;
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .hero-button:hover {
      background-color: #52e0be;
    }
	

	/* Subtle zoom effect for parallax feel */
	@keyframes subtleZoom {
  	0% { background-size: 100%; }
  	100% { background-size: 105%; }
	}


    .form-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }

    .form-modal.show {
      display: flex;
    }

    .form-content.scrollable-form {
      background-color: #112240;
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
      position: relative;
    }

    .form-content h2 {
      margin-top: 0;
      color: #64ffda;
    }

    .form-set label {
      font-weight: 500;
      color: #64ffda;
      margin-top: 1rem;
      display: block;
    }

    .form-set input,
    .form-set select,
    .form-set textarea {
      width: 100%;
      padding: 0.7rem;
      margin-top: 0.3rem;
      margin-bottom: 1rem;
      border-radius: 5px;
      border: none;
      background-color: #0d1b2a;
      color: #ffffff;
      font-size: 1rem;
    }
	
	form button[type="submit"] {
  background-color: #00bfa6;
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 191, 166, 0.3);
}

form button[type="submit"]:hover {
  background-color: #ffffff;
  color: #00bfa6;
  box-shadow: 0 5px 15px rgba(0, 191, 166, 0.6);
  transform: scale(1.05);
}

    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 1.8rem;
      color: #ffffff;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .form-content.scrollable-form {
        padding: 1rem;
        max-height: 85vh;
      }


/* Scroll end */

/* Hero section styling End */

.process-section {
  padding: 3rem 1.5rem;
  background-color: #0d1b2a;
  color: #cbd5e1;
}

.process-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #64ffda;
  margin-bottom: 1rem;
}

.section-intro,
.section-summary {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.process-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.process-card {
  background-color: #112b3c;
  border-radius: 8px;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 420px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #1e2d3d;
  padding-bottom: 0.5rem;
}

.process-card ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.process-card li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.about-section {
  padding: 3rem 1.5rem;
  background-color: #0d1b2a;
  color: #cbd5e1;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  color: #64ffda;
  margin-bottom: 1.5rem;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.about-card {
  background-color: #112b3c;
  border-radius: 10px;
  padding: 2rem;
  max-width: 340px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-card h3 {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-icon {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 120px; /* keeps it a decent fixed size across all devices */
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    max-width: 90%;
    text-align: center;
  }

  .about-card h3 {
    text-align: center;
  }
}


/* Core Services Styling */
.section-services {
  background-color: #0f111a;
  color: #f1f1f1;
  padding: 60px 20px;
  text-align: center;
}

.section-services .section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #00bcd4;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  background-color: #1c2331;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 400px;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: auto; /* remove fixed height */
  height: auto; /* let content control the height */
  line-height: 1.5;
  word-wrap: break-word;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
  background-color: #1e2a3a;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
	font-size: 2rem;
  }

  .service-card {
    width: 100%;
    max-width: 90%;
  }
}

