* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 45px;
    text-align: center;
}
.sub{
    color: rgb(228, 95, 78);
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    display: block;
    margin-bottom: 16px;
}
h2{
color: #262626;
font-size: 40px;
margin-bottom: 24px;
}
html,
body {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    overflow: hidden;
    margin-top: -60px;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    max-width: 500px;
  }

  .hero__content sub {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .hero__content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero__content p {
    font-size: 1rem;
  }
  header {
    /* background: #111; */
    color: white;
  }

  .header__top {
    padding: 15px 20px;
    background-color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .header__top-item {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
  }

  .header__top-social {
    list-style: none;
    display: flex;
    gap: 10px;
  }

  .header__center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 40px;
    text-decoration: none;
    font-weight: 700;
    color: rgb(15, 15, 15);
  }

  .logo span {
    color: rgb(228, 95, 78);
  }

  .header__center-ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto;
  }

  .header__center-ul li span {
    font-weight: bold;
    color: #111;
  }
  .header__center-ul li p {
    font-weight: 500;
    color: #777676;
  }

  .header__bottom

   {
      position: relative;
      z-index: 99999;
      background-color: transparent;
  }

  .header__bottom ul {
    display: flex;
    background: transparent;
    justify-content: center;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
  }

  .header__bottom ul li a

   {
      color: rgb(251 251 251);
      text-decoration: none;
      font-size: 20px;
      font-weight: 700;
  }

  /* === Burger menu styles === */
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background: white;
  }

  @media (max-width: 768px) {
    .header__center-ul,
    .header__bottom ul {
      display: none;
      flex-direction: column;
      gap: 15px;
      background: #222;
      padding: 20px;
    }

    .header__bottom ul.active,
    .header__center-ul.active {
      display: flex;
    }

    .burger
   
     {
            display: flex
    ;
            position: absolute;
            margin-left: auto;
            top: 22px;
            right: 17px;
        }
  }
  .about__items{
    display: flex;
  }
   .about__item{
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 48px;
    border-right: 1px solid #777676;
   }
   .about__content{
    display: flex;
    flex-direction: column;
   }
   .about__content h2{
    margin-bottom: 16px;
    text-align: start;
    font-size: 20px;
   }
   .about__item i{
    font-size: 72px;
    color: #db522f;
   }
   .about__grid{
    display: flex;
    background: #f6f6f6;
   }
.about__col{
    flex: 1;
}
.about__col:last-child {
padding: 48px;
margin: auto;
display: flex;
flex-direction: column;
}
.about__col p{
    font-size: 16px;
    color:#848484;
    margin-bottom: 16px;
}
.about__col-items{
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}
.about__col-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about__col-item i{
font-size: 72px;
color: #db522f;
}
.about__col-item h3{
font-size: 20px;
color: #262626;
}
.about__col-item span{
font-size: 16px;
color: #848484;
}
.btn{
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    border-radius: 0px;
    width: fit-content;
    color: rgb(255, 255, 255);
    background-color: rgb(228, 95, 78);
    border-color: rgb(228, 95, 78);
}
.btn:hover{
    background-color: rgb(158, 70, 58);
}
.about__col img{
    width: 100%;
}
.about__col h2{
    text-align: start;

}
.service{
    padding: 48px 0;

}
.service .sub{
    text-align: center;
}
.service__items{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.service__item{
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 0.5px solid #848484;
}
.service__item img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.service__item-text{
    display: flex;
}
.service__item-text i{
    padding: 20px;
    background-color: #db522f;
    color: #fff;
    font-size: 28px;
}
.container{
    max-width: 1300px;
    margin: 0 auto;
}
.service__item-text h2{
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
    padding: 20px;

    width: 100%;
    color: #fff;
    background-color: #262626;
}
.service__item p{
    padding: 20px;
    background-color: #f7f7f7;
}
.stats{
    margin: 50px 0;
    background-color: rgb(228, 95, 78);
    padding:56px 20px;
}
.stats__items{
    display: flex;
}
.stats__item{
    flex: 1;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stats__item i{
color: #fff;
}
.stats__item-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stats__item-content span:first-child{
font-size: 56px;
color: #fff;
font-weight: 700;
text-align: center;
}
.stats__item-content span:last-child{
    font-size: 16px;
color: #fff;
text-align: center;
font-weight: 700;
}
.chose .container{
display: flex;
gap: 30px;
}
.chose__col:first-child{
    display: flex;
    flex:1;
    flex-direction: column;
    gap: 20px;
}
.chose__col:first-child img{
   width: 100%;
   height: 200px;
 
   object-fit: cover;
   padding: 20px;
   border: 1px solid #262626;
}
.chose__items{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.chose__item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.chose__item-top{
    display: flex;
    gap: 20px;
    align-items: center;
}
.chose__item-top i{
    color: #fff;
    padding: 10px;
    background-color: #db522f;
}
.chose__item-top h3{
    color: #262626;
    font-size: 16px;
}
.letter{
    background-color: #e3a99b;
    margin: 50px 0;
    padding: 50px 15px;
}
.letter__container{
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.letter .sub,
.letter h2,
.letter__container p{
    color: #fff;
    text-align: center;
}
.sec{
    padding: 50px 0;
}
.sec .sub{
    text-align: center;
}
.sec__columns{
    display: flex;
    gap: 40px;
    margin: 50px 0;
    justify-content: center;
}
.sec__colum-left{
    display: flex;
    flex: 1;
    gap: 30px;
    flex-direction: column;
    align-items: flex-end;
}
.sec__colum-right{
    flex: 1;
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
}
.sec__columns h4{
font-size: 16px;
color: #262626;
}
.sec__columns span{
    font-size: 16px;
    color: #5f5e5e; 
}
.sec__columns p{
    color: #848484;
}
.sec__colum-item{
    display: flex;
    gap: 40px;
    align-items: center;
}
.sec__colum-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.sec__colum-right .sec__colum-content {
    align-items: self-start;
}
.sec__colum-img{
    flex: 1;
}
.sec__colum-left p {
    color: #848484;
    text-align: end;
}
.sec__colum-content{
    flex: 1;
}
.sec__colum-img img{
    width: 100%;
    object-fit: cover;
    height: 250px;
    padding: 15px;
    border: 1px solid #747171;
}
.blog{
    padding: 50px 0;
}
.blog .sub{
    text-align: center;
}
.blog__items{
    display: flex;
    gap: 30px;
}
.blog__item{
    display: flex;
    padding: 15px;
    border: 1px solid #848484;
   flex-direction: column;
}
.blog__item img{
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.blog__item span{
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    width: 100%;
    padding: 10px 20px;
    background-color: #111;
}
.blog__item p{
    color: #848484;
    padding: 20px;
    background: #f1efef;
}
.footer{
    padding: 50px 15px 0;
    background-color:  rgb(38, 38, 38);
}
.footer__container{
    padding: 0 40px;
    display: flex;
    gap: 50px;
}
.footer__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .logo {
    color: #fff;
    display: flex;
}
.footer .logo span{
    color: #db522f;
}
.footer__item p{
    color: #fff;
}
.footer__item h3{
    font-size: 18px;
    margin-bottom: 15px;
    color: #db522f;
}
.footer__item ul li{
margin-bottom: 10px;
color: #fff;
}
.footer__item span{
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
}
.copy{
    margin: 50px 0;
    display: flex;
    justify-content: space-around;
    gap: 50px;
}
.copy p{
    color: #fff;
    font-weight: 700;
}
.copy ul{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.copy ul li{
    color: #fff;
}
.social i {
    color: #fff;
}
.social  {
   display: flex;
   gap: 20px;
}

.contact .about__col-item span {
    font-size: 18px;
    color: #848484;
    display: flex
;
    gap: 20px;
    align-items: center;
}
.terms{
    padding: 40px 15px;
}
.terms .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms ul li{
    margin-bottom: 10px;
}
@media screen and (max-width:768px) {
    .about__items {
        display: flex
    ;
        flex-direction: column;
    } 
    .about__item {
        flex: 1;
        display: flex
    ;
        align-items: center;
        gap: 24px;
        padding: 28px;
        border-right: 1px solid #777676;
        flex-direction: column;
    }
    .about__grid {
        display: flex
    ;
        background: #f6f6f6;
        flex-direction: column;
    }
    .service__items {
        display: grid
    ;
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .footer__container {
        padding: 0 40px;
        display: flex
    ;
        gap: 50px;
        flex-wrap: wrap;
    }
    .copy {
        margin: 50px 0;
        display: flex
    ;
        justify-content: space-around;
        gap: 50px;
        flex-wrap: wrap;
    }
    .service {
        padding: 48px 15px;
    }
    .header__top {
        display: none;
    }
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 100%;
        overflow: hidden;
        margin-top: 0px;
    }
    .hero__content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        color: white;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        max-width: 500px;
    }
    .burger div {
        width: 25px;
        height: 3px;
        background: #000000;
    }
    .logo{
        font-size: 28px;
    }
    .conner {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: #333;
        color: #fff;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }
    
    .conner p {
        margin: 0;
        font-size: 14px;
    }
    
    .conner a {
        color: #ffd700;
        text-decoration: underline;
    }
    
    .conner button {
        background-color: #ffd700;
        border: none;
        color: #000;
        padding: 8px 16px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }
    .header__bottom {
        position: static;
        z-index: 99999;
        background-color: transparent;
    }
    .chose .container {
        display: flex
    ;
        gap: 30px;
        flex-direction: column;
    }
    .sec__columns {
        display: flex
    ;
        gap: 40px;
        margin: 50px 0;
        justify-content: center;
        flex-direction: column;
    }
    .chose__items {
        flex: 1;
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    .chose .container {
        display: flex
;
padding-left: 15px;
padding-right: 15px;
        gap: 30px;
        flex-direction: column;
    }
    .stats__items {
        display: flex
    ;
        flex-direction: column;
    }
    .blog__items {
        display: flex
    ;
        gap: 30px;
        flex-direction: column;
    }
    .blog {
        padding: 50px 15px;
    }
    .sec {
        padding: 50px 15px;
    }
    .stats__items

     {
            display: flex
    ;
            gap: 40px;
            flex-direction: column;
        }
}