
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

    
}
body{
    background-color: rgb(23, 23, 23);
    
}

.container{  
    height: 100vh;
    display: flex;
    width: 96%;
    background-color: rgb(46, 46, 46);
    margin: auto;
    height: 70vh;
    border-radius: 0px 0px 30px 30px;
    
}

.texts{
    margin-top: 150px;
    background: none;
    margin-left: 40px;
    color: white;
    gap: 10px;
    
    
}
.texts h1{
    font-size:60px;
    margin-bottom: 20px;
}
.texts h1 .highlight {
    color: rgb(148, 5, 161);
}
button{
    
    padding: 10px 20px;
    font-size: 20px;
    background-color: rgb(148, 5, 161);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}
button:hover{
    background-color: rgb(104, 3, 113);
    transition: all 0.3s ease;
}
.texts button a{
    text-decoration: none;
    color: white;
}
.pic{
    margin-left: 300px;
    margin-top: -100px;
   
}

.about{
    margin-top: 20px;
    margin-left: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;


}
.one{
    background-color: rgb(70, 70, 70);
    
    border-radius: 10px;
    width: 350px;
    height: 500px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;

}
.one:hover{
    transform: translateY(-10px);
}
.one img{
    width: 350px;
    height: 350px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 15px;
}
.one .text{
    padding: 0px 10px;
    text-align: left;
}
.one h2{
    margin-bottom: 10px;
    color: rgb(148, 5, 161);
    font-size: 30px;

}
.one p{
    font-size: 13px;
    line-height: 1.5;
}

.two{
    background-color: rgb(70, 70, 70);
    
    border-radius: 10px;
    width: 450px;
    height: 500px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;

}
.two:hover{
    transform: translateY(-10px);
}
.two img{
    width: 450px;
    height: 350px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 15px;
}
.two .text{
    padding: 0px 10px;
    text-align: left;
}
.two h2{
    margin-bottom: 10px;
    color: rgb(148, 5, 161);
    font-size: 30px;

}
.two p{
    font-size: 13px;
    line-height: 1.5;
}
.three{
    background-color: rgb(70, 70, 70);
    
    border-radius: 10px;
    width: 350px;
    height: 500px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;

}
.three:hover{
    transform: translateY(-10px);
}
.three img{
    width: 350px;
    height: 350px;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 15px;
}
.three .text{
    padding: 0px 10px;
    text-align: left;
}
.three h2{
    margin-bottom: 10px;
    color: rgb(148, 5, 161);
    font-size: 30px;

}
.three p{
    font-size: 13px;
    line-height: 1.5;
}
.contact {
    padding: 60px 20px;
    background-color: rgb(23, 23, 23);
    text-align: center;
}

.contact h2 {
    color: rgb(104, 3, 113);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgb(104, 3, 113);
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
}

.contact textarea {
    height: 150px;
    resize: vertical;

}

.contact button {
    background-color: rgb(148, 5, 161);
    color: rgb(23, 23, 23);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: rgb(148, 5, 161);
}

.footer {
    background-color: rgb(46, 46, 46);
    color: #fff;
    width: 100%;
    padding: 60px 0 20px;
    margin: auto;
}

.footer-content {
    max-width: 1200px;
  
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: rgb(148, 5, 161);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(148, 5, 161);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: rgb(148, 5, 161);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid rgb(148, 5, 161);
    border-radius: 4px;
    flex: 1;
    background-color: transparent;
    color: white;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: rgb(148, 5, 161);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: rgb(104, 3, 113);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgb(70, 70, 70);
}

@media screen and (max-width: 1200px) {
    .container {
        width: 98%;
        height: 300px;
        padding: 40px 20px;
        flex-direction: column;
    }
    .container .pic {
       
        display: none;
    }
    .about .one, .about .two, .about .three {
       width: 400px;

    }
    .one img, .two img, .three img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .about {
        margin: 20px auto;
        justify-content: center;
    }

    .texts {
        margin: 20px;
        text-align: center;
    }

    .pic {
        margin: 20px auto;
    }

    .pic img {
        max-width: 100%;
        height: auto;
    }

    .about {
        margin: 20px auto;
        justify-content: center;
    }
    .contact form {
        width: 100%;
    }   
}

@media screen and (max-width: 768px) {
    .texts h1 {
        font-size: 40px;
    }

    .one, .two, .three {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .one img, .two img, .three img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .contact form {
        width: 90%;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .container{
        height: 400px;
    }
    .container .pic{
        display: none;
    }
    .texts{
        margin-top: 80px;
        margin-left: 20px;
    }
    .texts h1 {
        font-size: 32px;
    }

    .texts p {
        font-size: 16px;
    }

    button {
        padding: 8px 16px;
        font-size: 16px;
    }

    .one h2, .two h2, .three h2 {
        font-size: 24px;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .social-icons {
        justify-content: center;
    }

    .about .one, .about .two, .about .three {
        width: 98%;
        height: auto;
        margin: 0 auto;
        padding: 0px 0px 40px 0px;
    }
}

@media screen and (min-width: 1201px) {
    .container {
        max-width: 1400px;
    }

    .about {
        max-width: 1400px;
        margin: 20px auto;
        justify-content: center;
    }
}

