/* Reset & Fonts */

body {
  font-family: 'Arial', sans-serif;
  background-color: white;
}

h1,h2 {
  font-family: 'Times New Roman', Times, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  

  /* naavbar */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

 
  header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    height: 90px;
    padding: 15px 30px;
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
  }

  .logo img {
  height: 90px;   
  width: auto;   
  max-height: 100px; 
  margin-top: -10px;
  }

  .nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 60px;
  }

  .nav-center a,
  .nav-right a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    position: relative;
  }

  .nav-center a::after {
    content: '';
    display: block;
    height: 2px;
    background: #333;
    width: 0;
    transition: width 0.3s;
    margin-top: 5px;
  }

  .nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-right a i {
    font-size: 20px;
  }


  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: stretch; /* stretch full width */
      position: relative;
      padding: 20px;
    }
  
    .hamburger {
      display: flex;
      align-self: flex-end; /* pushes it to the right */
      margin-bottom: 10px;
    }
  
    .nav-center,
    .nav-right {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #fff;
      border-top: 1px solid #ddd;
    }
  
    .nav-center.active,
    .nav-right.active {
      display: flex;
    }
  
    .nav-center a,
    .nav-right a {
      text-align: center;
      width: 100%;
      padding: 15px;
    }
  }
  


/* Hamburger hidden by default on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}


/* === Responsive Styles (Mobile) === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-center,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-top: 1px solid #ddd;
  }

  .nav-center.active,
  .nav-right.active {
    display: flex;
  }

  .nav-center a,
  .nav-right a {
    text-align: center;
    width: 100%;
    padding: 15px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}




  /* image-slider */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  

  /* Wrapper to preserve layout flow */
  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .slider {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .fade-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Content below the slider */
  .content {
    padding: 40px;
   
  }

  @media (max-width: 768px) {
    .slider-wrapper {
      height: 60vh;
    }
  }
  
  

/* Desktop / Default layout */
.two-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px;
}

.image-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.image-content,
.text-content {
  flex: 1; /* Equal width by default */
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .image-content,
  .text-content {
    width: 100%;
  }

  .image-content img {
    width: 100%;
    height: auto;
  }

  .text-content h2,
  .text-content p {
    margin: 10px 0;
  }
}





  
  .view-projects-link {
    display: inline-block; /* Allows margin to apply */
    margin-top: 10px;       /* Adds space above the link */
    font-size: 1em;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
  }

  .welcome-description {
  margin-bottom: 30px; /* Adds space under the paragraph */
}


  
  /* text below the welcome */
  .section {
    padding: 4rem 0;
    text-align: center;
  }
  .about p, .services ul {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
  }
  .services ul {
    list-style: none;
    padding: 0;
  }
  .services li {
    margin: 1rem 0;
    font-weight: 600;
  }
  

  


  .two-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
    flex-wrap: wrap;
    padding: 4rem 3rem;
  }
  
  .image-content, .text-content {
    flex: 1;
    min-width: 100px;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }


 

  h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
  }
  

  .projects-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 50px;
    margin: 0 0px;
  }

  .project {
    position: relative;
    flex: 1 1 calc(33.333% - 20px);
    overflow: hidden;
    min-width: 280px;
    height: 400px;
    cursor: pointer;
  }

  .project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  

  .project-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 10px 15px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
  }


  @media (max-width: 768px) {
    .projects-container {
      flex-direction: column;
    }

    .project {
      width: 100%;
    }
  }
  
  


  .section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
  }

  .text-content {
    width: 50%;
    text-align: left;
  }

  .text-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: left;
  }

  .text-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    margin-right: 40px;
    line-height: 1.6;
    text-align: left;
  }
  
  .text-content a {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
  }

img {
  border-radius: 0 !important;
}


  .image-content {
    width: 45%;
  }

  .image-content img {
    width: 100%;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .section {
      flex-direction: column;
      text-align: center;
      padding: 30px;
    }

    .text-content, .image-content {
      width: 100%;
      margin-bottom: 20px;
    }
  }




  /* contact us */
  h2 {
      font-size: 2.5rem;
      text-transform: uppercase;
      margin-bottom: 2rem;
      color: #000;
    }

    .accordion {
      border-top: 1px solid #ccc;
    }

    .accordion-item {
      border-bottom: 1px solid #ccc;
    }

    .accordion-header {
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      padding: 1rem 0;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }



    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 0 0 0.5rem;
    }

    .accordion-item.active .accordion-content {
      max-height: 200px;
      padding: 1rem 0;
    }

    .icon {
      transition: transform 0.3s ease;
    }

    .accordion-item.active .icon {
      transform: rotate(180deg);
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }

      .accordion-header {
        font-size: 1rem;
      }
    }


/* footer */
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff; /* WhatsApp green highlight */
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}


.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none !important;
  border-top: 1px solid #333;
  padding-top: 10px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none !important;
}



/* get in touch */
  h3 {
    text-align: left;
    margin-top: 20px;
    font-size: 40px;
  }

  .top-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 20px;
  }

  .left-section, .right-section {
    flex: 1;
    min-width: 300px;
    padding: 0px;
    box-sizing: border-box;
  }

  .left-section p,
  .right-section p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
  }

  .project-link {
    display: inline-block;
    margin-top: 30px;
    color: #0066cc;
    text-decoration: none;
  }

  .project-link:hover {
    text-decoration: underline;
  }

  .instagram-icon {
    margin-top: 20px;
  }

  .instagram-icon img {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
    transition: transform 0.3s ease;
  }

  .contact-section {
  position: relative;
  overflow: hidden;
  color: white;
}


  .bottom-image {
    display: block;
    max-width: 93%;
    height: 800px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  @media (max-width: 768px) {
    .top-content {
      flex-direction: column;
    }

    .contact-form-container {
      margin: 20px;
    }
  }

.service-section h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-section p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  border-radius: 0%;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 0%;
}

.form-check-label {
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 0%;
}

button[type="submit"] {
  margin-top: 20px;
  border: 1px solid #000;
  background: transparent;
  color: #000000;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0%;
}

button[type="submit"]:hover {
  background: #000;
  color: #fff;
  border-radius: 0%;
}

.image-container {
  width: 100%;
  max-width: 1280px;
  margin-left: 60px;

}

.image-container img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  margin-bottom: 60px;
}

.spacer{
  height: 30px;
}



/* Contact us page */
/* Container that centers everything with equal margins */
.contact-row {
  display: flex;
  justify-content: center;          /* Center the row */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;                        /* Space between items */
  padding: 20px 40px;               /* Equal left & right spacing */
  box-sizing: border-box;
}

/* Each contact item: same width and padding for symmetry */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 300px;
  min-width: 250px;
}

/* Icon styles */
.contact-item i {
  font-size: 24px;
  color: #333;
  margin-top: 5px;
}

/* Contact text styles */
.contact-text h5 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #000;
}

.contact-text p,
.contact-text a {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}

.contact-text a:hover {
  color: #555;
  text-decoration: underline;
}



/* Google Map container */
.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}




/* Responsive Layout */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form-box,
  .contact-info-box {
    flex: 1 1 100%;
  }
}



/* home page */

.hero {
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 30px;
}

.hero p {
  max-width: 800px;
  margin: 0px auto;
  font-size: 1rem;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.subheading {
  color: #888;
  font-style: italic;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}



.reasons-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto 0;
  text-align: left;
  font-size: 1.05rem;
}

.reasons-list li {
  margin-bottom: 15px;
}


/* about us page */
.about-us {
 
  padding: 40px 20px;
  background: #fff;
  color: #333;
}

.about-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
}

.about-us .intro {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.vision-mission .box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.vision-mission h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.vision-mission ul {
  padding-left: 20px;
  list-style-type: disc;
}

.vision-mission li {
  margin-bottom: 12px;
  line-height: 1.6;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}


/* product page */


/* Category Section */
.category {
  margin-bottom: 50px;
  margin-top: 30px;
}

.category h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #34495e;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Product Card */
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  font-size: 1rem;
  color: #2d3436;
}


.horizontal-sections {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.category.mini {
  flex: 1 1 30%;
}

.product-grid.single {
  display: block; /* Only one card per section */
}

.category.mini h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}
