@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap');

:root {
    --primary-color: #fe5b3e;
    --text-dark: #0f172a;
    --text-light: #475569;
    --extra-light: #f2f2f2;
    --white: #ffffff;
    --max-width: 1200px;
    --gradient: linear-gradient(to bottom, #fe5c3c, #fc8023);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mulish", sans-serif;
}


nav {
    position: fixed;
    width: 100%;
    background: var(--primary-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav__logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    display: none;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav__links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav__links a:hover {
    color: #fc8023;
}
.nav__btns{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}
.nav__btns .btns__primary{
    color: var(--text-dark);
    background-color: transparent;
}
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: #474fa0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #3c4286;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav__menu__btn {
        display: block;
    }

    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 2rem;
        gap: 2rem;
        text-align: center;
        z-index: -1;
        transition: 0.5rem ;
        transform: translateY(-100%);
        opacity: 0;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
    }

    
}

.nav__btns {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.nav__btns .btn__primary{
    color: var(--text-dark);
    background-color: transparent;
}







.header__container{
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}
.header__container::before{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient);
    border-radius:  1rem 1rem 0.5rem 0.5rem;
    z-index: -1;

}
.header__content h1{
    position: relative;
    isolation: isolate;
    margin-bottom: 2rem;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 3.25rem;

}


.header__content h1::before{
    position: absolute;
    content: "";
    left:0;
    bottom: -1rem;
    height: 4px;
    width: 2rem;
    background-color: var(--primary-color);

}

.header__content p{
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75;

}

.header_links{
    display:flex;
    align-items: center;
    gap: 1rem;
}

.header_links img{
    max-width: 125px;
    border-radius: 5px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);

}
.steps__container :is(.section__subheader, .section__header){
text-align: center;

}



.steps__card span{
    display: inline-block;
    margin-bottom: 2rem;
    padding: 10px 17px;
    font-size: 1.75rem;
    color: var(--primary-color);
    border-radius: 5px;
    background-color: var(--extra-light);
    border: 4px solid var(--white);
    box-shadow:  5px 5px 20px rgba(0, 0, 0, 0.1);

}

.steps__card:hover span{
    padding: 14px 21px;
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.steps__card h4{
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 100;
    color: var(--text-dark);
}

.steps__card p{
    color: var(--text-light);
    line-height: 1.75rem;
}








.section_container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.service__list {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

.service__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition:  0.3s ease-in-out;
}

.service__list li:hover {
    background: rgba(254, 91, 62, 0.1);
}

.service__list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px  15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--extra-light);
    border: 4px solid var(--white);
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
}

.service__list li:hover span {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.service__list li div {
    max-width: 500px;
}

.service__list li h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service__list li p {
    color: var(--text-light);
    line-height: 1.75rem;
}

.service__container {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.service__img {
    flex: 1; 
    max-width: 50%; 
}

.service__img img {
    width: 100%; 
    height: auto; 
    display: block;
}

.service__content {
    flex: 1; 
    text-align: left;
}





























.exprience__container :is(.section__subheader, .section){
   text-align: center;
   max-width: 600px;
   margin-inline: auto;
}


.experience__container {
    padding: 60px 20px;
    background-color: #f9f9f9;
    margin-top: 100px; 
}

.experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experience__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.experience__card:hover {
    transform: translateY(-5px);
}

.experience__card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.experience__card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.experience__card p {
    font-size: 0.95rem;
    color: #555;
}


@media (max-width: 768px) {
    .experience__layout {
        flex-direction: column;
        align-items: stretch;
    }

    .experience__image {
        order: 1;
    }

    .experience__column.left {
        order: 2;
    }

    .experience__column.right {
        order: 3;
    }
}


.download__grid{
    margin-block: 4rem;
    padding-inline: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.download__image{
    display: flex;
    position: relative;
    isolation: isolate;
}
.download__image img{
    position: absolute;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}






.steps__grid {
  
    grid-template-columns: repeat(3, 1fr); 
   
}




.download__container{
   overflow: hidden; 

}

.download__grid{
    display: grid;
    padding: 5rem 1rem;
    background: var(--gradient);
    border-radius: 1rem;
}
.download__image{
display: none;
}
.download__content .section__header{
margin-bottom: 1rem;
color: var(--white);
}

.download__content p{
  margin-bottom: 2rem;  
  color: var(--extra-light);
  line-height: 1.75rem;
}
.download__links{
   display: flex; 
   align-items: center;
   gap: 1rem;

}

.download__links img{
    max-width: 1225px;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}






.footer__container{
    display: grid;
    gap: 4rem 2rem;
    border-bottom: 1px solid var(--text-light);
}

.footer__col h4{
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer__links{
    display: grid;
    gap: 1rem;
}

.footer__links a {
    font-weight: 600;
    color: var(--text-light);
}

.footer__links a:hover{
    color: var(--primary-color)
}

.footer__bar{
    padding-block: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__bar h4{
   font-size: 1.5rem; 
   font-weight: 700;
   color: var(--text-dark);

}

.footer__bar p{
  font-weight: 500;
  color: var(--text-light);  
  text-align: center;
}

.footer__socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer__socials a{
    display: inline-block;
    padding: 8px 10px;
    font-size: 1rem;
    color: var(--text-dark);
    border-radius: 100%;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.footer__socials a:hover{
    color: var(--white);
    background: var(--gradient);
}

@media(width > 540px) {
    .steps__grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container{
        grid-template-columns: repeat(2, 1fr); 
    }
}















@media (max-width: 768px) {
    .header__container, .service__container {
        flex-direction: column; 
        align-items: center; 
        text-align: center;
    }
}
@media (max-width: 540px) {
    
    .steps__grid {
        display: flex;          
        flex-direction: column; 
        align-items: center;   
        gap: 1.5rem;           
    }

    .steps__card {
        width: 100%; 
        max-width: 400px; 
    }
}







.header__image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.section_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.header__content {
   grid-area: 1/1/2/3;


}

.steps__grid{
    grid-template-columns: repeat(3, 1fr);
}


.footer__container{
    grid-template-columns: row;

}
.foot__bar :is(h4, .footer__socials){
    flex: 1;
}
.footer__socials{
  justify-content: flex-end;  
}
