/* General Reset and Font */
body {
  margin: 0;
  padding: 0;
  background-color: #edede9;
  font-family: 'Times New Roman', serif;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:edede9;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  height: 60px;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: edede9;
  font-size: 18px;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: edede9;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  background-image: url('https://i.supaimg.com/bb197292-e80e-4a16-9b11-aef573acbe7c.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  
  z-index: 1;
}

/* Header Content */
.header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}

.header-content h1 .logo {
  width: 80px;
  height: auto;
  margin-right: 15px;
  vertical-align: middle;
}

.header-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }

  .header-content h1 {
    font-size: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content h1 .logo {
    margin: 0 0 10px 0;
    width: 60px;
  }

  .header-content p {
    font-size: 0.95rem;
  }
}

/* Section 2: Overview Styles */
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-family: 'Times New Roman', serif;
  padding: 20px;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.btn.secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color:edede9 ;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  font-family: 'Times New Roman', serif;
}
/* style.css */
body {
  margin: 0;
  padding: 0;f5ebe0
  background-color: #;
  font-family: 'Times New Roman', serif;
  font-size: 18px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:f5ebe0 ;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  height: 60px;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 40px 20px;
  text-align: center;
  background-color: f5ebe0;
  margin: 20px;
  border-radius: 8px;
}

h2 {
  color: #001219;
  font-size: 28px;
  margin-bottom: 15px;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #edede9 ;
  font-size: 18px;
  color: #555;
  border-top: 1px solid #ccc;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-family: 'Times New Roman', serif;
  padding: 20px;
   color: #333;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.overview-section {
  background-color: #edede9 ;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

/* Section 2: Why Choose Us (3 Columns, 3 Rows Layout) */
.overview-section {
  background-color: #fff;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

.overview-section .container {
  max-width: 1200px;
  margin: 30 auto;
}

.overview-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 3fr); /* 3 columns */
  gap: 30px;
  justify-content: center;
}

.feature-box {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2.2rem;
  color: #00695c;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Grid: Switch to 1 or 2 columns on smaller screens */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 3fr);
  }
}

@media (max-width: 1000px) {
  .features {
    grid-template-columns: 3fr;
  }
}


.first-row .trust-card {
  flex: 1 1 calc(25% - 15px); /* 4 columns */
}

.second-row .trust-card {
  flex: 1 1 calc(33.33% - 13.33px); /* 3 columns */
}

/* Optional override to make header text black */
.header-content.light-text {
  color: #000;
}

.header-content.light-text p {
  color: #222;
}
/* Section 3: Projects Grid */
.projects-section {
  background-color: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.projects-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 4fr));
  gap: 30px;
  margin-bottom: 60px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.6s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  font-size: 1.2rem;
  color: #00695c;
  margin: 15px 0 5px;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
/* Section 4: Contact Form */
.contact-section {
  background-image: url('https://i.supaimg.com/2a73936d-aaec-4a05-a40a-4ea77506a1cd.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  color: #fff;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark transparent overlay */
  padding: 60px 20px;
  border-radius: 15px;
  max-width: 600px;
  margin: auto;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #edede9 ;
}

.contact-container form {
  display: flex;
  flex-direction: column;
}

.contact-container label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #f5f5f5;
}

.contact-container input,
.contact-container textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
  background-color: #edede9;
  color: #333;
}

.contact-container textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-container button {
  padding: 12px;
  background-color: #edede9;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.6s ease;
}

.contact-container button:hover {
  background-color: #004d40;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-overlay {
    padding: 40px 15px;
  }

  .contact-container h2 {
    font-size: 1.6rem;
  }
}
/* Section 4: Contact Form */
.contact-section {
  background-image: url('https://i.supaimg.com/2a73936d-aaec-4a05-a40a-4ea77506a1cd.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  color: #fff;
}

.contact-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark transparent overlay */
  padding: 60px 20px;
  border-radius: 15px;
  max-width: 600px;
  margin: auto;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #ffffff;
}

.contact-container form {
  display: flex;
  flex-direction: column;
}

.contact-container label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #f5f5f5;
}

.contact-container input,
.contact-container textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
  background-color: #edede9 ;
  color: #333;
}

.contact-container textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-container button {
  padding: 12px;
  background-color: #edede9;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background-color:  #edede9;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-overlay {
    padding: 40px 15px;
  }

  .contact-container h2 {
    font-size: 1.6rem;
  }
}
/* Section 6: Full Width Google Map with Address */
.map-full-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #edede9 ;
}

.map-info {
  padding: 40px 20px;
  background-color:  #edede9;
  text-align: center;
}

.map-info h2 {
  font-size: 2rem;
  color: #001219;
  margin-bottom: 10px;
}

.map-info p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.map-embed {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.map-embed iframe {
  width: 80%;
  height: 80%;
  border: 0;
  display: center;
}

/* Optional full-screen map on large screens */
@media (min-width: 1200px) {
  .map-embed {
    height: 600px;
  }
}
/* Section 7: Footer Styles */
.site-footer {
  background-color: edede9;
  color:000000;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container p {
  margin: 10px 0;
  font-size: 1rem;
}

.footer-container a {
  color: #fcbf49;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color:000000 ;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer-container p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
/* Section 7: Footer Styles with Black Font */
.site-footer {
  background-color: #edede9;
  color: #111;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container p {
  margin: 10px 0;
  font-size: 1rem;
  color: #111;
}

.footer-container a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #444;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer-container p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
/* Section 7: Footer Styles with Black Font */
.site-footer {
  background-color: #edede9;
  color: #111;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container p {
  margin: 10px 0;
  font-size: 1rem;
  color: #111;
}

.footer-container a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.footer-container a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #444;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer-container p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
