* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --main-dark: #2b2d42;
  --accent: #00aaff;
  --gray: #f7f7f7;
  --text-muted: #adb5bd;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #f9f9f9;
  color: #444;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

a {
  color: #0052cc;
  text-decoration: none;
}

a:hover {
  color: #00c1b5;
  text-decoration: underline;
}
.hero {
  background: linear-gradient(135deg, var(--main-dark), #1c1d2e);
  color: white;
  padding: 5rem 0;
}
.btn-accent {
  background-color: #00c1b5;
  border-color: #00c1b5;
  color: #fff;
}

.btn-accent:hover {
  background-color: #009e99;
  border-color: #009e99;
  color: #fff;
}

.text-accent {
  color: #00c1b5 !important;
}

.hero-bg-overlay {
  z-index: 0;
}
.hero .container,
.hero h1,
.hero p,
.hero ul,
.hero .btn {
  position: relative;
  z-index: 2;
}

.btn-accent {
  background-color: var(--accent);
  border: none;
  color: white;
}
.btn-accent:hover {
  background-color: #008ecc;
}
.icon-box {
  font-size: 2.5rem;
  color: var(--accent);
}

.btn-primary {
  background-color: #0052cc;
  border-color: #0052cc;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #003a99;
  border-color: #003a99;
}

.btn-outline-primary {
  border-color: #00c1b5;
  color: #00c1b5;
}

.btn-outline-primary:hover {
  background-color: #00c1b5;
  color: #fff;
}

.navbar {
  background-color: #1c1c1e !important;
}

.navbar-brand {
  color: #00c1b5 !important;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: #f9f9f9 !important;
  margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #00c1b5 !important;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: #1c1c1e;
  color: #f9f9f9;
}

.section-light {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0052cc;
}

.pricing-card {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  border-color: #00c1b5;
  transform: translateY(-5px);
}

form .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
}

form .form-control:focus {
  border-color: #00c1b5;
  box-shadow: 0 0 0 0.2rem rgba(0, 193, 181, 0.25);
}

form .form-check-label {
  font-size: 0.9rem;
  color: #666;
}

footer {
  background-color: #1c1c1e;
  color: #f9f9f9;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: #00c1b5;
}

footer h5,
footer h6 {
  color: #fff;
}

footer hr {
  border-top: 1px solid #444;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00c1b5;
}

[data-aos] {
  transition-property: opacity, transform;
}

@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-card {
    margin-bottom: 2rem;
  }
}
