
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary-text-color:#183b56;
    --secondary-text-color:#577592;
    --accent-color:#2294ed;
    --accent-color-dark:#1d69a3;
    --padding-inline-section:20px;
}

body{
    font-family: 'Popins',sans-serif;
    color: var(--primary-text-color);
}

h1{
    font-size: 3rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}

p{
    font-family: 'Roboto',sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}
a{
    text-decoration: none;
    display: inline-block;
}
.small-bold-text{
    font-size: 1rem;
    font-weight: 700;
}
.container{
    max-width: 1680px;
    margin-inline: auto;
    padding-inline:var(--padding-inline-section) ;  
    overflow: hidden; 
}
.flex{
    display: flex;
    align-items: center;
}
ul{
    list-style: none;
}



.primary-button{
    background-color: var(--accent-color);
    border-radius: 6px;
    font-weight: 700;
    color: white !important;
    padding: 12px 24px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.2s ease-out;
}
.primary-button:hover{
    background-color: var(--accent-color-dark);
}


/* nav-bar and logo */
.main-nav{
justify-content: space-between;
margin-top: 20px;
position: relative;
}

.company-logo img{
    width: 200px;
}

.nav-links{
flex-basis: 730px;
}

.nav-links ul{
    justify-content: end;
    gap: 40px;
}

.hover-links{
    color: var(--primary-text-color);
}

.hover-links:hover{
    color: var(--accent-color);
    transition: 0.2s ease-out;
}
.nav-bar-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* Adjust background color as needed */

}
.nav-toggle{
    display: none;
}

/* header section */

/* .header{
   padding: 50px var(--padding-inline-section) 0;
} */

.header-section{
    justify-content: center;
    gap: 50px;

}

.header-left{
    max-width: 40vw;
}

.header-left h1{
    margin-top: 100px;
}


.header-right img{
    width: 800px;
    margin-top: 200px;

}
.get-quota-btn{
    margin-top: 20px;
}



.header h1{
            font-size: 26px;
            font-weight: bold;
            color: #333;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            padding: 20px 0;
            background-color: #f4f4f4;
            border-bottom: 2px solid #ccc;
            text-align: justify;
}
header h1:hover{
    animation: glow 1s infinite alternate;
}
@keyframes glow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    }
}



/* About Section */

.about-section{
    justify-content: center;
     gap: 50px;
}
.about-left p{
    text-align: justify;
    margin-top: 30px;
}
.about-left h2{
    margin-top: 30px;
}

.about-left h3{
    margin-top: 30px;
}


.about-section{
    justify-content: center;
    gap: 50px;

}

.about-left{
    max-width: 40vw;
}

.about-left h1{
    margin-top: 100px;
}
.about-left h2{
    margin-top: 200px;
  

}

.about-right img{
    width: 800px;
    margin-top: 200px;

}





/* Product Section */

.product-section{
    background-color: #ebf2fa;
}

.product-section h2{
    margin-top: 50px;
    padding-top: 50px;
 
}

.product-column{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.product-container{
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;

}
.product-column h4{
    background-color: yellow;
    margin-top: 50px;
}
.product-column a{
    color: black;
    background-color: white;
}

/* Conatct  Section */

.conatct-container{
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;


}
.contact{
    background-color: black;
    color: white;
   
}
.contact p{
    color: white;
    padding-bottom: 10px;
}
.contact h2{
    padding-top: 50px;
}
.conatct-column{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.onlycontact{
    margin-top: 100px;
    text-align: center;
    align-items: flex-start;
    justify-content: space-between;

}
.onlycontact h2{
    margin-top: 200px;
}


/* feature Section */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.why-choose-us {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
}

.feature h3 {
    font-size: 1.5em;
    margin: 15px 0;
}

.feature p {
    font-size: 1em;
    color: #555;
}

/* Mobile responsive */


