/* Responsive styles for Cloud Migration page */

/* General styles for small screens */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .page-hero {
        padding: 20px;
        text-align: center;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .overview-content {
        flex-direction: column;
        text-align: center;
    }

    .overview-image img {
        width: 100%;
        height: auto;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        margin-bottom: 20px;
        flex: 1 1 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .case-study {
        
        flex-direction: column;
    }

    .case-study-image img {
        width: 100%;
        height: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        padding: 10px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        margin-bottom: 10px;
    }

    .cta-form {
        width: 100%;
    }

    .overview-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 10px;
    }

    .optimization-areas {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .optimization-area {
        flex: 1 1 100%;
        text-align: center;
    }

    .approach-steps {
        flex-direction: column;
    }

    .approach-step {
        margin-bottom: 20px;
    }

    .tools-grid {
        flex-direction: column;
    }

    .tool-category {
        margin-bottom: 20px;
    }

    .case-study-content {
        flex-direction: column;
        text-align: center;
    }

    .related-solutions-grid {
        flex-direction: column;
    }

    .related-solution-card {
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .service-tiers {
        flex-direction: column;
    }

    .tier-card {
        margin-bottom: 20px;
    }

    .cloud-platforms {
        flex-direction: column;
    }

    .platform-card {
        margin-bottom: 20px;
    }

    .faq-accordion {
        padding: 10px;
    }

    .service-options-grid {
        grid-template-columns: 1fr;
    }

    .technologies-grid {
        grid-template-columns: 1fr;
    }

    .technology-logos {
        flex-direction: column;
    }

    .challenges-grid, .technologies-grid {
        grid-template-columns: 1fr;
    }

    .challenge-card, .technology-card {
        padding: 15px;
    }

    .challenge-card h3, .technology-card h3 {
        font-size: 18px;
    }

    .challenge-card p, .technology-card p {
        font-size: 14px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-card {
        padding: 15px;
    }
    .solution-card h3 {
        font-size: 1.25rem;
    }
    .solution-card p {
        font-size: 0.9rem;
    }
}

/* Additional styles for extra small screens */
@media (max-width: 480px) {
    .page-hero-title {
        font-size: 20px;
    }

    .page-hero-subtitle {
        font-size: 14px;
    }

    .overview-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 10px;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .optimization-area h3 {
        font-size: 18px;
    }

    .optimization-area p {
        font-size: 14px;
    }

    .approach-step-content h3 {
        font-size: 18px;
    }

    .approach-step-content p {
        font-size: 14px;
    }

    .tool-item {
        flex-direction: column;
        text-align: center;
    }

    .tool-icon img {
        width: 100%;
        height: auto;
    }

    .case-study-results {
        flex-direction: column;
    }

    .result-item {
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .tier-card h3 {
        font-size: 18px;
    }

    .tier-card p {
        font-size: 14px;
    }

    .platform-card h3 {
        font-size: 18px;
    }

    .platform-card p {
        font-size: 14px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .option-header h3 {
        font-size: 18px;
    }

    .option-content p {
        font-size: 14px;
    }

    .technology-logo img {
        width: 40px;
    }

    .challenge-card h3, .technology-card h3 {
        font-size: 16px;
    }

    .challenge-card p, .technology-card p {
        font-size: 12px;
    }
}

/* Additional styling for Benefits and Migration sections */

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 10px;
}

/* Migration Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 36px;
    color: #28a745;
    margin-bottom: 10px;
}

/* Styling for Migration Approach Section */

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.process-step {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.process-step-number {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.process-step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-step {
        flex: 1 1 100%;
    }
}

/* Styling for Optimization Areas Section */
.optimization-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.optimization-area {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.optimization-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.area-icon {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 10px;
}

/* Styling for Optimization Areas List Items */
.optimization-areas .area-features {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.optimization-areas .area-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.optimization-areas .area-features li i {
    margin-right: 10px;
    color: #007bff; /* Icon color */
}

/* Styling for Our Approach Section */
.approach-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.approach-step {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

/* Styling for Optimization Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tool-category {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Styling for Case Study Section */
.case-study-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.case-study-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-study-text {
    flex: 1 1 50%;
    padding: 20px;
}

.case-study-results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.result-item {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
}

.result-value {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.result-label {
    font-size: 14px;
    color: #555;
}

/* Styling for Related Solutions Section */
.related-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-solution-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for Managed Cloud page */

/* General styles for small screens */
@media (max-width: 768px) {
    .page-hero {
        padding: 20px;
        text-align: center;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .overview-content {
        flex-direction: column;
        text-align: center;
    }

    .overview-image img {
        width: 100%;
        height: auto;
    }

    .overview-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .service-tiers {
        flex-direction: column;
    }

    .tier-card {
        margin-bottom: 20px;
    }

    .approach-steps {
        flex-direction: column;
    }

    .approach-step {
        margin-bottom: 20px;
    }

    .case-study-content {
        flex-direction: column;
        text-align: center;
    }

    .case-study-image img {
        width: 100%;
        height: auto;
    }

    .case-study-results {
        flex-direction: column;
    }

    .result-item {
        margin-bottom: 10px;
    }

    .cloud-platforms {
        flex-direction: column;
    }

    .platform-card {
        margin-bottom: 20px;
    }

    .faq-accordion {
        padding: 10px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        margin-bottom: 10px;
    }

    .cta-form {
        width: 100%;
    }

    .related-solutions-grid {
        grid-template-columns: 1fr;
    }

    .related-solution-card {
        margin-bottom: 20px;
    }
}

/* Additional styles for extra small screens */
@media (max-width: 480px) {
    .page-hero-title {
        font-size: 20px;
    }

    .page-hero-subtitle {
        font-size: 14px;
    }

    .overview-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .tier-card h3 {
        font-size: 18px;
    }

    .tier-card p {
        font-size: 14px;
    }

    .approach-step-content h3 {
        font-size: 18px;
    }

    .approach-step-content p {
        font-size: 14px;
    }

    .case-study-results {
        flex-direction: column;
    }

    .result-item {
        margin-bottom: 10px;
    }

    .platform-card h3 {
        font-size: 18px;
    }

    .platform-card p {
        font-size: 14px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* Styling for Key Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Center align icons in Key Features section */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
}

/* Styling for Service Tiers Section */
.service-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.tier-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.tier-header {
    margin-bottom: 15px;
}

.tier-price {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tier-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tier-features li i {
    margin-right: 10px;
    color: #28a745;
}

/* Ribbon style for "Most Popular" badge in Service Tiers */
.tier-card .tier-badge {
    position: absolute;
    top: 10px;
    left: -10px;
    background-color: #007bff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    transform: rotate(360deg);
    transform-origin: top left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling for Contact Links in Service Tiers Section */
.tier-card .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    background-color: transparent;
    border: 2px solid #007bff;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.tier-card .btn:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.tier-card .btn:active {
    transform: translateY(0);
}

/* Styling for Cloud Platforms Section */
.cloud-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.platform-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.platform-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

/* Add padding-bottom to tier-2-desc class */
.tier-1-desc {
    padding-bottom: 30px;
}
.tier-2-desc {
    padding-bottom: 5px;
}

/* Styling for Service Options Section */
.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-option-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.option-header {
    margin-bottom: 15px;
}

.option-icon {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 10px;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.option-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-features li i {
    margin-right: 10px;
    color: #28a745;
}

/* Styling for Technologies Section */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.technology-category {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.technology-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.technology-logo {
    text-align: center;
}

.technology-logo img {
    width: 50px;
    height: auto;
    margin-bottom: 5px;
}

/* Responsive styles for Service Options and Technologies */
@media (max-width: 768px) {
    .service-options-grid {
        grid-template-columns: 1fr;
    }

    .technologies-grid {
        grid-template-columns: 1fr;
    }

    .technology-logos {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .option-header h3 {
        font-size: 18px;
    }

    .option-content p {
        font-size: 14px;
    }

    .technology-logo img {
        width: 40px;
    }
}

/* Cloud Security Challenges Section */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.challenge-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
}

.challenge-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.challenge-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.challenge-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Center align icons in Challenges section */
#challenges .icon-box {
    font-size: 50px; /* Increase icon size */
    background: #f0f0f0; /* Adjust background color */
    padding: 20px; /* Add padding to adjust background size */
    border-radius: 50%; /* Make background circular */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    color: white;
}

/* Technologies Section */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.technology-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-5px);
}

.technology-logo img {
    max-width: 100px;
    margin-bottom: 15px;
}

.technology-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.technology-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Remove Bullet Points from All Lists */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li, ol li {
    text-align: left;
    padding-left: 20px;
    position: relative;
}

/* Best Practices Section */
.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.practice-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
}

.practice-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.practice-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.practice-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Design for Best Practices */
@media (max-width: 768px) {
    .best-practices-grid {
        grid-template-columns: 1fr;
    }

    .practice-card {
        padding: 15px;
    }

    .practice-card h3 {
        font-size: 18px;
    }

    .practice-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .practice-card h3 {
        font-size: 16px;
    }

    .practice-card p {
        font-size: 12px;
    }
}

/* Regulations & Standards Section */
.regulations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.regulation-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.regulation-card:hover {
    transform: translateY(-5px);
}

.regulation-logo img {
    max-width: 100px;
    margin-bottom: 15px;
}

.regulation-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.regulation-card p {
    font-size: 16px;
    line-height: 1.5;
}

.regulation-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.regulation-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.regulation-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Responsive Design for Regulations & Standards */
@media (max-width: 768px) {
    .regulations-grid {
        grid-template-columns: 1fr;
    }

    .regulation-card {
        padding: 15px;
    }

    .regulation-card h3 {
        font-size: 18px;
    }

    .regulation-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .regulation-card h3 {
        font-size: 16px;
    }

    .regulation-card p {
        font-size: 12px;
    }
}

/* Security Operations Center Section */
.soc-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.soc-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.soc-text {
    flex: 1;
    padding: 20px;
}

.soc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.soc-feature {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.soc-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Design for Security Operations Center */
@media (max-width: 768px) {
    .soc-content {
        flex-direction: column;
    }

    .soc-text {
        padding: 15px;
    }

    .soc-features {
        grid-template-columns: 1fr;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-content h4 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 12px;
    }
}

/* Service Offerings Section */
.service-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-offering {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-offering:hover {
    transform: translateY(-5px);
}

.offering-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offering-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.offering-content p {
    font-size: 16px;
    line-height: 1.5;
}

.offering-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.offering-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.offering-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Delivery Models Section */
.delivery-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.delivery-model {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.delivery-model:hover {
    transform: translateY(-5px);
}

.model-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.model-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.model-content p {
    font-size: 16px;
    line-height: 1.5;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.model-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.model-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Responsive Design for Service Offerings and Delivery Models */
@media (max-width: 768px) {
    .service-offerings-grid, .delivery-models {
        grid-template-columns: 1fr;
    }

    .service-offering, .delivery-model {
        padding: 15px;
    }

    .offering-content h3, .model-content h3 {
        font-size: 18px;
    }

    .offering-content p, .model-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .offering-content h3, .model-content h3 {
        font-size: 16px;
    }

    .offering-content p, .model-content p {
        font-size: 12px;
    }
}

/* Key Capabilities Section */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.capability-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capability-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 16px;
    line-height: 1.5;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.capability-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.capability-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Industry Applications Section */
.industry-applications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.industry-application {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-application:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.industry-content p {
    font-size: 16px;
    line-height: 1.5;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.industry-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.industry-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .capabilities-grid, .industry-applications {
        grid-template-columns: 1fr;
    }

    .capability-card, .industry-application {
        padding: 15px;
    }

    .capability-card h3, .industry-content h3 {
        font-size: 18px;
    }

    .capability-card p, .industry-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .capability-card h3, .industry-content h3 {
        font-size: 16px;
    }

    .capability-card p, .industry-content p {
        font-size: 12px;
    }
}

/* Agentic AI Applications Section */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.application-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
}

.application-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.application-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.application-card p {
    font-size: 16px;
    line-height: 1.5;
}

.application-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.application-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.application-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Responsible AI Section */
.responsible-ai-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.responsible-ai-text {
    flex: 1;
    padding: 20px;
}

.responsible-ai-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.responsible-ai-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.responsible-ai-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.responsible-ai-list li i {
    margin-right: 10px;
    color: #007BFF;
    font-size: 20px;
}

/* Responsive Design for Agentic AI Applications and Responsible AI */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .application-card {
        padding: 15px;
    }

    .application-card h3 {
        font-size: 18px;
    }

    .application-card p {
        font-size: 14px;
    }

    .responsible-ai-content {
        flex-direction: column;
    }

    .responsible-ai-text {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .application-card h3 {
        font-size: 16px;
    }

    .application-card p {
        font-size: 12px;
    }

    .responsible-ai-list li i {
        font-size: 18px;
    }
}

/* AI Governance Framework Section */
.framework-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.framework-diagram img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pillar-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillar-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pillar-item p {
    font-size: 16px;
    line-height: 1.5;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pillar-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pillar-features li i {
    margin-right: 10px;
    color: #007BFF;
}

/* Regulatory Landscape Section */
.regulatory-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.regulatory-text {
    flex: 1;
    padding: 20px;
}

.regulatory-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.regulatory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.regulatory-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.regulatory-list li i {
    margin-right: 10px;
    color: #007BFF;
    font-size: 20px;
}

.regulatory-map {
    margin-top: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.region-item {
    margin-bottom: 20px;
}

.region-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.region-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-item ul li {
    margin-bottom: 5px;
}

/* Responsive Design for AI Governance Framework and Regulatory Landscape */
@media (max-width: 768px) {
    .framework-content {
        grid-template-columns: 1fr;
    }

    .pillar-item {
        padding: 15px;
    }

    .pillar-item h3 {
        font-size: 18px;
    }

    .pillar-item p {
        font-size: 14px;
    }

    .regulatory-content {
        flex-direction: column;
    }

    .regulatory-text {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .pillar-item h3 {
        font-size: 16px;
    }

    .pillar-item p {
        font-size: 12px;
    }

    .regulatory-list li i {
        font-size: 18px;
    }
}

/* Responsive styles for Implementation Process */
@media (max-width: 992px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .step-number {
        left: 8px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .implementation-types {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .process-step {
        padding-left: 60px;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
    
    .implementation-type {
        padding: 20px;
    }
    
    .type-icon {
        width: 50px;
        height: 50px;
    }
    
    .type-icon i {
        font-size: 1.5rem;
    }
    
    .type-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        padding: 30px 0;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .implementation-types {
        grid-template-columns: 1fr;
    }
    
    .implementation-type {
        padding: 20px;
    }
    
    .type-features li {
        font-size: 0.9rem;
    }
}

/* Enhance animations for mobile */
@media (prefers-reduced-motion: no-preference) {
    .process-step {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .implementation-type {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MLOps Maturity Section Styles */
.maturity-model {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.maturity-level {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maturity-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.level-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.level-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.level-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.level-content ul li i {
    margin-right: 10px;
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .maturity-model {
        flex-direction: column;
    }

    .maturity-level {
        flex: 1 1 100%;
    }
}

/* Responsive styles for the slider */
@media (max-width: 1200px) {
    .slider-container {
        padding: 20px;
    }

    .slider-title {
        font-size: 1.8rem;
    }

    .slider-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .slider-container {
        padding: 15px;
    }

    .slider-title {
        font-size: 1.6rem;
    }

    .slider-subtitle {
        font-size: 1rem;
    }

    .slider-item {
        flex-direction: column;
        text-align: center;
    }

    .slider-image {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 10px;
    }

    .slider-title {
        font-size: 1.4rem;
    }

    .slider-subtitle {
        font-size: 0.95rem;
    }

    .slider-item {
        flex-direction: column;
        text-align: center;
    }

    .slider-image {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .slider-container {
        padding: 5px;
    }

    .slider-title {
        font-size: 1.2rem;
    }

    .slider-subtitle {
        font-size: 0.9rem;
    }

    .slider-item {
        flex-direction: column;
        text-align: center;
    }

    .slider-image {
        width: 100%;
        height: auto;
        margin-bottom: 5px;
    }
}

/* General responsive styles */
@media (max-width: 576px) {
    .page-hero-title {
        font-size: 1.8rem;
    }
    .page-hero-subtitle {
        font-size: 1rem;
    }
    .overview-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    .overview-stats .stat-item p {
        font-size: 0.9rem;
    }
    .tab-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Styles for the Our Solutions section on the Retail page */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.solution-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    position: relative;
    margin-bottom: 15px;
}

.solution-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f0f0;
    border-radius: 50%;
    z-index: -1;
}

.solution-icon i {
    font-size: 2.5rem;
    color: #007bff;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.solution-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.solution-card .btn {
    font-size: 0.9rem;
    padding: 10px 15px;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.solution-card .btn:hover {
    background-color: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .solution-card {
        padding: 15px;
    }

    .solution-card h3 {
        font-size: 1.25rem;
    }

    .solution-card p {
        font-size: 0.9rem;
    }

    .solution-card .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* Blog Filter Section Responsive Styles */
.blog-filter {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.filter-search {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.filter-search input {
    width: 100%;
    padding: 0.8rem 3rem 0.8rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    transition: border-color 0.3s ease;
}

.filter-search input:focus {
    border-color: #007bff;
    outline: none;
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
}

/* Featured Article Responsive Styles */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-article-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Latest Articles Grid Responsive Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-author{
    margin-bottom: 20px;
}

.blog-card-link, .case-study-card-link{
    background: #007BFF;
    color: white;
    padding: 6px 12px;
    border: 1px solid #007BFF;
    border-radius: 0.375rem;
    text-decoration: none;
}

/* Popular Topics Grid Responsive Styles */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.topic-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .featured-article-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .blog-filter {
        padding: 1.5rem;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .featured-article {
        padding: 1.5rem;
    }
    
    .featured-article-image {
        height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .filter-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .featured-article-image {
        height: 250px;
    }
    
    .featured-badge {
        font-size: 0.9rem;
    }
    
    .topic-card {
        padding: 1.5rem;
    }
}

i{
    color: #007BFF;
}

.featured-case-study {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-case-study-image {
    flex: 1 1 40%;
    position: relative;
}

.featured-case-study-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ff6f61;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.featured-case-study-content {
    flex: 1 1 50%;
}

.case-study-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.case-study-meta span {
    background-color: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
}

.featured-case-study h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.featured-case-study p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-item h4 {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 0.9rem;
    color: #6c757d;
}

.featured-case-study .btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.featured-case-study .btn:hover {
    background-color: #0056b3;
}

/* Case Studies Grid Styles */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-study-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.case-study-card-image {
    position: relative;
    overflow: hidden;
}

.case-study-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-study-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.case-study-card-content {
    padding: 1.5rem;
}

.case-study-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.case-study-card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.case-study-card-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-item h4 {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 0.9rem;
    color: #6c757d;
}

.case-study-card-link {
    display: inline-block;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-card-link:hover {
    color: #0056b3;
}

/* Align all card items */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-2 a{
    margin-top: 25px;
}
.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

#load-more{
    background-color: #007bff;
    border: 2px solid #007bff;
    color: white;
}
#load-more:hover{
    border: 2px solid #007BFF;
    background-color: transparent;
    color: black;
}
.card .btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.card .btn:hover {
    background-color: #0056b3;
}

/* Results Summary Section Styles */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.result-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.result-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.result-stat {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.result-card p {
    font-size: 1rem;
    color: #6c757d;
}

/* Industry Expertise Section Styles */
.industry-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-expertise-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.industry-expertise-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.industry-expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.industry-expertise-card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.industry-expertise-card .btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.industry-expertise-card .btn:hover {
    background-color: #0056b3;
}

/* Team Highlights Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-member-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #343a40;
}

.team-member-title {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.team-member-bio {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.team-member-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.team-member-certifications span {
    background-color: #f8f9fa;
    color: #007bff;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Industries Grid Section Styles */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.industry-image {
    position: relative;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.industry-image:hover img {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-image:hover .industry-overlay {
    opacity: 1;
}

.industry-content {
    padding: 1.5rem;
    text-align: center;
}

.industry-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.industry-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.industry-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.industry-features li i {
    margin-right: 0.5rem;
    color: #007bff;
}

.industry-link {
    display: inline-block;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.industry-link:hover {
    color: #0056b3;
}

/* Resource Categories Section Styles */
.resource-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-category {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.resource-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.resource-category p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.resource-category .btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.resource-category .btn:hover {
    background-color: #0056b3;
}

/* Responsive Design for Resource Categories */
@media (max-width: 768px) {
    .resource-categories {
        grid-template-columns: 1fr;
    }

    .resource-category {
        padding: 15px;
    }

    .resource-category h3 {
        font-size: 1.25rem;
    }

    .resource-category p {
        font-size: 0.9rem;
    }

    .resource-category .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* Featured Blog Posts Section Styles */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-post-image:hover img {
    transform: scale(1.05);
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-post h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.blog-post p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.blog-post-link {
    display: inline-block;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: #0056b3;
}

/* Upcoming Webinars Section Styles */
.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.webinar-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.webinar-image {
    position: relative;
    overflow: hidden;
}

.webinar-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.webinar-image:hover img {
    transform: scale(1.05);
}

.webinar-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.webinar-date .date-day {
    font-size: 1.5rem;
    font-weight: bold;
}

.webinar-date .date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.webinar-content {
    padding: 1.5rem;
}

.webinar-time {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.webinar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.webinar-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.webinar-speakers {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.speaker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.speaker img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.speaker span {
    font-size: 0.9rem;
    color: #343a40;
}

.webinar-card .btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.webinar-card .btn:hover {
    background-color: #0056b3;
}

/* Featured Whitepapers Section Styles */
.whitepapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.whitepaper-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whitepaper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whitepaper-image {
    position: relative;
    overflow: hidden;
}

.whitepaper-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.whitepaper-image:hover img {
    transform: scale(1.05);
}

.whitepaper-content {
    padding: 1.5rem;
}

.whitepaper-category {
    font-size: 0.9rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.whitepaper-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.whitepaper-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.whitepaper-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.whitepaper-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.whitepaper-details li i {
    margin-right: 0.5rem;
    color: #007bff;
}

.whitepaper-card .btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.whitepaper-card .btn:hover {
    background-color: #0056b3;
}

/* Security Framework Section Styles */
.framework-diagram {
    text-align: center;
    margin-bottom: 2rem;
}

.framework-diagram img {
    max-width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.framework-description {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #6c757d;
}

.framework-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    flex: 1 1 calc(25% - 2rem);
    max-width: calc(25% - 2rem);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.pillar p {
    font-size: 1rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .framework-pillars {
        flex-direction: column;
        align-items: center;
    }

    .pillar {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pillar-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pillar-features li i {
    margin-right: 10px;
    color: #007bff;
}

/* Security Technologies Section Styles */
.technologies-tabs {
    margin-top: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background-color: #007bff;
    color: #fff;
}

.tabs-content {
    padding: 2rem;
    background-color: #fff;
}

.tab-content-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.tab-image {
    flex: 1 1 40%;
    text-align: center;
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-text {
    flex: 1 1 50%;
}

.tab-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.tab-text p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.tab-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tab-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #6c757d;
}

.tab-list li::before {
    content: '\2022';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-right: 0.5rem;
}

.tab-btn + .tab-btn {
    border-left: 1px solid #e0e0e0;
}

/* Stats Section Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.stat-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive Styles for Stats Section */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }
}

/* Featured Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }
}

/* Industry Testimonials Section */
.industry-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: #007bff;
}

.industry-testimonial-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.industry-testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: auto;
}

.industry-testimonial-author h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.industry-testimonial-author p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
    font-style: normal;
}

/* Responsive styles for industry testimonials */
@media (max-width: 992px) {
    .industry-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industry-testimonial-card {
        padding: 1.5rem;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-icon i {
        font-size: 1.25rem;
    }

    .industry-testimonial-card h3 {
        font-size: 1.25rem;
    }

    .industry-testimonial-card p {
        font-size: 0.95rem;
    }

    .industry-testimonial-author h4 {
        font-size: 1rem;
    }

    .industry-testimonial-author p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .industry-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-testimonial-card {
        padding: 1.25rem;
    }
}

/* Partners Section Styling */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-top: 30px;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.1);
}

.partner-logo {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

:root {
    --swiper-theme-color: #0072CE;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.partners-section {
    padding: 60px 0;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.logo-slider {
    position: relative;
    padding: 30px 0;
}

.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

.logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.logo-slide img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
}

.swiper-button-next, .swiper-button-prev {
    color: #0072CE;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #f8f9fa;
    transform: scale(1.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .logo-slide {
        height: 120px;
        padding: 15px;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}

/* Industry Applications Section */
.industry-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
    background-color: #007bff;
    color: #fff;
}

.tab-button:hover {
    background-color: #0056b3;
    color: #fff;
}

.tab-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.tab-pane.active {
    display: block;
}

.tab-pane-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.tab-pane-image {
    flex: 1 1 40%;
    text-align: center;
}

.tab-pane-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.tab-pane-text {
    flex: 1 1 55%;
}

.tab-pane-list {
    list-style: none;
    padding: 0;
}

.tab-pane-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tab-pane-list li i {
    color: #007bff;
    margin-right: 10px;
}


.solution-image img{
    object-fit: cover;
    height: 300px;
    border: 1px solid white;
}

/* Why Work Here Section Styles */
#why-work-here {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

#why-work-here .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

#why-work-here .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

#why-work-here .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-work-here .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#why-work-here .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

#why-work-here .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    text-align: center;
}

#why-work-here .card-text {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

#why-work-here ul {
    padding: 0;
    list-style: none;
    margin-top: 1rem;
}

#why-work-here ul li {
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

#why-work-here ul li i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    #why-work-here .section-title {
        font-size: 2rem;
    }

    #why-work-here .lead {
        font-size: 1rem;
    }

    #why-work-here .feature-card {
        margin-bottom: 2rem;
    }
}

/* Application Process Section Styles */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e0e0e0;
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 20px;
    z-index: 1;
}

.process-step-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.process-step-content h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.process-step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for Application Process */
@media (max-width: 992px) {
    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        padding-left: 80px;
    }

    .process-step-number {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        position: absolute;
    }

    .process-step-content {
        padding: 20px;
    }

    .process-step-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        padding: 30px 0;
    }

    .process-step {
        margin-bottom: 30px;
        padding-left: 60px;
    }

    .process-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .process-step-content {
        padding: 15px;
    }

    .process-step-content h4 {
        font-size: 1.1rem;
    }

    .process-step-content p {
        font-size: 0.9rem;
    }
}

/* Animation for process steps */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step {
    animation: fadeInLeft 0.5s ease-out forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }



/* Support Process Timeline Styles */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-step {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 5px rgba(var(--bs-primary-rgb), 0.1);
}

.process-content {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--bs-primary);
    margin-left: 1.75rem;
}

.process-step:before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 3.5rem;
    bottom: -3rem;
    width: 2px;
    background: rgba(var(--bs-primary-rgb), 0.15);
    z-index: 1;
}

.process-step:last-child:before {
    display: none;
}

.process-step h3 {
    color: var(--bs-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.process-step p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hover Effects */
.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(var(--bs-primary-rgb), 0.1);
}

.process-step:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-content {
        padding: 1.5rem;
        margin-left: 1rem;
    }

    .process-step:before {
        left: 1.25rem;
    }

    .process-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}