*{
margin: 0;
padding: 0;
font-family: 'inter',sans-serif;
text-decoration: none;
}

:root{
    --primary-color:rgb(35, 35, 87);
    --accent-color:rgb(102, 102, 162);
    --text-color:black;
    --line-color:purple;
  --background-color:rgb(242, 230, 230);
  --light-gray:grey;
  --gray:rgb(26, 16, 16);
  --dark-gray:rgb(49, 32, 49);

}

body{
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0.3rem;
}

.header-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;

}
.logo{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    gap: 0.625rem;
}

.logo-text{
    font-size: 2rem;
    font-weight: bold;
}

.nav{
    display: none;
    gap: 1.5rem;

}
@media screen and (min-width:768px){
 .nav{
    display: flex;
 }
}
.nav-link{
    color: blue;
    font-size: 1.125rem;
    font-weight: 600;
    transform: color 0.1s;
}
.nav-link:hover{
color: var(--link-color);

}
.contact-button{
    display: none;
    border: none;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: all 0.1s;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}
@media screen  and (min-width:768px){
    .contact-button{
        display: block;
    }
}
.contact-button:hover{
    background-color: blueviolet;
}
.menu-button{
    display: none;
    border: none;
    border-radius: 0.37rem;
     background-color: var(--background-color);
    font-size: 1rem;
    font-weight: 600;
    padding:0.5rem 1rem ;
}
@media screen and (max-width:768px) {
    .menu-button{
        display: block;
    }
}
.main-section{
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.6rem;
    align-items: center;
    margin: 0 auto;
}
.content-left{
    text-align: center;
    animation: slideFromLeft 1s ease forwards;
    opacity: 0;
}
@keyframes slideFromLeft {

    0%{
       opacity: 0; 
       transform: translateX(-100%);
    }

    100%{
        opacity: 1;
        transform:translateX(0) ;
    }
}
.section-label{
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}
.section-title{
    font-size: 2.3rem;
    padding: 1.1rem;
    color: var(--text-color);
}
.section-desc{
    color: gray;
    font-size: 1.12rem;
}
.button-group{
    display: flex;
    gap: 2rem;
    padding: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.start-button,.tour-button{
    border: none;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: all 0.1s;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;

}
.tour-button{
    background-color: var(--dark-gray);
}
.start-button:hover{
    background-color: blueviolet;
}
.tour-button:hover{

    background-color: rgb(123, 131, 140);
}
.content-right{
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-container{
    
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
   /* height: 57vh;*/
}
.section-image{
    border-radius: 1rem;
    height: 100%;
    width: 100%;
}
@media screen and (min-width:768px) {
    .main-section{
        flex-direction: row;
    }
    .content-left{
        max-width: 50%;
        text-align: left;
    }
    .section-title{
        padding-left: 0;
    }
    .button-group{
        justify-content: start;
        padding-left: 0;
    }
    .section-label{
        font-size: 1rem;
    }
    .section-title{
        font-size: 3rem;
    }
    .image-container{
        height: 90vh;
    }
    .section-description{
        font-size: 1rem;
        color: var(--light-gray);
        width: 78%;
    }
}

.company-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    animation: slideFromLeft 1s ease forwards;
}

.company-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 5rem;
    padding: 1rem 2rem;
     background-color: rgb(220, 220, 195);
    border: none;
    border-radius: 0.625rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.company-logo{
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    display: flex;
    gap: 0.5rem;
}

.svg-img{
    height:5rem;

}
.logo-txt{
    font-size: 1rem;
}
@media screen and (min-width:640px){
    .company-grid{
        grid-template-columns: repeat(4,1fr);
    }
    .company-title{
       font-size: 2.4rem; 
       font-weight: bold;
    }
}
.feature-container{
    background-color: rgb(220, 220, 195);
    padding: 0% 20%;
    text-align: center;
}

.feature-content{
    
    margin: 0 auto;
    padding: 0 2rem;
}
.feature-svg{
    height: 1.5rem;
    width: 1.5rem;
    
}
.main-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.main-title{
    font-size: 2.2rem;
}
.main-description{
    font-size: 0.9rem;
    color: var(--dark-gray);
}
.feature-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2,1fr);
    margin-top: 1.3rem;
    row-gap: 2rem;
    column-gap: 2rem;
}
.icon-container{
    background-color: whitesmoke;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.feature-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.feature-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(81, 81, 96);
    padding: 4rem;
    border-radius: 1rem;
    gap: 1rem;
}
.feature-title{
    color: lavender;
    font-weight: bold;
    font-size: 1.3rem;

}
.feature-description{
    color: lavender;
}
.feature-card:nth-child(1){
    background-color: rgb(158, 158, 248);
}
.feature-card:nth-child(2){
    background-color: rgb(170, 63, 63);
}
.feature-card:nth-child(3){
    background-color: rgb(142, 142, 226);
}
.feature-card:nth-child(4){
    background-color: rgb(212, 212, 117);
}
.feature-card:nth-child(5){
    background-color: rgb(219, 116, 79);
}
.feature-card:nth-child(6){
    background-color: rgb(85, 218, 85);
}

@media  screen and (max-width:768px) {
    .feature-grid{
        grid-template-columns: repeat(1,1fr);
        margin: 0 1rem;
    }
}
.testimonial-container{
    background-color: var(--background-color);
    padding: 2rem;
    margin: 0 auto;
    max-width: 1280px;
}
.testimonial-title{
    font-size: 1.875rem;
    font-weight: bold;
}
.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    grid-gap: 2rem;
}
.testimonial-content{
    display: flex;
    flex-direction: column;
    
    gap: 2rem;
}
.testimonial-card{
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(139, 126, 126);
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.2rem;
    gap: 1rem;
    transition: transform 0.3s ease,box-shadow 0.3s ease ;
}

.testimonial-card:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border:1px solid blue;
}
.testimonial-avatar img{
    height: 5rem;
    width: 5rem;
}
.testimonial-text{
   font-size: 0.875rem; 
   color:rgb(65, 54, 54) ;
}
.testimonial-name{
    color: var(--primary-color);
    font-size: 1rem;
}
.testimonial-desc{
    font-size: 0.875rem;
    color:rgb(63, 57, 57) ;
}
.newsletter-container{
    background-color:var(--background-color) ;
    
    max-width: 1200px;
    height: 40vh;
    margin: 0 auto;
}
.newsletter-content{
   display: flex; 
   flex-direction: row;
   background-color: rgb(220, 220, 195);
   height: 100%;
   border-radius: 8px;
   overflow: hidden;
}
.news-left{
    height: 100%;
    width: 50%;
    display: none;
    position: relative;
}
.news-left img{
    position: absolute;
    inset: 0;
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
border-radius: 8px;
}
.news-right{
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
    justify-content: center;
    align-items:flex-start;
    width: 98%;
}
@media screen and (min-width:640px){
    .news-left{
        display: block;
        width: 50%;
    }
    .news-right{
        width: 50%;
    }
    .newsletter-container{
        padding: 2rem;
    }
}
.news-title{
    font-size: 2rem;
    font-weight: bold;
    color: rgb(41, 41, 74);
}
.news-info{
    padding: 0 3rem;
}
.news-desc{
   text-align: left;
    color: rgb(141, 127, 127);
}
.news-form{
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 0.6rem;
}
.news-email{
    background-color: var(--background-color);
 /*   width: 100%;*/
    color: rgb(30, 30, 89);
    outline: none;
    border: 1px solid rgb(120, 100, 65);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
}
.news-email:focus{
  border-color:rgb(68, 68, 75) ;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.news-send-button{
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}
.news-send-button:hover{
    background-color:rgb(102, 102, 109)
}
.privacy-policy{
    font-size: 0.76rem;
    padding: 0 3rem;
    color: rgb(90, 85, 77);
}
.news-link{
    text-decoration: underline;
    color: rgb(99, 99, 227);
}
@media screen  and (min-width:640px){
    .news-title{
        font-size: 2.5rem;
    }
}
.footer-container{
    background-color: var(--background-color);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
}
.footer{
    max-width: 1200px;
    padding: 1rem 2.4rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}
.footer-top{
    width: 34%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    
}

.social-icon{
    width: 1.5rem;
    height: 1.5rem;
}
.logo-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}
.comp-logo{
   display: flex; 
   justify-content: flex-start;
   margin-bottom: -1.9rem;
}
.filler-text{
    font-size: 1rem;
    color: rgb(51, 56, 61);
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 5.67rem;
    width: 58%;
    padding: 2rem 0.4rem;
    padding-top: 1.9rem;
}
.footer-grid-heading{
    font-size: 1rem;
    font-weight: bold;
    color: rgb(62, 51, 51);
}
ul{
    list-style-type: none;
}
.footer-link{
    color: rgb(95, 85, 85);
    font-size: 1rem;
}
.footer-links-list{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-grid-heading{
    margin-bottom: 1.5rem;
}
.social{
    display: flex;
    gap: 0.8rem;
}
.footer-copyright{
    color: var(--gray);
    font-size: 0.75rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgb(91, 65, 27);
}

@media  screen and(max-width:1080px) {
    .footer{
        flex-direction: column;
        align-items: center;

    }
    .footer-top{
        padding-left: 10rem;
    }
    .footer-grid{
        align-self: center;
        justify-content: space-evenly;
    }

}
@media screen and (max-width:850px){
    .footer-top{
        padding-left: 5rem;
    }
    .footer-grid{
        grid-template-columns: repeat(2,1fr);
    }
}