

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5rem 6rem;
            gap: 2rem;
            min-height: 100vh;
            /* background-color: black; */
            margin-top: 40px;
        }

        .hero .left {
            flex: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.1rem;
            /* color: var(--); */
            color: grey;
            margin-bottom: 2rem;
            max-width: 550px;
        }

        .hero .cta-group {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .hero .cta {
            color: #fff;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            border-radius: 4px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            transform: scale(1);
        }

        .hero .cta:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: var(--primary-hover-color);
            color: var(--primary-color);
            font-weight: 400;
            outline: 1.5px solid var(--primary-color);
        }

        .hero .cta.secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 1.5px solid var(--primary-color);
        }

        .hero .cta.secondary:hover {
            background-color: var(--primary-color);
            color: #fff;
            font-weight: 400;
            outline: none;
        }


        .hero .right {
            flex: 1;
            position: relative;
        }

        .hero .main-img {
            width: 100%;
            max-width: 500px;
            z-index: 2;
            position: relative;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                padding: 4rem 2rem;
                text-align: center;
            }

            .hero .right {
                margin-top: 2rem;
            }

            .cta-group {
                display: flex;
                flex-direction: column;
            }
        }








        /* Services Section */
.services {
    padding: 5rem 6rem;
    background-color: var(--bg-color);
}

.services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services .section-header p {
    color: grey;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(29, 27, 27, 0.048);
    outline: 0.1px solid #ff3c3c6c;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.service-card p {
    color: grey;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Number indicator at bottom */
.services .number-indicator {
    text-align: center;
    margin-top: 4rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .services {
        padding: 3rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
















.service-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Add these for smooth color transitions */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* New hover effects */
    background-color: var(--primary-color);
    color: white;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon i {
    color: white;
}
























/* Add this to your existing CSS */
.service-card {
    position: relative; /* For absolute positioning of button */
    overflow: hidden; /* Keeps everything contained */
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover .service-footer {
    border-color: rgba(255, 255, 255, 0.2);
}

.details-btn {
    position: absolute;
    bottom: -50px; /* Hidden initially */
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover .details-btn {
    bottom: 20px; /* Revealed on hover */
}

.details-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: white;
    color: var(--primary-color);
}

/* Modern alternative with sliding up button */
.alternative-btn {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover .alternative-btn {
    bottom: 0;
    opacity: 1;
}

.alternative-btn:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}



















/* Partnership Section */
.partnership-section {
    padding: 5rem 6rem;
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.text-content {
    flex: 1;
}

.visual-content {
    flex: 1;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttonn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-buttonn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.3);
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.partner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .partner-image {
    transform: scale(1.05);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    transition: all 0.3s ease;
}

.icon-circle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.2);
}

.icon-circle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.icon-circle:nth-child(2) {
    top: 60%;
    left: 15%;
}

.icon-circle:nth-child(3) {
    top: 30%;
    right: 10%;
}

.icon-circle:nth-child(4) {
    top: 70%;
    right: 15%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .partnership-section {
        padding: 3rem 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}












/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 6rem;
    background-color: var(--light-bg);
    /* background-color: #f5f5f5; */
    color: var(--text-color);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom:2px solid #ff3c3c ;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.skill-meter {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.progress-ring-circle {
    stroke: #f0f0f0;
}

.feature-card:nth-child(1) .progress-ring-circle {
    stroke: var(--primary-color);
    stroke-dasharray: 226, 226;
}

.skill-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-highlight i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}








/* Pricing Section */
.pricing-section {
    padding: 5rem 6rem;
    background-color: var(--light-bg);
         /* background-color: #f5f1f1; */

    
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666 !important;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    
    background: var(--bg-color);
    border-radius: 10px;
    padding: 2.5rem;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features i {
    color: var(--primary-color);
}

.cta-button {
    display: block;
    text-align: center;
    padding: 12px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.7s ease;
}

.cta-button:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background: #e63535;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 3rem;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    /* background-color: red; */
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 90s linear infinite;
}

.testimonial-carousel:hover .testimonial-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 2rem)); }
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 500px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.rating {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.client-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    color: rgba(255,255,255,0.7);
}

/* Clutch Badge */
.clutch-badge {
    text-align: center;
    margin-top: 2rem;
}

.clutch-badge a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.clutch-badge a:hover {
    /* transform: scale(1); */
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.3);
}

.clutch-badge img {
    height: 30px;
}

.badge-text {
    display: none;
    font-size: 0.9rem;
}

.clutch-badge a:hover .badge-text {
    display: inline;
}

.clutch-badge a:hover img {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 2rem;
    }
    
    .testimonial-card {
        width: 300px;
    }
    
    .clutch-badge a {
        padding: 0.5rem;
    }
}




/* Contact Form Section */
.contact-form-section {
    padding: 5rem 6rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a3a 100%);
    color: var(--text-light);
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.form-container {
    flex: 1;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.form-header p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.form-group:hover {
    background: rgba(255,255,255,0.15);
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.form-group.floating label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 45px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 20px;
}

.form-group.floating input:focus ~ label,
.form-group.floating input:valid ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:valid ~ label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.8rem;
    color: var(--primary-color);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #e63535;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 60, 60, 0.2);
}

.submit-btn i {
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-graphic {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.form-graphic img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 60, 60, 0.1);
    filter: blur(30px);
    z-index: 1;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation: float 8s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 0;
    animation: float 10s ease-in-out infinite reverse;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    
    .form-graphic {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 2rem;
    }
}















* {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}






/* Current */
.hero h1 {
    font-size: 3.5rem;
}

/* Suggested */
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Better responsive scaling */
    line-height: 1.2; /* Better readability */
}