/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fefefe;
  color: #2e2e2e;
  line-height: 1.7;
}

.section-img {
  border-radius: 8px;
  border: 2px solid #3cb043;  /* Matches brand color */
  margin: 20px 0;
  max-width: 100%;
  height: auto;
}


/* Navigation */
nav {
  background: #011627;
  padding: 1px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav ul li a:hover {
  background: #3cb043;
  color: #011627;
}

/* Hero Section */
.hero {
  padding: 130px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(1, 22, 39, 0.8), rgba(60, 176, 67, 0.8)), url('imgs/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.hero h2 {
  font-size: 3em;
  font-weight: 700;
}

.hero p {
  margin-top: 15px;
  font-size: 1.1em;
  opacity: 0.9;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 35px;
  background: #3cb043;
  color: #011627;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.3s, transform 0.3s;
  font-weight: 600;
}

.button:hover {
  background: #1bb425;
  transform: translateY(-3px);
}

p {
  text-align: justify;
  line-height: 1.6;
}


/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

.section h3 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #011627;
  font-weight: 700;
}

.section p,
.section ul li {
  color: #444;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
}


/* Service Cards */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #011627;
  color: #fff;
  font-size: 0.95em;
  border-top: 4px solid #3cb043;
}

.social-icons a {
  color: #b32929;
  font-size: 1.5em;  /* Slightly bigger for better visibility */
  padding: 10px;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
  color: #9bb49c;
  background-color: #fff;  /* Adds a nice hover effect */
}


/* Scroll Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #3cb043;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #1bb425;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .button {
    padding: 12px 30px;
  }

  .social-icons {
    gap: 15px;
  }
}


/* Updated CSS content goes here */
