/* Scoped CSS for Web Development Section Only */
#web-development-section.web-development-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

#web-development-section .section-header {
    margin-bottom: 40px;
}

#web-development-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

#web-development-section .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

/* Benefits Card */
#web-development-section .benefits-card,
#web-development-section .considerations-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid #2876A9;
}

#web-development-section .benefit-item,
#web-development-section .consideration-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#web-development-section .benefit-item:hover,
#web-development-section .consideration-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

#web-development-section .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

#web-development-section .benefit-icon i {
    color: white;
    font-size: 24px;
}

#web-development-section .benefit-content h4,
#web-development-section .consideration-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

#web-development-section .benefit-content p,
#web-development-section .consideration-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Considerations List */
#web-development-section .consideration-item {
    align-items: center;
}

#web-development-section .consideration-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Conclusion Card */
#web-development-section .conclusion-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

#web-development-section .conclusion-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

#web-development-section .conclusion-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

#web-development-section .conclusion-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

#web-development-section .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#web-development-section .theme_btn {
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

#web-development-section .theme_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    #web-development-section.web-development-services {
        padding: 50px 0;
    }

    #web-development-section .benefits-card,
    #web-development-section .considerations-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    #web-development-section .benefit-item,
    #web-development-section .consideration-item {
        flex-direction: column;
        text-align: center;
    }

    #web-development-section .benefit-icon,
    #web-development-section .consideration-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #web-development-section .conclusion-features {
        flex-direction: column;
        align-items: center;
    }

    #web-development-section .conclusion-card {
        padding: 30px 20px;
    }

    #web-development-section .conclusion-content h3 {
        font-size: 24px;
    }

    #web-development-section .conclusion-content p {
        font-size: 16px;
    }
}

/* Web Development Overview Styles */
.web-development-overview {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;

    border-left: 4px solid #2876A9;
}

.web-development-overview h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.web-development-overview h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

.web-development-overview p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.development-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #2876A9;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.category-item h4::before {
    content: '✓';
    width: 25px;
    height: 25px;
    background: #2876A9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}

.category-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .web-development-overview {
        padding: 30px 20px;
    }

    .development-categories {
        grid-template-columns: 1fr;
    }

    .category-item {
        padding: 20px;
    }

    .web-development-overview h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .web-development-overview {
        padding: 25px 15px;
    }

    .category-item {
        padding: 15px;
    }

    .category-item h4 {
        font-size: 16px;
    }

    .category-item p {
        font-size: 13px;
    }
}

/* Web Design Overview Styles - Blue Color Scheme */
.web-design-overview {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #2876A9;
}

.web-design-overview h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.web-design-overview h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

.web-design-overview p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.web-design-overview .highlight-text {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2876A9;
    font-weight: 600;
    color: #2c3e50;
}

.design-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.component-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #2876A9;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.component-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.component-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.component-icon i {
    color: white;
    font-size: 24px;
}

.component-content {
    flex: 1;
}

.component-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.component-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

/* Web Design Services Section */
.web-design-services {
    background: white;
    padding: 80px 0;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .web-design-overview {
        padding: 30px 20px;
    }

    .design-components {
        grid-template-columns: 1fr;
    }

    .component-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .component-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .web-design-overview h3 {
        font-size: 24px;
    }

    .web-design-overview .highlight-text {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .web-design-overview {
        padding: 25px 15px;
    }

    .component-item {
        padding: 15px;
    }

    .component-icon {
        width: 50px;
        height: 50px;
    }

    .component-icon i {
        font-size: 20px;
    }

    .component-content h4 {
        font-size: 16px;
    }

    .component-content p {
        font-size: 13px;
    }
}

/* Scoped CSS for Web Design Section Only */
#web-design-section.web-design-services {
    background: white;
    padding: 80px 0;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#web-design-section .benefits-card,
#web-design-section .considerations-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid #2876A9;
}

#web-design-section .section-header {
    margin-bottom: 40px;
}

#web-design-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

#web-design-section .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

#web-design-section .benefits-list .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#web-design-section .benefits-list .benefit-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

#web-design-section .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

#web-design-section .benefit-icon i {
    color: white;
    font-size: 24px;
}

#web-design-section .benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

#web-design-section .benefit-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

#web-design-section .considerations-list .consideration-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#web-design-section .considerations-list .consideration-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

#web-design-section .consideration-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

#web-design-section .consideration-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

#web-design-section .consideration-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

#web-design-section .conclusion-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

#web-design-section .conclusion-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

#web-design-section .conclusion-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

#web-design-section .conclusion-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

#web-design-section .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#web-design-section .theme_btn {
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

#web-design-section .theme_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {

    #web-design-section .benefits-card,
    #web-design-section .considerations-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    #web-design-section .benefits-list .benefit-item,
    #web-design-section .considerations-list .consideration-item {
        flex-direction: column;
        text-align: center;
    }

    #web-design-section .benefit-icon,
    #web-design-section .consideration-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #web-design-section .conclusion-card {
        padding: 30px 20px;
    }

    #web-design-section .conclusion-content h3 {
        font-size: 24px;
    }

    #web-design-section .conclusion-content p {
        font-size: 16px;
    }

    #web-design-section .conclusion-features {
        flex-direction: column;
        align-items: center;
    }
}

/* SEO and Digital Marketing Overview Styles */
.seo-digital-overview {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #2876A9;
}

.seo-digital-overview h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.seo-digital-overview h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

.seo-digital-overview p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.seo-highlight-text {
    background: linear-gradient(135deg, #2876A915, #2980b915);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #2876A9;
    font-weight: 500;
    color: #2c3e50;
}

.seo-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.seo-component-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #2876A9;
}

.seo-component-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.seo-component-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.seo-component-icon i {
    font-size: 24px;
    color: white;
}

.seo-component-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.seo-component-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-digital-overview {
        padding: 30px 20px;
    }

    .seo-components {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-component-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .seo-component-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .seo-digital-overview h3 {
        font-size: 24px;
    }
}

/* Scoped CSS for SEO Section Only */
#seo-digital-section.seo-digital-section {
    background: white;
    padding: 80px 0;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#seo-digital-section .seo-benefits-card,
#seo-digital-section .seo-considerations-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid #2876A9;
}

#seo-digital-section .seo-section-header {
    margin-bottom: 40px;
}

#seo-digital-section .seo-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

#seo-digital-section .seo-section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

#seo-digital-section .seo-benefits-list .seo-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#seo-digital-section .seo-benefits-list .seo-benefit-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

#seo-digital-section .seo-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

#seo-digital-section .seo-benefit-icon i {
    color: white;
    font-size: 24px;
}

#seo-digital-section .seo-benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

#seo-digital-section .seo-benefit-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

#seo-digital-section .seo-considerations-list .seo-consideration-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#seo-digital-section .seo-considerations-list .seo-consideration-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

#seo-digital-section .seo-consideration-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

#seo-digital-section .seo-consideration-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

#seo-digital-section .seo-consideration-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

#seo-digital-section .seo-conclusion-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

#seo-digital-section .seo-conclusion-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

#seo-digital-section .seo-conclusion-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

#seo-digital-section .seo-conclusion-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

#seo-digital-section .seo-feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#seo-digital-section .seo-theme-btn {
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

#seo-digital-section .seo-theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {

    #seo-digital-section .seo-benefits-card,
    #seo-digital-section .seo-considerations-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    #seo-digital-section .seo-benefits-list .seo-benefit-item,
    #seo-digital-section .seo-considerations-list .seo-consideration-item {
        flex-direction: column;
        text-align: center;
    }

    #seo-digital-section .seo-benefit-icon,
    #seo-digital-section .seo-consideration-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #seo-digital-section .seo-conclusion-card {
        padding: 30px 20px;
    }

    #seo-digital-section .seo-conclusion-content h3 {
        font-size: 24px;
    }

    #seo-digital-section .seo-conclusion-content p {
        font-size: 16px;
    }

    #seo-digital-section .seo-conclusion-features {
        flex-direction: column;
        align-items: center;
    }
}
/* App Development Overview Styles */
.app-development-overview {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #2876A9;
}

.app-development-overview h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.app-development-overview h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

.app-development-overview p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.app-highlight-text {
    background: linear-gradient(135deg, #2876A915, #2980b915);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #2876A9;
    font-weight: 500;
    color: #2c3e50;
}

.app-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.app-component-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #2876A9;
}

.app-component-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.app-component-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.app-component-icon i {
    font-size: 24px;
    color: white;
}

.app-component-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.app-component-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-development-overview {
        padding: 30px 20px;
    }
    
    .app-components {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-component-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .app-component-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .app-development-overview h3 {
        font-size: 24px;
    }
}

/* App Development Services Section - Unique Classes */
.app-development-section {
    background: white;
    padding: 80px 0;
    margin-top: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.app-section-header {
    margin-bottom: 40px;
}

.app-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.app-section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 2px;
}

/* App Benefits Card */
.app-benefits-card, .app-considerations-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    border-left: 4px solid #2876A9;
}

.app-considerations-card {
    border-left-color: #2876A9;
}

.app-benefit-item, .app-consideration-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.app-benefit-item:hover, .app-consideration-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.app-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.app-benefit-icon i {
    font-size: 24px;
    color: white;
}

.app-benefit-content h4, .app-consideration-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.app-benefit-content p, .app-consideration-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* App Considerations List */
.app-consideration-item {
    align-items: center;
}

.app-consideration-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* App Conclusion Card */
.app-conclusion-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.app-conclusion-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.app-conclusion-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-conclusion-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.app-feature-tag {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.app-theme-btn {
    background: linear-gradient(45deg, #2876A9, #2980b9);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.app-theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    color: white;
}

/* App Spacing Utilities */
.app-mb-6 {
    margin-bottom: 60px;
}

.app-mt-4 {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-development-section {
        padding: 50px 0;
    }
    
    .app-benefits-card, .app-considerations-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .app-benefit-item, .app-consideration-item {
        flex-direction: column;
        text-align: center;
    }
    
    .app-benefit-icon, .app-consideration-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .app-conclusion-card {
        padding: 30px 20px;
    }
    
    .app-conclusion-content h3 {
        font-size: 24px;
    }
    
    .app-conclusion-content p {
        font-size: 16px;
    }
    
    .app-conclusion-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .app-section-title {
        font-size: 24px;
    }
    
    .app-benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-benefit-icon i {
        font-size: 20px;
    }
    
    .app-consideration-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .app-benefit-content h4, .app-consideration-content h4 {
        font-size: 16px;
    }
    
    .app-benefit-content p, .app-consideration-content p {
        font-size: 14px;
    }
}
 
        .ssl-service-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #3498db;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ssl-service-card:hover {
          
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .ssl-service-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 24px;
            min-height: 60px;
        }

        .ssl-service-card .icon {
            font-size: 40px;
            color: #3498db;
            margin-bottom: 20px;
        }

        .ssl-service-card p {
            flex-grow: 1;
            margin-bottom: 20px;
            color: #555;
        }

        .ssl-features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }

        .ssl-features-list li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-start;
        }

        .ssl-features-list li:last-child {
            border-bottom: none;
        }

        .ssl-features-list i {
            color: #2876A9;
            margin-right: 10px;
            margin-top: 2px;
        }

        .ssl-features-list span {
            flex: 1;
        }

        /* Equal height row */
        .equal-height-row {
            display: flex;
            flex-wrap: wrap;
        }

        .equal-height-row .col-lg-6,
        .equal-height-row .col-md-6,
        .equal-height-row .col-lg-12,
        .equal-height-row .col-md-12 {
            display: flex;
        }

        /* Zig-zag border colors as requested */
        .ssl-card-dv {
            border-left-color: #2980b9;
        }

        .ssl-card-dv .icon {
            color: #2980b9;
        }

        .ssl-card-ov {
            border-left-color: #3498db;
        }

        .ssl-card-ov .icon {
            color: #3498db;
        }

        .ssl-card-ev {
            border-left-color: #3498db;
        }

        .ssl-card-ev .icon {
            color: #3498db;
        }

        .ssl-card-wildcard {
            border-left-color: #2980b9;
        }

        .ssl-card-wildcard .icon {
            color: #2980b9;
        }

        .ssl-card-multi {
            border-left-color: #2980b9;
        }

        .ssl-card-multi .icon {
            color: #2980b9;
        }

        /* Ensure proper spacing */
        .row.align-items-center {
            align-items: stretch;
        }
    