@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.logo{
    height: 50px;
}
.logo-slogan {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* or center if you want it centered */
}

.logo {
    max-width: 150px; /* adjust size if needed */
}

.slogan {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
    font-weight: 500;
    font-family: Arial, sans-serif;
}


.head{
    /* border: 2px solid yellow; */
    display: flex;
    justify-content: space-between;
    font-family:  "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 600;
    margin-top: 30px;
    margin-left: 40px;
    margin-right: 40px;
}

.menu{
    display: flex;
    list-style: none;
    /* border: 2px solid red; */

}
.menu li{
    padding: 20px;
}

.menu {
  display: flex;
  list-style: none;
  /* gap: 20px; */
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.menu li a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: #007bff; /* or use your brand color */
  transition: width 0.3s ease;
}

.menu li a:hover {
  color: #007bff;
}

.menu li a:hover::after {
  width: 100%;
}



.hero img{
    width: 99vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    padding: 30px;
    padding-top: 20px;
    border-radius: 68px;
}


.project-section{
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.cards{
    margin: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card{
    height: 200px;
    width: 230px;
    /* border: 2px solid red; */
    position: relative;
    box-shadow:  2px 3px 2px black;
    border-radius: 10px;
}

.card img{
    width: 100%;
    border-radius: 10px;
}

.box{
    height: 76px;
    background-color: rgb(241, 241, 241);
    position: relative;
    top: -65px;
    z-index: 0;
    border-radius: 10px;

}


.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.project-card:hover {
    transform: scale(1.02);
}

.customer-review {
  background-color: aliceblue;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 40px 0;
  margin-bottom: 20px;
}

.carousel-wrapper {
  overflow: hidden;
  width: 90%;
  margin: 30px auto;
  position: relative;
  padding: 5px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 50s linear infinite;
}

.carousel-item {
  min-width: 280px;
  max-width: 300px;
  background: white;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  height: auto;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.client-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.carousel-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  max-height: 4.2em; /* Limits to 3 lines */
  overflow: hidden;
  text-overflow: ellipsis;
}


@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer {
  background-color: #04aed4;
  color: black;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px 20px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
  color: #ffd700;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer a:hover {
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #999;
}



.why-choose-us {
  padding: 60px 30px;
  background-color: #f8f9fa;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.why-choose-us h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
}

.feature img {
  height: 50px;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  font-size: 14px;
  color: #555;
}



.faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background-color: #f1f1f1;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e4e4e4;
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 14px;
  display: none;
  background-color: #fff;
  color: #333;
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}


.trust-stats {
  padding: 60px 20px;
  background-color: #fffbe6;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.trust-stats h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.stat-box {
  background-color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: #666;
}


.cta-banner {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #25D366;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1da851;
}


.enquiry-section {
  background-color: #f0f8ff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  border-radius: 40px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.enquiry-section h2 {
  font-size: 32px;
  color: #04aed4;
  margin-bottom: 10px;
}

.enquiry-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
  outline: none;
  resize: none;
}

.enquiry-form button {
  background-color: #04aed4;
  color: white;
  padding: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.enquiry-form button:hover {
  background-color: #028bb0;
}


.open-enquiry-btn {
  background-color: #004655;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: background-color 0.3s ease;
}

.open-enquiry-btn:hover {
  background-color: #028bb0;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: "Poppins", sans-serif;
}

.popup-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #04aed4;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
}

.popup-form button {
  background-color: #04aed4;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.popup-form button:hover {
  background-color: #028bb0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

.project-section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  padding: 50px 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  text-align: left;
}

.project-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 14px;
  color: #777;
}

/* ===== Hamburger Menu ===== */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
}


/* ========== CORRECTED & IMPROVED RESPONSIVE STYLES ========== */

@media (max-width: 768px) {
  /* --- Header & Navigation --- */
  .head {
    /* Aligns logo to the left and hamburger icon to the right */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows items to wrap if needed */
    margin: 15px 20px;
  }

  .nav-menu {
    display: none;
    width: 100%; /* Make the nav container take full width */
    order: 3; /* Ensures it appears below the logo and hamburger */
  }
  
  /* When hamburger is clicked, show the menu */
  #menu-toggle:checked ~ .nav-menu {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    margin-top: 15px;
    background-color: #f8f9fa; /* Gives the dropdown a background */
    border-radius: 8px;
    width: 100%;
  }
  
  .menu li a{
      padding: 10px;
      width: 100%;
      text-align: center;
  }

  /* Show the hamburger icon */
  .hamburger {
    display: block;
    order: 2; /* Positions it after the logo */
  }

  /* --- Hero Image --- */
  .hero img {
    /* Use 100% width and a more appropriate height for mobile */
    width: 100%;
    height: 50vh;
    padding: 15px;
    border-radius: 30px;
  }

  /* --- General Sections & Grids --- */
  .project-grid, .features-grid, .stats-grid {
    grid-template-columns: 1fr; /* Stack grid items into a single column */
    gap: 20px;
  }

  /* --- Typography --- */
  .section-title, .why-choose-us h2, .trust-stats h2, .cta-content h2 {
    font-size: 28px; /* Adjust heading sizes for smaller screens */
  }

  .project-info {
    text-align: center;
  }

  /* --- Footer --- */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  /* Add this inside your existing @media block    its is for contact.html */  
  .contact-container {
    flex-direction: column;
  }


  /* Add these inside your existing @media block  for projectpages*/
  .project-detail-container {
    padding: 20px;
  }
  .project-title {
    font-size: 1.8rem;
  }
  .project-description h3 {
    font-size: 1.3rem;
  }
  .map-iframe {
      height: 250px;
  }
}




/* Add this to your design.css file      project.html */
a.project-link {
    text-decoration: none;
    color: inherit;
}



/* =================================== */
/* ===== Contact Page Styles ===== */
/* =================================== */

.contact-hero {
  background-color: #04aed4;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-form-box,
.contact-info-box {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  min-width: 300px;
}

.contact-form-box h2,
.contact-info-box h2 {
  margin-bottom: 20px;
  color: #04aed4;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
}

.contact-form-box button {
  background-color: #04aed4;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-box button:hover {
  background-color: #028bb0;
}

.contact-info-box p {
  margin-bottom: 15px;
  font-size: 15px;
}

.map iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-top: 20px;
  border: none;
}



/* =================================== */
/* ===== About Us Page Styles ===== */
/* =================================== */

.about-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.about-us h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.about-us p.intro {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  text-align: center;
}

.about-values {
  display: grid;
  /* This grid is already responsive! */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-value {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.about-value:hover {
  transform: translateY(-6px);
}

.about-value h3 {
  color: #007bff;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-value p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}






/* ======================================= */
/* ===== Project Detail Page Styles ===== */
/* ======================================= */

.project-detail-container {
    padding: 40px 5%;
    max-width: 900px;
    margin: auto;
    background-color: #fff;
}

.project-banner {
    text-align: center;
    margin-bottom: 30px;
}

.banner-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.project-location {
    color: #666;
    font-size: 1.1rem;
}

.project-description h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #04aed4;
    padding-bottom: 5px;
}

.project-description p,
.project-description li {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.project-description ul {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 20px;
}

.map-iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    border: none;
}