* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --primary: #2b5d9c;
  --primary-light: #3e78c0;
  --secondary: #bdc9d7;
  --background: #f4f7fa;
  --dark: #1d1d1d;
  --accent: #00c49a;
  --text: #333;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--text);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  /* color: var(--primary); */
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.section-padding {
  padding: 80px 0;
}

.navbar {
  background-color: var(--primary) !important;
}

.navbar .nav-link {
  color: white !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--secondary) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff !important;
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 40%,
    var(--primary-light) 100%
  );
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section p {
  font-size: 1.2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
}

.icon-box {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.pricing-box {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.pricing-box:hover {
  transform: scale(1.03);
}

.pricing-box h4 {
  color: var(--primary);
}

.pricing-box ul {
  list-style: none;
  padding-left: 0;
}

.pricing-box ul li {
  padding: 8px 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-check-label {
  font-size: 0.9rem;
  color: #666;
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}
footer {
  background-color: var(--dark);
  color: white;
}

footer a {
  color: white;
}

footer a:hover {
  color: var(--accent);
}

footer h5,
footer h6 {
  color: white;
}

footer .bi {
  transition: transform 0.3s;
}

footer .bi:hover {
  transform: scale(1.2);
}

[data-aos] {
  transition-duration: 1s;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}
