/* General Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & Basic Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure footer doesn't overlap content */
    animation: fadeIn 1s ease-in;
}

/* Navbar Styling */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInFromTop 0.5s ease-in-out;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}

.navbar-logo:hover {
    color: #ff6f61;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}

.navbar-links li a:hover {
    color: #ff6f61;
}

.hamburger-menu {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Model Gallery Section */
.model-gallery {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.model-card {
    display: inline-block;
    width: 30%;
    margin: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.model-card:hover {
    transform: scale(1.05);
}

.model-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #f4f4f4;
    transition: transform 0.3s ease-in-out;
}

.model-card:hover .model-img {
    transform: scale(1.1);
}

.model-card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.model-card .description {
    font-size: 1rem;
    padding: 10px;
    color: #555;
}

.rating {
    margin: 10px 0;
    color: #ff6f61;
}

/* FAQ Section */
.faq {
    max-width: 1200px;
    margin: 50px auto;
}

.faq-item {
    background-color: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: slideInFromBottom 0.5s ease-in-out;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
}

/* Floating Buttons (WhatsApp and Call) */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.floating-buttons a {
    display: block;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: white;
    padding: 15px;
    border-radius: 50%;
    background-color: #25d366; /* WhatsApp Color */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-buttons .call-btn {
    background-color: #4caf50; /* Call button color */
}

.floating-buttons a:hover {
    transform: scale(1.1);
    background-color: #128c7e; /* WhatsApp hover color */
}

.floating-buttons .call-btn:hover {
    background-color: #388e3c; /* Call button hover color */
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ff6f61;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        width: 200px;
        padding: 10px 0;
    }

    .navbar-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
    }

    .model-card {
        width: 100%;
        margin: 20px 0;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .footer-links {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}
