* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	background: #f9f9f9;
	color: #333;
}
.top-bar {
	background: #222;
	color: #fff;
	text-align: right;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
}
.top-bar a {
	color: #fff;
	text-decoration: none;
     margin-left: 5px
}
.navbar {
	display: flex;
	justify-content: space-between;
    align-items: center;
	background: grey;
	padding: 1rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #5e5a54;
}
.nav-links {
list-style: none;
	display: flex;
	gap: 1rem;
}
.nav-links a {
	text-decoration: none;
	color: black;
	padding: 0.5rem 0.75rem;
	transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #f28c28;
}
.dropdown {
	position: relative;
}
.dropdown-menu {
	display: none;
	position: absolute;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	list-style: none;
	padding: 0.5rem 0;
	min-width: 160px;
}
.dropdown:hover .dropdown-menu {
   display: block;
}
.dropdown-menu li a {
	display: block;
	padding: 0.5rem 1rem;
	color: #333;
	white-space: nowrap;
}

.services-heading {
	background: #d3d3d3;
	text-align: center;
	padding: 20px 0;
}
.services-heading h2 {
	margin: 0;
	font-size: 1.7rem;
	color: #5e5a54;
}

   /* Reset and basics */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
  color: #333;
  line-height: 1.6;
}

/* Header styling */
header {
  background-color: #2b2b2b;
  padding: 20px;
  text-align: center;
}

header h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

/* Main container */
main {
  padding: 40px 20px;
}

/* Service section layout */
.service-content {
  background: #d3d3d3;
  padding: 30px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 600px;
  transition: all 0.3s ease;
  scroll-margin-top: 120px; /* For smooth anchor scrolling */
}

.service-content h2 {
  font-size: 1.4rem;
  color: #f28c28;
  text-align: center;
  border-bottom: 3px solid #f28c28;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

/* Images */
.service-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin: 15px auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
footer {
	background: #222;
	color: #fff;
	text-align: center;
   padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5rem;
  }

  /* Navbar layout: logo left, menu right stacked vertically */
  .navbar {
    display: flex;
    flex-direction: row;       /* keep logo and menu on same line */
    justify-content: space-between; /* logo left, menu right */
    align-items: flex-start;   /* top-align logo & menu */
    padding: 1rem;
  }

  .logo {
    flex: 0 0 auto;            /* keep logo size fixed */
  }

  .nav-links {
    flex-direction: column;    /* stack links vertically */
    align-items: flex-end;     /* keep them to the right */
    gap: 8px;
  }

  .nav-links a {
    display: block;
    padding: 8px 12px;
    background: #eee;
    border-radius: 4px;
    width: auto;
    color: #222;
    font-size: 1rem;
  }
  .service-content img {
    width: 100%;
    height: 250px;        /* 👈 fixed same height for all images */
    object-fit: cover;    /* ensures the image fills space neatly */
    max-width: 100%;
  }

  .service-content {
    padding: 15px;
    margin: 15px;
  }

  .service-content h2 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 1rem;
  }

footer {
	background: #222;
	color: #fff;
	text-align: center;
   padding: 1rem;
}
}