                

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;


    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1900px;
}

.btn {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #45a049;
     transform: translateY(1px) translateX(1px) ;
}


.header {
    background: rgba(27, 78, 155, 1);
    color: white;
    padding: 20px 0;
}

.logo img {
    height: 50px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu li {
    margin-right: 50px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu li:hover {
    color: black;
    background-color: #333;
   
}


.banner {
    background: url('../baner1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.banner h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}


.features {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(90deg,rgba(255, 160, 0, 1) 0%, rgba(125, 127, 125, 1) 100%);
}

.features h2 {
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 50px;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    background: linear-gradient(90deg,rgba(255, 160, 0, 1) 0%, rgba(219, 151, 35, 1) 100%);
}

.feature:hover {
      transform: translateY(-5px) translateX(-25px) ;
 transition: transform 0.7s ease, box-shadow 0.9s ease;
       }


.about {
    padding: 60px 0;

/*background: #f9f9f9;*/
      background: linear-gradient(90deg,rgba(250, 250, 250, 1) 0%, rgba(158, 157, 157, 1) 100%);
}

.about-content {
    flex: 1;
    padding-right: 30px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}


.footer {
    background: rgba(27, 78, 155, 1);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-social img {
    height: 30px;
    margin: 0 10px;
}


@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    
    .menu ul {
        flex-direction: column;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        flex: 100%;
        padding-right: 0;
    }
}