:root {
    --primary-color: #e7e008;
    --secondary-color: #c5c804;
    --accent-color: #fef08a;
    --text-color: #374151;
    --light-text: #6b7280;
    --background-color: #fff;
    --card-background: #f9fafb;
    --border-color: #d1d5db;
    --gray-dark: #4b5563;
    --gray-medium: #9ca3af;
    --gray-light: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, .nav-links {
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    background: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.gallery-item {
    display: none;
}

.gallery-item.visible {
    display: block;
}


.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-link {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: var(--secondary-color);
}

.logo-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px;
}

section {
    padding: 4rem 2rem;
}

.hero {
    background: linear-gradient(135deg, rgb(155, 165, 13, 0.5), rgb(125, 121, 8, 0.6)), url('assets/main.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 1rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        padding: 0 0.5rem;
    }

    .hero p {
        font-size: clamp(1rem, 4vw, 1.4rem);
        padding: 0 0.5rem;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: 700;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: 700;
    padding: 0 1rem;
    -webkit-text-stroke: 0.1px black;
    text-stroke: 0.1px black;
}

.hero p {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
    padding: 0 1rem;
}

.cta-button, #contact-form button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(229, 245, 10, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button:hover, #contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 245, 10, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(229, 245, 10, 1) 100%);
}

.services {
    background-color: var(--gray-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.service-card {
    padding: 2rem;
    background: var(--card-background);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(229, 245, 10, 0.15);
    border-color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    -webkit-text-stroke: 0.1px black;
    text-stroke: 0.1px black;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.about {
    background-color: var(--gray-light);
}

.about p {
    max-width: 800px;
    margin: 1rem auto;
    text-align: justify;
}

.testimonials {
    background-color: var(--gray-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 245, 10, 0.1);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 1.25rem;
        min-height: 150px;
    }
}

.gallery {
    background-color: var(--gray-light);
    padding: 4rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    margin-top: auto;
}

.contact {
    background-color: var(--gray-light);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.contact-info p {
    /* text-align: justify; */
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 0 0;
}

input, textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background: #f8f9fa;
}

input:hover, textarea:hover {
    background: white;
    border-color: var(--secondary-color);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    -webkit-text-stroke: 0.1px black;
    text-stroke: 0.1px black;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-info {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 0;
    border: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    margin: 2rem 0;
    text-align: left;
}

.contact-details p {
    margin: 1rem 0;
}

.contact-details i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 300px;
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    font-size: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.scroll-top-btn.visible {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    cursor: pointer;
}

.modal.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.message-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease-in;
}

.message-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.message-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message .message-content i {
    color: #10b981;
}

.error-message .message-content i {
    color: #ef4444;
}

.message-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.message-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.message-content a:hover {
    text-decoration: underline;
}

.message-content button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.message-content button:hover {
    background: var(--secondary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

footer {
    background: var(--gray-dark);
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

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

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links li a {
        color: var(--primary-color);
        font-weight: 500;
    }

    .service-grid, .gallery-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

}