
        :root {
            --primary-color: #2C2C2C;
            --secondary-color: #E5C07B;
            --white: #FFFFFF;
            --light-bg: #f8f9fa;
            --text-gray: #666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .nav-links li{
            margin-left:15px !important;
        }
        
        /* Navigation */
        .navbar {
            padding: 20px 0;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo i {
            color: var(--secondary-color);
            font-size: 32px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-btn {
            background: var(--secondary-color);
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-btn:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(229, 192, 123, 0.4);
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(44,44,44,0.8), rgba(44,44,44,0.6)), url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            color: var(--white);
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size:6.7rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--secondary-color);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            opacity: 0.9;
        }
        
        .hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
        }
        
        .hero-btn:hover {
            background: transparent;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(229, 192, 123, 0.3);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .section-title p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }
        
        /* About Section */
        .about {
            background: var(--white);
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-img {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .about-content p {
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .read-more {
            display: inline-block;
            margin-top: 20px;
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--primary-color);
            transform: translateX(10px);
        }
        
        /* Counter Section */
        .counter {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .counter-item h3 {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision Mission */
        .vision-mission {
            background: var(--light-bg);
        }
        
        .vm-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .vm-card {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--secondary-color);
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .vm-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .vm-card p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Why Choose Us */
        .why-choose {
            background: var(--white);
        }
        
        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            background: var(--light-bg);
        }
        
        .feature-card:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        .feature-card:hover p {
            color: rgba(255,255,255,0.9);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .feature-card:hover h3 {
            color: var(--secondary-color);
        }
        
        .feature-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /* Work Process */
        .work-process {
            background: var(--light-bg);
            overflow: hidden;
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            position: relative;
        }
        
        .process-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--secondary-color);
            z-index: 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 15px;
        }
        
        .process-icon {
            width: 100px;
            height: 100px;
            background: var(--white);
            border: 3px solid var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: var(--secondary-color);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .process-step:hover .process-icon {
            background: var(--secondary-color);
            color: var(--white);
            transform: rotateY(360deg);
            animation: none;
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .process-step p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Services */
        .services {
            background: var(--white);
        }
        
        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .service-card p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-card .read-more-btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .service-card .read-more-btn:hover {
            background: var(--primary-color);
        }
        
        /* Reviews */
        .reviews {
            background: var(--light-bg);
        }
        
        .reviews-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--secondary-color);
        }
        
        .review-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .review-stars {
            color: var(--secondary-color);
        }
        
        .review-text {
            color: var(--text-gray);
            font-style: italic;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq {
            background: var(--white);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            background: var(--light-bg);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .faq-question:hover {
            background: var(--secondary-color);
            color: var(--white);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            background: var(--white);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-answer p {
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #3a3a3a);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-large {
            display: inline-block;
            padding: 18px 50px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .cta-large:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(229, 192, 123, 0.3);
        }
        
        /* Contact Section */
        .contact {
            background: var(--light-bg);
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-item div h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .contact-item div p {
            color: var(--text-gray);
        }
        
        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-col p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 10px;
            font-size: 0.7rem;
            color: var(--secondary-color);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .newsletter-form input {
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
        }
        
        .newsletter-form button {
            padding: 12px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--white);
            color: var(--primary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 10px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-container,
            .vm-container,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .counter-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .process-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .process-container::before {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .counter-container {
                grid-template-columns: 1fr;
            }
            
            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* Counter Section - Redesigned Styles */
.counter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.counter-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.counter-bg-decoration .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 192, 123, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.05); opacity: 0.9; }
}

.counter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 192, 123, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 192, 123, 0.1), transparent);
    transition: left 0.6s ease;
}

.counter-item:hover::before {
    left: 100%;
}

.counter-item:hover {
    transform: translateY(-12px);
    background: rgba(229, 192, 123, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #d4a863);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(229, 192, 123, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.counter-item:hover .counter-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(229, 192, 123, 0.6);
}

.counter-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: pulse-ring 2s infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.counter-number::after {
    content: '+';
    position: absolute;
    top: 5px;
    right: -15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.counter-number[data-target="98"]::after {
    content: '%';
}

.counter-number[data-target="25"]::after {
    content: '+';
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.counter-line {
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.counter-item:hover .counter-line {
    width: 80px;
}

.counter-stats-badge {
    text-align: center;
    margin-top: 50px;
    padding: 15px 30px;
    background: rgba(229, 192, 123, 0.15);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--secondary-color);
    animation: slide-up 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.counter-stats-badge .badge-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.counter-stats-badge span:last-child {
    font-weight: 500;
    color: var(--white);
}

/* Enhanced Counter Animation */
.counter-number.animate {
    animation: count-pop 0.3s ease;
}

@keyframes count-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--white); }
    100% { transform: scale(1); color: var(--secondary-color); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-stats-badge {
        width: 90%;
        margin-left: 5%;
        transform: none;
    }
}

@media (max-width: 576px) {
    .counter {
        padding: 60px 0;
    }
    
    .counter-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .counter-number {
        font-size: 2.8rem;
    }
    
    .counter-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .counter-bg-decoration .circle {
        display: none;
    }
}

/* Dark mode enhancement */
@media (prefers-color-scheme: dark) {
    .counter-item {
        background: rgba(255, 255, 255, 0.05);
    }
}
