root {
    --primary-color: #23b861;
    --primary-dark: #219653;
    --primary-light: #6fcf97;
    --secondary-color: #ffffff;
    --accent-color: #2d9cdb;
    --accent-dark: #1565C0;
    --text-dark: #050505;
    --text-light: #f5f5f5;
    --gray-light: #f9f9f9;
    --gray-medium: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* General Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: rgb(44, 20, 252);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background-color: rgb(249, 250, 249);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: rgb(121, 238, 11);
    text-decoration: none;
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 247, 247, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--textlight);
    padding: 0 15px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background-color: yellowgreen;
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.about-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content .btn {
    margin-bottom: 10px;
}

/* Services Section */
.service-card {
    padding: 30px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    background-color: yellowgreen;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-us-section {
    background-color:chartreuse
}

.feature-box {
    background-color: var(--secondary-color);
    padding: 25px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
    text-align: center;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: var(--secondary-color);
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color:var(--text-light)
}

.accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 20px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.accordion-button:focus {
    border-color: var(--primary-light);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2327ae60'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 15px 20px;
    background-color: var(--gray-light);
    font-size: 0.95rem;
}

.accordion-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-cta {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Testimonials */
.testimonial-section {
    background-color:chartreuse
}

.testimonial-carousel .swiper-slide {
    padding: 20px 10px;
    height: auto;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: "\201C";
    font-size: 80px;
    color: var(--primary-light);
    position: absolute;
    top: -5px;
    left: 15px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.client-details span {
    font-size: 0.85rem;
    color: var(--accent-color);
}

/* Portfolio */
.portfolio-section {
    padding: 80px 0;
    background-color:var(--primary-color);
}

.portfolio-filter {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.filter-btn {
    border: none;
    background: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.portfolio-item {
    margin-bottom: 25px;
}

.portfolio-img {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 220px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-img:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 174, 96, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-img:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: var(--secondary-color);
    padding: 15px;
}

.portfolio-overlay-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-overlay-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.view-btn {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-block;
}

.view-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-description {
    margin-top: 25px;
    text-align: center;
}

.video-description h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.video-description p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Counter Section */
.counter-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    position: relative;
}

.counter-section::before {
    content: "";
    background-image: url('https://images.unsplash.com/photo-1564939558297-fc396f18e5c7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.counter-box {
    position: relative;
    padding: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.counter-box i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.counter-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.counter-box p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--gray-medium);
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color:#ffffff
}

.contact-info-box {
    padding: 30px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-box h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-text p, .contact-text a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.contact-text a:hover {
    opacity: 0.8;
}

.contact-form {
    background-color: var(--secondary-color);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid var(--gray-medium);
}

.contact-form h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 600;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
    padding: 8px 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.form-control:focus {
    box-shadow:#181818;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #faf8f8;
    padding: 60px 0 30px;
    color: black;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color:#050505;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}


.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: var(--primary-color);
    color: rgb(32, 243, 5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* Download Business Profile Button */
.download-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-profile i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.download-profile:hover i {
    transform: translateY(3px);
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid var(--gray-light);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 15px 15px 0 0;
    padding: 15px 20px;
}

.modal-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.modal-body {
    padding: 20px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    font-size: 0.95rem;
}

.download-instructions {
    background-color: var(--gray-light);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.download-instructions ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --secondary-color: #181818;
        --text-dark: #f5f5f5;
        --text-light: #f5f5f5;
        --gray-light: #222222;
        --gray-medium: #333333;
    }

    .navbar, .navbar.scrolled {
        background-color: rgba(24, 24, 24, 0.95);
    }

    .nav-link {
        color: var(--text-light) !important;
    }

    .accordion-button, .accordion-button:not(.collapsed) {
        background-color: var(--gray-medium);
        color: var(--text-light);
    }

    .accordion-body {
        background-color: var(--gray-light);
    }

    .contact-form {
        background-color: var(--gray-medium);
    }

    .form-control {
        background-color: var(--gray-light);
        color: var(--text-light);
        border-color: var(--gray-medium);
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .modal-content {
        background-color: var(--gray-medium);
        color: var(--text-light);
    }
    
    .download-instructions {
        background-color: var(--gray-light);
        color: var(--text-light);
    }
}

/* Mobile-First Responsive Styles */
/* Base styles are already mobile-friendly */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-card h4 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-box h4 {
        font-size: 1.3rem;
    }
    
    .feature-box p {
        font-size: 1rem;
    }
    
    .counter-box h2 {
        font-size: 3rem;
    }
    
    .counter-box p {
        font-size: 1.1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section, .hero-slider .swiper-slide {
        height: 100vh;
        min-height: 600px;
    }
    
    .section-padding {
        padding: 100px 0;
    }
    
    .about-img {
        margin-bottom: 0;
    }
    
    .hero-content {
        max-width: 800px;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
    }
    
    .service-card, .feature-box {
        padding: 40px 30px;
    }
}

/* Extra specific mobile adjustments */
@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .about-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .portfolio-filter {
        gap: 5px;
    }
    
    .portfolio-filter .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .contact-form, .contact-info-box {
        padding: 25px 20px;
    }
}