/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #fff;
  padding-top: 80px;
}

/* Container */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background-color: #0e1e0e;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  list-style: none;
  gap: 20px;
  padding-left: 0;
}

.nav-links li {
  margin-bottom: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  border-bottom: 2px solid white;
}

.email-box {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
}

.email-icon {
  margin-right: 8px;
}


/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
  margin-left: 167px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.btn {
  background-color: #2ecc40;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #28b737;
}
/* Responsive styles */
@media (max-width: 1024px) {
  .hero-content {
    margin-left: 80px;
    max-width: 500px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    margin-left: 0;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
}

/* Info Section */
.info-section {
  padding: 80px 20px;
  background-color: #fff;
  color: #333;
}
.info-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.info-text {
  flex: 1 1 500px;
}
.info-text .subtitle {
  color: #2ecc40;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.info-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}
.info-text .description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}
.info-link {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s;
}
.info-link:hover {
  color: #2ecc40;
}
.info-image {
  flex: 1 1 400px;
}
.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }
  .info-text h2 {
    font-size: 26px;
  }
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background-color: #f2f5f3;
}
.services-container {
  max-width: 960px; /* smaller width */
  margin: 0 auto;
  /* text-align: center; */
}
.services-subtitle,
.services-title {
  text-align: left; /* 👈 Force left alignment */
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center; /* centers the cards */
}
.services-subtitle {
  color: #2ecc40;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex: 1 1 300px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-6px);
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}
.card-content {
  padding: 20px;
}
.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-content h3 span {
  font-weight: bold;
  font-size: 20px;
}
.card-content p {
  color: #555;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
}
/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.testimonials-container {
  max-width: 960px;
  margin: 0 auto;
}
.testimonials-subtitle {
  color: #2ecc40;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonials-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}
.testimonial-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 280px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}
.testimonial-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.testimonial-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #020402;
}
.testimonial-card .company {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.testimonial-card .feedback {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background-color: #f2f5f3;
}
.pricing-container {
  max-width: 960px;
  margin: 0 auto;
}
.pricing-subtitle {
  color: #2ecc40;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}
.pricing-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  flex: 1 1 280px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
}
.pricing-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}
.pricing-card .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.read-more {
  font-size: 14px;
  color: #333;
  text-decoration: underline;
  font-weight: 500;
}
.read-more:hover {
  color: #2ecc40;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.process-container {
  max-width: 960px;
  margin: 0 auto;
}
.process-subtitle {
  color: #2ecc40;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.process-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}
.process-steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1 1 400px;
  max-width: 320px;
}
.process-step img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.learn-more {
  font-size: 14px;
  color: #333;
  text-decoration: underline;
  font-weight: 500;
}
.learn-more:hover {
  color: #2ecc40;
}

/* Responsive */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
}
/* Remove spacing at top of first section */
.contact-section {
padding: 80px 20px
}

/* Custom container replaces Bootstrap container */
.custom-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Wrapper Flexbox */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Columns */
.form-column {
  flex: 1 1 55%;
}

.info-column {
  flex: 1 1 40%;
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 6px;
}

/* Section Label */
.section-label {
  font-size: 13px;
  color: green;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-column h2 {
  color: #000;
  margin-top: 0; /* Remove space from heading */
}

/* Form Elements */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin: 15px 0 5px;
  display: inline-block;
  color: #000;
}

label span {
  color: red;
  font-size: 13px;
  margin-left: 4px;
}

input,
textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
}

.checkbox-row label {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  color: #000;
}

/* Button */
button {
  background: #28a745;
  color: white;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #218838;
}

/* Info Column */
.info-column h4 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 4px;
  color: #000;
}

.info-column p,
.info-column a {
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #222;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 0;
  }
}



.site-footer {
  background-color: #101d12; /* dark background */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

/* Centered horizontal links */
.footer-links {
  text-align: center;
  margin-bottom: 30px;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ff9d; /* or any highlight color you prefer */
}

/* Bottom-left credit link */
.footer-bottom {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.credit-link {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
  display: inline-block;
}
/* Existing styles remain unchanged */

.social-icons {
  text-align: center;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  margin: 0 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00ff9d; /* Highlight color on hover */
}

@media (max-width: 768px) {
  .footer-links a {
    display: block;
    margin: 8px 0;
  }

  .footer-links {
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }
}



/* Modal css */
/* Modal overlay */
.process-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

/* Modal box */
.process-modal-box {
  background: #fff;
  width: 90%;
  max-width: 1000px;
  padding: 20px;
  border-radius: 6px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.slide {
  display: none;
  flex-direction: row;
  gap: 20px;
}

.slide.active {
  display: flex;
}

.slide-left {
  width: 45%;
}

.slide-left img {
  width: 100%;
  border-radius: 4px;
}

.slide-right {
  width: 55%;
}

.slide-right h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}

.slide-right p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}

.slide-controls {
  text-align: right;
  margin-top: 16px;
}

.slide-controls button {
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

#slide-counter {
  font-size: 14px;
  margin: 0 10px;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }

  .slide-left, .slide-right {
    width: 100%;
  }

  .slide-right {
    margin-top: 16px;
  }
}




