/* Index Page Specific Styles */

/* Welcome Text */
.welcome-text {
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    animation: fadeInDown 0.8s ease-out;
}

.welcome-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 2px;
    background: var(--white);
    transform: translateY(-50%);
}

.welcome-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 2px;
    background: var(--white);
    transform: translateY(-50%);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Specific */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.95), rgba(229, 92, 0, 0.9)), url('../images/hero-bg.jpg');
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top right, var(--white) 49%, transparent 51%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    margin: 30px 0;
}

.hero-features ul {
    list-style: none;
    padding: 0;
}

.hero-features li {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--white);
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card .icon i {
    font-size: 2rem;
    color: var(--white);
}

.process-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 107, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.services .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.services .section-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    background: rgba(255, 107, 0, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
}

.services .section-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
    border-radius: 2px;
}

.services .section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    opacity: 0.9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: translateY(-20px);
}

.service-card.popular {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: var(--white);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card.popular .badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.service-card .icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.service-card.popular .icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card .icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card.popular .icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.service-card.popular h3 {
    color: var(--white);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card.popular h3::after {
    background: var(--white);
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.service-card.popular p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.service-card.popular .feature-list li {
    color: var(--white);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.service-card.popular .feature-list i {
    color: var(--white);
}

.card-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-top: 20px;
}

.service-card.popular .card-button {
    background: var(--white);
    color: var(--primary-color);
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Service Cards Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.3s; }
.service-card:nth-child(2) { animation-delay: 0.5s; }
.service-card:nth-child(3) { animation-delay: 0.7s; }

/* Responsive styles for services */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services .section-header h2 {
        font-size: 3rem;
    }

    .service-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .services .section-header h2 {
        font-size: 2.5rem;
    }

    .service-card.featured {
        transform: translateY(0);
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card .icon {
        width: 80px;
        height: 80px;
    }

    .service-card .icon i {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services .section-header h2 {
        font-size: 2rem;
    }

    .services .section-subtitle {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .card-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.08));
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 80px;
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card .icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 80px;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Feature Cards Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: slideInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.5s; }

/* Responsive styles for Why Choose Us */
@media (max-width: 1200px) {
    .features-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .why-choose-us h2 {
        font-size: 3rem;
    }

    .feature-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-us h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-card .icon {
        width: 80px;
        height: 80px;
    }

    .feature-card .icon i {
        font-size: 2.2rem;
    }

    .feature-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 1.6rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.08));
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
}

.testimonials .section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    background: rgba(255, 107, 0, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
    border-radius: 2px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card .quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.testimonial-card .quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card .client {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-card .client strong {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-card .client span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Testimonial Cards Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: slideInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.3s; }
.testimonial-card:nth-child(2) { animation-delay: 0.5s; }
.testimonial-card:nth-child(3) { animation-delay: 0.7s; }

/* Responsive styles for testimonials */
@media (max-width: 1200px) {
    .testimonial-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .testimonials h2 {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-card .quote {
        font-size: 1.1rem;
        padding-left: 25px;
    }

    .testimonial-card .quote::before {
        font-size: 3rem;
        top: -15px;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials .section-subtitle {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-card .quote {
        font-size: 1rem;
        padding-left: 20px;
    }

    .testimonial-card .client strong {
        font-size: 1.1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 107, 0, 0.9), rgba(229, 92, 0, 0.85));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Expertise Section */
.expertise {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.08));
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.expertise .section-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.expertise .section-subtitle {
    background: rgba(255, 107, 0, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.expertise .section-header h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise .section-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.expertise-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    right: -100px;
    height: 200px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
    transform: translateY(-50%) rotate(-5deg);
    z-index: 0;
}

.expertise-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card .icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    position: relative;
}

.expertise-card:hover .icon {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.expertise-card .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.expertise-card:hover .icon i {
    color: var(--white);
    transform: scale(1.1);
}

.expertise-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.expertise-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.expertise-card:hover h3::after {
    width: 80px;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-card ul li {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.expertise-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.expertise-card ul li::after {
    content: '→';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.expertise-card:hover ul li::before {
    background: var(--primary-color);
    transform: translateY(-50%) scale(0.8);
}

.expertise-card:hover ul li::after {
    color: var(--white);
}

.expertise-card:hover ul li {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive styles for Expertise section */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .expertise .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .expertise {
        padding: 80px 0;
    }

    .expertise .section-header h2 {
        font-size: 2.4rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .expertise-card {
        padding: 30px 25px;
    }

    .expertise-card .icon {
        width: 80px;
        height: 80px;
    }

    .expertise-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .expertise .section-header h2 {
        font-size: 2rem;
    }

    .expertise-card {
        padding: 25px 20px;
    }

    .expertise-card .icon {
        width: 70px;
        height: 70px;
    }

    .expertise-card .icon i {
        font-size: 2rem;
    }

    .expertise-card ul li {
        font-size: 1rem;
        padding-left: 25px;
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.08));
    position: relative;
    overflow: hidden;
    margin-top: -50px;
}

.stats::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 15px;
    display: block;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number::after {
    width: 60px;
}

.stat-card p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-card:hover p {
    color: var(--primary-color);
}

/* Add animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: countUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive styles for stats section */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        padding: 0 20px;
    }

    .stat-card {
        padding: 35px 25px;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-card:hover {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid,
    .features-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features li {
        font-size: 1rem;
    }
    
    .process-card,
    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }

    .welcome-text {
        font-size: 1rem;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 15px;
        left: -20px;
    }

    .welcome-text::after {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .hero-features li {
        font-size: 0.9rem;
    }
    
    .process-card .icon,
    .service-card .icon,
    .feature-card .icon {
        width: 60px;
        height: 60px;
    }
    
    .process-card .icon i,
    .service-card .icon i,
    .feature-card .icon i {
        font-size: 1.5rem;
    }
    
    .testimonial-card .quote {
        font-size: 1rem;
    }

    .welcome-text {
        font-size: 0.9rem;
        padding: 6px 15px;
        letter-spacing: 1.5px;
    }

    .welcome-text::before,
    .welcome-text::after {
        width: 10px;
        left: -15px;
    }

    .welcome-text::after {
        right: -15px;
    }
} 