
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
}





nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 1rem;
  display: block;
}

nav ul li a:hover {
  background-color: #003366;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

.intro, #services, #gallery, #contact {
  background-color: white;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.services-list {
  columns: 2;
  list-style: disc;
  padding-left: 20px;
}

.gallery-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

form button {
  padding: 10px;
  background-color: #0055aa;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #003366;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 1rem;
  border-radius: 8px;
}

footer {
  background-color: #007bff;  /* or dark gray */
  color: white;
  text-align: center;
  padding: 20px 10px;
}

footer p {
  margin: 5px 0;
  font-size: 0.9em;
}


}



#about {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#about .container {
  max-width: 800px;
  margin: 0 auto; /* Centers the block */
}

#about h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #082567;
  text-align: center;
}

#about p {
  line-height: 1.6;
  color: #333;
  font-size: 1.2em;
  text-align: center; /* Center the paragraph text */
}



#services {
  background-color: #f9f9f9; /* light grey background */
  padding: 50px 20px;
  text-align: center;
}

#services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #082567; /* brand blue */
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #005c99;
}

.service-card p {
  font-size: 16px;
  color: #555;
}

.service-icon {
  width: 50px;   /* or any size you want */
  height: auto;  /* keep natural shape */
}

#contact {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Light gray for contrast */
  text-align: center;
}

#contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
   color: #082567;
}

#contact p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 8px 0;
}


<iframe
  src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3192.5057055213088!2d42.9564375!3d36.8543125!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x40088d1e0e63e7e7%3A0x83174b33703af70c!2sSama%20Company!5e0!3m2!1sen!2siq!4v1751983684594!5m2!1sen!2siq"
  width="100%"
  height="300"
  style="border:0;"
  allowfullscreen=""
  loading="lazy">
</iframe>

#contact a {
  color: #082567; /* match your header blue */
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}
#community-support h2 {
  color: #005ca9;
}

#gallery {
  padding: 60px 20px;
  background-color: #fff; /* white background */
  text-align: center;
}

#gallery h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #082567;
}

}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  max-height: 300px; /* or any height you like */
  object-fit: cover; /* crop to fill the box nicely */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img {
  width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;           /* Set all images to same height */
  object-fit: cover;       /* Crop edges nicely */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


.contact-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  background-color: #007bff;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}



/* Service Cards Grid (optional — you may have this) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Modal Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 999; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.7);
  padding-top: 100px;
}

.modal-content {
  background: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.modal-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.modal-content ul li {
  margin-bottom: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}



/* ✅ Responsive Google Map */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ✅ Make local video responsive */
.responsive-video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto; /* optional: add margin */
  border-radius: 8px; /* optional: rounded corners */
}

#community-support {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#community-support h2 {
  color: #005ca9;
}

#community-support h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

#community-support p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1rem;
  line-height: 1.6;
}

.support-photo {
  text-align: center;
}

.support-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-photo .caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}



#clients {
  padding: 50px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

#clients h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #082567;
}

#clients p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.clients-grid img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.clients-grid img:hover {
  filter: grayscale(0%);
}

.lang-switcher {
  color: #fff;
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.lang-switcher button {
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.lang-switcher button:hover {
  text-decoration: underline;
}

#community-support {
  padding: 50px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

#community-support h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #082567;
}

#community-support p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.community-image {
  max-width: 100%;
  overflow: hidden;
}

.community-image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}
#services {
  padding: 50px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

#services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #003366;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 250px;
  max-width: 100%;
  text-align: center;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* HEADER */
.main-header {
  background-color: #0056a3;
  color: white;
  position: relative;
  z-index: 1000;
}

/* Top bar */
.top-bar {
  width: 100%;
  display: flex;
  justify-content: flex-end;

  background-color: #004a8d;
}

.lang-switcher button {
  background: none;
  border: none;
  color: white;
  margin: 0 5px;
  font-size: 14px;
  cursor: pointer;
}

.lang-switcher button:hover {
  text-decoration: underline;
}

/* Branding */
.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.logo {
  width: 125px;
  height: auto;
  margin-bottom: 2px;
}

.header-text h1 {
  font-size: 28px;
  margin: 2px 0;
}

.tagline {
  font-size: 16px;
  margin-bottom: 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 24px;
  margin: 10px auto;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* NAVIGATION */
.main-nav {
  width: 100%;
  background-color: #003f7d;
  z-index: 1000;
  position: relative;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 10px 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #003f7d;
    padding: 20px;
    display: none;
    z-index: 1002;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    font-size: 18px;
  }
}