﻿/*      :root {
            --primary-color: #3a86ff; */ /* Same as navbar */
/*  --hover-color: #2667cc;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --transition-speed: 0.4s;
        } */

/* Footer Styles */
footer {
    background: white;
    color: var(--text-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    padding: 60px 0 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Columns */
.footer-col {
    margin-bottom: 30px;
}

    .footer-col h5 {
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        .footer-col h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #555;
        text-decoration: none;
        transition: all var(--transition-speed);
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

/* Contact Info */
.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

    .contact-info i {
        color: var(--primary-color);
        margin-right: 10px;
        margin-top: 4px;
    }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--light-bg);
        color: var(--text-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-speed);
    }

        .social-icons a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Responsive */
@@media (max-width: 768px) {
    .footer-col {
        text-align: center;
    }

        .footer-col h5:after {
            left: 50%;
            transform: translateX(-50%);
        }

    .footer-links a:hover {
        transform: none;
    }

    .social-icons {
        justify-content: center;
    }
}

:root {
    /* --primary-color: #3a86ff; */
    --primary-color: #0ba205;
    --hover-color: #0ba205;
    --transition-speed: 0.4s;
}

body {
    padding-top: 80px;
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar Base */
.navbar {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.navbar-brand img {
    height: 70px;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-item {
    position: relative;
    margin: 0 12px;
    padding: 25px 0;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 12px !important;
    transition: color var(--transition-speed) ease;
}

    .nav-link:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width var(--transition-speed) ease;
    }

.nav-item:hover .nav-link:after {
    width: 100%;
}

.nav-link i {
    margin-left: 6px;
    font-size: 12px;
    transition: transform var(--transition-speed) ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: #555;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

    .dropdown-item:before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.1));
        transition: left 0.3s ease;
    }

    .dropdown-item:hover {
        color: var(--primary-color);
        background: transparent;
        padding-left: 25px;
    }

        .dropdown-item:hover:before {
            left: 0;
        }

/* Contact Button */
.contact-btn {
    background: var(--primary-color);
    color: white !important;
    border-radius: 6px;
    padding: 10px 24px !important;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 6px rgba(58, 134, 255, 0.2);
}

    .contact-btn:hover {
        background: var(--hover-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(58, 134, 255, 0.3);
    }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 26px;
    color: #333;
    padding: 10px;
    transition: transform 0.3s;
}

    .mobile-toggle:hover {
        transform: rotate(90deg);
    }

/* Offcanvas Mobile Menu */
.offcanvas {
    max-width: 300px;
    background: #f8f9fa;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 20px;
}

.btn-close {
    font-size: 14px;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

    .mobile-nav-link:hover {
        background: rgba(0, 0, 0, 0.03);
    }

.mobile-submenu {
    background: rgba(0, 0, 0, 0.02);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
}

    .mobile-submenu.show {
        max-height: 500px;
    }

    .mobile-submenu .dropdown-item {
        padding: 12px 30px;
        display: block;
        color: #555;
    }

        .mobile-submenu .dropdown-item:hover {
            color: var(--primary-color);
        }

/* Responsive */
@media (max-width: 992px) {
    .desktop-menu, .contact-btn {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .nav-item {
        padding: 15px 0;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    transform: translateX(50px);
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100% );
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: white;
        color: #333;
        transform: translateY(-2px);
    }

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: white;
}

    .slider-nav:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-nav.prev {
        left: 2rem;
    }

    .slider-nav.next {
        right: 2rem;
    }

    .slider-nav svg {
        width: 24px;
        height: 24px;
    }

/* Pagination Dots */
.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pagination-dot.active {
        background: white;
        transform: scale(1.2);
    }

    .pagination-dot:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
    }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 10;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

    .scroll-indicator span {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: block;
    }

.scroll-arrow {
    width: 2px;
    height: 20px;
    background: white;
    margin: 0 auto;
    position: relative;
}

    .scroll-arrow::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: -3px;
        width: 8px;
        height: 8px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg);
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 5%;
        text-align: center;
        align-items: center;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: 2rem;
        transform: none;
    }

        .slider-nav.prev {
            left: 5%;
        }

        .slider-nav.next {
            right: 5%;
        }

    .slider-pagination {
        bottom: 6rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 90vh;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }
}

/* Loading Animation */
.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.slider-container.loaded::before {
    opacity: 0;
    pointer-events: none;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #2e8b57;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc3545;
    display: block;
}

.stat-label {
    color: #2e8b57;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        color: #2e8b57;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #2e8b57;
}

    .service-card:hover {
        transform: translateY(-10px);
        background: white;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2e8b57;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #2e8b57;
    color: #2e8b57;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: #2e8b57;
        color: white;
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-content {
    padding: 25px;
}

    .portfolio-content h3 {
        color: #2e8b57;
        margin-bottom: 10px;
    }

    .portfolio-content p {
        color: #666;
        margin-bottom: 15px;
    }

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.team-member h3 {
    color: #2e8b57;
    margin-bottom: 5px;
}

.member-role {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #2e8b57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .social-icon:hover {
        background: #dc3545;
    }

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

    .testimonial-card::before {
        content: '"';
        font-size: 4rem;
        color: #2e8b57;
        position: absolute;
        top: 10px;
        left: 20px;
        opacity: 0.3;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #2e8b57;
    margin-bottom: 5px;
}

.author-company {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2e8b57, #dc3545);
    color: white;
    text-align: center;
}

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #2e8b57;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: white;
    color: #2e8b57;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 250px;
        text-align: center;
    }
}

/* Digital Marketing Section */
.digital-marketing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .digital-marketing::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(46, 139, 87, 0.05) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, -30px) rotate(180deg);
    }
}

.dm-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

    .dm-header h2 {
        font-size: 3rem;
        color: #2e8b57;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #2e8b57, #dc3545);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.dm-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* DM Services Grid */
.dm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.dm-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

    .dm-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .dm-service-card:hover::before {
        left: 100%;
    }

    .dm-service-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: #2e8b57;
        box-shadow: 0 20px 40px rgba(46, 139, 87, 0.2);
    }

.dm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.dm-service-card:hover .dm-icon {
    transform: rotate(360deg) scale(1.1);
}

.dm-service-card h3 {
    color: #2e8b57;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.dm-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dm-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .dm-features li {
        padding: 8px 0;
        color: #555;
        position: relative;
        padding-left: 25px;
    }

        .dm-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2e8b57;
            font-weight: bold;
        }

/* SEO Optimization Section */
.seo-optimization {
    padding: 100px 0;
    background: white;
}

.seo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-content h2 {
    font-size: 2.8rem;
    color: #2e8b57;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seo-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

    .seo-step:hover {
        background: white;
        border-left-color: #dc3545;
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2e8b57;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.seo-visual {
    position: relative;
    height: 500px;
}

.seo-chart {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, #2e8b57, #dc3545);
    margin: 0 15px;
    border-radius: 10px 10px 0 0;
    animation: growBar 2s ease-out;
    position: relative;
}

@keyframes growBar {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: var(--bar-height);
        opacity: 1;
    }
}

.chart-bar::after {
    content: attr(data-percent);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #2e8b57;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #2e8b57, #dc3545);
    color: white;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.result-item {
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

    .result-item:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.2);
    }

.result-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.result-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Process Timeline */
.process-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #2e8b57, #dc3545);
        transform: translateX(-50%);
    }

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

    .timeline-content::after {
        content: '';
        position: absolute;
        top: 30px;
        width: 20px;
        height: 20px;
        background: white;
        transform: rotate(45deg);
    }

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .seo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item:nth-child(even) {
            left: 0;
        }

            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -10px;
                right: auto;
            }
}

@media (max-width: 768px) {
    .dm-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dm-header h2 {
        font-size: 2.2rem;
    }

    .seo-content h2 {
        font-size: 2.2rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* Multi-page Layout */
.pages-container {
    min-height: 80vh;
    padding: 0px 0 50px;
}

.page-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #2e8b57, #dc3545);
    color: white;
    margin-bottom: 50px;
}

    .page-header h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease;
    }

    .page-header p {
        font-size: 1.3rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

/* Team Page Styles */
.team-hero {
    text-align: center;
    padding: 80px 0;
    background: #f8f9fa;
}

.team-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #2e8b57;
    color: #2e8b57;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .category-btn.active,
    .category-btn:hover {
        background: #2e8b57;
        color: white;
        transform: translateY(-2px);
    }

.team-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.team-member-detailed {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

    .team-member-detailed:hover {
        transform: translateY(-10px);
    }

.member-header {
    padding: 30px;
    background: linear-gradient(135deg, #2e8b57, #dc3545);
    color: white;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.member-info {
    padding: 30px;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2e8b57;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.pricing-tab {
    padding: 15px 30px;
    background: white;
    border: 2px solid #2e8b57;
    color: #2e8b57;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .pricing-tab.active {
        background: #2e8b57;
        color: white;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .pricing-card.featured {
        border: 3px solid #dc3545;
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: #dc3545;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: bold;
        }

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #2e8b57;
    margin: 20px 0;
}

.price-period {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #555;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            color: #2e8b57;
            font-weight: bold;
            margin-right: 10px;
        }



/* Navigation between pages */
.page-nav {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-btn {
    padding: 12px 25px;
    background: #2e8b57;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .nav-btn:hover {
        background: #dc3545;
        transform: translateX(-5px);
    }

    .nav-btn.next:hover {
        transform: translateX(5px);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .team-grid-detailed,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .member-stats {
        grid-template-columns: 1fr;
    }

    .page-nav {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/*contact css code below.............*/
/* Contact Form */
.contact-form {
    padding: 3rem;
}

    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

    .form-control:focus {
        border-color: var(--primary);
        outline: none;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
/*.contact-btn {
    background: var(--primary-color);
    color: white !important;
    border-radius: 6px;
    padding: 10px 24px !important;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 6px rgba(58, 134, 255, 0.2);
}

    .contact-btn:hover {
        background: var(--hover-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(58, 134, 255, 0.3);
    }
*/

.submit-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

 .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .submit-btn i {
        margin-right: 8px;
    }

/* Form Validation Styles */
.error {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-control.error-border {
    border-color: var(--error);
}

.success-message {
    background: var(--success);
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

/* Map Section */
.map-section {
    padding: 2rem 0 4rem;
}

    .map-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: var(--dark);
    }

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

    .faq-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 3rem;
        color: var(--dark);
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background: #f8fafc;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question i {
        transition: transform 0.3s;
    }

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.2rem;
}






/* Blogs Page Styles */
.blogs-hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.blog-category {
    padding: 10px 25px;
    background: white;
    border: 2px solid #2e8b57;
    color: #2e8b57;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .blog-category.active,
    .blog-category:hover {
        background: #2e8b57;
        color: white;
    }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

.blog-image {
    height: 250px;
    background: linear-gradient(45deg, #2e8b57, #dc3545);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-category-tag {
    background: #2e8b57;
    color: white;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-card h3 {
    color: #2e8b57;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

    .pagination a {
        padding: 10px 18px;
        background: white;
        border: 2px solid #2e8b57;
        color: #2e8b57;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .pagination a.active,
        .pagination a:hover {
            background: #2e8b57;
            color: white;
        }

/* Single Blog Post */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 50px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

    .post-content h2, .post-content h3 {
        color: #2e8b57;
        margin: 30px 0 15px;
    }


.blog-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-header {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.blog-content {
    padding: 40px;
}

.blog-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.read-more-section {
    background: #f7fafc;
    padding: 20px;
    border-left: 4px solid #4299e1;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.read-more-btn {
    background: #4299e1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .read-more-btn:hover {
        background: #3182ce;
        transform: translateY(-2px);
    }

.hidden-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

    .action-btn:hover {
        background: #edf2f7;
        transform: translateY(-2px);
    }

    .action-btn.active {
        background: #4299e1;
        color: white;
        border-color: #4299e1;
    }

.tags-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: #edf2f7;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4a5568;
    transition: all 0.3s;
    cursor: pointer;
}

    .tag:hover {
        background: #e2e8f0;
    }

.author-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 5px;
    color: #2d3748;
}

.author-info p {
    color: #718096;
    font-size: 0.9rem;
}

.comments-section {
    margin-top: 40px;
}

    .comments-section h3 {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e2e8f0;
    }

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content h4 {
    margin-bottom: 5px;
    color: #2d3748;
}

.comment-meta {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 10px;
}

.comment-text {
    color: #4a5568;
}

.related-posts {
    margin-top: 50px;
}

    .related-posts h3 {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e2e8f0;
    }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

    .related-card:hover {
        transform: translateY(-5px);
    }

.related-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.related-meta {
    font-size: 0.8rem;
    color: #718096;
}

.font-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.font-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
}

    .font-btn:hover {
        background: #edf2f7;
    }

.social-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
    cursor: pointer;
}

    .social-btn:hover {
        transform: scale(1.1);
    }

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.whatsapp {
    background: #25d366;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-actions {
        flex-direction: column;
    }

    .author-section {
        flex-direction: column;
        text-align: center;
    }

    .comment {
        flex-direction: column;
    }
}

.dashboard {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.dashboard-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.dashboard-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dashboard-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px;
}

.result-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

    .result-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .result-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #34d399);
    }

.result-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 15px 0;
    transition: all 0.5s ease-in-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .result-value.animated {
        animation: pulse 1s ease-in-out;
    }

.result-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

.result-description {
    color: #94a3b8;
    font-size: 0.9rem;
    background: #e2e8f0;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
}

.progress-section {
    padding: 40px;
    background: #f1f5f9;
}

.progress-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
    font-weight: 600;
}

.progress-bars {
    display: grid;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

    .progress-bar:hover {
        transform: translateX(5px);
    }

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-label {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
}

.progress-value {
    font-weight: 700;
    color: #10b981;
    font-size: 1.2rem;
    background: #d1fae5;
    padding: 4px 12px;
    border-radius: 20px;
}

.progress-track {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 6px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: shimmer 2s infinite;
    }

.controls {
    padding: 30px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .control-btn.primary {
        background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        color: white;
    }

    .control-btn.secondary {
        background: #f1f5f9;
        color: #64748b;
        border: 1px solid #e2e8f0;
    }

    .control-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .control-btn:active {
        transform: translateY(0);
    }

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 30px 20px;
    }

    .dashboard-title {
        font-size: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .progress-section {
        padding: 30px 20px;
    }

    .progress-title {
        font-size: 1.5rem;
    }

    .result-value {
        font-size: 2.5rem;
    }

    .controls {
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }

    .control-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .dashboard {
        border-radius: 15px;
    }

    .dashboard-header {
        padding: 25px 15px;
    }

    .dashboard-title {
        font-size: 1.8rem;
    }

    .result-card {
        padding: 20px;
    }

    .result-value {
        font-size: 2rem;
    }

    .progress-bar {
        padding: 20px;
    }
}

/* Loading States */
.loading .result-value,
.loading .progress-value {
    background: #e5e7eb;
    color: transparent;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

/* Success States */
.result-card.success {
    border-color: #10b981;
    background: #f0fdf4;
}

.progress-bar.success .progress-fill {
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Warning States */
.result-card.warning {
    border-color: #f59e0b;
    background: #fffbeb;
}

.progress-bar.warning .progress-fill {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/*whatsapp floating button*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

    .whatsapp-float:hover {
        background-color: #128c7e;
        transform: scale(1.1);
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}