  header {
    width: 100%;
    background-color: #fff;
    padding: 0 24px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #eee;
    position: fixed;
    z-index: 1000;
    top: 0;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
  }

  .logo img{
    width: 180px;
    height: 120px;

  }

  nav {
    display: flex;
    gap: 24px;
  }

  nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding-left: 35px;
  }

  nav a.active{
    color: #ed8e00; /* or any brand color */
  font-weight: 600;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
  }

  /* Preloader overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner styling */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ffffff3a;
  border-top: 4px solid #ed8e00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


  /* Mobile menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease;
  }

  .mobile-menu a {
    padding: 12px 24px;
    border-top: 1px solid #eee;
    text-decoration: none;
  color: #333;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    nav {
      display: none;
    }
    nav a{
      text-decoration: none;
    }
    .hamburger {
      display: flex;
    }

    .mobile-menu.show {
      display: flex;
    }
  }

  .component-1 {
    width: 100%;
    height: 700px;
    background-image: url('https://img.freepik.com/free-photo/portrait-senior-man-with-camera-device-world-photography-day-celebration_23-2151657243.jpg?t=st=1733981125~exp=1733984725~hmac=4bde81a0e4c45048a63841c0df518551ea9406a539858531667b9a8c6debd17f&w=1380');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    margin-top: 40px;
  }

  .component-1 .content {
    max-width: 40%;
    margin-left: 50px;
    /* background-color: rgba(0, 0, 0, 0.2); Optional for readability */
    padding: 20px;
    border-radius: 10px;
    text-align: center
  }

.component-1 h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


.component-1 .btn {
  padding: 10px 20px;
  font-size: 1rem;
}
      .cards{
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      gap: 50px;
      margin-top: -130px;

    }
    .card{
      width: 350px;
      height: 300px;
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
      background-color: #fff;
      align-items: center;
      border: none;
    }

    .card img{
      width: 150px;
      height: 120px;
      margin-top: 20px;
    }

    .card p{
      margin-top: 15px;
    }
    .main-component{
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin-top: 100px 
    }
    .main-component img{
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;       
       border-radius: 20px;
    }
    
    .main-component .main-component-content{
     text-align: center;
     font-family: sans-serif;
     margin: auto 0px;
     padding: 10px 20px;
     width: 100%;
     max-width: 580px;
    }
    .main-component-content h3{
        font-family: Arial, Helvetica, sans-serif; /* Choose a premium font */
        font-size: 2rem; /* Adjust size as needed */
        text-align: center; /* Align the text */
        font-weight: bold;
        margin-bottom: 10px;
        color: #0f0e0e; /* Dark shade for contrast */
      }

     .main-component-content h5 {
        font-family: 'Roboto', sans-serif; /* Complimentary font for body */
        font-size: 1.2rem;
        text-align: center;
        line-height: 1.6; /* Better readability */
        color: #0f0e0e; /* Subtle color for less prominence */
        margin-bottom: 20px;
      }

      body {
        background-color: #fff; /* Light background for contrast */
      }
      .sub-component{
        display: flex;
        justify-content: space-evenly;
        gap: 100px;
        margin-top: 50px;
      }
      .sub-component img{
        width: 100%;
        max-width: 550px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;         
         border-radius: 20px;
      }
      .sub-component-content{
        /* margin: auto; */
        text-align: center;
        font-family: sans-serif;
        margin: auto 0px;
        width: 100%;
        padding: 10px 20px;
        max-width: 580px;
      }
      .sub-component-content h3{
        font-family: Arial, Helvetica, sans-serif; /* Choose a premium font */
        font-size: 2rem; /* Adjust size as needed */
        text-align: center; /* Align the text */
        font-weight: bold;
        margin-bottom: 10px;
        color: #0f0e0e; 
      }
      .sub-component-content h5{
        font-family: 'Roboto', sans-serif; /* Complimentary font for body */
        font-size: 1.2rem;
        text-align: center;
        line-height: 1.6; /* Better readability */
        color: #0f0e0e; /* Subtle color for less prominence */
        margin-bottom: 20px;
      }

      .testimonial-grid{
        padding-block: clamp(20px,3vw,70px);
        padding-inline: clamp(30px,4vw,80px);
      }
      .testimonials{
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding-inline: clamp(30px,3vw,80px) !important;
        margin-top: 100px;
        border: 1px solid #d38107;
        justify-content: center;
        border-radius: 80px;
        border-right: 15px solid #ff9d0a;
        border-bottom: 12px solid #ff9d0a;
        border-left: 3px solid #ff9d0a;
        border-top: 3px solid #ff9d0a;
        padding-block: clamp(20px,3vw,40px);
      }
      .testimonial{
        /* width: 450px; */
        /* height: auto; */
        padding-bottom: 50px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        background-color: #fff;
        margin: 100px auto 20px auto;
      }

      .testimonial p{
        margin: 25px 60px 0px 60px;
        color: #ff9800;
      }
      .testimonial:hover{
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;          
        border: 1px solid rgb(27, 31, 35,0.15);        
      }
     .testimonial .round{
      width: 180px; 
      height: 180px; 
      border-radius: 50%; 
      margin: -90px auto; 
    }
    .round img{
      max-width:180px;
      max-height: 180px;
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }
     .fa-solid{
      margin: 40px 0px 0px 30px;
      color: #ff9800;
     }
     /* General Footer Styles */
.footer {
  background-color: #ff9800;
  color: #333;
  padding: 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links,
.footer-contact,
.footer-address {
  margin: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.social-icon {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #e4d3d3; /* Light Blue for hover */
}
/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 10px;
  color: #333;
}

.modal {
  display: none;
  position: fixed; 
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  background-color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
  display: flex;
}
.modal-content .login-form{
  display: grid;
  padding: 50px 20px;
  gap: 30px;
  width: 400px;
}
.modal-content .login-form input{
  padding: 10px;
  outline: 0;
}

.modal-content .login-form textarea{
  padding: 15px;
  outline: 0;
}
.login-form h3{
  color: #d38107;
}
.login-form button{
  border: none;
  padding: 8px 16px;
  background-color: #d38107;
  color: #fff;
  width: 200px;
  margin: 0px auto;
}
.login-form button:hover{
  background-color: transparent;
  color: #d38107;
  border: 1px solid #d38107;
}
.close {
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;                      
  color: #333;
}

.no-scroll{
  overflow: hidden;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 50px; /* Adjust the position from the bottom */
  right: 50px; /* Adjust the position from the right */
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  font-size: 24px; /* Icon size */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000; /* Ensure it appears above other elements */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.whatsapp-fixed:hover {
  transform: scale(1.1); /* Slight zoom effect */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* Responsive Design */
    
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100%;
      width: 250px;
      background-color: #fff;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease;
    }
    .modal-content .contact-form-img{
      display: none;
    }
    .modal-content{
      width: 100%;
      max-width: 350px;
    }
    .nav ul {
      flex-direction: column;
    }

    .nav ul li {
      margin: 20px 0;
    }

    .menu-toggle {
      display: block;
    }

    .nav.active {
      right: 0;
    }
          .component-1 {
        height: auto; /* Adjust height for smaller screens */
        flex-direction: column; /* Stack content vertically */
        padding: 20px;
        width: 100%;
        margin-top: 150px;
      }

      .component-1 .content {
        max-width: 90%; /* Expand content width for mobile */
        margin: 0 auto;
      }

      .component-1 h1 {
        font-size: 2rem;
      }

      .component-1 p {
        font-size: 1rem;
      }
    .cards{
      display: grid;
     justify-content: center;
     gap: 20px;
     margin-top: 40px;
    }
    .card{
      width: 300px;
      height: 300px;
    }
    .main-component{
      display: grid;
      justify-content: center;
      gap: 20px;
      margin: 40px auto 10px auto;
      width: 100%;
      padding: 0px 10px;
    }
    .sub-component{
      display: grid;
      justify-content: center;
      gap: 20px;
      width: 100%;
      padding: 0px 10px;
    }
    .sub-component img{
      width: 100%;
      max-width: 380px;
      margin: 20px auto 10px auto;
    }
    .main-component img{
      width: 100%;
      max-width: 380px;
      margin: 20px auto 10px auto;
    }
    .sub-component h3{
      padding: 0px 10px;
    }
    .sub-component h5{
      padding: 0px 10px;
    }
    .main-component h3{
      padding: 0px 10px;
    } 
    .main-component h5{
      padding: 0px 10px;
    }
    .main-component-content{
      width: 100%;
      justify-content: center;
      margin: auto;
    }
    .sub-component-content{
      width: 100%;
      justify-content: center;
      margin: auto;
    }
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-logo img {
      margin: 0 auto;
    }
    .whatsapp-fixed {
      bottom: 10px;
      right: 10px;
      font-size: 20px;
      width: 60px;
      height: 60px;
    }

  }

  @media (min-width : 600px) and  (max-width: 1024px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100%;
      width: 300px; /* Adjusted for tablet width */
      background-color: #fff;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease;
    }
    .modal-content .contact-form-img{
      display: none;
    }
    .modal-content{
      width: 100%;
      max-width: 480px;
      justify-content: center;
    }
  
    .nav ul {
      flex-direction: column;
    }
  
    .nav ul li {
      margin: 15px 0; /* Reduced spacing for tablets */
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav.active {
      right: 0;
    }
  
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-logo img {
      margin: 0 auto;
    }
  
    .whatsapp-fixed {
      bottom: 20px; /* Slightly higher for tablets */
      right: 20px;
      font-size: 24px; /* Larger size for tablet touch screens */
      width: 70px;
      height: 70px;
    }
  }
  

  .section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #c59b5f;
    margin: 10px auto;
}
.endeavors-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #f8f8f8;
    padding: 30px;
}
.endeavor {
    width: 200px;
    padding: 20px;
    text-align: center;
    background: white;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.icon {
    font-size: 40px;
    color: #c59b5f;
    margin-bottom: 10px;
}
.title {
    font-weight: bold;
    margin-bottom: 8px;
}
.description {
    font-size: 14px;
    color: #555;
}

.modal-button{
  width: 150px !important;
  height: 45px !important;
  border: 1px solid gray !important;
  color: #ffffff !important;
  background-color: #333 !important;
}

.modal-button:hover{
  color: #d38107 !important;
  background: transparent !important;
  border: 1px solid gray !important;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #c59b5f;
  margin: 10px auto;
}
.line-with-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0 20px 0;

}
.line {
  flex: 0.3;
  height: 2px;
  background-color: orange;
  width: 50px;
}
.line-text {
  padding: 0 10px;
  font-weight: bold;
  color: orange;
}



 /* Responsive Image and Text Section */
 .image-text-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgb(212, 143, 16);
  /* padding: 40px; */
  color: white;
  margin-top: 60px;
}
.image-text-section img {
  width: 50%;
  max-width: 750px;
  /* border-radius: 8px; */
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}


.text-content {
  width: 50%;
  padding: 80px;
  text-align: left;
}

.text-content button{
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
  /* padding: 8px 16px; */
  margin-top: 20px;
  width: 180px;
  height: 40px;
}

.text-content button:hover{
  background-color: #ffffff;
  color: #0f0e0e;
  transition: all 0.5s ease-in-out;

}

.text-content h2 {
  margin-bottom: 10px;
  font-family: Raleway ;
}
.text-content p {
  line-height: 1.6;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  font-family: Roboto;
  font-size: 16px
}
@media (max-width: 768px) {
  .image-text-section {
      flex-direction: column;
      text-align: center;
  }
  .image-text-section img, .text-content {
      width: 100%;
  }
}

.carousel{
  padding: 30px;
}
.testimonials {
  /* width: 60%; */
  margin: 30px auto 0px auto;
  text-align: center;
  padding-inline: 60px;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 20px;
  font-style: italic;
  color: #333;
}

.testimonial-container {
  display: flex;
  animation: slide 0.3s ease-in-out;
  padding-inline: 60px;
}

@keyframes slide{
  from { opacity: 0; }
  to {opacity: 1;}
}

.testimonial-slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.quote {
  font-size: 40px;
  color: #0f0e0e;
}
.testimonial-slide.active {
  display: block;
  transition: all 0.3s ease-in-out;
}
.author {
  font-weight: bold;
  margin-top: 10px;
}
.dots {
  text-align: center;
  margin-top: 10px;
  justify-content: center;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ebba74;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #ed8e00;
}

.image-container-blink {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.image-container-blink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  margin-bottom: 50px;
}

.reach-us{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width : 768px) {
  .reach-us{
    margin-top: -50px
  }
  .image-container-blink{
    padding: 20px;
  }
}

.blink-button{
  width: 150px !important;
  height: 45px !important;
  color: #d38107 !important;
  background: transparent !important;
  border: 1px solid gray !important;
}

.blink-button:hover{
  color: #ffffff !important;
  background-color: #333 !important;
}