/* ---------------------------- */
/* Reset & Base Styling         */
/* ---------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

/* ---------------------------- */
/* Section Base Styling         */
/* ---------------------------- */
section {
  padding: 60px 20px;
  max-width: 1500px;
  margin: auto;
  text-align: center;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

/* Alternating backgrounds & raised effect */
section:nth-of-type(odd) {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);  /* subtle flat shadow */
}

section:nth-of-type(even) {
  background-color: #f8f8f8;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* slightly “raised” */
}

/* Consistent headings and paragraphs */
section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

section p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ---------------------------- */
/* Header Section               */
/* ---------------------------- */
header {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
              url('images/hero.jpg') center / cover no-repeat;
  text-align: center;
  padding: 150px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

header h1 {
  font-size: 3.4rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #fff;
}

header p {
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
}

/* Text shadow for readability */
header h1,
header p {
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 12px rgba(0,0,0,0.6);
}

/* ---------------------------- */
/* Navbar Styling               */
/* ---------------------------- */
/* Navbar container */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;          /* default gap between items */
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;   /* prevent wrapping */
}

.navbar ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap; /* ensure text stays on one line */
  font-size: clamp(0.8rem, 2vw, 1rem); /* scales with viewport */
}

.navbar ul li a:hover {
  background: #111;
  color: #fff;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments for very narrow screens */
@media (max-width: 600px) {
  .navbar ul {
    gap: 20px;        /* smaller gap on small screens */
  }
  .navbar ul li a {
    padding: 6px 8px; /* reduce padding to fit better */
  }
}


/* ---------------------------- */
/* Intro Section with image     */
/* ---------------------------- */
.intro {
  padding: 50px 100px;
}

.intro-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.intro-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #111;
}

.intro-text {
  max-width: 600px;
  text-align: left;
}

/* Horizontal bullet points */
.intro-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 2px 0 0 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
}

.intro-bullets li {
  position: relative;
  padding-left: 20px;
}

.intro-bullets li::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}

/* Mobile adjustments for intro-inner */
@media (max-width: 800px) {
  .intro-inner {
    gap: 0; /* remove horizontal/vertical gap on narrow screens */
  }
}


/* ---------------------------- */
/* Services Section             */
/* ---------------------------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: inherit;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service-item h3 {
  color: #000;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-item h3 i {
  margin-right: 10px;
  font-size: 1.2em;
}

.service-item p {
  color: #555;
}

/* ---------------------------- */
/* Further Information Section  */
/* ---------------------------- */
.downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.downloads a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  color: #111;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.downloads a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-3px);
}

.downloads i {
  font-size: 1.2rem;
}

/* ---------------------------- */
/* Contact Section              */
/* ---------------------------- */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-icons .icon {
  font-size: 5rem;           /* original size */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  color: #fff;               /* icon text color */
}

/* Brand colors (original) */
.icon.email { background: #d93025; }       /* Gmail red */
.icon.facebook { background: #1877f2; }    /* Facebook blue */
.icon.whatsapp { background: #25d366; }    /* WhatsApp green */
.icon.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
  color: #fff;
}


/* Hover effects (original brand colors) */
.contact-icons .icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  filter: brightness(1.15);
}


.contact-icons .icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  filter: brightness(1.15);
}

/* ---------------------------- */
/* Gallery Section              */
/* ---------------------------- */
.gallery .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ---------------------------- */
/* Footer                       */
/* ---------------------------- */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #eee;
}

/* ---------------------------- */
/* Responsive Tweaks            */
/* ---------------------------- */
@media (max-width: 800px) {
  .intro-inner { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .intro-text { text-align: center; }
  .intro-image img { width: 150px; height: 150px; }
}

@media (max-width: 600px) {
  header h1 { font-size: 2.3rem; }
  header p { font-size: 1.1rem; }
  .service-item { padding: 20px; }
  .contact-icons .icon { font-size: 3rem; width: 80px; height: 80px; }
  section { padding: 40px 15px; }
}
