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

/* Body and Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Navigation Bar */
header {
  background-color: #ffffff;
  padding: 20px 0;
}

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

.logo-img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 1.1em;
}

.nav-links a:hover {
  color: #027bca;
}

/* Hero Section */
.hero {
  
  background: url('/images/banner.jpg?r=1') no-repeat center center/cover;
  background-size: cover; /* Ensure the image covers the entire section */
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 15px 30px;
  background-color: #027bca;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
}

.cta-btn:hover {
  background-color: #2980b9;
}

/* About Section */
.about {
  padding: 60px 20px;
  /* Set your background image here background: url('/images/banner.jpg') no-repeat center center/cover;  */
  /* Text color to stand out on the image color: white; */
  text-align: center;
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1em;
  color: #555;
}
/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #ecf0f1;
  text-align: center;
}

.services h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Service Card Styling */
.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .services h2 {
    font-size: 2em;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    gap: 15px;
  }

  .service-card {
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .service-card h3 {
    font-size: 1.5em; /* Slightly smaller font size for headings */
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.6em; /* Smaller title font size for mobile */
    margin-bottom: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
    gap: 10px;
  }

  .service-card {
    padding: 15px; /* Further reduce padding for smaller devices */
  }

  .service-card h3 {
    font-size: 1.3em; /* Even smaller font size for headings */
  }

  .service-card p {
    font-size: 0.9em; /* Smaller text for mobile screens */
  }
}


/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

label {
  font-size: 1.1em;
  margin-bottom: 5px;
}

input, textarea {
  padding: 12px;
  font-size: 1.1em;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
  height: 150px;
}

.submit-btn {
  padding: 12px 20px;
  background-color: #027bca;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
}

.submit-btn:hover {
  background-color: #2980b9;
}

/* Footer */
footer {
  padding: 20px 0;
  background-color: #1a2a3a;
  color: white;
  text-align: center;
}



/* Key Features Section */
/* Key Features Section - Dark Mode */
.key-features {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #0f3d6e; /* Dark background color */
  color: white; /* Light text for dark mode */
}

/* Parallax Background Effect */
.key-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/features.jpg'); /* Replace with your desired background image */
  background-position: center center;
  background-size: cover;
  z-index: -1;
  will-change: transform;
}

.key-features h2 {
  font-size: 3em;
  margin-bottom: 50px;
  color: #f1f1f1; /* Lighter heading color */
}

.features {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  background-color: #2d2d2d; /* Darker background for cards */
  border-radius: 15px;
  padding: 40px;
  width: 30%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  background-color: #027bca; /* Bright blue for icons */
  color: white;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 30px;
}

.feature-icon i {
  font-size: 3em;
}

.feature h3 {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #027bca; /* Bright blue for headings */
}

.feature p {
  font-size: 1.1em;
  color: #ccc; /* Lighter gray for text */
  line-height: 1.6;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .features {
    justify-content: center;
  }

  .feature {
    width: 100%;
    margin-bottom: 30px;
  }

  .key-features h2 {
    font-size: 2.2em;
  }

  .feature-icon i {
    font-size: 2.5em;
  }

  .feature h3 {
    font-size: 1.5em;
  }

  .feature p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .feature {
    padding: 20px;
  }

  .feature h3 {
    font-size: 1.4em;
  }

  .feature p {
    font-size: 0.9em;
  }
}




/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #333;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  transform: translateY(0);
}

/* Hover Effect */
.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.step-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.step h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #027bca;
}

.step p {
  font-size: 1.1em;
  color: #555;
}

/* Animation on Scroll */
.step:nth-child(odd) {
  animation: slideInLeft 0.6s ease-out forwards;
}

.step:nth-child(even) {
  animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* General Section Styling */
.impact-section {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
  font-family: 'Arial', sans-serif;
}

/* Title Styling */
.section-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Intro Text Styling */
.intro-text {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* List Styling */
.impact-list {
  list-style-type: none;
  padding-left: 0;
}

.impact-item {
  background-color: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #444;
  font-size: 1.1em;
  line-height: 1.6;
}

/* List Item Hover Effect */
.impact-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

