/* RESET */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
}

/* NAVIGATION */
.nav-section ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 20px;
    background: linear-gradient(to right,#1e3c72,#2a5298);
    color: white;
}
.nav-section li a,
.nav-section li button {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    transition: 0.3s transform, 0.3s background;
}
.nav-section li a:hover,
.nav-section li button:hover {
    background: chartreuse;
    color: black;
    transform: scale(1.1) rotate(-2deg);
    cursor: pointer;
}

/* ABOUT SECTION */
.about-section {
    background-image: url("WhatsApp Image 2026-03-19 at 18.13.17.jpeg");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}
.about-text {
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: center;
    font-size: 18px;
}
.about-section button {
    margin-top: 20px;
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.about-section button:hover {
    background-color: chartreuse;
    color: black;
    transform: scale(1.1) rotate(-2deg);
}

/* PRODUCT SECTION */
.product-section {
    background-color: #2c3e50;
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.product-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
}
.product {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.product li {
    background-color: #34495e;
    padding: 15px 25px;
    width: 250px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}
.product li:hover {
    background-color: chartreuse;
    color: black;
    transform: scale(1.1) rotate(-2deg);
}
.product-image-display {
    margin-top: 20px;
    text-align: center;
}
.product-image-display img {
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(to right,#1e3c72,#2a5298);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.contact-section span {
    color: chartreuse;
}
.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: all 0.3s ease;
}
.contact-list li:hover {
    background: chartreuse;
    color: black;
    transform: scale(1.05) rotate(-1deg);
}
.contact-list i { margin-right: 10px; color: chartreuse; }

/* PROFILE SECTION */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f5f5f5;
}
.profile-section .text {
    max-width: 500px;
    text-align: center;
}
.profile-section img {
    width: 300px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.profile-section img:hover { transform: scale(1.05) rotate(-2deg); }

/* PRODUCT FORM */
.product-form {
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
}
.product-form input,
.product-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}
.product-form button {
    width: 100%;
    padding: 10px;
    background-color: chartreuse;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.product-form button:hover { background-color: #32cd32; transform: scale(1.05); }

/* COPYRIGHT */
.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
    background: linear-gradient(to right,#1e3c72,#2a5298);
    padding: 30px;
    text-align: center;
}

/* MODAL STYLING */
.modal {
    display:none;
    position:fixed;
    z-index:1000;
    left:0; top:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    animation: fadeIn 0.5s ease;
}
.modal-content {
    background:white;
    padding:20px;
    border-radius:10px;
    width:300px;
    position:relative;
    transform: scale(0.5);
    animation: scaleUp 0.5s forwards;
}
.modal-content input {
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border-radius:6px;
    border:1px solid #ccc;
}
.modal-content button {
    width:100%;
    padding:10px;
    background-color:chartreuse;
    border:none;
    border-radius:6px;
    font-weight:bold;
    cursor:pointer;
    transition: all 0.3s ease;
}
.modal-content button:hover { background-color:#32cd32; transform: scale(1.05); }
.close {
    position:absolute;
    top:10px;
    right:15px;
    font-size:24px;
    cursor:pointer;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity:0; }
    to { opacity:1; }
}
@keyframes scaleUp {
    from { transform: scale(0.5); }
    to { transform: scale(1); }
}

/* MEDIA QUERIES */
@media(max-width: 768px){
    .product-section, .profile-section, .contact-section, .about-section {
        padding: 40px 10px;
        text-align: center;
    }
    .product { flex-direction: column; align-items:center; }
    .product li { width: 90%; }
    .contact-list li { width: 90%; }
    .profile-section img { width: 80%; }
}
@media(max-width: 480px){
    .nav-section ul { flex-direction: column; gap: 5px; }
    .nav-section li input { width: 90%; }
    .product-form { width: 90%; padding: 20px; }
}