*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #f2f2f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.nav-section{
     background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    
    
     

}
.nav-section ul{
    text-align: center;
    display: flex;
    padding: 40px;
    list-style: none;
    gap: 55px;
       
}
.nav-section li a:hover {
    background-color:#2c3e50;
    color: black;
    transform: scale(1.05);
}
.nav-section li a{
    text-decoration: none;
    color: white;

    font-size: 18px;
       transition: 0.3s;
     padding: 10px;
     border-radius: 6px;
      font-size: 18px;
}
.nav-section input{
    padding: 6px;
    border: none;
    border-radius: 5px;
}
.nav-section button{
    background-color: chartreuse;
    color: white;
    padding: 6px;
    border: none;
    border-radius: 6px;
    width: 200px;
        box-shadow: 20px 30px 50px;
           font-size: 18px;
}
.about-section {
    background-image: url("WhatsApp Image 2026-03-19 at 18.13.17.jpeg");
    background-size: cover;
    background-position: center;
    padding: 100px;
    color: white;
}


.about-text {
    width: 50%;
    float: right;
    text-align: right;
}


.buttons {
    clear: both;
    margin-top: 20px;
}


.about-section button {
    background-color: #2c3e50;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 6px;
    width: 200px;
    margin-right: 10px;
    cursor: pointer;
     transition: 0.3s;
        font-size: 18px;
}

.about-section button:hover {
    background-color: chartreuse;
    color: black;
    transform: scale(1.05);
}
.product-section {
    background-color: #2c3e50; /* dark modern background */
    color: white;
    padding: 60px;
    text-align: center;
}

/* Style the list */
.product {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

/* Each item */
.product li {
    background-color: #34495e;
    margin: 10px auto;
    padding: 15px;
    width: 250px;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
}

/* Hover effect */
.product li:hover {
    background-color: chartreuse;
    color: black;
    transform: scale(1.05);
}

.contact-section {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    padding: 60px;
    text-align: center;
}

/* Heading styling */
.contact-section h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-section span {
    color: chartreuse;
}

/* List styling */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    background: rgba(255, 255, 255, 0.1);
    margin: 10px auto;
    padding: 12px;
    width: 300px;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    transition: 0.3s;
}

/* Icons */
.contact-list i {
    margin-right: 10px;
    color: chartreuse;
}

/* Hover effect */
.contact-list li:hover {
    background: chartreuse;
    color: black;
    transform: scale(1.05);
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    background-color: #f5f5f5;
}


.profile-section .text {
    max-width: 500px;
}

.profile-section h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.profile-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}


.profile-section img {
    width: 300px;
    border-radius: 12px;
    object-fit: cover;
}

.footer-socials i:hover {
    color: chartreuse;
}

/* Bottom text */
.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
       background: linear-gradient(to right, #1e3c72, #2a5298);
       padding: 30px;
}

.product-form {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.product-form h2 {
    margin-bottom: 20px;
}

/* Inputs */
.product-form input,
.product-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* Button */
.product-form button {
    width: 100%;
    padding: 10px;
    background-color: chartreuse;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.product-form button:hover {
    background-color: #32cd32;
}

@media(min-width: 600px) {
            .nav-section ul { flex-direction: row; justify-content:center; gap:30px; }
            .about-section { text-align:left; }
            .profile-section { flex-direction:row; justify-content:space-between; text-align:left; }
            .product-section ul { flex-direction:row; justify-content:center; }
        }

        @media(min-width: 1024px) {
            .about-section { padding:80px; }
            .product-section { padding:80px; }
            .contact-section { padding:80px; }
        }