@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
#Company{
    margin-top: 85px;
    margin-bottom: 0px;
  }
  ul{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    margin-top: 100px;
    transition: 0.3ms;
    text-decoration: none;
    cursor: pointer;
  
  }
  
  ul:hover{
    text-decoration: underline;
  }
  .active-1{
    margin-top: 45px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    transition: 0.3ms;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3ms;
  }
  .Active:hover{
    border-bottom: 1px solid black;
  }
  .dropdown {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 30%;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
    overflow-x: visible;
    z-index: 3;
    height: 100vh; 
  }
  
  .Break{
    margin: 30px 30px;
  }
  .chain{
    margin: 30px 30px;
  }
  
  
  .dropdown.active {
    transform: translateX(0);
  }
  
  .X {
    transition: font-size 300ms ease-in-out; 
    font-size: 22px;
  }
  
  #Menuclose:hover {
    transition: transform 300ms ease-in-out; 
    transform: scale(1.1); 
  }
  .MenuClose{
    border-radius: 50px;
    margin-top: 65px;
    margin-left: 25px;
    margin-bottom: 0px;
  }
  .right-side-blur {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 2;
    opacity: 0%;
    transition: opacity ease-in-out 300ms;
  }
  .right-side-blur.active {
    opacity: 100%;
  }
  .border-butt{
    margin-top: 65px;
    border-bottom: 2px #f4f4f4 solid;
  }
  .side-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 100%;
    padding: 0rem 4rem 0rem 0rem;
    height: 100%;
    background-color: white;
    transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
    z-index: -1;
  }
  
  .side-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  button{
    border: none;
    background-color: white;
    transition: 0.3s;
    margin: 0px 15px;
  }
  
  .dropdown.active + .right-side-blur,
  .side-menu.active {
    display: block;
  }
  .W{
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 2.5px;
  }
  *, *:before, *:after {
    box-sizing: border-box;
  }
  
  body{
    margin: 0px;
    padding: 0px;
    overflow-x: clip;
  }
  
  .bar{
    top:0px;
    background-color: white;
    z-index: 1000;
    margin: 0px 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 150px;
    position: fixed;
  }
  .social-skills{
    text-align: center;
    display: flex;
    margin-top: 45px;
    margin-right: 30px;
    justify-content: center;
  }
  .Facebook{
  margin: 0px 15px;
  }
  .Insta{
    margin: 0 15px;
  }
  .Twitter{
    margin: 0px 15px;  }
  .left-menu{
    text-align: center;
    display: flex;
    margin-top: 50px;
    margin-left: 30px;
    justify-content: center;
  }
  .Minu{
    margin-top: 0px;
    margin-left: 150px;
  }
  .Logo{
    color: rgb(0, 0, 0);
     font-size: 60px;
     font-family: 'Josefin Sans', sans-serif;
     margin-bottom: 0px;
   }
   .Tagline{
     font-size: 15px;
     font-family: Arial, Helvetica, sans-serif;
     font-weight: bold;
     margin-left: 15px;
   }
  .Icon path {
    fill: rgb(0, 0, 0);
  }
  
.BOLD{
    height: 800px;
    width: 100%;
    background-image: url('unnamed.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
}
.Transform {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 450px; /* Adjust height as needed */
}

.Bobby{
font-size: 60px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-style: italic;
}
.Mark{
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.Sameh{
  height: 800px;
  width: 100%;
  background-image: url('Sameh.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
}
.services-offered {
  text-align: center;
  padding: 20px;
  margin-bottom: 50px;
}
.services-container {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.service {
  flex: 1 1 30%;
  max-width: 300px;
  text-align: center;
}
.service img {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image fits within the circular shape */
  margin: 0 auto; /* Centers the image */
}
.get-quote {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: white; /* Default background */
  color: black; /* Text color */
  transition: background-color 0.5s ease, color 0.5s ease; /* Smooth transition */
}

.get-quote:hover {
  background-color: black; /* Background changes to black */
  color: white; /* Text color changes to white */
}
.Lead{
  font-size: 60px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0px;
}
.Client{
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.Deschead{
  font-size: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
}
.Desc{
  font-size: 15px;
font-family: 'Times New Roman', Times, serif;}
.Abouna{
  height: 800px;
  width: 100%;
  background-image: url('Abouna.JPG'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
}
.Dreamy{
  height: 800px;
  width: 100%;
  background-image: url('Unnamed2.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
}
.daisy-section {
  font-family: Arial, sans-serif;
  padding: 40px 0;
  background-color: #ffff;
}
.Its{
  margin-bottom: 0px;
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
}
.DaisyY{
  margin: 0px;
  font-size: 60px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
}
.Typa{
  white-space: nowrap;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30%;
}

.left-section,
.right-section {
  flex: 1;
}

.left-section {
  text-align: center;
  margin-top: 100px;
}


.right-section {
  padding-left: 20px;
}

.Difference{
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  font-size: 45px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}

.right-section ul {
  list-style: none;
  padding: 0;
}
.Right-section-ul{
  margin-top: 15px;
}
.right-section ul li {
  margin-right: 100%;
  white-space: nowrap;
  font-size: 22px;
  display: flex;
  align-items: center;
}

.right-section ul li img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.Bob{
  color: black;
  text-decoration: underline blue;
}
.Blogs-offered{
  text-align: center;
  padding: 20px;
  height: 100%;
  background-color: #1D794C;
}
.service {
  flex: 1 1 30%;
  max-width: 300px;
  text-align: center;
}
.service img {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image fits within the circular shape */
  margin: 0 auto; /* Centers the image */
}
.Read-More {
  display: inline-block;
  color: white;
  font-size: 18px;
  width: 250px;
  margin-top: 10px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  border: 5px solid #ffffff;
  transition: background-color 0.5s ease, color 0.5s ease; /* Smooth transition */
}

.Read-More:hover {
  background-color: rgb(255, 255, 255); /* Background changes to white */
  color: rgb(0, 0, 0); /* Text color changes to black */
}
.Blog-Intro{
  font-size: 60px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0px;
  color: white;
}
.Blog-Want{
  font-size: 15px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.BlogHead{
  font-size: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  color: white;
}
.BlogDesc{
  font-size: 15px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: white;
}
footer{
  width: 100%;
  height: auto;
  background-color: #1D794C;
}
.Quote {
  border-top: 5px solid white; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.div-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Get{
  color: white;
  font-size: 60px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;

}
.Brazil {
  background-color: white;
  color: black;
  border-radius: 50px;
  border: none;
  width: 150px;
  height: 40px;
  cursor: pointer;
  margin-bottom: 50px;
}
.Split {
    border: 5px solid white;
    display: flex;
    justify-content: space-between; /* Creates space between the Left and Right sections */
    align-items: flex-start; /* Aligns items at the top */
    padding: 3px; /* Adds padding around the container */
}

.Left, .Right {
    flex: 1; /* Makes Left and Right take equal width */
    max-width: 50%; /* Ensures Left and Right sections do not exceed 50% of the container */
}

.Like {
    margin-bottom: 20px; /* Adds spacing between sections */
}


.Left {
  display: flex; /* Aligns child elements side by side */
  justify-content: space-between; /* Distributes space evenly between the items */
  gap: 20px; /* Adds spacing between the items */
  margin-top: 30px;
}

.Like {
  flex: 1; /* Allows each Like element to take equal width */
  text-align: center; /* Centers content within each Like box */
  margin-right: 20px;
}
.Breling{
font-size: 25px;
font-family: Arial, Helvetica, sans-serif;
color: white;
font-style: italic;
}
.Mention{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  color: white;
  margin-top: 15px;
}

.Right {
  display: flex; /* Enables flexbox */
  flex-direction: column; /* Stacks child elements vertically */
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  text-align: center; /* Ensures text is centered */
  height: 100%; /* Ensures full height of the container */
  padding: 20px; /* Optional: Adds some padding */
  border-left: 5px solid white;
}
.footer-customer {
  max-width: 100%; /* Sets a maximum width for the content */
}
.footer-feedback{
  color: white;
  font-size: 45px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}
.footer-feedback-para{
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}
.social{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.icon1 path{
  fill: rgb(255, 255, 255);
}
.rest{
  display: flex;
  justify-content: center;
  padding: 25px;
  gap: 100px;
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.reset1{
  font-size: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.home{
  font-size: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
/* For screens smaller than 768px */
@media (max-width: 768px) {
  .bar{
    display: flex;
    align-items: center; /* Centers everything vertically */
    justify-content: flex-start; /* Ensures everything is centered */
    width: 100%;
    height: 150px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    padding: 0; /* Ensure no extra padding */
    margin: 0; /* Remove any default margin */
  }  
  .left-menu{
    text-align: center;
    display: flex;
    margin-left: 30px;
    justify-content: center;
  }
  .Minu{
    text-align: center;
    margin-top: 30px;
    margin-left: 140px;
  }
  .Logo{
    color: rgb(0, 0, 0);
     font-size: 15px;
     font-family: 'Josefin Sans', sans-serif;
     margin-bottom: 0px;
     text-align: center;
  }
  .Tagline{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-left: 15px;
  }
  .social-skills{
    text-align: center;
    display: flex;
    margin-top: 45px;
    justify-content: center;
    margin-left: 50px;
  }
  svg{
    height: 20px;
    width: 20px;
  }
  .Twitter{
    margin: 0px;
  }
  .Bobby{
font-size: 35px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-style: italic;
  }
  }


/* For screens smaller than 480px */
@media (max-width: 480px) {

}


