/* Reset and Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: #212529;
  background-color: #f9f9f9;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
}

h1 span.text-primary {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

.btn-outline-primary {
  border: 2px solid #0d6efd;
  color: #0d6efd;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Navbar */
.navbar-brand {
  font-weight: 800;
}

.navbar-nav .nav-link {
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

/* Hero */
header.vh-100 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

header h1 {
  font-size: 4rem;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.75rem;
  }
}

/* Cards (Portfolio) */
.card {
  border-radius: 1rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  object-fit: cover;
  height: 200px;
}

/* Lists (About & Importance) */
ul {
  padding-left: 1.25rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
form input,
form textarea {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  transition: border-color 0.2s ease-in-out;
}

form input:focus,
form textarea:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer {
  background-color: #000;
  font-size: 0.9rem;
}

/* Scroll Down Indicator */
.scroll-down {
  animation: bounce 2s infinite;
  display: inline-block;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* AOS animation override (smooth scroll & fade-in feeling) */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
}

[data-aos].aos-animate {
  opacity: 1;
}

.icon-wrapper {
  background-color: #eef4ff;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.help-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.help-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.help-section .help-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}

.help-section .help-graphic img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.help-section .cta-button {
  background: #111;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.help-section .cta-button:hover {
  background: #333;
}

.help-section .cta-button {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.help-section .cta-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}
