
:root {
    --primary-color: #ff4e50;     /* Lava red */
    --secondary-color: #f9d423;   /* Warm yellow */
    --accent-color: #ff6b81;      /* Coral pink */
    --dark-bg: #141414;
    --card-bg: #1f1f1f;
    --text-light: #ffffff;
    --text-accent: #ffeaa7;
}

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            position: relative;
        }
        
        /* Background Animation */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.15;
        }
        
        .bg-animation span {
            position: absolute;
            display: block;
            width: 30px;
            height: 30px;
            background-color: var(--accent-color);
            border-radius: 50%;
            animation: float 15s linear infinite;
        }
        
        .bg-animation span:nth-child(1) {
            top: 20%;
            left: 20%;
            background-color: var(--primary-color);
            width: 80px;
            height: 80px;
            animation-delay: 0s;
            animation-duration: 22s;
        }
        
        .bg-animation span:nth-child(2) {
            top: 60%;
            left: 80%;
            background-color: var(--secondary-color);
            width: 60px;
            height: 60px;
            animation-delay: 2s;
            animation-duration: 18s;
        }
        
        .bg-animation span:nth-child(3) {
            top: 80%;
            left: 15%;
            background-color: var(--accent-color);
            width: 40px;
            height: 40px;
            animation-delay: 4s;
            animation-duration: 25s;
        }
        
        .bg-animation span:nth-child(4) {
            top: 10%;
            left: 70%;
            background-color: var(--primary-color);
            width: 70px;
            height: 70px;
* 
            animation-delay: 6s;
            animation-duration: 30s;
        }
        
        .bg-animation span:nth-child(5) {
            top: 50%;
            left: 50%;
            background-color: var(--secondary-color);
            width: 50px;
            height: 50px;
            animation-delay: 8s;
            animation-duration: 20s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) scale(1) rotate(0deg);
                opacity: 0.8;
                border-radius: 50%;
            }
            25% {
                transform: translateY(-100px) translateX(100px) scale(1.2) rotate(90deg);
                opacity: 0.6;
                border-radius: 40%;
            }
            50% {
                transform: translateY(-200px) translateX(-50px) scale(0.8) rotate(180deg);
                opacity: 0.4;
                border-radius: 30%;
            }
            75% {
                transform: translateY(-100px) translateX(-100px) scale(1.1) rotate(270deg);
                opacity: 0.6;
                border-radius: 40%;
            }
            100% {
                transform: translateY(0) translateX(0) scale(1) rotate(360deg);
                opacity: 0.8;
                border-radius: 50%;
            }
        }
        
        .header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 15px 0;
            text-align: center;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 2px;
            clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transform: rotate(45deg);
            animation: shine 4s infinite;
        }
        
        @keyframes shine {
            0% {
                left: -150%;
                opacity: 0;
            }
            20% {
                left: -50%;
                opacity: 0.5;
            }
            35% {
                left: 100%;
                opacity: 0;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }
        
       .container {
    max-width: 1200px; /* Reduced from 1400px */
    margin: 0 auto;
    padding: 0 15px;  /* Adjusted padding */
}

        .logo-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }
        
        .logo-container {
            position: relative;
            width: 200px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .logo {
             width: 160px;
            height: 160px;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }
        
        .logo-ring {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-radius: 100%;
            border-top-color: var(--primary-color);
            border-right-color: var(--secondary-color);
            border-bottom-color: var(--accent-color);
            animation: spin 10s linear infinite;
        }
        
        .logo-ring:nth-child(1) {
            animation-duration: 10s;
        }
        
        .logo-ring:nth-child(2) {
            width: 180px;
            height: 180px;
            top: 10px;
            left: 10px;
            border-top-color: var(--secondary-color);
            border-right-color: var(--accent-color);
            border-bottom-color: var(--primary-color);
            animation-duration: 7s;
            animation-direction: reverse;
        }
        
        .logo-ring:nth-child(3) {
            width: 220px;
            height: 220px;
            top: -10px;
            left: -10px;
            border-top-color: var(--accent-color);
            border-right-color: var(--primary-color);
            border-bottom-color: var(--secondary-color);
            animation-duration: 15s;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .brand-name {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 46px;
            font-weight: 800;
            margin: 20px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .brand-name::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            z-index: -1;
            color: rgba(255, 255, 255, 0.1);
            transform: translateX(10px) translateY(10px);
        }
        
   .whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    max-width: 340px;
    margin: 20px auto;
    color: white;
    background: linear-gradient(135deg, #39FF14, #128C7E);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite, pulseGlow 3s infinite;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5), 0 0 30px rgba(18, 140, 126, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(18, 140, 126, 0.5);
}

/* Shine sweep */
.whatsapp-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

/* Icon animation */
.whatsapp-button i {
    font-size: 22px;
    animation: iconPulse 2s infinite ease-in-out;
}

/* Background animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Neon pulse glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4), 0 0 25px rgba(18, 140, 126, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.7), 0 0 45px rgba(18, 140, 126, 0.5);
    }
}

/* Shine animation */
@keyframes shine {
    0% { left: -75%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Icon subtle pulse */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
/* Telegram Button */
.telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    max-width: 340px;
    margin: 20px auto;
    color: white;
    background: linear-gradient(135deg, #34B7F1, #0088cc);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite, pulseGlow 3s infinite;
    box-shadow: 0 0 15px rgba(52, 183, 241, 0.5), 0 0 30px rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.telegram-button:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(52, 183, 241, 0.6), 0 0 40px rgba(0, 136, 204, 0.5);
}

/* Instagram Button */
.instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    max-width: 340px;
    margin: 20px auto;
    color: white;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite, pulseGlow 3s infinite;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5), 0 0 30px rgba(188, 24, 136, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.6), 0 0 40px rgba(188, 24, 136, 0.5);
}

/* Shared shine sweep effect for both buttons */
.telegram-button::after,
.instagram-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

/* Icon animation for both buttons */
.telegram-button i,
.instagram-button i {
    font-size: 22px;
    animation: iconPulse 2s infinite ease-in-out;
}
        
        .section-heading {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin: 30px 0;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-heading::before {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .section-heading::after {
            content: "";
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 50%;
            height: 3px;
            background: linear-gradient(to left, var(--secondary-color), var(--accent-color));
        }
        
        /* Modern Slider Styles */
        .modern-slider-section {
            padding: 0px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .modern-slider-container {
    width: 100%;
    height: 500px; /* Reduced height */
    max-width: 800px; /* Reduced width */
    position: relative;
    perspective: 1000px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

        .modern-slider-wrapper {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1s ease;
            left: 0;
            right: 0;
            margin: auto;
            display: flex;
            justify-content: center;
        }
        
        .modern-slider-slide {
            position: absolute;
            width: 300px;
            height: 533px; /* 9:16 ratio */
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.6s ease;
            opacity: 0.8;
            transform-origin: center center;
            background-color: var(--card-bg);
            left: 0;
            right: 0;
            margin: auto;
        }
        
        .modern-slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .modern-slider-slide.active {
            opacity: 1;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }
        
        .modern-slider-slide:hover img {
            transform: scale(1.075);
        }
        
        .modern-slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .modern-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modern-slider-dot.active {
            width: 30px;
            border-radius: 10px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .modern-slider-title {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            position: relative;
        }
        
        .modern-slider-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
    
        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                font-size: 18px;
                height: 60px;
            }
            
           .brand-name {
    font-size: 30px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
    margin: 10px 0;
}
            .whatsapp-button {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    margin-top: 15px;
    width: 80%;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

            .logo-container {
                width: 150px;
                height: 150px;
            }
            
            .logo {
                width: 120px;
                height: 120px;
            }
            
            .logo-ring:nth-child(2) {
                width: 135px;
                height: 135px;
                top: 7.5px;
                left: 7.5px;
            }
            
            .logo-ring:nth-child(3) {
                width: 165px;
                height: 165px;
                top: -7.5px;
                left: -7.5px;
            }
            
            .section-heading {
                font-size: 28px;
            }
            
            .modern-slider-container {
                height: 450px;
                max-width: 100%;
                padding: 0 10px;
            }
            
            .modern-slider-slide {
                width: 300px;
                height: 500px; /* Maintain 9:16 ratio */
            }
            
            .modern-slider-title {
                font-size: 30px;
                margin-bottom: 28px;
            }
            
            .modern-slider-controls {
                margin-top: 15px;
            }
            
            .modern-slider-dot {
                width: 10px;
                height: 10px;
            }
            
            .modern-slider-dot.active {
                width: 25px;
            }
        }
       .slider-divider {
    width: 100px;
    height: 4px;
    margin: 50px auto 10px auto;
    border-radius: 9999px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

        /* Social Section */
        .social-section {
            padding: 01px 0;
            background: linear-gradient(to bottom, rgba(10, 25, 41, 0), rgba(108, 99, 255, 0.1), rgba(10, 25, 41, 0));
            margin: 0px 0;
            position: relative;
        }
        
        .social-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .social-links {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }
        
        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-light);
            transition: all 0.3s ease;
            position: relative;
            padding: 15px;
        }
        
        .social-link::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .social-link:hover::before {
            transform: scale(1);
            opacity: 1;
        }
        
        .social-icon {
            font-size: 45px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover .social-icon {
            transform: translateY(-5px);
        }
        
        .social-link span {
            font-size: 13px;
            font-weight: 500;
        }
        
        .instagram-icon {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .telegram-icon {
            color: #0088cc;
        } 
      /* Services Section */
.services-section {
    padding: 6px 1px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .section-heading {
        font-size: 24px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .service-card {
        padding: 15px 10px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 14px;
        margin: 10px 0 5px;
    }
}

.service-card {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    height: 100%; /* Make all cards same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(255, 101, 132, 0.2));
    clip-path: circle(0% at 50% 50%);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.service-card:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.25);
    flex-shrink: 0;
}

.service-icon-wrapper::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: var(--card-bg);
    border-radius: 50%;
    z-index: -1;
}

.service-icon {
    font-size: 28px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;ff4e50
    color: transparent;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--text-accent);
    line-height: 1.3;
    word-break: break-word;
}

/* Featured Service */
.featured-service {
    position: relative;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.1));
    padding: 25px 15px;
    margin: 30px auto 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-service::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    z-index: -1;
}

.featured-icon {
    font-size: 40px;
    margin-bottom: 15px;
   color: #FFD700; /* Gold */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.featured-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.featured-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: rgba(0, 0, 0, 0.3); /* transparent dark base */
    padding: 4px 8px;
    border-radius: 6px;
}
/* Mobile adjustments for featured section */
@media (max-width: 480px) {
    .featured-service {
        padding: 20px 10px;
        margin: 20px auto 40px;
    }
    
    .featured-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .featured-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .featured-text {
        font-size: 14px;
    }
}
        
  /* Testimonials Section */
    .testimonials-section {
        padding: 5px 0;
        position: relative;
    }
    
    .testimonials-container {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
        margin-top: 40px;
    }
    
    .testimonial-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        padding: 25px;
        width: 100%;
        max-width: 350px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    }
    
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-rating {
        margin-bottom: 15px;
        color: #FFD700;
    }
    
    .testimonial-content {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: var(--text-light);
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
    
    .author-info h4 {
        font-size: 16px;
        margin: 0;
        color: var(--text-accent);
    }
    
    .author-info p {
        font-size: 14px;
        margin: 5px 0 0;
        opacity: 0.7;
    }
    .cta-timer-section {
  text-align: center;
  margin: 40px auto;
}

.cta-title {
  color: red;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.timer-box {
  background-color: #1a1a2e;
  padding: 20px 30px;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 0 20px rgba(240, 197, 76, 0.3);
  position: relative;
  animation: pulseCard 2s infinite;
}

#countdown-number {
  font-size: 48px;
  font-weight: bold;
  color: #f94232;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.timer-label {
  color: #ccc;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes pulseCard {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.6); }
}

    /* Performance Metrics */
    .metrics-container {
        margin-top: 70px;
        text-align: center;
    }
    
    .metrics-title {
        font-size: 28px;
        margin-bottom: 40px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
        position: relative;
    }
    
    .metrics-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }
    
    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .metric-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        padding: 25px 15px;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .metric-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.1));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .metric-card:hover {
        transform: translateY(-5px);
    }
    
    .metric-card:hover::before {
        opacity: 1;
    }
    
    .metric-icon {
        font-size: 32px;
        margin-bottom: 15px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .metric-number {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .metric-title {
        font-size: 16px;
        color: var(--text-accent);
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .testimonials-container {
            flex-direction: column;
            align-items: center;
        }
        
        .testimonial-card {
            max-width: 100%;
        }
        
        .metrics-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .metrics-title {
            font-size: 24px;
        }
        
        .metric-number {
            font-size: 28px;
        }
        
        .metric-title {
            font-size: 14px;
        }
    }
    
    @media (max-width: 480px) {
        .metrics-grid {
            grid-template-columns: 1fr;
        }
        
        .testimonial-content {
            font-size: 14px;
        }
        
        .section-heading {
            font-size: 24px;
        }
    }
        /* Footer */
        .footer {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 40px 0 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-text {
            margin-bottom: 15px;
            font-size: 14px;
            opacity: 0.8;
        }
        
        .footer-highlight {
            font-weight: 600;
            color: var(--accent-color);
        }
    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}
