/* 🌐 General Page Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9fbfd;
  color: #333;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* 🔹 Navbar Placeholder (loaded dynamically) */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 🌟 Hero Section */
.hero {
  background: linear-gradient(135deg, #0a74da 0%, #005bb5 100%);
  color: #fff;
  text-align: center;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 750px;
  margin: auto;
  opacity: 0.95;
}

/* 🔹 Floating Animation for Icon */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 🧩 General Section Styling */
section {
  padding: 70px 25px;
  text-align: center;
  background: #fff;
  margin: 20px 0;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 2rem;
  color: #0a74da;
  margin-bottom: 25px;
}

section h2 i {
  margin-right: 8px;
  color: #005bb5;
}

section p {
  font-size: 1.1rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

section ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

section ul li {
  margin: 10px 0;
  font-size: 1.05rem;
  color: #333;
  display: flex;
  align-items: center;
}

section ul li i {
  color: #0a74da;
  margin-right: 10px;
  min-width: 25px;
  text-align: center;
}

/* 🎯 “What We Offer” Subheadings */
#services h3 {
  font-size: 1.4rem;
  color: #0a74da;
  margin-top: 25px;
  margin-bottom: 10px;
}

#services a {
  color: #005bb5;
  font-weight: bold;
  text-decoration: none;
}

#services a:hover {
  text-decoration: underline;
}

/* 🌈 Our Values Styling */
#values ul li strong {
  color: #0a74da;
}

/* 🚀 Call to Action Section */
#call-to-action {
  background: linear-gradient(135deg, #005bb5 0%, #0a74da 100%);
  color: #fff;
  padding: 80px 25px;
  border-radius: 18px;
  text-align: center;
}

#call-to-action h2 {
  font-size: 2.2rem;
  color: #fff;
}

#call-to-action i {
  color: #ffcc00;
  margin-right: 8px;
}

#call-to-action p {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 20px auto;
  opacity: 0.9;
}

/* 🔘 Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-primary {
  background-color: #ffcc00;
  color: #003366;
}

.btn-primary:hover {
  background-color: #ffd633;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #005bb5;
  transform: scale(1.05);
}




/* 📱 Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 25px;
  }

}
