
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
      
}
.header{
    background-color: #3A2D5F;                  
      /* background-color: #3A2D5F; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  10px 50px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.header span{
    color: red;
}
.header-h1{
    color: yellow;
}
.logo img{
    width: 100px;
}
.header-linkes a{
    color: #fff;
    text-decoration: none;
    padding: 0 25px;
    border-radius: 15px;
    transition: 0.7s ease;
    /* font-weight: 600; */
}
.header-linkes a:hover{
    background-color: red;
}
.header-linkes button{
    background-color: rgb(250, 250, 250);
    border-radius: 1px;
    border:0 ;
    padding: 5px 15px;
}
.header-linkes button:hover{
    background-color: rgb(241, 120, 140);
}
.container{
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;   
    gap: 15px;
}
.left-part{
    line-height: 2;
}
.left-part h1{
    color: red;
}
.left-part span{
    color:rgb(236, 0, 0);
}
.right-part h1{
    
}
.right-part img{
    width: 400px;
}
.right-part{
    line-height: 2;
    /* padding-top: 90px; */
    background-image: url(img/istockphoto-1373109665-612x612.jpg);
    background-position: center;
    background-size: cover;
    height: 70vh;
}
.container-content{
    padding: 25px 50px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}
.kind-of-crash{
    margin-top: 20px;
    background-color: lightgray;
}
.City{
    margin-top: 0;
    background-color: #60b0fa;
    padding: 40px;
    color:#fff;
}
.City button{
    margin: 5px;
}
.City  p button:hover{
    background-color: pink;
    border: none;
    transition: 0.7s ease;
}
.container-content h2{
    text-decoration: underline;
}
.marquee{
    background-color: yellow;
    color: red;
    border: 2px solid black;
}

.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.whatsapp-chat a img {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s; 
}
.whatsapp-chat a img:hover {
    transform: scale(1.1);
}

.footer{
    background-color: #3A2D5F;
    padding: 25px 50px;
}
.f-container{
    max-width: 1170px;

}
.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    padding-left: 50px;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 600;
    color:yellow;
}
.footer-col p{
    width: 300px;
    color: #fff;
    line-height: 2;
}
.footer-col ul{
    list-style-type: none;
    text-align: center;
}
.footer-col ul li a{
    color: #fff;
    text-decoration: none;
    padding: 14px 16px;
    display: inline-block;
}
.footer-col ul li a:hover{
    color: red;
}
.row{
    display: flex;
    justify-content: space-between;

}
.socail-links i{
    color: #fff;
}
 i :hover{
    transition: 0.7ms ease;
    color: red;
}
i{
    padding-left: 12px;
}


/*####################*/
/*# Responsive Code ##*/
/*####################*/
@media screen and (max-width: 1024px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-linkes {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .header-linkes a,
    .header-linkes button {
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    .container {
        flex-direction: column;
        align-items: center;
        padding: 25px 20px;
    }

    .right-part {
        width: 100%;
        height: auto;
        background-size: contain;
    }

    .right-part img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }

    .container-content {
        padding: 20px;
    }

    .footer-col {
        width: 100%;
        padding: 10px 0;
    }

    .footer {
        padding: 20px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .header-linkes {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .header-linkes a,
    .header-linkes button {
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    .container {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .right-part {
        background-size: contain;
        height: auto;
    }

    .right-part img {
        width: 100%;
    }

    .footer {
        padding: 15px 10px;
    }

    .footer-col {
        width: 100%;
        padding: 10px 0;
    }
    .footer-col h4{
        padding: 0;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
}