/* Basic resets and body */
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
}

.content-wrapper {
  padding-top: 80px; /* height of navbar */
}

 /*Hero Section */
 .hero-section {
  height: 80vh;
  background: url('assets/images/index_img.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
} 

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-section h1 {
  font-weight: 700;
  letter-spacing: -1px;
  font-size: clamp(28px, 5vw, 64px);
}
.hero-section p {
  font-size: 1.25rem;
}

/* Section title style */
.section-title {
  text-align: center;
  margin-bottom: 28px;
}
.section-title h2 {
  font-weight:700;
  font-size: clamp(28px, 4vw, 40px);
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .underline {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  margin: 12px auto 0;
  border-radius: 6px;
}

/* Card style */
.service-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  padding: 24px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  background: #f3f7ff; /* soft hover color */
}

/* Icon style inside cards */
.service-card .icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  border-radius: 50%;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .service-card { margin-bottom: 20px; }
}
@media (max-width: 576px) {
  .service-card .icon { width: 60px; height: 60px; font-size: 32px; }
}

/* Task card styling */
.task-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  gap: 20px;
  flex-wrap: wrap; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.task-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}
.task-card .task-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}
.task-card .task-content {
  flex: 1;
}
.task-card .task-content h5 { font-weight:600; margin-bottom:10px; }
.task-card .task-content p { margin-bottom:8px; }
@media (max-width: 768px) {
  .task-card {
    flex-direction: column;
    text-align: center;
  }
  .task-card .task-image img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
  }
}

/* Navbar button spacing */
.navbar .btn-nav .btn {
  margin-left: 8px;
  margin-right: 8px;
}

/* Mobile view fix */
@media (max-width: 992px) {
  .navbar .btn-nav .btn {
    display: block;
    width: 100%;     /* full width buttons */
    margin: 5px 0;   /* even spacing */
    text-align: center;
  }
}



/* Small spacing for page sections */
.section { padding: 60px 0; }
