* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #777777;
    line-height: 1.6;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    padding: 12px 0;
    overflow: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 24px;
}

.logo img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #16a085;
    white-space: nowrap;
    background-color: white;
    padding: 4px 8px;
    border-radius: 4px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: #777777;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #8BC34A;
    margin-bottom: 6px;
}

.quote-btn {
    background-color: #8BC34A;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 2s ease;
    border: 1px solid black;
    border-radius: 5px;
}

.quote-btn:hover {
    color: #8BC34A;
    background-color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #777777;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 110vh;
    margin-top: 1px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.carousel-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.carousel-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: white;
}

.carousel-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: #8BC34A;
    color: white;
}

.btn-primary:hover {
    background: white;
    color: #8BC34A;
    transform: translateY(-2px);
    border: 2px solid #8BC34A;
    border-radius: 6px;
    transition: 0.2s ease-in;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-divider {
    width: 96px;
    height: 2px;
    background: #8BC34A;
    border: none;
    margin: 32px auto;
}

/* About Section */
.about-section {
    text-align: center;
}

.about-section h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #333;
}

.about-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.about-section h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: #333;
    z-index: 10;
}

/* .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
} */

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    position: relative;
    z-index: 999 !important;
}

.partner-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    min-height: 140px;
}

.partner-item img {
    max-width: 100px;
    max-height: 60px;
    display: block;
    margin-bottom: 8px;
    object-fit: contain;
    background: transparent;
}
.partner-item a {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
}

.partner-item a:hover {
    text-decoration: underline;
}

/* Services Section */
.services-section {
    background: #202020;
    text-align: center;
    color: white;
}

.services-section h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #333;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
    color: white;
}

.service-item {
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 48px;
    color: #777777;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    color: white;
}

.service-item:hover i {
    color: #8BC34A;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: white;
    transition: color 0.3s ease; 
}

.service-item:hover h3 {
    color: #8BC34A;
}

.service-item a {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
}

.service-item a:hover {
    text-decoration: underline;
}

/* Projects Section */
.projects-section {
    text-align: center;
}

.projects-section h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #333;
}

.projects-description {
    font-size: 18px;
    max-width: 1000px;
    margin: 0 auto 48px;
    line-height: 1.8;
    text-align: left;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.project-item:hover .project-overlay {
    background: rgba(0,0,0,0.7);
}

.project-info {
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-info {
    opacity: 1;
}

.project-category {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 8px;
}

.project-name {
    font-size: 20px;
    font-weight: 600;
}

.view-more {
    font-size: 20px;
}

.view-more a {
    color: #8BC34A;
    text-decoration: none;
}

.view-more a:hover {
    text-decoration: underline;
}

/* Call to Action */
.cta-section {
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
    text-align: center;
}

.testimonials-section h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #333;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.testimonial-content blockquote {
    font-size: 18px;
    font-style: italic;
    padding: 0 32px;
    line-height: 1.8;
    transition: opacity 0.5s ease;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-indicator.active {
    background: #8BC34A;
}

/* Partners Section */
.partners-section {
    text-align: center;
}

.partners-section h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #333;
}

.all-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.partner-logo {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    transition: box-shadow 0.3s ease;
}

.partner-logo:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.partner-logo img {
    width: 100%;
    height: 64px;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #333;
}

.contact-intro {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.contact-item i {
    font-size: 32px;
    color: #8BC34A;
    margin-bottom: 16px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* Social Media */
.social-section {
    background: #222222;
    color: white;
    text-align: center;
    padding: 64px 0;
    border-top: 10px solid #8BC34A;
}

.social-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-section .fa-heart {
    color: #e74c3c;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-links a {
    color: white;
    font-size: 48px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ecf0f1;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 24px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #1abc9c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .carousel-content h1 {
        font-size: 32px;
    }
    
    .carousel-content h3 {
        font-size: 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-description {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        gap: 24px;
    }
    
    .social-links a {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .carousel-content h1 {
        font-size: 24px;
    }
    
    .carousel-content h3 {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .all-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}