/* Mygrantway Global Styles */

/* ======= VARIABLES ======= */
:root {
  --primary-color: #00ff00;
  --secondary-color: #6c757d;
  --dark-color: #121212;
  --light-color: #f8f9fa;
  --transition-speed: 0.3s;
}

/* ======= RESET ======= */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* ======= HEADINGS ======= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #111;
}

/* ======= SECTIONS ======= */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ======= BUTTONS ======= */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.btn-light:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ======= NAVIGATION ======= */
.navbar-brand strong {
  font-size: 1.3rem;
  color: var(--primary-color);
}

/* ======= HERO SECTION ======= */
.hero-overlay h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .hero-overlay h1 {
    font-size: 3.5rem;
  }
}

/* ======= CAROUSEL ======= */
.carousel-inner img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .carousel-inner img {
    height: 450px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
}

/* ======= FOOTER ======= */
footer {
  font-size: 15px;
  background-color: #111;
  color: #ccc;
}

/* ======= AOS ANIMATION STYLING ======= */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* ======= UTILITY ======= */
.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rounded {
  border-radius: 0.5rem !important;
}

.text-primary {
  color: var(--primary-color) !important;
}