@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&family=Ysabeau+SC:wght@1..1000&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Ysabeau SC", serif;
    overflow-x: hidden;
    background-color: #f0f0f0;
    color: #333;
  }
  
  /* Navbar Styles */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px; /* Increased height for better appearance */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px; /* Adjusted padding for better spacing */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    
  }

  .navbar:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6));
  }

  .navbar .logo {
  height: 50px;
  display: flex;
  align-items: center;
}
.navbar .logo img {
    max-height: 100%; /* Makes logo height responsive */
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .navbar .logo img:hover {
    transform: scale(1.1);
  }

    /* Navigation Links */
    
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
 
  }
  
  .navbar .nav-links li {
    position: relative;
  }
  
  .navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .navbar .nav-links a:hover {
    color: #333;
    background-color: #ff9800;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.5);
  }

  .navbar .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ff9800, #ff5722);
    border-radius: 25px;
    transform: scale(0);
    z-index: -1;
    transition: transform 0.3s ease-in-out;
  }
  
  .navbar .nav-links a:hover::before {
    transform: scale(1);
  }
  
  .navbar .nav-links a.active {
    color: white;
    background: linear-gradient(to right, #ff9800, #ff5722);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.7);
  }
  
  .navbar .nav-links a.active:hover {
    background: linear-gradient(to right, #ff9800, #ff3d00);
  }
  
  /* Slider Section */
  .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
  }
  
  .slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  }
  
  .slider img.active-slide {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  
  /* Content Section */
  .home-content {
    position: absolute;
    left: 8%;
    bottom: 15%;
    z-index: 15;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  }
  
  .home-content h1 {
    font-size: 4vw;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 2s ease-in-out;
  }
  
  .home-content h1 span {
    /*color: #ff9800;*/
    color: #fff;
    text-transform: uppercase;
  }
  
  .home-content p {
    color: #645d5d;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.8;
    animation: fadeInUp 2s ease-in-out;
  }
  
  /* Buttons for Navigation */
  .navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .nav-btn {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-btn:hover {
    background-color: #ff9800;
    transform: scale(1.1);
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px; /* Adjust spacing for smaller screens */
    height: 60px; /* Smaller height for compact design */
  }

  .navbar .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    width: 60%;
    max-width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 20;
  }

  .navbar .nav-links li {
    text-align: center;
  }
}
  
  @media (max-width: 480px) {
    .navbar {
      align-items: center;
    }
  
    .navbar .logo img {
      max-width: 80px;
    }
  
    .navbar .nav-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .home-content h1 {
      font-size: 28px;
    }
  
    .home-content p {
      font-size: 12px;
      max-width: 90%;
    }
  
    .nav-btn {
      font-size: 14px;
      padding: 6px 10px;
    }
  }
  

  /* Menu Toggle Icon (Hamburger) */
.menu-toggle-icon {
    display: none; /* Hidden on large screens */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 30;
  }
  
  .menu-toggle-icon .bar {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  /* Show toggle icon on small screens */
  @media (max-width: 768px) {
    .menu-toggle-icon {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
      top: 60px;
      right: 0;
      width: 60%;
      max-width: 300px;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      box-shadow: -4px 0 10px rgba(0, 0, 0, 0.5);
      flex-direction: column;
      gap: 20px;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 20;
      padding-top: 20px;
    }
  
    .nav-links.show {
      transform: translateX(0); /* Slide menu into view */
    }
  
    .nav-links li {
      text-align: center;
    }
  
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }
  }
  
/* About Us Section */
/* About Us Section */
.about-us {
  min-height: 100vh;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #fff, #2f2e2e);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 0;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #3a3939;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.about-content h1 span {
  color: #ff9800;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #3c3b3b;
}

.about-content .btn {
  display: inline-block;
  background-color: #ff9800;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.5);
}

  /* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-in-right { animation: slideInRight 1.5s ease-in-out; }
.fade-in { animation: fadeIn 1.5s ease-in-out; }
.fade-in-up { animation: fadeInUp 1.5s ease-in-out; }
.pulse { animation: pulse 2s infinite; }

/* Button Pulse Effect */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

  


/********************************* Servicesssssssssss ******************************/
/* Section Title */
.section-title {
  text-align: center;
  font-size: 48px;
  margin-top: 80px; /* Reduced the gap between navbar and section */
  margin-bottom: 10px;
  color: #333;
}

.section-title span {
  color: #ff9800;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));

}

.section-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

/* Services Section */
.services {
  padding: 60px 50px;
  background: linear-gradient(to bottom right, #fff, #2f2e2e);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  animation: fadeIn 1s ease-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img,
.service-icon {
  width: 70px;
  height: 70px;
  margin-top: 20px;
  color: #ff9800; /* Icon color */
  transition: transform 0.3s ease;
  font-size:48px;
}

.service-card h3 {
  font-size: 22px;
  color: #333;
  margin: 15px 0 10px;
}

.service-card p {
  font-size: 16px;
  color: #666;
  padding: 0 15px 20px;
}

.service-card:hover .service-icon {
  transform: scale(1.2); /* Slightly enlarge icon on hover */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/***********************************PROJETCSS *************************************************/
.projects-section {
  padding: 100px 20px 20px;
  text-align: center;
  background: gray;
  color: #333;
  min-height: 100vh;
}

.projects-title-projects {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #f39c12;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.filter-nav {
  margin-bottom: 20px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  background: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: #f39c12;
  color: black;
}

/* Filterable Sections */
.filter-section {
  padding: 50px 20px;
  background: #f4f4f4;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: #333;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.filter-section:not(:first-child) {
  margin-top: 20px;
  border-top: 2px solid #f39c12;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.projects-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  flex: 1 1 calc(25% - 20px); /* 4 items per row with a gap */
  box-sizing: border-box;
}

.projects-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.projects-item p {
  padding: 15px;
  font-size: 1rem;
  color: #333;
}

.projects-item:hover {
  transform: translateY(-10px);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .projects-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row */
  }
}

@media screen and (max-width: 768px) {
  .projects-item {
    flex: 1 1 calc(100% - 20px); /* 1 item per row */
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 668px) {
  .projects-item {
    flex: 1 1 calc(100% - 16px); /* 1 item per row */
    gap: 16px; /* Adds space between grid items */
  }
}




/* Modal container */
.modal {
  display: none;
  position: fixed;
  z-index: 1001; /* Above the navbar */
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding-top: 60px;
}

/* Modal content (image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover {
  color: #f39c12;
}

/* Caption */
#caption {
  margin: auto;
  display: block;
  text-align: center;
  color: white;
  font-size: 18px;
  padding: 10px 0;
}
.change-btn {
  position: absolute;
  top: 50%;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

#prevBtn {
  left: 0px;
  font-size: 18px;
}

#nextBtn {
  right: 5px;
  font-size: 17px;
}

/* Navigation Button hover effects */
.nav-btn:hover {
  background-color: #ff9800;
}

/***************************************  OUR TEAM SECTION****************************/
.section-title {
  font-size: 2rem;
  color: #333;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.our-team {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #fff, #2f2e2e);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);

}

.main-heading-team {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f39c12;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));

  border-bottom: 4px solid #f39c12;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.sub-text-team {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  padding: 0 20px;
}

.team-member {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-name {
  font-size: 1.3rem;
  color: #333;
  font-weight: bold;
}

.team-title {
  font-size: 1.1rem;
  color: #f39c12;
  margin: 10px 0;
}

.team-bio {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
/* Mobile navbar */
@media screen and (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 20px;
      background: rgba(0, 0, 0, 0.9);
      border-radius: 8px;
      padding: 10px;
      width: 200px;
  }
  .nav-links.active-link {
      display: flex;
  }
  .menu-toggle {
      display: flex;
      margin-right: 2rem;
  }
}
/* Slider styles */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active-slide {
  opacity: 1;
}
.slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  pointer-events: none; /* Ensures the overlay does not interfere with interactions */
  z-index: 2; /* Places the overlay above the slider images */
}

/* Center Content Styles */
.center-content {
  position: absolute;
  top: 68%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  z-index: 500;
  max-width: 600px;
}

.main-heading {
  font-size: 3.rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: capitalize;
  border-left: 5px solid #f39c12; /* Keep the line */
  padding-left: 15px; 
 
}

.main-heading .scale {
  color: #f39c12; /* Gold for "Scale" */
  font-weight: bold; /* Emphasize "Scale" */
}

.sub-text {
  font-size: 1.1rem;
  margin-top: 15px;
  line-height: 1.7;
  color: #eaeaea;
  font-weight: 300;
}
/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
  .team {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media screen and (max-width: 768px) {
  .team {
      grid-template-columns: 1fr; /* 1 column on small screens */
      padding: 0 10px;
  }
  .main-heading {
      font-size: 2rem; /* Smaller font size for mobile screens */
  }
  .sub-text {
      font-size: 1rem; /* Adjust sub-text font size */
  }
  .team-member {
      padding: 20px; /* Less padding for mobile screens */
  }
  .team-name {
      font-size: 1.2rem; /* Smaller name font */
  }
  .team-title {
      font-size: 1rem; /* Smaller title font */
  }
  .team-bio {
      font-size: 0.9rem; /* Smaller bio font */
  }
}
/********************************************Contact Section ***************************/
.contact-section {
  min-height: 100vh;
  padding: 100px 20px 20px;
  box-sizing: border-box;
  background: linear-gradient(to bottom right, #fff, #2f2e2e);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.main-heading-contact {
  font-size: 2.5rem;
  color: #f39c12;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 4px solid #f39c12;
  display: inline-block;
  padding-bottom: 10px;
}

.sub-text-contact {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  background: #fff;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #f39c12;
  outline: none;
}

.contact-form .submit-btn {
  background: #f39c12;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .submit-btn:hover {
  background: #d8870e;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #666;
  margin: 10px 0;
}

.contact-info .map-placeholder {
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  margin-top: 20px;
  border-radius: 5px;
}
.contact-links{
  text-decoration: none;
  color: #333;
}
/******************************************* SCROLLER-BAR ****************************/
::-webkit-scrollbar{
  width: 10PX;
 
}
::-webkit-scrollbar-track{
  width: 15PX;
}
::-webkit-scrollbar-track{
 background:#333;
}
::-webkit-scrollbar-thumb{
  background: linear-gradient(#000,#f39c12);
  border-radius: 50px;
  height: 15px;
 }
  /**************************************** Preloader Styles *************************************************************/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1818;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #preloader img {
    width: 300px;
    aspect-ratio: 2/2;
    animation: pulse 1.5s infinite ease-in-out;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }