
/* Hero Section */
.services-hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content-left {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-badge-label {
    display: inline-block;
    padding: 8px 20px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0f172a;
}

.hero-subtitle-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.hero-rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    width: fit-content;
}

.rating-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.rating-details-text {
    display: flex;
    flex-direction: column;
}

.rating-score-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.rating-stars-display {
    color: #fbbf24;
}

.rating-source-label {
    font-size: 0.85rem;
    color: #64748b;
}

.hero-cards-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
}

.hero-info-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.hero-info-card p {
    color: #64748b;
    line-height: 1.7;
}

.services-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.service-tag-item {
    padding: 8px 18px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
}

.service-tag-item:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    transform: translateY(-2px);
}

.award-badge-card {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    text-align: center;
    padding: 30px;
}

.award-logo-placeholder {
    font-size: 3rem;
    margin-bottom: 15px;
}

.award-title-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.award-navigation-arrows {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.arrow-button-nav {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-button-nav:hover {
    background: white;
    color: #ef4444;
}

/* Services Section */
.main-services-section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-top {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-small {
    display: inline-block;
    padding: 8px 20px;
    background: #ede9fe;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description-text {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.service-card-wrapper {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 50px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card-wrapper:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.service-title-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.service-description-para {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

.service-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-badge-item {
    padding: 6px 14px;
    background: #f1f5f9;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

/* Stats Section */
.statistics-showcase-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 100px 0;
}

.stats-info-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 60px;
    opacity: 0;
    transform: scale(0.9);
}

.stat-number-huge {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.stat-description-large {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.6;
}

.stats-visual-card {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 24px;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
}

.stats-visual-card .stat-number-huge {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-visual-card .stat-description-large {
    color: rgba(255, 255, 255, 0.9);
}

/* Technology Section */
.technology-feature-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin: 150px 0;
}

.tech-content-left {
    opacity: 0;
    transform: translateX(-30px);
}

.tech-visual-right {
    opacity: 0;
    transform: translateX(30px);
}

.tech-section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.tech-highlight-name {
    color: #3b82f6;
    font-style: italic;
}

.tech-description-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    margin: 30px 0;
}

.tech-description-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.tech-stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mini-stat-box {
    text-align: center;
}

.mini-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 10px;
}

.mini-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.tech-feature-card-visual {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border-radius: 24px;
    padding: 50px;
    color: white;
}

.tech-card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.tech-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.tech-features-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.tech-features-list li::before {
    content: '●';
    color: #60a5fa;
    font-size: 1.5rem;
}

.tech-mockup-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 30px;
}

/* CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: white;
    margin-top: 150px;
}

.cta-title-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-description-text {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

@media (max-width: 1024px) {

    .services-hero-section,
    .statistics-showcase-section,
    .technology-feature-section {
        grid-template-columns: 1fr;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
    }

    .services-hero-section,
    .main-services-section,
    .final-cta-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .tech-stats-mini-grid {
        grid-template-columns: 1fr;
    }
}
