/* 1. Reset + Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.5;
}

/* 2. Utility Container */
.container {
  width: 90%;           /* use 90% of viewport width */
  max-width: 1200px;    /* but never exceed 1200px */
  margin: 0 auto;
  padding: 0 10px;      /* small side padding */
}

/* 3. Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background-color: #007B7F;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
#main-logo{
  width:80px;
  height:80px;
  margin-left: 5px;
  border-radius: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
}

/* 4. About Section */
.about-section {
  background-color: #fff;
  margin: 3rem auto;
  padding: 2rem 1rem;
  border-radius: 8px;
}

.about-section h2 {
  color: #007B7F;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1rem;
}

/* 5. Services Section */
.services-section {
  margin: 3rem auto;
  text-align: center;
}

.services-section h1 {
  font-size: 2rem;
  color: #007B7F;
  margin-bottom: 2rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* 6. Service Card */
.service-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* 7. Footer */
.main-footer {
  background-color: #000;
  color: #fff;
  font-family: inherit;
}

.footer-container {
  padding: 2rem 0;
}

.footer-socials {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-socials img {
  width: 40px;
  margin: 0 0.75rem;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #5076c6;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin: 0.5rem 0;
  color: #ccc;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #000;
  color: #fff;
}


.gm-style .place-card .place-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 14px;
    color: black;
}
element.style {
    position: absolute;
    z-index: 0;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    padding: 0px;
    border-width: 0px;
    margin: 0px;
    cursor: url(https://maps.gstatic.com/mapfiles/openhand_8_8.cur), default;
    touch-action: pan-x pan-y;
}

/* ========== FOOTER STYLES ========== */

.main-footer {
  background-color: #000000;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding-top: 10px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-socials {
  text-align: center;
  margin-bottom: 30px;
}

.footer-socials img {
  width: 40px;
  margin: 0 15px;
  vertical-align: middle;
  border-radius: 100%;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-location {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.map-container, .address-container {
  flex: 1;
  min-width: 300px;
}

.address-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ccc;
}

.footer-location h3 {
  color: #5076c6;
  margin-bottom: 10px;
}


.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: #5076c6;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 6px 0;
  color: #ccc;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

address {
  margin-top: 15px;
  color: #5076c6;
}


/* 8. Responsive Nav Toggle */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  nav {
    position: relative;
    top: 100%;
    right: 1rem;
    background: #007B7F;
    border-radius: 6px;
    display: none;
    width: 180px;
  }
  nav.show {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
  }
  nav ul li {
    text-align: center;
  }
}
