@import url('https://fonts.google.com/specimen/Roboto');
:root{
    --primary-color: #6366F1;
    --accent-color: #3f83f8;
    --text-color: #333333;
    --link-color: #2563eb;
    --background-color: #ffffff;
    --light-gray: #f0f0f0;
    --gray: #808080;
    --dark-gray: #555;


}
*{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}  
body{
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0.1rem; 
    
}


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

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

}
.logo-icon{
    border: 2px solid black;
    border-radius: 0.375rem;
    height: 3.87rem;
    width: 3.938rem;
    
}
.logo-icon:hover{
    transform:scale(1.1);
    
}
.logo-text {
    font-size: 0rem; 
    font-weight: bolder; 
    font-style: italic; 
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    color: black;
}

.logo-text:hover {
    transform: scale(1.2); 
    color: #966F33; /* Optional: Change color on hover */
}
.nav{
    display: none;
    gap: 1.5rem;
    
} 
@media screen and (min-width:768px){
    .nav{
        display: flex;
    }
}
.nav-link{
    color: #718096;
    font-size: 1.125rem;
    font-weight: 600;
    transform: color 0.1s;
    transition: color 0.1s ease-in-out 0.2s;

}
.nav-link:hover{
    color: var(--link-color);
    transform: translateX(-5%) scale(1);
}
.contact-button{
    display: none ;
    background-color: var(--button-color);
    border: none;
    border-radius:  .375rem;
    background-color: var(--primary-color);
    transform: all 0.1s;
    padding: 0.75rem  1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    font-weight: bold;
    color: blanchedalmond;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
@media screen and (min-width:768px){
    .contact-button{
        display: block;
    }
}
.contact-button:hover{
    background-color: lightgreen;
    transform: scale(1.1);
}
.menu-button{
    display: none;
    border: none;
    border-radius: 0.375rem;
    transform: all 0.1s;
    font-size: 1rem;
    background-color: var(--background-color);
    font-weight: 600;
    padding: 0.5rem 1.1rem;
}
@media screen and (max-width:768px){
    .menu-button{
        display: block; 
    }
}

.menu-icon{
    height:1.5rem;
    width:1.5rem;
}
/* .header{
    /* border: 2px solid black;
    border-radius: 2rem;
    border-top-right-radius: 3rem;
    border-top-left-radius: 3rem;
    height:98px; */
/*border chaiye toh on kr lo*/
   */
.header:hover{
    border-color: red;
    background-color: whitesmoke;
}
.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-lable{
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);

}
.section-title{
    font-size: 2.25rem;
    padding: 1rem;
    color: var(--text-color);

}
.section-description{
    color: var(--gray);
    font-size: 1.13rem;
}
.button-group{
    display: flex;
    gap: 2rem;
    padding: 1rem;
    margin-top: 1rem; 
    align-items: center;
    justify-content: center;
}
.start-button
,.tour-button
{
    display: none ;
    background-color: var(--button-color);
    border: none;
    border-radius:  .375rem;
    background-color: var(--primary-color);
    transform: all 0.1s;
    padding: 0.75rem  1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    font-weight: bold;
    color: blanchedalmond;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    
     
}
@media screen and (min-width:768px){
    .start-button,.tour-button{
        display: block;
    }
}

.tour-button:hover{
    background-color: lightgreen;
    transform: scale(1.1)
    
}
.start-button:hover{
    background-color: lightgreen;
    transform: scale(1.1)
}
.content-right{
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-container{
    border-radius: 1.225rem;
    overflow: hidden;
    box-shadow:0px 4px 8px rgba(0,0,0,0.1);
    height: 75vh;
    width: 50vw;
}
.section-image{
    width: 100%;
    height: 100%;
}
@media screen and (min-width:768px){
    .main-section{
        flex-direction: row;
    }
    .content-left{
        max-width: 200%;
        text-align: left;

    }
    .content-right{
        max-width: 40%;
        transform: scale(0.9);
        transition: transform 0.3s ease-in-out 0.3s;
        padding-top: -1rem;
    }
    .content-right:hover{
        transform: scale(1.0);
    }
    .section-title{
        padding-left: 0;
        font-size: 3.7rem;
    }
    .button-group{ 
        justify-content: start;
        padding-left: 0;

    }
    .section-label {
        font-size: 1rem;
       
    }
    
    .section-description:hover {
        color: black;
        transform: translateX(3%) scale(1);
    }
    .section-title:hover{
        color: #966F33;
        transform: translateX(2%) scale(1);
    }
    .section-label:hover{
        color: #966F33;
        transform: translateX(2%) scale(1);
    }
    .section-description{
        font-size: 1.1rem;
        color: var(--gray);
        width: 85%;
    }
}      
.company-container {
    display: flex;
    flex-direction: column; /* Stack the title and logos */
    align-items: center; /* Center items horizontally */
    text-align: center;
    gap: 2rem; /* Space between the title and grid */
    padding: 2rem;
    background-color: #f9f9f9; /*Optional: light background for better visibility;*/
    border-radius: 0.625rem; /* Rounded edges */
    max-width: 800px; /* Restrict the container width */
    margin: 0 auto; /* Center the container on the page */
    animation: slideFromLeft 1s ease forwards;
}

.trusted-line {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 1.5rem; 
    color: #333;
    margin-top: 0%;
}

.company-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem;
    background-color: #f9f9f9;
    border: #f9f9f9;
    border-radius: 0.625rem;
    justify-content: center; /* Center grid items horizontally */
    align-items: center; /* Align grid items vertically */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    
}

.company-logo {
    display: flex;
    flex-direction: column; 
    align-items: center; /* Center align items horizontally */
    gap: 0.5rem; 
    font-size: 1rem;
    font-weight: 500;
    color: #666; 
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    
}

.svg-img {
    height: 3rem; 
    width: auto; /* Maintain aspect ratio */
}

.logo-text {
    font-size: 1.4rem; /* Adjust text size */
    font-weight: bolder;
    color: #333; /* Darker text color for better visibility */
}
.trusted-line:hover{
    color: #966F33;
    transform: scale(1.1);
}
.company-logo:hover{
    transform: scale(1.1);
    }
@media screen and (min-width:640px){
    .company-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}
.feature-container{
    background-color: var(--light-gray);
    padding: 2.5rem 0;
    text-align: center;
}
.feature-content{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.main-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.main-title{
    font-size: 2.2rem;
    font-weight: bold;
    
}
.main-description{
    color: var(--gray);
    font-size: 1rem;
}
.feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2rem;
    margin-top: 1.3rem;
}

.feature-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #6d7890;
    padding: 1.6rem;
    border-radius: 1rem;
    gap: 1rem;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    
}
.feature-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.icon-container{
    background-color: var(--background-color);
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: flex;  
    justify-content: center;
    align-items: center;
}

.feature-svg{
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title{
    color: black ;
    font-weight: bold;
    font-size: 1.45rem;
}

.feature-description{
    color: white;
}
.feature-card:nth-child(1){
    background-color: #4a90e2;
}
.feature-card:nth-child(2){
    background-color: #ff6289;
}
.feature-card:nth-child(3){
    background-color: #fcbf58; 
}
.feature-card:nth-child(4){
    background-color: #44bfc3; 
}
.feature-card:nth-child(5){
    background-color: #77b05d; 
}
.feature-card:nth-child(6){
    background-color: #7d78b1; 
}
@media screen and (max-width:768px){
    .feature-grid{
        grid-template-columns: repeat(1,1fr);
    }
}

  

.feature-grid :hover{
    transform: scale(1.05);
}


.testimonial-container {
    width: 100%; /* Full width */
    max-width: 800px; /* Set max width for better layout */
    padding: 2rem 1rem; /* Padding */
    box-sizing: border-box;
        
    /* Centering */
    margin: 0 auto; /* Centers horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 1vh; /* Centers vertically */
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    
    gap: 2rem;
}

.testimonial-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    grid-gap: 2rem;
    
}


.testimonial-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(171, 163, 163);
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(73, 71, 71, 0.1);
    padding: .82rem; 
    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;
    border-radius: 50%;
    object-fit: cover;
}

 
.testimonial-text {
    color: #555;
    font-size: .8rem;
    text-align: justify;
}

.testimonial-details {
    text-align: left;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: bold;
    color: blue;
}

.testimonial-desc {
    font-size: 0.8rem;
    color: #777;
}
.newsletter-container{
    
    max-width: 1280px;
    height: 40vh;
    margin: 0 auto;
}
.newsletter-content{
    display: flex;
    flex-direction: row;
    background-color: var(--light-gray);
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.news-left{
    height: 100%;
    width: 50%;
    display: none;
    position: relative;
}
.news-left img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
}
.news-right{
    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-info{
    padding: 0 3rem;
}
.news-title{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align:left;
}
.news-desc{
    text-align: left;
    color: #777;
}
.news-form{
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 0.6rem;
}
.news-email:focus{
    border-color: #2563eb;
    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: var(--link-color);
}
.privacy-policy{
    font-size: 0.76rem;
    padding: 0 3rem;
    color: #777;
}
.news-link{
    text-decoration: underline;
    color:#2563eb;
}
@media screen and (min-width:640px){
    .news-title{
        font-size: 2.5rem;
    }
}

.footer-container{

    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    max-width: 1280px;
}

.footer{
    max-width: 1280px;
    padding:1.2rem 2.4rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding-right: 2rem;
}

.footer-top{
    width: 34%;
    display: flex;
    flex-direction: column;
    gap: 1.65rem;
}

.logo-svg{
    width: 2.5rem;
    height: 3.2rem;
    background-color: lightgray;
}

.comp-logo{
    display: flex;
    justify-content: flex-start;
    margin-bottom: -1.9rem;
}
.logo-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.28rem;
    font-weight: bold;
    color: black;
}
.social-icon{
    width: 1.5rem;
    height: 1.5rem;
}
.filler-text{
    font-size: 1rem;
    color: #777;
}
.social{
    display: flex;
    gap: 0.8rem;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 58%;
    grid-gap: 5.67rem;
    padding-top: 2rem;
}

.footer-grid-heading{
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--text-color);
}

ul{
    list-style-type: none;
}
.footer-link{
    color: #777;
    font-size: 0.875rem;
}
.footer-links-list{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.footer-grid-heading{
    margin-bottom: 1.65rem;
}

.footer-copyright{
    color: var(--gray);
    font-size: 0.75rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid #E5E7EB;
}

@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: 1rem;
    }
    .footer-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
.line{
    border-top: 1px solid rgba(170,170,170,0.3);
}
.copyright{  
   margin-top: .8vh;
   margin-bottom: .8vh;
   font-size: 0.8rem;
   font-weight: 200;
   color: #aaa;
}
.section-label,
.section-title,
.section-description {
    transition: color 0.3s ease-in-out 0.2s, transform 0.3s ease-in-out 0.2s;
}

.section-label:hover,
.section-title:hover,
.section-description:hover {
    color: var(--highlight-color); /* Change to your desired color */
    transform: scale(1.05); /* Slight scaling effect */
}