/* Set global styles for font color and font family */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black; /* Set text color to black */
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif; 
  /* font-family: 'Helvetica', 'Inter', 'Arial', 'Lucida','Antic Didone',Georgia,"Times New Roman",serif; Default font to Helvetica */
}

body {
  font-family: 'Antic Didone', 'Roboto', Georgia, "Times New Roman", serif;
  
  overflow-x: hidden;
}


/* Header Styles */
/* Header Styles */
/* Header Styles */
/* Header Styles */
/* Header Styles */

header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 100px;
  background: white; /* Default white background */
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease, box-shadow 0.3s ease; /* Smooth transition for background and shadow */
  z-index: 1000;
  
}
@media (max-width: 768px) {
  header {
    position: sticky;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0px 0px;
  }
  }
/* Transparent Header */
header.transparent {
  background: transparent; /* Transparent background when not scrolling */
  box-shadow: none; /* Remove shadow when transparent */
}

/* Header when scrolled */
header.scrolled {
  background: white; /* White background when scrolling */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow when scrolled */
  transition: background-color 0.5s ease, box-shadow 0.3s ease; /* Smooth transition for background and shadow */
}

/* Scroll down hides the header */
header.hide {
  top: 0px; /* Hide header when scrolling down */
  /* transition: top 0.3s ease; */
  transition: background-color 0.5s ease, box-shadow 0.3s ease; /* Smooth transition for background and shadow */
}

@media (max-width: 768px) {
  header.transparent {
    position: sticky;
    background: white; /* Transparent background when not scrolling */
    box-shadow: none; /* Remove shadow when transparent */
  }
  header.hide {
    top: 0px; /* Hide header when scrolling down */
    /* transition: top 0.3s ease; */
    transition: background-color  0.5s ease, box-shadow 0.3s ease; /* Smooth transition for background and shadow */
  }
  }


/* Navigation Links (Horizontal Layout) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-top: 0px; /* Adjust spacing */
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.nav-links a:hover {
  color: rgb(193, 193, 193);
  transform: scale(1.05); /* Slight scaling effect on hover */
}

/* Hamburger menu (for small screens) */
.hamburger {
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 9px;
  width: 28px;
  height: 19px;
}
@media (max-width: 768px) {
  .hamburger {
    gap: 6px;
    width: 28px;
    height: 19px;
  }
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Show hamburger on small screens */
  .hamburger {
    display: flex;
    margin-top: 0px;
    margin-right: 20px;
  }

  /* Hide the nav links by default on small screens */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0px;
    background: rgb(255, 255, 255);
    padding: 20px 00px;
    width: 100%;
    height: 29vh;
    border-radius: 0px;
    
  }

  /* Show nav links when 'active' class is added */
  .nav-links.active {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: 3s ease-in-out;
  }
}




/* Logo Section */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100px; /* Set the logo width */
  height: 40px; /* Set the logo height */
  margin-top: 0px; /* Adjust spacing */
}



/* Logo Images */
.logo-image {
  width: 100%; /* Make sure logo fills the width of its container */
  height: auto; /* Maintain aspect ratio */
  position: absolute; /* Position logo images on top of each other */
  top: 0px;
  left: 0;
  transition: opacity 0.3s ease; /* Smooth transition for fade-in/out effect */
}

/* Responsive Styles - Adjust logo size for smaller screens */
@media (max-width: 768px) {
  .logo {
    width: 120px; /* Smaller width on mobile */
    height: 40px; /* Smaller height on mobile */
  }
  .logo-image {
    margin-top: 0px;
    margin-left: 20px;
    width: 60%;
  }
}

.imge{
  position: relative;
  width: 100%;
  height: 1080px;
}

















/* Main is the body structure, where all the body section is placed  */
/* Ensure the body takes up the full viewport height */
main{
  width: 100%;
  background-color: rgb(255, 255, 255);
}

#home{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 0px 00px;
}
@media (max-width: 768px) {
  #home{
    width: 100%;
  }
}

#title_home{
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
#title_home h1{
  color: rgb(255, 255, 255);
}
#home_h1{
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
  font-size: 5.5em;
  font-weight: 200;
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
 }
 @media (max-width: 768px) {
  #home_h1{
    font-size: 2.5em;
   }
}

#black_color_bg{
  width: 100%;
  height:100vh;
  background-color: #000;
}
 #home_video{
  margin-top: 0px;
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
 }
#sub_home{
  margin-top: 250px;
  padding: 20px 100px;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;

}
@media (max-width: 768px) {
  #sub_home{
    position: absolute;
    margin-top: 50px;
    padding: 0px 20px;
  }
}
#commercial_projects{
  margin-top: 200px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}
#commercial_projects p{ 
  position: relative;
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
  font-size: 1.9em;
  color: rgb(255, 255, 255);
}
@media (max-width: 768px) {
  #commercial_projects p{ 
    font-size: 1em;
    margin-top: 0px;
  }
}
#commercial_projects a{ 
  font-family: Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1em;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 10px 00px;
}
@media (max-width: 768px) {
  #commercial_projects a{ 
    font-size: 0.5em;
  }
}
#hr_line{
  padding: 7px;
  width: 258px;
  border: none;
 border-top: 1px solid rgb(255, 255, 255);
}
@media (max-width: 768px) {
  #hr_line{
    margin-top: 150px;
    width: 140px;
    padding: 10px;
  }
}




/* /////This who we are part of another pages "WHO WE ARE" using single CSS page///// */

#who_we_are_text_part{
  margin-top: 115px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 100px 100px;
}

@media (max-width: 768px) {
  #who_we_are_text_part{
    margin-top: 0px;
    padding: 20px 20px;
    background-color: rgb(255, 255, 255);
    z-index: 0;
  }
}
#who_we_are_text_part p{
  width: 70%;
  margin-top: 60px;
  font-size: 3.5em;
  line-height: 1.2em;
  font-weight:lighter;
}

@media (max-width: 768px) {
  #who_we_are_text_part p{
    width: 100%;
    margin-top: 60px;
    font-size: 1.7em;
    line-height: 1.2em;
    font-weight:lighter;
  }
}
#who_we_are_p2{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;

  margin-top: 50px;
  width: 80%;
  text-align: justify;
}
@media (max-width: 768px) {
  #who_we_are_p2{
    margin-top: 50px;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.9rem;
    text-align: justify;
  }
}



#our_team{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%; /* Or a specific width */
  height: auto; /* Or a specific height, or auto for dynamic height */
}
#our_team img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
#our_team h2{
  position: relative;
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
  margin-top: 60px;
  font-size: 3.5em;
  font-weight: lighter;
  z-index: 3;
  color: rgb(0, 0, 0);
}

/* Center the slider */
.team-slider-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

/* Swiper Wrapper */
.swiper {
  width: 100%;
}

/* Team Member Slide */
.team-member {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Container */
.image-container {
  position: relative;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.image-container:hover {
  transform: scale(1.1);
}

/* Popup Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container:hover .overlay {
  opacity: 1;
}

/* Name and Designation */
.overlay h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.overlay p {
  margin: 5px 0 0;
  font-size: 12px;
}






        /* Slider Container */
    
      .team-slider-container {
        width: 100%;
        height: 100%;
        max-width: 1200px;
        margin: auto;
        overflow: hidden;
        background: rgb(128, 128, 128, 0); /* Or remove if you want the image to show through */
        padding: 20px 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
        position: relative;
    }
    @media (max-width: 768px) {
      .team-slider-container {
        position: relative;
        width: 100%;
        max-width: 90%;
        padding: 10px 10px;
        border-radius: 10px;
    }
    .swiper {
      width: 100%;
      height: 30vh;
  }
    }
    
   
   
      /* Swiper Wrapper */
      .swiper {
          width: 100%;
          height: auto;
          margin-bottom: 15vh;
          padding: 50px 0px;
      }

      /* Team Member Slide */
      .team-member {
          display: flex;
          justify-content: center;
          align-items: center;
      }

      /* Image Container */
      .image-container {
          position: relative;
          width: 230px;
          height: 340px;
          overflow: hidden;
          border-radius: 5%;
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
          transition: transform 0.3s ease-in-out;
      }

      .image-container img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
      @media (max-width: 768px) {
     
      .swiper {
        margin-top: 0vh;
        width: 100%;
        height: auto;
        padding: 50px 0px;
      }
      .image-container {
       position: relative;
       width: 380px;
       height: 500px;
       overflow: hidden;
       border-radius: 5%;
       box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
       transition: transform 0.3s ease-in-out;
     }
     }


      /* Hover Effect */
      .image-container:hover {
          transform: scale(1);
      }

     
      /* Popup Overlay */
      .overlay {
        position: absolute;
        top: 50%;
        left: 0; /* Align to the left edge */
        transform: translateY(-50%); /* Vertical centering */
        width: 100%; /* Full width */
        height: 0; /* Initially zero height */
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease, height 0.4s ease-in-out; /* Transition only height */
      }

      .image-container:hover .overlay {
        opacity: 1;
        height: 70%; /* Expand to full height */
        
      }

      /* Name and Designation */
      .overlay h3 {
          margin: 0;
          font-size: 18px;
          font-weight: 700;
          color: white;
      }

      .overlay p {
          margin: 5px 0 0;
          font-size: 12px;
          color: white;
      }
/* Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
  font-size: 50px; /* Adjust if needed */
  color: #ffffff !important;
  background: rgba(16, 16, 16, 0.8);
  border-radius: 10%; /* Adjust if needed */
  margin: -15px 20px; /* Adjust margin if needed */
  padding: 10px 10px; /* Reduced padding */
  width: 20px; /* Reduced width */
  height: 20px; /* Reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
      .swiper-button-next:hover, .swiper-button-prev:hover {
          background: rgb(108, 108, 108, 0.1);
      }

  


 /* This Section Is for VISION and this ss the second Section */

#vision{
  margin-top: 0px;
  display: flex;
  width: 100%;
  height: auto;
  padding: 100px 100px;
  background: #64651c;
}
/* Responsive Styles - Adjust Vision Section for smaller screens */
/* @media (max-width: 1380px) {
  #vision{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px 20px;
  }
} */
/* Responsive Styles - Adjust Vision Section for smaller screens */
@media (max-width: 768px) {
  #vision{
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px 20px;
  }
}


#vision_text_part{
  margin-top: 0px;
  padding: 0px 0px;
}
/* Responsive Styles - Adjust vision_text_part Section for smaller screens */
@media (max-width: 768px) {
  #vision_text_part{
    margin-top: 0px;
  }
}

#vision_text_part h2{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  margin-top: 20;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2em;
  color: #000000!important;
  letter-spacing: 0.7em;
  text-align: left;
}
#vision_text_part p{
  width: 100%;
  margin-top: 60px;
  font-size: 3.5em;
  font-weight:lighter;
}


/* Responsive Styles - Adjust vision_text_part p Section for smaller screens */
@media (max-width: 768px) {
  #vision_text_part p{
    margin-top: 20px;
   font-size: 1.7em;
  }
  #vision_text_part h2{
    margin-top: 0;
    font-size: 1em;
  } 
}


#image{
  margin-top: 350px;
  width: 100%;
}

#image img{
  width: 100%;
  height: auto;
}
/* Responsive Styles - Adjust vision_text_part p Section for smaller screens */
@media (max-width: 768px) {
  #image{
    margin-top: 30px;
    width: 100%;
  }
  
}
/* @media (max-width: 1380px) {
  #image{
    margin-top: 30px;
    width: 100%;
  }
  
} */


#image_slider{
  display: flex;
  width: 100%;

}
@media (max-width: 1380px) {

  #image_slider{
    display: flex;
    flex-direction: column;
  
  }
  
}

/* #services_main_section */

#services_main_section{
  display: flex;
  flex-direction: column;
}

.slider-container{
  display: flex;
  flex-direction: column;
}







/* ////This is for OUR WORK page///// */
#stories{
  width: 100%;
  height: auto;
  padding: 200px 100px;
}
#stories_text_part{
  width: 100%;
  margin-top: 0px;
  display: flex;
}

#stories_text_part section{
  width: 50%;
}

#stories_text_part h2{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  margin-top: 50px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.7em;
  text-align: left;
}
#stories_text_part p{
  width: 100%;
  margin-top: 50px;
  font-size: 3.5em;
  font-weight: lighter;
}
#stories_paragraph p{
  margin-top: 50px;
  width: 100%;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: justify;
}
@media(max-width:786px){
  #stories{
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  #stories_text_part{
    display: flex;
    flex-direction: column;
  }
  
#stories_text_part section{
  width: 100%;
}

#stories_text_part h2{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  margin-top: 0px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.7em;
  text-align: left;
}
#stories_text_part p{
  width: 100%;
  margin-top: 10px;
  font-size: 2em;
  font-weight: lighter;
}
#stories_paragraph p{
  margin-top: 20px;
  width: 100%;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: justify;
}
}

/* /////SELECTED STORIES BELOW THE GOOGLE MAP AND IT IS OUR WORK PAGE CSS//// */
#selected_stories{
  padding: 100px 100px;
  width: 100%;
  height: auto;
  background-color: #ffffff;
}
#selected_stories_h2{
  width: 100%;
  height: auto;
  padding: 50px 80px;
  font-size: 3.5em;
  font-weight: lighter;
  background-color: #f9f9f9;
}

#fivd_project{
width: 100%;
padding: 100px 80px;
margin-top: 0px;
display: flex;
align-items: center;
justify-content: space-between;
background-color: #f9f9f9;
}
@media (max-width:786px){
  #selected_stories{
    padding: 100px 0px;
    width: 100%;
    height: auto;
    background-color: #ffffff;
  }
  #fivd_project{
    width: 100%;
    padding: 100px 80px;
    margin-top: 0px;
    display: flex;
    flex-direction: column-reverse; /* Items stack from bottom to top */
    }
    #selected_stories_h2{
      width: 100%;
      font-size: 2em;
    }
    
}
#fivd_project img{
  width: 100%;
  height: auto;
  border-radius: 07px;
  }
  @media (max-width: 768px) {
    .responsive-img {
      width: 80%; /* Image becomes smaller on tablets */
    }
  }
  
  @media (max-width: 480px) {
    .responsive-img {
      width: 60%; /* Even smaller on phones */
    }
  }
#project_right{
  width: 100%;
  }
#project_left{
    width: 77%;
  }
#project_left h2{
    width: 60%;
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: 100;
    width: 100%;
  }
  #project_left a{
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.9em;
    text-decoration: none;
    color: #268791;
  } 
@media(max-width:786px){
  #project_left h2{
    font-size: 1.7em;
  }
  #project_left a{
    font-size: 1rem;
    line-height: 1.5em;
  } 

}



/* 
.our-project-slider-container {
  position: relative;
  width: 80%;
  max-width: 600px;
  text-align: center;
}

.our-project-slider-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.our-project-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.our-project-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.our-project-slide {
  display: none;
  width: 100%;
  border-radius: 10px;
}

.our-project-active {
  display: block;
}

.our-project-controls {
  margin-top: 10px;
}

.our-project-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.our-project-btn:hover {
  background-color: #555;
} */







/* // this is for Service Section image slider// */
#services_main_section{
  padding: 100px 0px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f8f8f8;

}
@media (max-width: 768px) {
  #services_main_section {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 20px 20px;
  }
}

#services_upper_text{
  display: flex;
  height: 20vh;
  flex-direction: column;
  padding: 0 0px;
  margin-top: 180px;
}

#small_bg_under_services_text{
  position: relative;
  margin-top: 0px;
  margin-left: 0px;
  width: 300px;
  height: 16vh;
  background: #dcdcdc;
  z-index: 0;
}
@media (max-width: 768px) {
  #small_bg_under_services_text{
   display: none;
  }
}
#services_upper_text h2 {
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  position: absolute;
  margin-top: 50px;
  margin-left:100px;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.7em;
  text-align: left;
  z-index: 1;
}
@media (max-width: 768px) {
  #services_upper_text{
    padding: 0 0px;
    margin-top: 10px;
  }
  #services_upper_text h2 {
    font-size: 1em;
    margin-left: 20px;
  }
}
#services_upper_text p {
  position: absolute;
  width: 100%;
  margin-top: 120px;
  margin-left: 100px;
  font-size: 3.5em;
  font-weight: lighter;
  z-index: 1;
}



/* ////  When this section in small device then slider will go below the text part  //// */
@media (max-width: 768px) {
  #services_upper_text p {
    font-size: 2em;
    margin-left: 20px;
  }
}
#image_slider{
  display: felx;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-top: 70px;
  display: flex;
  padding: 20px 100px;
}
/* ////  When this section in small device then slider will go below the text part  //// */
@media (max-width: 768px) {
  #image_slider{
    display: flex;
    padding: 20px 0px;
    
  }
  
}
.slider-container {
  margin-top: 0px;
  display: flex;
  width: 50%;
  overflow: hidden;
}
@media (max-width: 1366px){
  .slider-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}
}
@media (max-width: 786px){
  .slider-container {
    margin-top: 50px;
    display: flex;
    width: 100%;
    overflow: hidden;
}
}

.section-b{
  display: flex;
  margin-top: 0px;
  position: relative;
  width: 95%;
  height: auto;
  padding: 0px 0px;
}
@media(max-width:768px){
  .section-b{
    position: relative;
    width: 100%;
    margin-top: 0px;
    display: flex;
    padding: 0px 0px;
  }
}
.section-a, .section-b {
  flex: 1;
}
.section-a {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.section-b {
  overflow: hidden;
}
.slides {
  width: 100%;
  margin-top: 20px;
  display: flex;
  transition: transform 0.5s ease;
 
}
@media(max-width:768px){
  .slides {
    width: 100%;
    margin-top: 0px;
    display: flex;
    transition: transform 0.5s ease;
   
  }
}
.slide {
  padding: 0px 50px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: auto;
}
.info {
  width: 65%;
  margin-bottom: 0px;
  height: auto;
}
@media (max-width: 786px){
  .info {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
  }
}
.info h2 {
  margin: 20px 0px;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: 200;
}
.info p {
  width: 90%;
  text-align:left;
  margin: 5px 0 0;
  font-size: 0.9em;
  display: none;
}
/* ////  When this section in small device then slider will go below the text part  //// */
@media (max-width: 768px) {
  #info p {
    margin-top: 200px;
    font-size: 1.2em;
    font-family: serif;
    font-weight: 100;
    color: #ffffff;
  }
  .info h2 {
    margin: 20px 0px;
    cursor: pointer;
    font-size: 1.2em;
  }
  .info p {
    width: 90%;
    font-size: 0.7em;
  }
}

.info hr {
  width: 90%;
  height: 0.5px;
  background-color: #000;
  border: none;
  margin-top: 25px;
  opacity: 0.1;
  transition: opacity 0.5s ease;
}
.info.show p {
  display: block;
}
.info.show hr {
  opacity: 1;
  width: 90%;
}







/* ////Thsi part is for What we do page ////// */
#sector_we_work_with{
  background-color: #ffffff;
  width: 100%;
  height: auto;
}
@media ( max-width:786px){

}

#sector_we_work_with_01{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}
#sector_we_work_with_02{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}
#sector_we_work_with_03{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}
@media ( max-width:1086px){

  #sector_we_work_with_01{
    padding: 00px 20px;
    display: flex;
    justify-content: space-between;
  }
  #sector_we_work_with_02{
    padding: 00px 20px;
    display: flex;
    justify-content: space-between;
  }
  #sector_we_work_with_03{
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
  }
}


#Verticals{
  margin-top: 120px;
  background-color: #ffffff;
  width: 100%;
  height: auto;
}
#Verticals_01{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}
#Verticals_02{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}
#Verticals_03{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}
@media ( max-width:1086px){

  #Verticals_01{
    padding: 00px 20px;
    display: flex;
    justify-content: space-between;
  }
  #Verticals_02{
    padding: 00px 20px;
    display: flex;
    justify-content: space-between;
  }
  #Verticals_03{
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
  }
}



/* //// THis Sector_we_work is CSS class and usign boath Sector and Vertical Section for H2 and P part only //// */

.sector_we_work section{
  background: rgb(255, 255, 255);
  width: 18vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sector_we_work_with_01{
  width: 100%;

}
.sector_we_work h2{
  width: 20%;
  font-size: 3.5em;
  font-weight: lighter;
}
.sector_we_work p{
  width: 80%;
  margin-left: -50px;
  font-size: 2em;
  background-color: rgba(255, 255, 255, 0.6);
}
@media ( max-width:1068px){
  .sector_we_work section{
    width: 100%;
    padding: 20px 00px;
  }
  
  .sector_we_work h2{
    margin-top: 50px;
    width: 100%;
    font-size: 3.5em;
    font-weight: lighter;
  }
  .sector_we_work{
    display: flex;
    flex-direction: column;
  }
  }
  
@media ( max-width:786px){
.sector_we_work{
  display: flex;
  flex-direction: column;
}
.sector_we_work h2{
  margin-top: 50px;
  width: 100%;
  font-size: 2em;
  font-weight: lighter;
}
}


/* ////Thsi part is for What we do page INITIATIVES Beyond our work ////// */
#initiative{
  background-color: #ffffff;
  width: 100%;
  padding: 0px 100px;
  height: auto;
}
@media ( max-width:1086px){
  #initiative{
    width: 100%;
    padding: 0px 20px;
    height: auto;
  }
  }
@media ( max-width:786px){
  #initiative{
    width: 100%;
    padding: 0px 20px;
    height: auto;
  }
  }
  
#initiative img{
  /* display: none;
 position: relative; */
}
@media ( max-width:786px){
  #initiative_03 img{
    width: 380px;
    height: 250px;
    }
    #initiative_04 img{
      width: 380px;
      height: 250px;
      }
      #initiative_06 img{
        width: 380px;
        height: 250px;
        }
  }

.initiative_h2{
  width: 100%;
  margin-top: 50px;
  margin-left: 0px;
  font-size: 2.2em;
  font-weight: lighter;
}
.initiative_p{
  padding-right: 10px;
  margin-top: 15px;
  width: 90%;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: justify;
}
@media(max-width:1086px){
  .initiative_all_section{
    display: flex;
    flex-direction: column;
  }
  .initiative_h2{
    width: 100%;
    margin-top: 50px;
    margin-left: 0px;
    font-size: 2em;
    font-weight: lighter;
  }
}

.initiative_01 h2{
  width: 100%;
  margin-top: 0px;
  margin-left: 0px;
  font-size: 2em;
  font-weight: lighter;
}
#initiative_01{
  margin-top: 180px;
  height: auto;
  padding: 50px 00px;
}
#initiative_01 h2{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.7em;
  text-align: left;
}
#initiative_01 p{
  width: 100%;
  margin-top: 50px;
  margin-left: 0px;
  font-size: 3.5em;
  font-weight: lighter;
}
@media(max-width:1086px) {
  #initiative_01 p{
    width: 100%;
    margin-top: 50px;
    margin-left: 0px;
    font-size: 2em;
    font-weight: lighter;
  }
}

#initiative_02{
  display: flex;

}
#initiative_02 section{
  width: 100%;
  padding-left: 50px;
}

#initiative_03{
  display: flex;

}

@media(max-width:1086px) {

  #initiative_02{
  display: flex;
  flex-direction: column;
}
#initiative_02 section{
  width: 100%;
  padding-left: 0px;
}

#initiative_03{
  display: flex;
  flex-direction: column;

}
#initiative_04{
  display: flex;
  flex-direction: column;

}
#initiative_05{
  display: flex;
  flex-direction: column;

}

}
.initiative_all_section{
  display: flex;
}

/* ////This is the last section of join_us_link ///// */
#join_us_link{
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 01;

}

#join_us_link img{
  padding: 00px 0px;
  position: relative;
  width: 100vw;
  height: 500px;
  z-index: 01;
}
#join_us_link p{
  margin-top: -50px;
  font-size: 2.2em;
  font-weight: lighter;
  position: absolute;
  z-index: 02;
}
#join_us_link a{
  text-decoration: none;
  margin-top: 50px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.7em;
  position: absolute;
  z-index: 02;
}
#join_us_link a:hover{
  color: #989898;
}








/* ///// CONTACT US FORM CSS  HERE ////// */
#fivd_contact{
  margin-top: 50px;
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  display: flex;
  padding: 100px 100px;
  flex-direction: column;
}
#fivd_contact hr{
  border: none;
  border-top: 1px solod rgb(192, 39, 39);
}
#fivd_contact_h2{
 
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.7em;
}
#fivd_contact_p{
  margin-top: 50px;
  width: 80%;
  font-size: 3.5em;
  font-weight: lighter;
}
@media(max-width:786px){
  #fivd_contact{
    margin-top: 0px;
    width: 100%;
    padding: 100px 20px;
    flex-direction: column;
  }
  #fivd_contact_p{
    margin-top: 20px;
    width: 100%;
    font-size: 2em;
    font-weight: lighter;
  }
}
#contact_form{
  margin-top: 10px;
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  padding: 100px 100px;
  display: flex;
  justify-content: space-between;
}
@media(max-width:786px){
  #contact_form{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 100px 20px;
  }
}


/* #contact_form section{
  background: #796060;
  width: 100%;
  padding: 00px 0px;
} */
#contact_form_left{
  width: 45%;
}
@media(max-width:786px){
  #contact_form_left{
    width: 100%;
  }
}
#form_container{
  width: 50%;
  height: auto;
  margin-top: 0px;
  display: flex;
  justify-content: space-around;
}
@media(max-width:786px){
  #form_container{
    width: 100%;
    margin-top: 90px;
  }
}
#apply_form{
  width: 100%;
  padding: 00px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0px;
}
#contact_form_left p{
  margin-top: 0px;
  width: 80%;
  font-size: 3.5em;
  font-weight: lighter;
}
@media(max-width:786px){
  #contact_form_left p{
    margin-top: 20px;
    width: 100%;
    font-size: 2em;
    font-weight: lighter;
  }
}
#contact_form_left h3{
  margin-top: 50px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3em;
  margin-bottom: 20px;
}
#contact_form_left a{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-decoration: none;
}

#contact_form_left hr{
  margin-top: 50px;
  border: none;
  border-top: 1px solid #989898;
}
#contact_form_left text{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.7em;
}
#contact_form_left text b{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-decoration: none;
  line-height: 0em;
}
#apply_form h1{
  font-size: 3.5em;
  font-weight: lighter;
}
@media(max-width:786px){
  #apply_form h1{
    font-size: 2em;
    font-weight: lighter;
  }
}
#apply_form ul{
  margin-top: -238px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.7em;
  margin-bottom: -30px;
}
@media(max-width:786px){
  #apply_form ul{
    margin-top: 10px;
    margin-bottom: -0px;
  }
}
.button {
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.9em;
  text-decoration: none;
  color: #268791;
  margin-bottom: -10px;
}
.button:hover {
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}
  
  



.form-group input,
.form-group textarea {
  width: 100%;                /* Full width */
  border: none;               /* Remove default borders */
  border-bottom: 1px solid #989898;  /* Add horizontal line */
  padding: 8px 0;             /* Space between text and line */
  font-size: 1rem;            /* Adjust text size */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;              /* Remove blue outline on focus */
  border-bottom: 1px solid #000000; /* Change line color on focus */
}

.form-group {
  margin-bottom: 50px;        /* Space between form groups */
}
.form-group label {
  font-family: Inter, Helvetica, Arial, Lucida, sans-serif;
    font-weight: 300;
    font-size: 1em;
    text-decoration: none;
    line-height: 2.2em;
}
button {
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  background: transparent;         /* Remove solid fill */
  color: #000;                     /* Text color */
  padding: 10px 0;                 /* Vertical padding only */
  border: none;                    /* Remove default border */
  border-bottom: 1px solid #989898;   /* Horizontal line under text */
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;       /* Smooth hover transition */
}

button:hover {
  color: #000000;                  /* Change text color on hover */
  border-bottom: 1px solid #000000; /* Change line color on hover */
}





/*  ///////////////////Galaxy section starts here////////////////  */



#galaxy_section{
  position: relative;
  background: #ffffff;
  width: 100%;
  height: auto;
}
@media(max-width:520px){
  #galaxy_section{
    display: none;
  }
}
#fivd_numbers h2{    
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
  font-weight: 200;
  font-size: 1.9em;
  position: absolute;
  width: 235px;
  height: 50px;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
  z-index: 5;
}

#galaxy_animation{
  width: 800px;
  height: 800px;
  position: static;
  z-index: 0;
}

#galaxy_radious_01{
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: #f8f8f8;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
}

#galaxy_radious_02{
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgb(211, 211, 211);
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
}

#galaxy_radious_03{
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgb(211, 211, 211);
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
} 
#galaxy_radious_04{
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgb(211, 211, 211);
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
}
#galaxy_radious_05{
  position: absolute;
  width: 670px;
  height: 670px;
  border: 1px solid rgb(211, 211, 211);
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
} 
#galaxy_radious_06{
  position: absolute;
  width: 800px;
  height: 800px;
  border: 1px solid rgb(211, 211, 211);
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  #galaxy_radious_06{
    width: 460px;
    height: 460px;
  }
  #galaxy_radious_05{
    width: 390px;
    height: 390px;
  }

  #galaxy_radious_04{
    width: 320px;
    height: 320px;
  }
  #galaxy_radious_03{
    width: 250px;
    height: 250px;
  }
  #galaxy_radious_02{
    width: 180px;
    height: 180px;
  }
  #galaxy_radious_01{
    width: 80px;
    height: 80px;
  }


}

.galaxy_circle{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.galaxy_circle h2{
  margin-top: 30px;
  font-size: 1.2em;
  color: #ffffff;
}
.galaxy_circle p{
  margin-top: 40px;
  font-size: 1em;
  color: #514848;
  font-weight: 300;
}
#Circle_A{
  position: absolute;
  width: 80px;
  height: 80px;
  background: #5c92e0;
  margin: auto;
  bottom: 50%;
  left: 46%;
  right: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-animation: Circle_A 70s linear infinite;
  animation: circle_A 70s linear infinite;
}

@-webkit-keyframes circle_A{

  0%{transform: rotate(0deg) translate(-350px)rotate(0deg);

  }
  100%{transform: rotate(360deg) translate(-350px) rotate(-360deg)

  }
}


#Circle_B{
  position: absolute;
  width: 80px;
  height: 80px;
  background: #595b5e;
  margin: auto;
  bottom: 50%;
  left: 46%;
  right: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-animation: Circle_B 45s linear infinite;
  animation: circle_B 45s linear infinite;
}

@-webkit-keyframes circle_B{

  0%{transform: rotate(0deg) translate(-260px)rotate(0deg);

  }
  100%{transform: rotate(360deg) translate(-260px) rotate(-360deg)

  }
}



#Circle_C{
  position: absolute;
  width: 80px;
  height: 80px;
  background: #059636;
  margin: auto;
  bottom: 50%;
  left: 46%;
  right: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-animation: Circle_C 60s linear infinite;
  animation: circle_C 60s linear infinite;
}

@-webkit-keyframes circle_C{

  0%{transform: rotate(0deg) translate(-300px)rotate(0deg);

  }
  100%{transform: rotate(360deg) translate(-300px) rotate(-360deg)

  }
}


#Circle_D{
  position: absolute;
  width: 80px;
  height: 80px;
  background: #7a48e4;
  bottom: 70%;
  left: 46%;
  right: 50%;
  top: 45%;
  border-radius: 50%;
  -webkit-animation: Circle_D 50s linear infinite;
  animation: circle_D 50s linear infinite;
}

@-webkit-keyframes circle_D{

  0%{transform: rotate(0deg) translate(-200px)rotate(0deg);

  }
  100%{transform: rotate(360deg) translate(-200px) rotate(-360deg)

  }
}
 @media (max-width:786px){

  .galaxy_circle h2 {
    margin-top: 25px;
    font-size: 1.2em;
    color: #ffffff;
}
  .galaxy_circle p{
    margin-top: 18px;
  }

  #Circle_A{
    width: 70px;
    height: 70px;
  }
  @-webkit-keyframes circle_A{

    0%{transform: rotate(0deg) translate(-130px)rotate(0deg);
  
    }
    100%{transform: rotate(360deg) translate(-130px) rotate(-360deg)
  
    }
  }
  

  #Circle_B{
    width: 70px;
    height: 70px;
  }
  @-webkit-keyframes circle_B{

    0%{transform: rotate(0deg) translate(-150px)rotate(0deg);
  
    }
    100%{transform: rotate(360deg) translate(-150px) rotate(-360deg)
  
    }
  }
  

  #Circle_C{
    width: 70px;
    height: 70px;
  }
  @-webkit-keyframes circle_C{

    0%{transform: rotate(0deg) translate(-170px)rotate(0deg);
  
    }
    100%{transform: rotate(360deg) translate(-170px) rotate(-360deg)
  
    }
  }
  

  #Circle_D{
    width: 70px;
    height: 70px;
  }
  @-webkit-keyframes circle_D{

    0%{transform: rotate(0deg) translate(-220px)rotate(0deg);
  
    }
    100%{transform: rotate(360deg) translate(-220px) rotate(-360deg)
  
    }
  }
  

 }





/* //////stories_section Start here where Image slider is added With JS ////// */

#stories_section{
  padding: 0px 0px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
}
#stories_section_h2 {
  transform: translateX(-0%);
  padding: 0px 100px;
  width: 100%;
  margin-top: 50px;
  z-index: 1;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  margin-top: 20;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.6em;
}
@media (max-width: 768px) {
  #stories_section_h2 {
    font-size: 1em;
    padding: 0px 20px;
  }
}
#stories_section_p {
  padding: 0px 100px;
  transform: translateX(-0%);
  width: 100%;
  margin-top: 40px;
  margin-left: 0px;
  font-size: 3.5em;
  font-weight: lighter;
  z-index: 1;
}

/* ////  When this section in small device then slider will go below the text part  //// */
@media (max-width: 768px) {
  #stories_section p {
    font-size: 2em;
    padding: 0px 20px;
  }
}
.slider-two-container { 
    margin-top: 100px;
    position: relative; 
    width: 900px; 
    height: 550px; 
    overflow: visible; 
    border-radius: 0px; 
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1);  */
}
@media (max-width: 768px) {
  .slider-two-container { 
    margin-top: 100px;
    position: relative; 
    width: 400px; 
    height: 300px; 
    overflow: hidden; 
    border-radius: 0px; 
  }
}



/* ////  When this section in small device then slider will go below the text part  //// */
@media (max-width: 768px) {
  #stories_section p {
    font-size: 2em;
  }
}
.slider-two-slide { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    border-radius: 15px;
    transition: opacity 1s ease-in-out; 
}

.slider-two-slide img { 
    width: 100%; 
    height: 100%; 
    border-radius: 5px;
}

.slider-two-caption, .slider-two-title, .slider-two-subtitle { 
    position: absolute; 
    left: 25%; 
    transform: translateX(-50%) scale(0.8);
    background: rgb(255, 255, 255); 
    color: rgb(0, 0, 0); 
    padding: 25px 0px; 
    border-radius: 0px; 
    text-align: center; 
    opacity: 0; 
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
}

/* .slider-two-title { 
    top: 20px; 
    font-size: 18px; 
}

.slider-two-subtitle { 
    top: 60px; 
    font-size: 14px; 
    background: rgba(0, 0, 0, 0.5); 
} 
 .slider-two-caption { 
  bottom: 10px; 
} */

.slider-two-caption { 
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  padding: 10px;
  bottom: 0px; 
  width: 500px;
  height: 20vh;
  margin-left: 0px;
  font-size: 1.2em;
}
.slider-two-caption h2{ 
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif; 
  font-weight: 200;
  font-size: 1.5em;
  width: 100%;
}
@media(max-width: 786px){
  .slider-two-caption { 
    width: 300px;
    height: 7vh;
  }
  .slider-two-caption h2{ 
    font-size: 0.9em;
    width: 100%;

  }

}
.slider-two-caption a{ 
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.9em;
  text-decoration: none;
  color: #268791;
}
@media(max-width: 786px){
  .slider-two-caption a{ 
    font-size: 0.5em;
  }

}
.slider-two-caption a span{ 
  font-size: 28px;
  color: #268791;
}
.slider-two-caption a:hover{ 
  letter-spacing: 1px;
}
.slider-two-caption a span:hover{ 
  right: 15px;
}
.slider-two-controls { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%); 
}
.slider-two-controls button { 
    background: rgba(180, 180, 180, 0.1); 
    color: white; 
    border: none; 
    padding: 10px; 
    cursor: pointer; 
    font-size: 20px; 
}

.slider-two-controls button:hover { 
    background: rgba(0,0,0,0.8); 
    transition: 0.3s ease-in-out;
    font-size: 20px; 
}

.active { 
    opacity: 1; 
}

.active .slider-two-title, .active .slider-two-subtitle, .active .slider-two-caption {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
@media(max-width:786px){
  .active .slider-two-title, .active .slider-two-subtitle, .active .slider-two-caption {
    opacity: 1;
    transform: translateX(-34%) scale(1);
} 
}



/* ///////////This section is Why fivD /////// */

#why_fivd_section{
  margin-top: 100px;
  width: 100vw;
  height: auto;
  padding: 100px 100px;
  display: flex;
  justify-content: space-between;
  background: #ffffff;
}
/* Responsive Styles - Adjust FORM p Section for smaller screens */
/* @media (max-width: 1186px) {
  #why_fivd_section{
    display: flex;
    flex-direction: column;
    height: auto;
  }
} */
@media (max-width: 786px) {
  #why_fivd_section{
    width: 100vw;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    height: auto;
  }
}



/* Responsive Styles - Adjust FORM "Right side part" Section for smaller screens */
#why_fivd_section_left_part{
  display: flex;
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 1186px) {
 #why_fivd_section_left_part{
    width: 100%;
    transform: translateX(0%);
  }
}
#why_fivd_section_left_part h2{
  padding: 20px 0px;
  position: relative;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  margin-top: 20;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.6em;
  text-align: left;
  font-weight: 200;
  z-index: 1;
}
#why_fivd_section_left_part p{
  position: relative;
  width: 100%;
  margin-top: 40px;
  font-size: 3.5em;
  font-weight:lighter;
  z-index: 1;
}
/* #bg_span{
  position: absolute;
  background-color: rgb(236, 236, 236);
  width: 300px;
  height: 12vh;
  z-index: 0;
  transform: translateX(0px);
  margin-top: -180px;
} */
/* Responsive Styles - Adjust FORM p Section for smaller screens */
@media (max-width: 768px) {
  #why_fivd_section_left_part h2{
    font-size: 1em;
    z-index: 1;
  }
  #why_fivd_section_left_part p{
    font-size: 2em;
  }
  #bg_span{
    display: none;
    position: absolute;
    background-color: rgb(236, 236, 236);
    width: 200px;
    height: 8vh;
    z-index: 0;
    transform: translateX(0px);
  }
}

/* ////Right part of the why fivd Section//// */
#why_fivd_form_section{
  width: 65%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #why_fivd_form_section{
    width: 100%;
  }
}
#why_fivd_form_section h3{
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #5d5d5d;
}
@media (max-width: 768px) {
  #why_fivd_form_section h3{
    font-size: 1rem;
  }
}

#why_fivd_form_section p{
  margin-bottom: 20px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-size: 3.5em;
  font-weight: lighter;
  font-weight: 100;
  color: rgb(0, 0, 0);
}
@media (max-width: 768px) {
  #why_fivd_form_section p{
    font-size: 1.5em;
  }
}

#why_fivd_form_section hr{
  width: 34vw;
  margin-top: 20px;
  border: none;
  border-top: 1px solid #989898;
}
@media (max-width: 1186px) {
  #why_fivd_form_section hr{
    width: 100%;
  }
 }



/* ///// INITIATIVE SECTION THIS THE LAST SECTION OF BODY AND EXACTLY ABOVE FOOTER ///// */

#initiative_section{
  position: relative;
  margin-top: 30px;
  width: 100%;
  height: 500px;
  padding: 0px 0px;
  display: flex;
  /* justify-content: space-between; */
  background: #d6d6d6;
}
@media (max-width: 1186px) {
  #initiative_section{
    width: 100%;
    height: 300px;
    padding: 0px 0px;
    background: #d6d6d6;
  }
 }
#initiative_section_left_part{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
}
#initiative_section_left_part h2{
  padding: 0px 20px;
  margin-top: 0px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.6em;
  font-weight: 200;
  z-index: 1;
}
#initiative_section_left_part p {
  padding: 0px 20px;
  margin-bottom: 0em;
    font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
    font-size: 2.5em;
    color: #000000 !important;
    line-height: 4.5rem;
    width: 100%;
    z-index: 1;
}
@media (max-width: 1186px) {
  #initiative_section_left_part p {
      line-height: 3.9rem;
  }
 }
 @media (max-width: 786px) {
  #initiative_section_left_part p {
    font-size: 1.9em;
    line-height: 2.5rem;
  }
 }
#initiative_section_left_part a {
  padding: 0px 20px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.9em;
  text-decoration: none;
  color: #268791;
  
}
/* @media (max-width: 1186px) {
  #initiative_section_left_part a {
      line-height: 8.5rem;
  }
 } */
#initiative_section_left_part span {
  padding: 0px 0px;
  font-size: 28px;
  color: #268791;
  z-index: 1;
}
#initiative_bg-box{
  position:absolute;
  width:100%;
  height: 150px;
  background-color: rgb(255, 255, 255);
  z-index: 0;
}

#initiative_section_right_part{
  position: absolute;
  width: 100%;
 z-index: 1;
}

#initiative_section_image img{
 width: 100%;
 height: 500px;
 object-fit: cover;
}
@media (max-width: 1186px) {
  #initiative_section_image img{
    width: 100%;
    height: 300px;
    padding: 0px 0px;
    background: #d6d6d6;
  }
  #initiative_bg-box{
    position:absolute;
    width:100%;
    height: 150px;
    background-color: rgb(255, 255, 255);
    z-index: 0;
  }
  
 }
 @media (max-width: 786px) {
 
  #initiative_bg-box{
    position:absolute;
    width:100%;
    height: 120px;
    background-color: rgb(255, 255, 255);
    z-index: 0;
  }
  
 }





/* ///// Project Page CSS ARE HERER where all the project are listed/////  */
#project_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 100px;
  width: 100%;
  height: auto;
  background: #ffffff;
  animation: appear 1s ease-in-out;
}
@media (max-width: 786px) {
 
  #project_list {
    padding: 50px 20px;
    width: 100%;
  }
  
 }
#project_list section{
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding: 20px 0px;
}
#project_list p{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 0px 00px;
  width: 70%;
}
#project_list h2{
  
  font-size: 3.5em;
  line-height: 1.2em;
  font-weight: lighter;
  padding: 30px 00px;
}
@media (max-width: 786px) {
  #project_list h2{
  
    font-size: 2em;
    padding: 30px 00px;
  }
  #project_list p{
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 0px 0px;
    width: 100%;
  }
  #project_list section{
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 0px 0px;
  }
 }
#double_img{
  position: relative;
  width: 100%;
  display: flex;
 }
 /* #double_img_left img{
  width: 50px;
  height: 100px;

 } */
#project_list section img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

#project_list span{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 0.7em;
  padding: 0px 00px;
  margin-top: -30px;
}
#project_list h1{
  font-weight: 400;
  font-size: 2em;
  padding: 10px 00px;
}
#project_top p{
  
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 100;
  font-size: 1.7em;
  padding: 0px 00px;
  line-height: 2em;
}
#project_top p{
  border-left: 1px solid black;
  padding: 0px 20px;
}
#project_top b{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2em;
}
.animatable-section {
 width: 100%;
 height: 200px;
}
#fivd_effect{
  display: flex;
  justify-content: space-between;
}
@media(max-width:786px){
  #fivd_effect{
    display: flex;
    flex-direction: column;
  }
}
#fivd_effect p {
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 0px 00px;
  width: 100%;
  text-align: justify;
}
/* #project_list section {
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding: 10px 0px;
} */

@keyframes appear {
  from {
    opacity: 1;
    transform: translateY(1%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.animatable-section {
  animation: appear 1s ease-in-out forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 10%;
}


/*Footer part is here has two sections section UP and Down and Section Up has 4 suv sections and Section Down has 2 Sub sections*/

/* Footer Styles */
footer {
  width: 100%;
  height: 47vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

    /* ////// footer upper part///// */
#footer_upper_part {
  padding: 20px 100px;
  display: flex;
}
@media(max-width: 786px){
  #footer_upper_part {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
  }
}
/* /////Here all the a href link are connected together with same class namd logo_text_all////// */
.logo_text_all a{
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 400;
  color: #595b5e;
  padding: 7px 2px;
}
#footer_logo_part{
  margin-top: 40px;
  margin-right: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#footer_logo_part img{
  margin-top: 0px;
  margin-left: 0px;
  width: 100px;
  height: 33px;
}
@media(max-width: 786px){
  #footer_logo_part img{
    margin-top: 0px;
    margin-left: 0px;
    width: 63px;
    height: 22px;
}
}
#logo_text_one{
display: flex;
flex-direction: column;
}
#logo_text_two{
  display: flex;
  flex-direction: column;
  }

#footer_subscription{
  width: 100%;
  /* display: flex;
  flex-direction: column;
  align-items: flex-start; */

}

#footer_subscription h2{
  font-family: 'Antic Didone', Georgia, "Times New Roman", serif;
  margin-left: 0%;
  margin-top: 40px;
  width: 100%;
  font-size: 1.7em;
  font-weight: 100;
  }

#footer_subscription_second_part{
  display: flex;
  height: 35px;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
#footer_subscription_second_part p{   
  margin-top: 33px;
  margin-bottom: 20px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.9em;
  letter-spacing: 0.3em;
  color:#268791;
  font-weight: 200;
}
#footer_subscription_second_part hr{
  font-size: 1em;
  width: 100%;
}


/* ////// footer lower part///// */

#footer_lower_part {
  padding: 0px 100px;
  margin-top: 100px;
  height: auto;
  display: flex;
  align-items: center;

}
@media(max-width: 786px){
  #footer_lower_part {
    padding: 0px 20px;
  
  }
}
#footer_social_meida{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#social_media_icons{
  display: flex;
  justify-content: space-around;
}
#social_media_icons img{
padding: 5px 5px;
width: 40px;
height: 40px;
}
@media(max-width: 786px){
  #footer_social_meida{
    display: flex;
    flex-direction: column;
  }
  #social_media_icons{
    width: 10%;
    display: flex;
    justify-content: space-between;
  }
  #social_media_icons img{
    margin-top: 10px;
    width: 30px;
    height: 30px;
    }
}



/* Up Arrow Button - Hidden by default */
.scroll-to-top {
  padding: 10px 10px;
  width: 50px;
  height: 50px;
  display: none; /* Hide the button initially */
  position: fixed;
  bottom: 30px; /* Position it 30px from the bottom */
  right: 30px; /* Position it 30px from the right */
  background-color: #000000; /* Button background color */
  color: white; /* Button text color */
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease; /* Smooth transition */
}

.scroll-to-top:hover {
  background-color: #3f3f3f; /* Darker background on hover */
}

