* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

:root {
  --bg-color:  #ffffff; /*later on we can switch it*/ 
  --second-bg-color:  #bcbcbc;
  --text-color: #28262b;
  --second-color: #989898;
  --primary-color:var(--second-color)
  --main-color: #f4ebd0;
  --big-font: 5rem;
  --h2-font: 1rem;
  --p-font: 1rem;
  --spacing: 2.5em;
}
 
h1 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}

html{ scroll-behavior: smooth;}
a { color: var(--primary-color); }
a:hover { color: var(--second-bg-color); }

/*
@media (min-width: 544px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
@media (min-width: 1400px) {}
@media (min-width: 1600px) {}
*/

/* Custom Container */

body {
background: #FBF0F6;
font-family: 'Lato', sans-serif;
font-weight: 400;
background-color: #fff;
padding: 0;
}



/*LOADER*/
.master-loader {
background: white;
width: 100%;
height: 100%;
position: fixed;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}

.loader {
--path: #2f3545;
--dot: #626262;
--duration: 2s;
width: 44px;
height: 44px;
position: relative;
}

.loader:before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
position: absolute;
display: block;
background: var(--dot);
top: 37px;
left: 19px;
transform: translate(-18px, -18px);
animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg {
display: block;
width: 100%;
height: 100%;
}

.loader svg rect, .loader svg polygon, .loader svg circle {
fill: none;
stroke: var(--path);
stroke-width: 10px;
stroke-linejoin: round;
stroke-linecap: round;
}

.loader svg polygon {
stroke-dasharray: 145 76 145 76;
stroke-dashoffset: 0;
animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg rect {
stroke-dasharray: 192 64 192 64;
stroke-dashoffset: 0;
animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg circle {
stroke-dasharray: 150 50 150 50;
stroke-dashoffset: 75;
animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader.triangle {
width: 48px;
}

.loader.triangle:before {
left: 21px;
transform: translate(-10px, -18px);
animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathTriangle {
33% {
  stroke-dashoffset: 74;
}

66% {
  stroke-dashoffset: 147;
}

100% {
  stroke-dashoffset: 221;
}
}

@keyframes dotTriangle {
33% {
  transform: translate(0, 0);
}

66% {
  transform: translate(10px, -18px);
}

100% {
  transform: translate(-10px, -18px);
}
}

@keyframes pathRect {
25% {
  stroke-dashoffset: 64;
}

50% {
  stroke-dashoffset: 128;
}

75% {
  stroke-dashoffset: 192;
}

100% {
  stroke-dashoffset: 256;
}
}

@keyframes dotRect {
25% {
  transform: translate(0, 0);
}

50% {
  transform: translate(18px, -18px);
}

75% {
  transform: translate(0, -36px);
}

100% {
  transform: translate(-18px, -18px);
}
}

@keyframes pathCircle {
25% {
  stroke-dashoffset: 125;
}

50% {
  stroke-dashoffset: 175;
}

75% {
  stroke-dashoffset: 225;
}

100% {
  stroke-dashoffset: 275;
}
}

.loader {
display: none;
margin: 0 16px;
}

/*LOADER*/

.container-custom {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container-custom {  width: 1140px;  }
}

@media (min-width: 1400px) {
  .container-custom {  width: 1340px;  }
}

@media (min-width: 1600px) {
  .container-custom {  width: 1520px;  }
}


@media(max-width: 991px) {
  .sidebar{
    background-color: rgba(1, 1, 1, 0.9);
   }
}

/* Main Header */
.header {
  z-index: 2;
}
 
/* CSS to make the hamburger icon thinner and black */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' viewBox='0 0 16 16' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v1A1.5 1.5 0 0 1 14.5 4H1.5A1.5 1.5 0 0 1 0 2.5v-1zm0 6A1.5 1.5 0 0 1 1.5 6h13A1.5 1.5 0 0 1 16 7.5v1A1.5 1.5 0 0 1 14.5 10H1.5A1.5 1.5 0 0 1 0 8.5v-1zm0 6A1.5 1.5 0 0 1 1.5 12h13A1.5 1.5 0 0 1 16 13.5v1A1.5 1.5 0 0 1 14.5 16H1.5A1.5 1.5 0 0 1 0 14.5v-1z'/></svg>");
  background-size: 16px;
}

 
/* Default style for the expanded menu items (black) */
.nav-link {
color: black;
}

/* Style for the expanded menu items in mobile when sidebar is open (white) */
.sidebar-open .nav-link {
color: white;
}


 .nav-link:hover{
  color: red;
 }
 
.transparent-navbar {
background-color: transparent;
}

/* CSS for dark navbar */
.dark-navbar {
background-color: #333; /* Replace this with your desired dark background color */
/* You may also want to adjust the text color to make it visible on the dark background */
color: white; /* For example, set the text color to white */
}

.navbar {
height: 50px; /* Adjust the height as per your requirement */
}


.dropdown-nav__closeNavBtn {
  position: absolute;
  top: 20px;
  right: 16px;
  background-color: rgbA(255,255,255,0.6);
}

.dropdown-nav__container {
  height: 100vh;
  padding: 0 1rem;
}
 
 
 

@keyframes bounce {
from{
    transform: translateY(0px);
}
to{
    transform: translateY(-10px);
}
}
 

section {
  padding: 160px 15% 120px;
}
 

 
/* services section */

.services {
  background: var(--second-bg-color);
}

.main-text {
  text-align: center;
}

.main-text p {
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 15px;
}

.main-text h2 {
  font-size: 32px;
  line-height: 1;
}

.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
}

.box {
  background: var(--bg-color);
  padding: 35px 45px;
  border-radius: 8px;
  transition: all .45s ease;
}

.s-icons i {
  font-size: 32px;
  margin-bottom: 20px;
}

.box h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.box p {
  color: var(--second-color);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.read {
  display: inline-block;
  padding: 8px 18px;
  background: #333333;
  color:var(--second-color);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all .45s ease;
}

.read:hover {
  letter-spacing: 1px;
  background: #ffffff99;
  color: var(--text-color);
}

.box:hover {
  transform: translateY(-8px);
  cursor: pointer;
}

.projects-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
  }

 
.row {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.row img {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s;
}

.layer {
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0,0,0,0.1), var(--second-bg-color));
  position: absolute;
  border-radius: 8px;
  left:0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  transition: height 0.5s;
}

.layer h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
   font-family: 'Montserrat', sans-serif;
}

.layer p {
  color: var(--text-color);
  font-weight: bold;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
}

.layer i{
  color: var(--main-color);
  margin-top: 20px;
  font-size: 20px;
  background: var(--text-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.row:hover img{ 
  transform: scale(1.1);
}

.row:hover .layer{
  height: 100%;
}

 
 

/*responsive layout*/

@media (max-width: 1480px) {
 
  section{
    padding: 110px 3% 60px;
  }
   
}

@media (max-width: 1100px){
  :root{
    --big-font: 4rem;
    --h2-font: 2.5rem;
    --p-font: 1rem;
    transition: .1s;
  }
   
}

.footer {
  padding: 40px 0;
  background-color: #434242;
}

.footer .social{
  text-align: center;
  padding-bottom: 25px;
  color: #fff;
}

.footer .social a {
  font-size: 24px;
  color: inherit;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.75;
}

.footer .social a:hover {
  opacity: 0.9;
}

.footer ul{
  margin-top: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul li {
  display: inline-block;
  padding: 0 15px;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.parallax-header {
  background: #fff;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-header h3{
  font-family: 'Lato';    
  text-align: center;
  font-weight: 400;
  margin: 0;
}

.parallax-header p {
  text-align: center;
  margin-top: 10px;
  line-height: 1.8;
}


.header-content {
  padding: 25px 0 150px 0;
} 

@media (min-width: 410px){
  .parallax-header h3{
      text-align: center;
      margin-right: 20px;
  }
   
}

.section-info {
  background: #ededed;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: 'Lato';
  gap: 20px; 
}

.section-info h3,p {
  font-family: 'Lato';
 }

 .section-info .slogan-section{
  width: 100%;
 }

.value-container-i {
  text-align: center;
  font-family: 'Lato';
  display: grid;
  grid-template-areas: 
  "icon"
  "heading"
  "text";
}

/* Optional: Style the icons and values as needed */
.icon {
  grid-area: icon;
  font-size: 30px; /* Adjust the size of the icons as needed */
}

/* Media query for small screens (max-width: 576px) */
  @media (max-width: 576px) {
  .section-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .value-container-i {
    text-align: center;
    margin-bottom: 20px; /* Add some spacing between the values when stacked */
  }
}

/* Common styles for all screen sizes */
.section-info-about-process {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Lato';
  gap: 20px;
  height: 50vh;
  margin-top: 50px;
  padding: 0 15px; /* Add equal padding on both sides to avoid cutting off on smaller screens */
}

.section-info-about-process h4 {
   font-weight: bold;
   line-height: 1;
   text-align: center;
}

.section-info-about-process h3 {
  font-weight: bold;
  line-height: 2;
}

.section-info-about-process p {
  font-weight: 500;
  text-align: justify;
  line-height: 2;
  padding: 1 1px;
  margin-left: 10px;
  margin-right: 10px;
}

.value-container-i-process {
  text-align: center;
}

.value-container-i-process .fa-solid {
  font-size: 30px;
}

/* Media query for small screens (max-width: 576px) */
@media (max-width: 576px) {
  .section-info-about-process {
    gap: 10px;
    padding: 0; /* Add equal padding on both sides for smaller screens */
    height: 60vh;
    line-height: 1.5; /* Increase line height for better readability */
   }

  .section-info-about-process p {
    font-weight: 500;
    text-align: justify;
    line-height: 2;
    padding: 1 1px;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 2.2; /* Increase line height for better readability */
   }
}

/* Media query for medium screens (min-width: 577px) and large screens (min-width: 768px) */
@media (min-width: 577px) and (min-width: 768px) {
  .section-info-about-process {
    gap: 20px;
  }
  .section-info-about-process p {
    font-weight: 500;
    text-align: justify;
    line-height: 2;
    padding: 1 1px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Media query for large screens (min-width: 992px) */
@media (min-width: 992px) {
  .section-info-about-process {
    gap: 30px;
    padding: 0 0px; /* Add equal padding on both sides for larger screens */
  }
  .section-info-about-process p {
  font-weight: 500;
  text-align: justify;
  line-height: 2;
  padding: 1 1px;
  margin-left: 10px;
  margin-right: 10px;
}

  /* Adjust font size for large screens */
  .value-container-i-process h3 {
    font-size: 24px;
  }
}

  /* Common styles for all screen sizes */
  .apply {
    background: #ededed;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Lato';
    gap: 20px;
    margin-top: 180px;
    padding: 0 15px; /* Add equal padding on both sides to avoid cutting off on smaller screens */
  }
  
  .apply h4 {
     font-weight: bold;
     line-height: 2.5;
     font-family: 'Lato';
     text-align: center;
  }
  
  .apply p {
    font-weight: bold;
    line-height: 2;
    font-family: 'Lato';
    color: rgb(0, 0, 0);
  }
  
  
  
  /* Media query for small screens (max-width: 576px) */
  @media (max-width: 576px) {
    .apply {
      gap: 10px;
      padding: 0 10px; /* Add equal padding on both sides for smaller screens */
    }
    .client-area h1 {
      line-height: 2;
     }
  }
  
  /* Media query for medium screens (min-width: 577px) and large screens (min-width: 768px) */
  @media (min-width: 577px) and (min-width: 768px) {
    .apply {
      gap: 20px;
    }
    .client-area h1 {
     line-height: 2;
    }
  }
  
  /* Media query for large screens (min-width: 992px) */
  @media (min-width: 992px) {
    .apply {
      gap: 30px;
      padding: 0 30px; /* Add equal padding on both sides for larger screens */
    }
    .client-area h1 {
      line-height: 2;
     }
  
  }

 

/* Media query for larger screens (min-width: 768px) */
@media (min-width: 768px) {
  .about-the-process p,h4 {
    max-width: 100%; /* Reduce the maximum width of the paragraphs for larger screens */
  }

  
}

 

.section-credits {
  display: flex; /* Use flexbox to create a row layout */
  flex-wrap: wrap; /* Allow the elements to wrap to the next line on smaller screens */
  justify-content: space-between; /* Space the elements equally along the container */
}

.section-credits h3,p{
  font-family: 'Lato';
}

.value-container{
  flex-basis: 48%; /* Set the initial width of each value-container, leaving some space between them */
  margin-bottom: 20px; /* Add some spacing between the value-containers */
}

/* Media query for smaller screens (max-width: 767px) */
@media (max-width: 767px) {
  .section-credits {
    flex-direction: column; /* Stack the elements one below the other on smaller screens */
  }

  .value-container {
    flex-basis: 100%; /* Set the width of each value-container to 100% on smaller screens to occupy the full width */
  }
}


.section-otherprojects {
  background-color: #ededed;
}

.value-container {
  text-align: center; /* Center the content within the container */
}

.value-container h3 {
  margin-bottom: 10px; /* Add some spacing below the heading */
  border-bottom: 2px solid #000; /* Add a bottom border to the heading */
  display: inline-block; /* Make the heading inline, so it wraps around the text */
}

.row {
  display: flex; /* Use flexbox to create a row layout */
  flex-wrap: wrap; /* Allow the elements to wrap to the next line on smaller screens */
  justify-content: space-between; /* Space the elements equally along the container */
  margin-bottom: 20px; /* Add some spacing between the rows */
}

.row img {
  width: 100%; /* Make the images occupy the full width of the parent container */
  max-width: 100%; /* Ensure the images do not exceed their original width */
  height: auto; /* Maintain the aspect ratio and adjust the height accordingly */
  margin-bottom: 10px; /* Add some spacing below each image */
}

.layer {
  text-align: center; /* Center the content within the container */
}

.layer h5 {
  margin-bottom: 5px; /* Add some spacing below the subheading */
}

/* Media query for smaller screens (max-width: 767px) */
@media (max-width: 767px) {
  .row {
    flex-direction: column; /* Stack the elements one below the other on smaller screens */
  }

  .row img {
    width: 100%; /* Set the images to occupy the full width of the parent container on smaller screens */
  }
}

/* Media query for larger screens (min-width: 768px) */
@media (min-width: 768px) {
  .row {
    flex-wrap: nowrap; /* Prevent wrapping of "row" elements on larger screens */
  }

  
}

/*language toggle*/
 

/* CSS for the globe icon */
.globe-icon {
  font-size: 24px; /* Adjust the size as needed */
  transition: transform 0.3s ease-in-out; /* Animation duration and easing */
}

/* CSS for the rotating animation */
.rotate {
  transform: rotate(180deg); /* Rotate the globe icon */
}

 
#switchLanguage {
  font-size: 16px;
  color: black;
  transition: transform 0.3s ease-in-out;
}

/* Style for the globe icon (white) on screens with a maximum width of 768px */
@media (max-width: 768px) {
  #switchLanguage {
      color: white;
  }
}

/* Style for the globe icon (white) on screens with a maximum width of 768px */
@media (max-width: 1180px) {
  #switchLanguage {
      color: white;
  }
}

#switchLanguage.clicked {
  transform: rotate(180deg);
}


/* Style for the Banner Section */
.banner-section {
  background-image: url('/img/slogan-section.png'); /* Replace 'your-image-url.jpg' with your image URL */
  background-size: contain; /* Contain the image within the section */
  background-position: center; /* Center the image horizontally and vertically */
  background-repeat: no-repeat; /* Prevent image repetition */
  padding: 0; /* Remove padding to allow the image to cover the entire section */
  height: 50vh; /* Set the height of the section to the viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
}
 
.banner-content {
  text-align: center;
  color: white; /* Text color on the banner */
}
 

/* Media query for screens smaller than 768px (typical mobile phone screens) */
@media (max-width: 768px) {
  .banner-section {
      background-size: 200% auto; /* Adjust the background size to cover the left half */
      background-position: left center; /* Show the left half of the image */
     }
     /* Style the paragraph-meet div */
.paragraph-meet {
  background-color: #f0f0f0; /* Light card background color */
  border-radius: 8px; /* Rounded corners for the card */
  padding: 20px; /* Add padding for spacing */
   line-height: 1.6; /* Increase line height for better readability */
  text-align: justify; /* Justify text alignment */
  font-size: 16px; /* Adjust font size as needed */
  height: 100vh;
 }

/* Optional: Add space below the paragraph for better separation */
.paragraph-meet p {
  margin-bottom: 30px;
}
}

/* Media query for screens smaller than 1024px (typical iPad screens) */
@media (max-width: 1024px) {
  .banner-section {
    background-size: 200% auto; /* Adjust the background size to cover the left half */
    background-position: left center; /* Show the left half of the image */
    margin-top: -200px;
    margin-bottom: -200px;
    height: 95vh;
   }
  .banner-content{
    text-align: center;
  }
}

scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translatex(-50%);
  z-index: 1;
  color: var(--bs-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: black;
}

.hero__scroll-btn{
  color: #000;
  font-family: 'Lato';
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-btn:hover {
  color: var(--bs-light);
  opacity: 0.8;
}

.hero__scroll-btn .bi {
  transition-delay: 0.8s;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from{
      transform: translateY(0px);
  }
  to{
      transform: translateY(-10px);
  }
}

/* Style the paragraph-meet div */
.paragraph-meet {
  background-color: #f0f0f0; /* Light card background color */
  padding: 20px; /* Add padding for spacing */
  line-height: 1.6; /* Increase line height for better readability */
  text-align: justify; /* Justify text alignment */
  font-size: 16px; /* Adjust font size as needed */
  height: 100vh;
}

/* Optional: Add space below the paragraph for better separation */
.paragraph-meet p {
  margin-bottom: 10px;
}


.about {
  height: 100vh;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .main img {
  width: 580px;
  max-width: 100%;
  height: auto;
  padding: 0 10px;
}

.all-text {
  width: 600px;
  max-width: 100%;
  padding: 0 10px;
}

.main {
  width: 1290px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.all-text h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #777777;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 10px;
}

.all-text h1 {
  font-size: 65px;
  color: #111111;
  font-weight: 700;
  margin-bottom: 20px;
}

.all-text p{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #777777;
  line-height: 30px;
  margin-bottom: 35px;
}

.btn button {
  background-color: white;
  padding: 20px 32px;
  font-size: 15px;
  font-weight: bold;
  color: #111111;
  border: none;
  outline: none;
  box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 6%);
  margin-right: 20px;
}

.btn button:hover {
  background-color: #d2d2d2;
  color: white;
  transform: .3s;
  cursor: pointer;
}

@media screen and (max-width:1250px){
  .about{
    width: 100%;
    height: auto;
    padding: 60px 0;
  }
  .all-text{
    text-align: center;
    margin-top: 40px;
  }
  
}

@media screen and (max-width:650px){
 .about .main img{
  margin-bottom: 35px;
 }
 .all-text h1 {
  font-size: 45px;
  margin-bottom: 20px;
 }
  
}

  
@media screen and (min-width:1250px){
  .about{
    width: 100%;
    height: auto;
    padding: 60px 0;
  }
  .all-text{
    text-align: center;
    margin-top: 40px;
  }
  
}

@media screen and (min-width:650px){
 .about .main img{
  margin-bottom: 35px;
 }
 .all-text h1 {
  font-size: 45px;
  margin-bottom: 20px;
 }
  
}
