/* Inner Pages Styles for Agiteks Website */

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-blue-purple);
}

.page-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern-dots.png');
    opacity: 0.1;
}

.page-hero-content {
    color: var(--neutral-white);
    max-width: 800px;
}

.page-hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-hero-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-hero-breadcrumb a {
    color: var(--neutral-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.page-hero-breadcrumb a:hover {
    opacity: 1;
}

.page-hero-breadcrumb span {
    opacity: 0.7;
}

/* Overview Section Styles */
.overview-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.overview-text {
    flex: 1;
}

.overview-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.overview-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.overview-stats .stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--neutral-light);
    border-radius: var(--border-radius-md);
    flex: 1;
}

.overview-stats .stat-item h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Platforms Grid Styles */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background-color: var(--neutral-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    text-align: center;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.platform-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.platform-logo img {
    max-height: 60px;
    max-width: 100%;
}

.platform-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.platform-card p {
    color: var(--neutral-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Case Study Styles */
.case-study {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.case-study-content {
    flex: 1;
}

.case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.case-study-content p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.case-study-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 82, 156, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.case-study-image {
    flex: 1;
}

.case-study-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--neutral-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(0, 82, 156, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-blue);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Implementation Process Styles */
.process-timeline {
    position: relative;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding-left: 70px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 30px;
    top: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    z-index: 1;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-content h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
}

.step-features li i {
    color: #2563eb;
    font-size: 1rem;
}

/* Implementation Types Styles */
.implementation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.implementation-type {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.implementation-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb15, #3b82f615);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.type-icon i {
    font-size: 1.75rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.implementation-type:hover .type-icon i {
    transform: scale(1.1);
}

.type-content h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.type-content p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.type-features li:last-child {
    margin-bottom: 0;
}

.type-features li i {
    color: #2563eb;
    font-size: 1rem;
}

/* Styles for Our Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    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;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.advantage-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Styles for Our Expertise Section */
.feature-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.feature-image {
    flex: 1 1 50%;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-text {
    flex: 1 1 50%;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #343a40;
}

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

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #6c757d;
}

.feature-list li i {
    color: #007bff;
    margin-right: 0.5rem;
}

/* Responsive Styles for Our Expertise Section */
@media (max-width: 992px) {
    .feature-content {
        flex-direction: column;
    }

    .feature-image {
        margin-bottom: 2rem;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .feature-text h3 {
        font-size: 1.3rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .feature-text h3 {
        font-size: 1.2rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .overview-content, .case-study {
        flex-direction: column;
    }
    
    .overview-image, .case-study-image {
        margin-top: 30px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 250px;
    }
    
    .page-hero-title {
        font-size: 1.8rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 200px;
    }
    
    .page-hero-title {
        font-size: 1.5rem;
    }
}

/* Modern Help Center Page Styles */

/* General Section Styling */
.content-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    font-family: 'Roboto', sans-serif;
}

.content-section h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.content-section p {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-list h4 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 10px;
    font-weight: 500;
}

.faq-list p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    padding: 10px;
    color: #ffffff;
    font-size: 1rem;
}

/* Resources Section */
.resources-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.resources-section h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.resource-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.resource-links li {
    margin-bottom: 10px;
}

.resource-links a {
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: none;
    padding: 10px 20px;
    background: #f0f8ff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.resource-links a:hover {
    background-color: #007bff;
    color: #fff;
}


.rounded-circle{
    height: 50px;
    padding: 10px;
}