/**
 * Service Page Template Styles
 * @package V4Education
 */

/* ==========================================================================
   Service Page Template - General Styles
   ========================================================================== */

.service-page-template {
    background: #fff;
}

.service-page-template .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .service-page-template .container {
        padding: 0 30px;
    }
}

.service-hero-section .container {
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0 60px !important;
}

@media (max-width: 768px) {
    .service-hero-section .container {
        padding: 0 30px !important;
    }
}

.service-page-template .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary, #1a1a2e);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-page-template .section-subtitle {
    font-size: 1.175rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-template .text-center {
    text-align: center;
}

/* ==========================================================================
   Page Layout with Sidebar
   ========================================================================== */

/* Hero section stays full width */
.service-hero-section {
    width: 100%;
}

/* Two-column layout starts AFTER hero */
.page-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 0 30px;
    }
}

.main-content-area {
    flex: 1;
    min-width: 0;
}

/* Remove extra container padding inside main content */
.main-content-area .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.page-sidebar {
    width: 400px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

/* ==========================================================================
   Sidebar Widgets
   ========================================================================== */

.sidebar-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-widget .widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Contact Form Widget */
.contact-form-widget {
    background: #f5f7fa;
    border: none;
    color: #333;
}

.contact-form-widget .widget-title {
    color: #1a202c;
    border-bottom-color: rgba(0,0,0,0.1);
}

.sidebar-contact-form .form-group {
    margin-bottom: 15px;
}

.sidebar-contact-form input[type="text"],
.sidebar-contact-form input[type="email"],
.sidebar-contact-form input[type="tel"],
.sidebar-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.sidebar-contact-form input:focus,
.sidebar-contact-form textarea:focus {
    outline: none;
    border-color: #06b6d4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

.sidebar-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.sidebar-contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
}

.sidebar-contact-form .form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

.sidebar-contact-form .form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    flex-shrink: 0;
}

.sidebar-contact-form .btn-submit {
    width: 100%;
    padding: 14px 30px;
    background: #06b6d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-contact-form .btn-submit:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.form-response {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.form-response.success {
    background: rgba(76, 175, 80, 0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.form-response.error {
    background: rgba(244, 67, 54, 0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Quick Links Widget */
.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list li:last-child {
    margin-bottom: 0;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.quick-links-list a:hover {
    color: #06b6d4;
    padding-left: 5px;
}

.quick-links-list i {
    font-size: 12px;
    color: #06b6d4;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border: none;
    color: #fff;
    text-align: center;
}

.cta-widget .cta-image {
    margin-bottom: 20px;
}

.cta-widget .cta-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-widget h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cta-widget p {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
}

.cta-widget .btn {
    background: #fff;
    color: #0891b2;
}

.cta-widget .btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Contact Info Widget */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list i {
    font-size: 18px;
    color: #06b6d4;
    width: 24px;
    text-align: center;
}

.contact-info-list a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #06b6d4;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .page-content-wrapper {
        flex-direction: column;
    }
    
    .page-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .sidebar-widget {
        padding: 20px;
    }
    
    .sidebar-widget .widget-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Hero Section - TechMagnate Style
   ========================================================================== */

.service-hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.service-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 94, 168, 0.95) 0%, rgba(30, 123, 184, 0.9) 100%);
    z-index: 1;
}

.hero-flex-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.service-hero-content {
    max-width: 100%;
    text-align: left;
}

.service-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: #fff;
}

.service-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.875rem;
    opacity: 0.95;
    line-height: 1.5;
}

.service-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.service-hero-description p {
    margin-bottom: 0.875rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    background: #ffffff;
    color: #06b6d4;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffffff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.hero-cta:hover {
    background: #06b6d4;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 94, 168, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #06b6d4;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 30px;
    font-size: 0.875rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.hero-image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    padding: 16px 20px;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 3px solid #fff;
}

.stat-badge-number {
    font-size: 2.125rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: #fff;
}

.stat-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.95;
    line-height: 1.3;
}

@media (max-width: 968px) {
    .hero-flex-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .service-hero-image {
        order: -1;
    }
    
    .hero-stat-badge {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 60px 0;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image-wrapper {
        max-width: 350px;
    }
    
    .stat-badge-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Stats Section - Recognition Badges Style
   ========================================================================== */

.stats-section {
    padding: 70px 0;
    background: #f7f9fc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-section .section-title {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #06b6d4;
    box-shadow: 0 10px 30px rgba(11, 94, 168, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #06b6d4;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.stat-label {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.4;
}

/* ==========================================================================
   Recognition List Section - Checkmark Style
   ========================================================================== */

.recognition-list-section {
    padding: 40px 0;
    background: #f5f7fa;
}

.recognition-list-section .container {
    max-width: 100%;
    padding: 0 30px;
}

.recognition-list-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.recognition-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recognition-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #2d3748;
}

.checkmark-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #06b6d4;
    margin-top: 2px;
}

.recognition-text {
    flex: 1;
}

/* ==========================================================================
   Introduction Section - Recognition Style
   ========================================================================== */

.intro-section {
    padding: 50px 0;
}

.intro-section .container {
    max-width: 100%;
    padding: 0;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.intro-content {
    grid-column: 1;
    grid-row: 1;
}

.intro-image {
    grid-column: 2;
    grid-row: 1;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intro-content .section-title {
    text-align: left;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #4a5568;
}

.intro-text p {
    margin-bottom: 1.125rem;
}

/* First paragraph stays in grid column 1 */
.intro-first-para {
    grid-column: 1;
}

/* Remaining paragraphs span full width */
.intro-remaining {
    grid-column: 1 / -1;
    margin-top: 0;
}

.intro-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.intro-text ul li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.intro-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
    font-size: 1.25rem;
}

@media (max-width: 968px) {
    .intro-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-content {
        order: 2;
    }
    
    .intro-image {
        flex: 0 0 auto;
        max-width: 100%;
        order: 1;
    }
    
    .intro-content .section-title {
        font-size: 1.375rem;
    }
}

/* ==========================================================================
   Services Grid Section - TechMagnate Style
   ========================================================================== */

.services-grid-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid-section .section-title {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-grid-section .section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 15px 40px rgba(11, 94, 168, 0.15);
    transform: translateY(-5px);
}

/* Icon Styles */
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon-fontawesome i {
    font-size: 1.75rem;
}

.service-icon-image {
    background: #f7fafc;
    padding: 10px;
}

.service-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: #1a202c;
    line-height: 1.4;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    color: #084479;
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Responsive Grid */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-section {
        padding: 60px 0;
    }
    
    .service-card {
        min-height: auto;
    }
}

/* ==========================================================================
   CTA Section - TechMagnate Style
   ========================================================================== */

.cta-section {
    padding: 60px 0;
    background: #fff;
}

/* CTA Banner 1 - Discover Customer Search */
.cta-banner-1 {
    background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
    border-radius: 20px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    color: #fff;
}

.cta-banner-1 .cta-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.cta-banner-1 .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    opacity: 1;
}

.cta-banner-1 .cta-content {
    flex: 1;
}

.cta-banner-1 .cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-1 .cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.cta-banner-1 .cta-button {
    background: #fff;
    color: #0e7490;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-banner-1 .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* CTA Banner 2 - AI-Driven Approach */
.cta-banner-2 {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    border-radius: 20px;
    padding: 50px 50px 40px 50px;
    color: #fff;
}

.cta-header-content {
    text-align: center;
    margin-bottom: 50px;
}

.cta-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-main-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cta-step {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: visible;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 2rem;
    color: #fff !important;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    z-index: 1;
    font-family: Arial, sans-serif;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff !important;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.9375rem;
    color: #ffffff !important;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive for CTA Section */
@media (max-width: 1024px) {
    .cta-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-banner-1 {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    
    .cta-banner-1 .cta-image {
        margin: 0 auto 20px;
    }
    
    .cta-banner-1 .cta-button {
        margin-top: 20px;
    }
    
    .cta-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-main-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Benefits/Campaign Section
   ========================================================================== */

.benefits-campaign-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-campaign-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 25px;
}

.benefits-campaign-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 50px;
}

.benefits-campaign-content p {
    margin-bottom: 15px;
}

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #f7fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Responsive Benefits Section */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-campaign-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Client Logos Section - Our Key Clients Style
   ========================================================================== */

.clients-section {
    padding: 70px 0;
    background: #fff;
}

.clients-section .section-title {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 40px;
    align-items: center;
}

.client-logo {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    min-height: 100px;
}

.client-logo:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #cbd5e0;
}

.client-logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================================================
   CTA Banner Section - TechMagnate Style
   ========================================================================== */

.cta-banner-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.cta-banner-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 94, 168, 0.95) 0%, rgba(30, 123, 184, 0.9) 100%);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-icon img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
}

.cta-text-content {
    flex: 1;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.0625rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-btn {
    padding: 14px 35px;
    background: #fff;
    color: #06b6d4;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Process Section - Methodology Style
   ========================================================================== */

.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-section .section-title {
    font-size: 2.5rem;
    color: #1a202c;
}

.process-section .section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 900px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    padding: 35px 30px;
    background: #f7f9fc;
    border-radius: 12px;
    border-left: 4px solid #06b6d4;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 10px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    line-height: 1.4;
}

.step-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 2rem;
}

.benefit-icon i {
    color: #ffffff;
}

.benefit-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary, #1a1a2e);
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 8px 25px rgba(11, 94, 168, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.2rem;
    color: #06b6d4;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* ==========================================================================
   Engagement Models Section
   ========================================================================== */

.engagement-section {
    padding: 80px 0;
    background: #fff;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.engagement-card {
    padding: 35px 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: left;
}

.engagement-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #d1d5db;
}

.engagement-icon {
    font-size: 2.2rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.engagement-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.engagement-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.engagement-cta {
    margin-top: 40px;
}

/* ==========================================================================
   Awards Section
   ========================================================================== */

.awards-section {
    padding: 80px 0;
    background: #f9fafb;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    padding: 35px 25px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.award-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #d1d5db;
}

.award-image {
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.award-card:hover .award-image {
    filter: grayscale(0%);
}

.award-image img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}

.award-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.award-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.case-studies-section {
    padding: 80px 0;
    background: #f9fafb;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.case-study-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 30px;
}

.case-study-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.case-study-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
    line-height: 1.4;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-study-link:hover {
    gap: 12px;
    color: #22d3ee;
}

/* ==========================================================================
   FAQs Section
   ========================================================================== */

.faqs-section {
    padding: 80px 0;
    background: #fff;
}

.faqs-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7f9fc;
    color: #06b6d4;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #06b6d4;
}

.faq-question[aria-expanded="true"] {
    background: #f7f9fc;
    color: #06b6d4;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 28px 22px;
    margin: 0;
    font-size: 0.975rem;
    line-height: 1.8;
    color: #666;
}

/* ==========================================================================
   Related Blog Posts Section
   ========================================================================== */

.related-blog-section {
    padding: 80px 0;
    background: #f9fafb;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.blog-post-category {
    color: #06b6d4;
    font-weight: 600;
}

.blog-post-date {
    color: #9ca3af;
}

.blog-post-title {
    margin-bottom: 15px;
}

.blog-post-title a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #06b6d4;
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-link:hover {
    gap: 12px;
    color: #22d3ee;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #06b6d4;
    color: #fff;
    border-color: #06b6d4;
}

.btn-primary:hover {
    background: #094a85;
    border-color: #094a85;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 94, 168, 0.3);
}

.btn-outline {
    background: transparent;
    color: #06b6d4;
    border-color: #06b6d4;
}

.btn-outline:hover {
    background: #06b6d4;
    color: #fff;
}

/* ==========================================================================
   Page Content Section
   ========================================================================== */

.page-content-section {
    padding: 60px 0;
    background: #fff;
}

.entry-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1200px) {
    .services-grid,
    .benefits-grid,
    .features-grid,
    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .service-hero-section {
        padding: 50px 0;
        min-height: 400px;
    }
    
    .hero-flex-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .service-hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin: 0 auto 20px;
        max-width: 350px;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .service-page-template {
        padding-top: 60px;
    }
    
    .service-page-template .section-title {
        font-size: 1.75rem;
    }
    
    .service-page-template .section-subtitle {
        font-size: 1rem;
    }
    
    .service-hero-section {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .service-hero-title {
        font-size: 1.875rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image-wrapper {
        max-width: 280px;
    }
    
    .hero-stat-badge {
        padding: 15px;
        min-width: 110px;
    }
    
    .stat-badge-number {
        font-size: 1.875rem;
    }
    
    .stat-badge-label {
        font-size: 0.75rem;
    }
    
    .services-grid,
    .benefits-grid,
    .features-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recognition-list-section {
        padding: 40px 0;
    }
    
    .recognition-list-title {
        font-size: 1.625rem;
    }
    
    .recognition-item {
        font-size: 0.875rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-slider,
    .case-studies-grid,
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid,
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Things You Need to Know Before Hiring Section with Tabs
   ========================================================================== */

.things-to-know-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.things-to-know-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.things-intro-text {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.things-intro-text p {
    margin-bottom: 1.5rem;
}

/* Tab Container */
.things-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Navigation */
.things-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
    padding: 0;
    margin: 0;
    border-bottom: 3px solid #0891b2;
}

.things-tab-btn {
    flex: 1;
    min-width: 180px;
    padding: 18px 25px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.things-tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #22d3ee;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.things-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.things-tab-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.things-tab-btn.active::before {
    transform: scaleX(1);
}

/* Tab Content */
.things-tabs-content {
    padding: 0;
    min-height: 400px;
}

.things-tab-pane {
    display: none;
    padding: 50px 40px;
    animation: fadeIn 0.5s ease;
}

.things-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.tab-content-inner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #06b6d4;
}

.tab-content-inner p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
}

.tab-content-inner strong {
    color: #1a1a2e;
    font-weight: 600;
}

.tab-content-inner ul,
.tab-content-inner ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.tab-content-inner ul li,
.tab-content-inner ol li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

.tab-content-inner ul li::marker {
    color: #06b6d4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .things-to-know-section {
        padding: 50px 0;
    }
    
    .things-to-know-section .section-title {
        font-size: 1.8rem;
    }
    
    .things-intro-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .things-tabs-nav {
        flex-direction: column;
    }
    
    .things-tab-btn {
        min-width: 100%;
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .things-tab-pane {
        padding: 30px 20px;
    }
    
    .tab-content-inner h3 {
        font-size: 1.5rem;
    }
    
    .tab-content-inner p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .things-to-know-section .section-title {
        font-size: 1.5rem;
    }
    
    .things-tab-btn {
        font-size: 0.95rem;
    }
    
    .tab-content-inner h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   All Services Section
   ========================================================================== */

.all-services-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 60px;
}

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

.all-services-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-item-link {
    display: block;
    padding: 35px 25px;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item-card:hover .service-item-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #22d3ee 0%, #22d3ee 100%);
}

.service-item-icon i {
    font-size: 32px;
    color: #fff;
}

.service-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-item-card:hover .service-item-title {
    color: #06b6d4;
}

.service-item-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-item-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #06b6d4;
    transition: all 0.3s ease;
}

.service-item-card:hover .service-item-more {
    color: #22d3ee;
    transform: translateX(5px);
}

.no-services-message {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    grid-column: 1 / -1;
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .all-services-section {
        padding: 50px 0;
        margin-top: 40px;
    }
    
    .all-services-section .section-title {
        font-size: 2rem;
    }
    
    .all-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .service-item-link {
        padding: 25px 20px;
    }
    
    .service-item-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-item-icon i {
        font-size: 28px;
    }
    
    .service-item-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }
    
    .all-services-section .section-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Enhanced Mobile Responsive Styles - All Sections
   ========================================================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    /* Page Layout */
    .page-content-wrapper {
        gap: 30px;
    }
    
    .page-sidebar {
        width: 320px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

/* Tablet - 992px */
@media (max-width: 992px) {
    /* Convert to single column layout */
    .page-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .page-sidebar {
        width: 100%;
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .main-content-area {
        width: 100%;
    }
}

/* Mobile & Tablet - 768px */
@media (max-width: 768px) {
    /* Container Spacing */
    .service-page-template .container,
    .page-content-wrapper {
        padding: 0 15px;
    }
    
    /* Typography */
    .service-page-template .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .service-page-template .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Hero Section */
    .service-hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .service-hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .service-hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Recognition List */
    .recognition-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .recognition-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    /* Introduction Section */
    .intro-section {
        padding: 50px 0;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-text,
    .intro-image {
        width: 100%;
        flex: none;
    }
    
    .intro-section h2 {
        font-size: 1.8rem;
    }
    
    /* Things to Know Section */
    .things-to-know-section {
        padding: 50px 0;
    }
    
    .things-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thing-item {
        padding: 25px 20px;
    }
    
    .thing-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .thing-title {
        font-size: 1.1rem;
    }
    
    .thing-description {
        font-size: 0.9rem;
    }
    
    /* Services Grid */
    .services-grid-section {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-grid-item {
        padding: 25px 20px;
    }
    
    .service-grid-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .service-grid-title {
        font-size: 1.2rem;
    }
    
    /* CTA Banners */
    .cta-banners-section {
        padding: 50px 0;
    }
    
    .cta-banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-banner {
        padding: 30px 20px;
    }
    
    .cta-banner-title {
        font-size: 1.3rem;
    }
    
    /* Benefits Section */
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    /* Client Logos */
    .client-logos-section {
        padding: 50px 0;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .client-logo-item {
        padding: 15px;
    }
    
    /* Features Grid */
    .features-grid-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    /* Engagement Models */
    .engagement-section {
        padding: 50px 0;
    }
    
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .engagement-card {
        padding: 30px 20px;
    }
    
    .engagement-title {
        font-size: 1.3rem;
    }
    
    /* Awards Section */
    .awards-section {
        padding: 50px 0;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .award-item {
        padding: 20px 15px;
    }
    
    /* Case Studies */
    .case-studies-service-section {
        padding: 50px 0;
    }
    
    .case-study-item {
        padding: 25px 20px;
    }
    
    /* Blogs & FAQs Combined */
    .blogs-faqs-section {
        padding: 50px 0;
    }
    
    .blogs-faqs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blogs-column,
    .faqs-column {
        padding: 25px 20px;
    }
    
    /* Search Trends */
    .search-trends-service-section {
        padding: 50px 0;
    }
    
    .trends-service-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Process Section */
    .process-section {
        padding: 50px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .widget-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .quick-links-list li a {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .special-offer-box {
        padding: 20px;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .contact-info-item {
        padding: 15px;
    }
}

/* Mobile - 640px */
@media (max-width: 640px) {
    /* Recognition List - Single Column on Small Mobile */
    .recognition-list {
        grid-template-columns: 1fr;
    }
    
    /* Client Logos - 2 Columns */
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Awards - Single Column */
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    /* Typography */
    .service-page-template .section-title {
        font-size: 1.5rem;
    }
    
    .service-page-template .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .service-hero-section {
        padding: 60px 0 40px;
    }
    
    .service-hero-title {
        font-size: 1.6rem;
    }
    
    .service-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-hero-description {
        font-size: 0.9rem;
    }
    
    .service-hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Stats/Numbers */
    .stat-badge-number,
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Icons */
    .service-grid-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Cards */
    .service-grid-item,
    .benefit-card,
    .feature-card,
    .thing-item,
    .process-step {
        padding: 20px 15px;
    }
    
    /* Titles */
    .service-grid-title,
    .feature-title,
    .thing-title,
    .step-title {
        font-size: 1rem;
    }
    
    /* Descriptions */
    .service-grid-description,
    .feature-description,
    .thing-description,
    .step-description {
        font-size: 0.85rem;
    }
    
    /* CTA Banners */
    .cta-banner {
        padding: 25px 15px;
    }
    
    .cta-banner-title {
        font-size: 1.1rem;
    }
    
    .cta-banner-description {
        font-size: 0.85rem;
    }
    
    /* Engagement Cards */
    .engagement-card {
        padding: 25px 15px;
    }
    
    .engagement-title {
        font-size: 1.1rem;
    }
    
    .engagement-features li {
        font-size: 0.85rem;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 20px 15px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .quick-links-list li a {
        font-size: 0.9rem;
    }
    
    .special-offer-box {
        padding: 15px;
    }
    
    .offer-title {
        font-size: 1rem;
    }
    
    .offer-description {
        font-size: 0.85rem;
    }
    
    .contact-info-item {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .service-hero-title {
        font-size: 1.4rem;
    }
    
    .service-page-template .section-title {
        font-size: 1.3rem;
    }
    
    .recognition-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .client-logos-grid {
        grid-template-columns: 1fr;
    }
}
