*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body {
 /* font-family: Arial, sans-serif;*/
 font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  direction: rtl;
  text-align: right;
}


/*Learn more button start*/
.learn-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.learn-more-button:hover {
  background-color:#3498db;
  transform: translateY(-5px);
}

.learn-more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.learn-more-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
/*Learn More Button end*/


/*Navbar Section Start*/
.navSection{
  background-color: yellow;
}

nav{
  background-color: white;
    height: 80px;
    width: 100%;
}

label.logo{
  padding: 0 100px;
}


nav ul{
  float: left;
  padding-top: 10px;
  padding-left: 240px;
}

nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
.logo img{
  padding-top: 0px;
  padding-bottom: 0;
 margin-right: 190px;
}

nav ul li a{
  color: black;
  font-size: 25px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight:700;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a.active,a:hover{
  background:#3498db;
  transition: .5s;
  color: #ffffff;
}

.checkbtn{
  font-size: 30px;
  color: black;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check{
  display:none;
}


@media (max-width: 952px)
  {
    label.logo{
      font-size: 30px;
      padding-left: 50px;

    }
    nav ul li a{
      font-size: 19px;
      font-weight: bold;
    }
  }

  @media (max-width: 858px)
  {
    .checkbtn{
      display:block;
    }

    .logo img{
      padding-top: 10px 0px;
    margin: 0px 0px;
    }

    ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background:#f5f5f5;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }

    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }

    nav ul li a{
      font-size: 20px;
    }

    a:hover,a.active
    {
      background: none;
      color: #3498db;
    }

    #check:checked ~ ul {
      left: 0;
    }
  }
/*Navbar Section end*/




/* About us section start */
/* Styles for the About Us section */
.about-us {
  background-color: #f5f5f5;
  margin: 10px 10px;
  border-radius: 20px;
  padding: 30px;
  margin-top: 60px;
}

.section-heading {
  font-size: 44px;
  text-align: right;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #3498db;
}

.section-paragraph {
  font-size: 23px;
  padding-bottom: 20px;
  text-align: justify;
  line-height: 40px;
  padding-top: 20px;
}
.geyemuna{
  padding-bottom: 30px;
}

.contact-button {
  background-color:#3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 0px;
  border-radius: 4px;
}

/* Media query for small screens */
@media screen and (max-width: 767px) {
  .about-us {
    padding: 20px;
  }

  .section-heading {
    font-size: 30px;
  }

  .section-paragraph {
    font-size: 20px;
    text-align:justify;
    line-height: 27px;
    padding-top: 20px;
  }

  .contact-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* about us section end*/

/*why you choose us start*/

#why-choose-us {
  background-image: url(images/1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
  margin: 10px 10px;
  margin-top: 60px;
  border-radius: 20px;
}
.container {
  max-width: 960px;
  margin: 0 auto;
}

.container h1{
  text-align: center;
  font-size: 44px;
  color: #3498db;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature {
  flex-basis: 30%;
  padding: 20px;
  margin: 10px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature i {
  font-size: 48px;
  color: #333;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 20px;
  color: #666;
  text-align: justify;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature:hover i {
  color: #2980b9;
}

.feature:hover h3 {
  color: #2980b9;
}


@media screen and (max-width: 600px) {
  .features {
    flex-direction: column;
  }

  #why-choose-us{
    margin-top: 60px;
  }

  .container h1{
    font-size: 30px;
  }

  .column {
    width: 100%;
  }
  .feature p {
    font-size: 20px;
  }
}
/*why you choose us end*/


/*Service Section Start*/

/*Service.html Start*/
.services {
  background-image: url(images/1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
  margin: 10px 10px;
  margin-top: 60px;
  border-radius: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.services h1 {
  text-align: center;
  font-size: 44px;
  color: #3498db;;
}

.services h2 {
  text-align: center;
  font-size: 24px;
    color: #3498db;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.column {
  flex: 1;
  padding: 10px;
}

.service-item {
  border: 2px solid #e5e5e5;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.servicesHeader {
  font-size: 3px;
  padding-top: 10px;
}

.service-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.column img {
  max-width: 90%;
  width: 100%;
  height: 200px; /* Set a fixed height, adjust as needed */
  object-fit: cover; /* This ensures the image covers the specified height */
  display: block;
  margin: 0 auto;
}


.column p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
  padding-top: 10px;

}

.services-paragraph {
  text-align: justify;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .column {
    width: 100%;
    margin-bottom: 20px;
  }

  .column p { 
    font-size: 20px;
  }

  .servicesHeader {
    font-size: 30px;

  }
  
}
/*Service.html end*/

  /*Service Section end*/



/*footer Section Start*/

footer {
  background-color:#333;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #3498db;
  font-size: 35px;
}

.phone,
.email,
.about,
.address {
    margin-top: 20px;
    flex-basis: 100%;
    text-align: center;
}

.phone h4,
.email h4,
.about h4,
.address h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.phone p,
.email p,
.about p,
.address p {
    font-size: 14px;
    margin-bottom: 0;
    color: #ffffff;
}
/* Responsive Styles */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}


/*footer Section End*/


/* Two icons Start */ 
.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 9999;
}

.whatsapp-icon,
.call-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: #2980b9;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-icon:hover,
.call-icon:hover {
  transform: scale(1.2);
}

@keyframes floatingAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.whatsapp-icon {
  animation: floatingAnimation 3s ease-in-out infinite;
}

.call-icon {
  animation: floatingAnimation 3s ease-in-out infinite reverse;
}


.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 9999;
}

.whatsapp-icon,
.call-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color:#3498db;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: white; /* White color for icon */
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.whatsapp-icon:hover,
.call-icon:hover {
  transform: scale(1.2);
  background-color: rgba(0, 123, 255, 1); /* Fully blue color on hover */
}

/* Two icons End */







/*linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.1)),*/

.payment-section {
  display: flex;
  background-color: #f5f5f5;
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  transition: background-color 0.3s ease;
  margin: 20px;
  margin-top: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.payment-column {
  flex: 1;
}

.payment-column-left {
  text-align: justify;
  margin-right: 200px;
}

.payment-column-right {
  text-align: center;
  margin-left: 40px;
}

.payment-header {
  font-size: 2.5em;
  color: #3498db;
  margin-bottom: 10px;
}

.payment-section:hover {
  background-color: #e0e0e0;
}

.payment-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #3498db;
}

.payment-text {
  color: black;
  font-size: 1.6em;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .payment-section {
    flex-direction: column;
  }

  .payment-header {
    font-size: 2.6em;
  }

  .payment-image {
    margin: 20px auto;
  }

  .payment-text {
    font-size: 1.4em;
    text-align: justify;
  }
  .payment-column-left {
    margin-right: 3px;
  }

  .payment-column-right {
    margin-left: 3px;
  }
}


/*contact form start here*/

.contact-form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin: 20px;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.contact-form h2 {
  font-size: 44px;
  color: #3498db;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  text-align: right;
}

.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2980b9;
}

/* contact form end here*/




.custom-section {
    margin-top: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('PHOTOS/wajiha.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    height: 500px;
  }

.custom-content {
  max-width: 800px;
  margin: 0 auto;
}

.custom-header {
  font-size: 2.6em;
  margin-bottom: 20px;
  text-align: justify;
}

.custom-paragraph {
  font-size: 1.9em;
  text-align: justify;
}

.contact-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  background-color: #3498db; /* Green color, you can change it */
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #2980b9; /* Darker green on hover, you can change it */
}

@media screen and (max-width: 600px) {
  .custom-section {
    padding: 50px 10px;
    height: auto;
  }

  .custom-header {
    font-size: 2em;
  }

  .custom-paragraph {
    font-size: 1.3em;
  }
}









.beautiful-links {
  background-color: #f8f8f8;
  padding: 30px;
  text-align: center;
  margin: 20;
  margin-top: 60px;
  margin-bottom: 60px;
}

.beautiful-links h2 {
  color: #3498db;
  font-size: 40px;
  margin-bottom: 20px;
}



.link-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}

.link-item {
  text-decoration: none;
  color: #3498db;
  font-size: 26px;
  margin: 0 15px;
  padding: 10px 20px;
  border: 2px solid #3498db;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.link-item:hover {
  background-color: #3498db;
  color: #fff;
}
  
  @media screen and (max-width: 600px) {
      .link-item {
        width: 100%;
        margin: 10px 0;
        
      }  
    }

