:root {
  --primary-color: #00aeef;
  --secondary-color: #4d4d4d;
  --accent-color: #007ea7;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --text-color: #333333;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Lato", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  max-height: 90px;
  width: auto;
}

.nav-link {
  color: var(--secondary-color);
  font-weight: 600;
  margin-left: 15px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
}

/* Hero Section */
/* .hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url('images/save1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  align-items: center;
  color: white;
  position: relative;
} */

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-btn-group {
  animation: fadeInUp 1s ease-out 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features/Services Preview */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.feature-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.feature-box h4 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* About Preview */
.about-preview {
  background-color: var(--light-bg);
}

.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img img {
  /* transition: transform 0.5s ease; */
}

/* .about-img:hover img {
    transform: scale(1.05);
} */

/* Stats Counter */
.counter-section {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: white;
}

.counter-box {
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: #b0b0b0;
  padding: 70px 0 0;
}

.footer-logo {
  margin-bottom: 25px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
}

.footer-widget h4 {
  color: white;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.copyright {
  background-color: #1a1e21;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }
}
