/* Modern Welcome Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(99, 102, 241, 0.5);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: left;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-graphic {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.floating-badge {
    position: absolute;
    background: white;
    color: #1a1a2e;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.badge-1 {
    top: 10%;
    right: 20%;
    animation-delay: -1s;
}

.badge-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: -2s;
}

.hero-image-container {
    position: relative;
    z-index: 5;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.floating-stat {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.stat-1 {
    top: 20%;
    left: -10%;
    animation-delay: -0.5s;
}

.stat-2 {
    top: 50%;
    right: -15%;
    animation-delay: -1.5s;
}

.stat-3 {
    bottom: 20%;
    left: 0%;
    animation-delay: -2.5s;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growth-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.team-icons {
    display: flex;
    gap: -5px;
}

.team-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    border: 2px solid white;
    margin-left: -5px;
}

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

/* Section Styling */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.service-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Service Icon Wrapper (About Us style) */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon-wrapper i {
    font-size: 36px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.service-card-modern:hover .service-icon-wrapper i {
    transform: scale(1.1);
}

.service-card-modern .btn-outline-primary {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card-modern .btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.service-card-modern p {
    flex-grow: 1;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 0.9rem;
}

.feature-list svg {
    color: #28a745;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-btn {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #dc3545;
    transform: translateX(5px);
}

/* Stats Showcase */
.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: white;
}

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

.industry-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.industry-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-link:hover .industry-card-modern,
.industry-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.industry-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.industry-card-modern p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 0.9rem;
}

.industry-features svg {
    color: #28a745;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Industry Button */
.industry-btn {
    display: inline-block;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.industry-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* ============================
   CTA Features Section
   ============================ */
.cta-features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-features-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* CTA Image */
.cta-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.cta-image-accent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.cta-image-dots {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    z-index: 1;
    background-image: radial-gradient(circle, #667eea 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.35;
}

.cta-image-badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

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

.cta-image-badge .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.cta-image-badge .badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a2e;
    line-height: 1.2;
}

.cta-image-badge .badge-text span {
    font-size: 0.8rem;
    color: #6c757d;
}

/* CTA Content */
.cta-features-content {
    margin-bottom: 0.5rem;
}

.cta-features-content .section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-features-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-features-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Feature Cards */
.cta-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.cta-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.15);
}

.cta-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.25);
}

.cta-feature-icon i {
    font-size: 20px;
    color: #ffffff;
}

.cta-feature-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.cta-feature-icon.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 6px 18px rgba(168, 85, 247, 0.25);
}

.cta-feature-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 6px 18px rgba(236, 72, 153, 0.25);
}

.cta-feature-card:hover .cta-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-feature-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.35rem;
}

.cta-feature-text p {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

/* CTA Features Responsive */
@media (max-width: 991.98px) {
    .cta-features-section {
        padding: 4rem 0;
    }
    .cta-features-title {
        font-size: 1.65rem;
    }
    .cta-image-badge {
        right: 16px;
        bottom: 16px;
    }
    .cta-image-accent {
        width: 80px;
        height: 80px;
        bottom: -10px;
        left: -10px;
    }
    .cta-image-dots {
        width: 70px;
        height: 70px;
        top: -14px;
        right: -14px;
    }
}

@media (max-width: 575.98px) {
    .cta-feature-card {
        padding: 1rem;
    }
    .cta-image-accent,
    .cta-image-dots {
        display: none;
    }
    .cta-image-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 14px;
    }
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.process-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
}

.process-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.process-card-modern p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
}

.testimonial-card-modern blockquote {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-company {
    color: #999;
    font-size: 0.8rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Modern Feature Cards */
.feature-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: #ffffff;
}

.feature-icon-wrapper.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.feature-icon-wrapper.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.feature-icon-wrapper.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.feature-card-modern p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.section-badge-light {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-subtitle-light {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h6 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.feature-content small {
    color: #666;
    font-size: 0.85rem;
}

.btn-cta {
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

.cta-button {
    text-align: left;
    margin: 1rem 0;
}

.team-image-container {
    position: relative;
}

.team-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.achievement-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.badge-success {
    top: 10%;
    right: -10%;
    animation-delay: -1s;
}

.badge-roi {
    bottom: 10%;
    left: -10%;
    animation-delay: -2s;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.achievement-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.text-accent {
    background: linear-gradient(135deg, #6366f1, #dc3545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #6366f1, #dc3545);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.cta-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.cta-decoration {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.decoration-1 {
    top: 15%;
    left: 10%;
    animation-delay: -1s;
}

.decoration-2 {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.decoration-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -3s;
}

/* Header Responsive Improvements */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    
    .navbar-brand span {
        display: inline-block !important;
        background: none !important;
        color: #dc3545 !important;
        -webkit-text-fill-color: #dc3545 !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
    }
    
    .navbar-brand .me-2 {
        margin-right: 0.5rem !important;
    }
    
    .dropdown-menu {
        min-width: 280px !important;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    
    .dropdown-menu {
        min-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .dropdown-item {
        padding: 1rem !important;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .btn {
        margin-top: 1rem;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .navbar-collapse {
        border-top: 1px solid #f1f3f4;
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

/* Container Responsive Improvements */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-brand span {
        display: inline-block !important;
        background: none !important;
        color: #dc3545 !important;
        -webkit-text-fill-color: #dc3545 !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
    }
    
    .navbar-brand .me-2 {
        width: 35px !important;
        height: 35px !important;
    }
    
    .dropdown-item {
        font-size: 0.9rem;
    }
    
    .dropdown-item small {
        font-size: 0.75rem;
    }
}

/* Enhanced Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title,
    .section-title-light {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-graphic {
        max-width: 500px;
    }
    
    .floating-stat {
        font-size: 0.9rem;
    }
    
    .stat-1 {
        left: -5%;
    }
    
    .stat-2 {
        right: -10%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-section {
        min-height: 80vh;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title,
    .section-title-light {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-showcase {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 180px;
        flex: 1;
    }
    
    .trust-grid {
        gap: 1.5rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .cta-metrics {
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    /* Adjust floating elements for tablets */
    .floating-badge,
    .floating-stat {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
        display: inline-block;
    }
    
    .badge-1,
    .badge-2,
    .stat-1,
    .stat-2,
    .stat-3 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
    
    .achievement-badge {
        position: relative;
        animation: none;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .badge-success,
    .badge-roi {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-actions {
        text-align: center;
        justify-content: center;
    }
    
    .trust-grid {
        justify-content: center;
        text-align: center;
    }
    
    .trust-item {
        text-align: center;
    }
    
    .section-title,
    .section-title-light {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle,
    .section-subtitle-light {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Single column layouts */
    .services-grid,
    .industries-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stack trust indicators */
    .trust-grid {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .trust-item {
        text-align: center;
        min-width: 150px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    /* Stack stats showcase */
    .stats-showcase {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        max-width: 280px;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Features grid single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* CTA section adjustments */
    .cta-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-badge {
        text-align: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }
    
    .cta-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .cta-subtitle {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-metrics {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        margin: 2rem 0;
    }
    
    .metric {
        text-align: center;
        max-width: 200px;
    }
    
    .metric-number {
        text-align: center;
    }
    
    .metric-label {
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .contact-item {
        text-align: center;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .cta-button {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1rem 0;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
        margin: 0 auto;
    }
    
    /* Card padding adjustments */
    .service-card-modern,
    .industry-card-modern,
    .testimonial-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .process-card-modern {
        padding: 1.5rem;
    }
    
    /* Hero visual adjustments */
    .hero-graphic {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .hero-main-image {
        max-height: 300px;
        object-fit: contain;
    }
    
    /* Modern badge adjustments */
    .modern-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section-badge,
    .section-badge-light,
    .cta-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    /* Button adjustments */
    .btn-primary-modern,
    .btn-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title,
    .section-title-light {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .section-subtitle,
    .section-subtitle-light,
    .cta-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Compact padding */
    .service-card-modern,
    .industry-card-modern,
    .testimonial-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .process-card-modern {
        padding: 1.25rem 1rem;
    }
    
    /* Smaller buttons */
    .btn-primary-modern,
    .btn-cta,
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
    
    /* Compact trust indicators */
    .trust-number,
    .stat-number {
        font-size: 1.75rem;
    }
    
    .trust-label,
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Smaller icons */
    .service-icon-modern,
    .industry-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .process-icon-modern {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Compact floating elements */
    .floating-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .floating-stat {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Grid adjustments */
    .industries-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Team image and visual area adjustments */
    .visual-area {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .team-image-container {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .team-image {
        max-height: 250px;
        object-fit: cover;
    }
    
    .achievement-badge {
        position: relative !important;
        display: inline-block;
        margin: 0.5rem;
        animation: none;
    }
    
    .badge-success,
    .badge-roi {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        margin: 0.5rem;
    }
    
    /* Section spacing */
    .services-section,
    .industries-section,
    .process-section,
    .testimonials-section,
    .why-choose-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title,
    .section-title-light,
    .cta-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .service-card-modern,
    .industry-card-modern,
    .testimonial-card-modern,
    .process-card-modern {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 1.25rem 0.75rem;
    }
    
    .btn-primary-modern,
    .btn-cta,
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .trust-number,
    .stat-number {
        font-size: 1.5rem;
    }
    
    .modern-badge,
    .section-badge,
    .section-badge-light,
    .cta-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

/* Touch and Mobile UX Improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .service-btn,
    .btn-primary-modern,
    .btn-cta,
    .btn-cta-primary,
    .btn-cta-secondary {
        min-height: 44px;
        padding: 12px 20px;
        touch-action: manipulation;
    }
    
    /* Better link spacing */
    .industry-link,
    .service-card-modern {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Improved card interactions */
    .service-card-modern:active,
    .industry-card-modern:active,
    .testimonial-card-modern:active {
        transform: scale(0.98);
    }
    
    /* Better scrolling */
    .hero-section,
    .services-section,
    .industries-section,
    .process-section,
    .testimonials-section,
    .why-choose-section,
    .cta-section {
        scroll-margin-top: 80px;
    }
    
    /* Improved text readability */
    .service-card-modern p,
    .industry-card-modern p,
    .testimonial-card-modern blockquote {
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    /* Better form elements if any */
    input,
    textarea,
    select,
    button {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-main-image,
    .team-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --card-bg: #1f2937;
        --text-color: #f9fafb;
        --text-muted: #9ca3af;
        --border-color: #374151;
    }
    
    .service-card-modern,
    .industry-card-modern,
    .testimonial-card-modern,
    .process-card-modern,
    .stat-item {
        background: var(--card-bg);
        color: var(--text-color);
        border-color: var(--border-color);
    }
    
    .service-card-modern p,
    .industry-card-modern p,
    .testimonial-card-modern blockquote,
    .process-card-modern p {
        color: var(--text-muted);
    }
}

/* Focus Improvements for Accessibility */
@media (max-width: 768px) {
    .btn-primary-modern:focus,
    .btn-cta:focus,
    .btn-cta-primary:focus,
    .btn-cta-secondary:focus,
    .service-btn:focus {
        outline: 3px solid rgba(99, 102, 241, 0.5);
        outline-offset: 2px;
    }
    
    .industry-link:focus .industry-card-modern,
    .service-card-modern:focus {
        outline: 2px solid rgba(99, 102, 241, 0.5);
        outline-offset: 2px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .trust-grid {
        margin-top: 1rem;
    }
    
    .modern-badge {
        margin-bottom: 1rem;
    }
}

/* Animation Performance */
@media (prefers-reduced-motion: reduce) {
    .floating-badge,
    .floating-stat,
    .achievement-badge,
    .cta-decoration {
        animation: none;
    }
    
    .modern-badge {
        animation: none;
    }
    
    .service-card-modern:hover,
    .industry-card-modern:hover,
    .testimonial-card-modern:hover,
    .process-card-modern:hover,
    .stat-item:hover {
        transform: none;
    }
    
    .btn-primary-modern:hover,
    .btn-cta:hover,
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .floating-badge,
    .floating-stat,
    .achievement-badge,
    .cta-decoration {
        display: none;
    }
    
    .hero-section,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .service-card-modern,
    .industry-card-modern,
    .testimonial-card-modern {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
