/* CSS Variables */
:root {
    --primary-color: #00a699;
    --primary-dark: #008a7a;
    --primary-darker: #006b5f;
    --secondary-color: #059669;
    --accent-color: #34d399;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #64748b;
    --white: #ffffff;
    --light-bg: #bcfae0;
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Staggered animations */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Main content wrapper */
.main-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}


.container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--primary-dark);
}


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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 0;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    background: url("static/images/PHOTO-2024-12-15-13-43-38.jpg") center center/cover no-repeat ;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero-background {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background: url("static/images/PHOTO-2024-12-15-13-43-38.jpg") center center/cover no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    will-change: transform;
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-content {
    width: 100%;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: rgb(135, 231, 207);
    text-shadow: rgb(24, 43, 39) 6px 6px 6px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgb(135, 231, 207);
    text-shadow: rgb(24, 43, 39) 6px 6px 6px;
    animation: fadeInUp 1s ease-out 0.6s both;
}




.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 166, 153, 0.4);
}


/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #00a699 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--primary-darker);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}


.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}


.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(3, 105, 161, 0.2);
}






/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-link {
    color: #00a699;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: var(--primary-darker);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}


/* Clients Showcase Section */
.clients-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #00a699 100%);
}

.clients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.clients-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.clients-text p {
    font-size: 1.2rem;
    color: var(--primary-darker);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.clients-link {
    color: #d1fae5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.clients-link:hover {
    color: white;
}

.clients-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.clients-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-list {
    margin: 2rem 0;
}

.client-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.client-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.client-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00a699;
    margin-bottom: 0.5rem;
}

.client-item p {
    font-size: 0.9rem;
    color: #017269;
    margin: 0;
    line-height: 1.4;
}




/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-cta {
    text-align: center;
}

.gallery-link {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.gallery-link:hover {
    color: #047857;
}




/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #00a699 100%);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.testimonial-track {
    position: relative;
    width: 100%;
    min-height: 500px;
    flex: 1;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.testimonial-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-slide:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-text {
    padding: 2rem;
}

.testimonial-text blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-darker);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 166, 153, 0.2);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-text cite {
    font-size: 1rem;
    color: #3b6461;
    font-weight: 500;
    display: block;
    text-align: right;
    margin-top: 1rem;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    clear: both;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a699;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-link {
    color: #00a699;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin-top: 1rem;
}

.cta-link:hover {
    color: #047857;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a699, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a699;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #097269;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-info p {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-contact p {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #34d399;
}

.footer-bottom {
    border-top: 1px solid #00a699;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 10px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger span {
        background: var(--white);
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }
    
    /* Hero Section */
    .hero {
        background-attachment: scroll;
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Services Section */
    .services {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 300px;
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Clients Section */
    .clients-showcase {
        padding: 60px 0;
    }
    
    .clients-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .clients-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .clients-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .clients-image {
        height: 300px;
        order: 1;
    }
    
    .clients-text {
        order: 2;
    }
    
    .clients-list {
        margin: 1.5rem 0;
    }
    
    .client-item {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }
    
    .client-item h4 {
        font-size: 1rem;
    }
    
    .client-item p {
        font-size: 0.85rem;
    }
    
    /* Gallery Section */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    /* Testimonial Section */
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        margin-bottom: 2rem;
    }
    
    .testimonial-image {
        height: 250px;
        order: 1;
    }
    
    .testimonial-text {
        padding: 1.5rem;
        order: 2;
        margin-bottom: 1rem;
    }
    
    .testimonial-text blockquote {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text blockquote::before {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }
    
    .testimonial-text cite {
        font-size: 0.9rem;
    }
    
    /* Testimonial Dots - Mobile positioning */
    .testimonial-dots {
        margin-top: 1rem;
        position: relative;
        z-index: 10;
        order: 3;
        flex-shrink: 0;
    }
    
    .testimonial-carousel {
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-track {
        order: 1;
        flex: 1;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        margin-top: 1rem;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    /* Services */
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    /* About */
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    /* Clients */
    .clients-text h2 {
        font-size: 1.8rem;
    }
    
    .clients-text p {
        font-size: 0.9rem;
    }
    
    .clients-image {
        height: 250px;
    }
    
    /* Gallery */
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* Testimonials */
    .testimonial-text blockquote {
        font-size: 1rem;
    }
    
    .testimonial-text blockquote::before {
        font-size: 2.5rem;
        top: -10px;
        left: -10px;
    }
    
    .testimonial-content {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        margin-bottom: 0.5rem;
    }
    
    .testimonial-dots {
        margin-top: 8rem;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .services-header h2,
    .about-text h2,
    .clients-text h2,
    .gallery-header h2,
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0fdf4;
}

::-webkit-scrollbar-thumb {
    background: #34d399;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}
