﻿/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding-top: 100px;
  min-height: 100vh;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  text-shadow: 0px 2px 6px rgba(0,0,0,0.7);
}

/* About Section */
.about-section {
  background: #fff;         /* solid white background */
  color: #666666;           /* soft gray body text */
}

.about-section h2 {
  color: #222;              /* darker heading */
  font-weight: 700;
  letter-spacing: 1px;
}

.about-section p,
.about-section li {
  color: #666666;           /* ensures paragraphs and list items are gray */
}

.about-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-icon:hover {
  transform: scale(1.1);
  border-color: #0d6efd;    /* Bootstrap primary blue */
}

/* Services Section */
section {
  padding: 60px 0;
}

.service-img {
  max-width: 150px;
  height: auto;
  border: 3px solid #ddd;
  padding: 5px;
  transition: transform 0.3s ease;
}

.service-img:hover {
  transform: scale(1.05);
  border-color: #007bff;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
