@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Exo", sans-serif;
    font-optical-sizing: auto;
    margin:0;
    padding:0;
    overflow-x: hidden;
    padding-top: 60px;
}

/*Navigation */
nav{
  background-color: #1e2129;
    font-size: 16px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content: space-around;
    color:white;
    
}

nav li{
    display:inline-block;
    margin:0 8px;
    
}

nav a{
  position: relative;
  top: 0;
  text-decoration: none;
    
}
nav li a{
  color:white;
}

.logo{
    font-size:18px;
    font-weight: bolder;
}

nav a:hover{
    text-decoration: none;
    color: #F47249;
}


.menu-line{
    height:3px;
    width:20px;
    background-color:white;
    margin-bottom: 3px;
}

.menu{
    cursor:pointer;
    display:none;   
}

.fa-phone{
  font-size:15px;
}
.fa-phone:hover{
  color:white;
  padding:5px;
}
  
/* Media query for navigation*/

@media all and (max-width:640px){
    nav{
        flex-direction: column;
    }

    nav li{
        display:block;
        padding:10px 0;
    }
    ul{
        text-align: center;
        padding:0;
        display:none;
    }

    .logo{
        align-self:flex-start;
        
    }
    .logo span{
      font-size:13px;
    } 

    .menu{
        display:block;
        position:absolute;
        right:20px;
        top:25px;
    }

    .showmenu{
        display:block;
    }
  }

/* Main Slider */

.mySlides {
    display: none;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slideshow img{
  height:550px;
  border-radius:15px;
  width:1520px;
}


.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}



.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 2}
}

@media all and (max-width:640px){
  .slideshow img{
  height:200px;
  border-radius:15px;
  width:100%;
}

}

/*Firstpart*/
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card {
  background-color: #f0f0f0;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 30px;
  font-weight: bold;
  color:#F47249;
}

.stat-title {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/* Responsive design */
@media only screen and (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/*About*/

.title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-6 {
    flex-basis: 48%;
    margin: 10px;
}

.about img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.aboutt {
    padding: 20px;
}

.aboutt h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.aboutt p {
    font-size:17px;
    margin-bottom: 20px;
}

/* Media queries */
@media (max-width: 768px) {
    .col-md-6 {
        flex-basis: 100%;
        margin: 10px 0;
    }
    .aboutt {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 24px;
    }
    .aboutt h4 {
        font-size: 18px;
    }
    .aboutt p {
        font-size: 16px;
    }
}


/*Services*/
.services-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color:  #1e2129;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-title {
  text-align: center;
  color: #F47249;
  margin-bottom: 10px;
}

.services-description {
  text-align: center;
  margin-bottom: 20px;
  color:black;
  font-size:16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.service-name {
  margin-top: 10px;
  color: #F47249;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  margin-bottom: 10px;
}

.service-features i {
  color: #F47249;
  margin-right: 10px;
}

.service-info {
  margin-top: 20px;
}

.service-info p {
  margin-bottom: 10px;
}

.service-info i {
  color: #F47249;
  margin-right: 10px;
}

.service-button {
  background-color: #13151a;
  color:white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.service-button:hover {
  background-color: #e65c33;
}
.service-features {
  display: block;
  width: 100%;
}



@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 100%;
    margin: 0 auto;
  }

  .service-features {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .service-features li {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    word-wrap: break-word;
  }

  .service-features li i {
    color: green;
    min-width: 20px;
    margin-top: 4px;
  }

  .service-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

}

/*Gallery*/

.gallery {
    padding: 20px;
}

.title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.gallery-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-4 {
    flex-basis: 30%;
    margin: 10px;
}

@media (max-width: 768px) {
    .col-md-4 {
        flex-basis: 45%;
    }
}

@media (max-width: 480px) {
    .col-md-4 {
        flex-basis: 100%;
    }
    .title {
        font-size: 24px;
    }
}

/*button*/
.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white; 
  color: black; 
  border: 2px solid #ff5e14;
  width:50%;
}

.button1:hover {
  background-color: #2c3e50;;
  color: white;
}

@media (max-width: 768px) {
  .button1{
    width:100%;
  }

  .button{
    padding:10px;
  }
}


/*Core Values*/

.core-values-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.core-values-title {
  font-size: 30x;
  margin-bottom: 10px;
  color: #F47249;
}

.core-values-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.core-values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.core-value-card {
  margin: 20px;
  padding: 30px;
  width: calc(25% - 40px);
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1e2129;
}

.card-title {
  font-size: 22px;
  margin-bottom: 10px;
  color:#e65c33;
  transition: transform 0.3s ease;
}

.card-title:hover{
  transform: translateY(-5px);
}

.card-description {
  font-size: 14px;
  color: #666;
}

/* Media Queries */

@media (max-width: 992px) {
  .core-value-card {
    width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .core-values-cards {
    flex-direction: column;
    align-items: center;
  }
  .core-value-card {
    width: 100%;
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  .core-values-title {
    font-size: 24px;
  }
  .core-values-subtitle {
    font-size: 16px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-description {
    font-size: 14px;
  }
}

/*Contact*/

.form-container {
    background-image:url("Images/contact.jpeg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 750px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.form-group input, .form-group select {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}


/*Whatsapp and Phone*/
/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 15px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background-color:#e65c33;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 25px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}

/*Footer*/

.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex-basis: 25%;
  margin: 20px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 10px;
  color:#e65c33;
}

.footer-description {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: block;
}

.footer-links li {
  margin-bottom: 10px;
  display: block;
}

.footer-links li:hover{
  color:#e65c33;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-social-links li {
  margin-right: 10px;
}

.footer-social-links a {
  color: #fff;
  font-size: 18px;
}

.footer-social-links a {
  color: #fff;
  font-size: 18px;
}

.footer-bottom {
  background-color: #444;
  padding: 10px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  margin-bottom: 0;
}

.footer-copyright span{
  font-weight: bold;
  color:#e65c33;
}

/* Media queries */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    flex-basis: 100%;
    margin: 20px 0;
    width: 100%;
    text-align: center;
  }
  .footer-links {
    padding: 10px 0;
  }
  .footer-social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 0;
  }
  .footer-title {
    font-size: 16px;
  }
  .footer-description {
    font-size: 13px;
  }
}

.rules a{
  color:#e65c33;
  text-decoration: none;
}

.rules a:hover{
  color:grey;
}

/*privacy policy*/

#policy h3{
  color:#e65c33;
}