/* ======================= Base Styles & Utilities ======================= */
:root {
    --primary-color: #007bff;
    --secondary-color: #343a40;
    --bg-light: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --font-sans: 'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2.5px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-outline {
    background-color: transparent;
    border: 2.5px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-heading {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-heading {
    font-size: 2.5em;
    color: var(--text-dark);
}

section {
    padding: 80px 0;
}

/* ======================= Header & Navigation ======================= */
.main-header {
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--text-light);
}

.top-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: var(--secondary-color);
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-actions .btn {
    margin-right: 15px;
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
    color: var(--secondary-color);
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-actions .search-icon {
    display: none;
}

/* ======================= HEADER LINK FIXES ======================= */
.top-bar a {
    text-decoration: none;
    color: inherit; /* This makes the link color the same as the parent */
}

.logo a {
    text-decoration: none;
}

/* ======================= Hero Section ======================= */
.hero-section {
    position: relative;
    height: 700px;
    /* This line applies the dark overlay: */ 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('IT solution4.webp') no-repeat center center/cover;
    background-size: cover; /* Ensure the image covers the area */
    background-position: center; /* Center the background image */
    display: flex;
    align-items: center;
    color: var(--text-light); /* Keep text light for contrast */
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons a:last-child {
    margin-left: 15px;
}

/* ======================= HOME HERO BUTTONS FIX ======================= */
.hero-buttons {
    display: flex;
    align-items: center; /* This ensures vertical alignment */
    justify-content: center; /* This centers the buttons on the page */
    gap: 20px; /* This creates consistent spacing between the buttons */
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column; /* Stacks the buttons on mobile */
        gap: 15px;
    }
}

* ======================= Services Section ======================= */
.services-section {
    background-color: var(--text-light);
}

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    line-height: 1.5;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ======================= SERVICES Page Specific Styles ======================= */
.services-hero-page {
    background: var(--bg-light);
}

.services-detail-section {
    padding: 80px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-text {
    flex: 1;
}

.service-text .sub-heading {
    color: var(--primary-color);
}

.service-text .main-heading {
    margin-bottom: 20px;
}

/* Reverses the order of image and text on alternating rows */
.service-item.row-reverse {
    flex-direction: row-reverse;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* This adds perfect spacing between cards */
}


.service-card p {
    font-size: 0.9em;
    color: var(--text-dark);
    line-height: 1.6; /* This adds space between the lines of text */
}


/* ======================= ABOUT Page Specific Styles ======================= */
.about-hero-page {
    background: var(--bg-light);
}

.about-detail-section {
    padding: 80px 0 40px;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text-content {
    flex: 1;
}

.about-image-content {
    flex: 1;
    text-align: center;
}

.about-image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text-content .main-heading {
    margin-bottom: 20px;
}

.mission-vision-section {
    padding: 40px 0 80px;
}

.mission-vision-grid {
    display: flex;
    gap: 30px;
}

.mission-card, .vision-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mission-card {
    background-color: var(--primary-color-light);
}

.vision-card {
    background-color: var(--secondary-color-light);
}

.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--text-light);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.vision-card .icon-circle {
    color: var(--secondary-color);
}

.mission-card h4, .vision-card h4 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mission-card p, .vision-card p {
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-item, .service-item.row-reverse, .about-grid, .mission-vision-grid {
        flex-direction: column;
    }
}

/* ======================= Why Choose Us Section ======================= */
.why-choose-us-section {
    background-color: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    text-align: left;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.reason-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
}

.reason-content h3 {
    margin-bottom: 5px;
}

.reason-content p {
    color: #555;
    font-size: 0.9em;
}

/* ======================= Team Section ======================= */
.team-section {
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.team-member-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    font-size: 1.4em;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.member-title {
    font-size: 0.9em;
    color: var(--primary-color);
    font-weight: 500;
}

/* ======================= Stats Section ======================= */
.stats-section {
    background-color: var(--text-light);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-circle {
    width: 250px;
    height: 250px;
    border: 10px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-inner h2 {
    font-size: 4em;
    color: var(--primary-color);
    margin-bottom: -5px;
}

.stat-inner p {
    font-size: 1.2em;
    line-height: 1.2;
}

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 60px;
}

.stat-text {
    font-size: 1.2em;
    color: var(--text-dark);
}

/* ======================= Call to Action Section ======================= */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* ======================= MEDIA QUERIES (Responsiveness) ======================= */

@media (max-width: 992px) {
    .main-nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--text-light);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
        z-index: 90;
    }
    
    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-actions {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }

    .hero-section {
        height: auto;
        padding: 100px 20px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .service-cards-container {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-list {
        align-items: flex-start;
    }

    .cta-content h2 {
        font-size: 2em;
    }
}

/* ======================= Contact Section ======================= */
.contact-section {
    background-color: var(--bg-light);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit; /* Inherit the body font */
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Style the button specifically for the form */
.contact-form .btn {
    align-self: flex-start; /* Aligns button to the left */
    margin-top: 10px;
}

/* ======================= Testimonials Section ======================= */
.testimonials-section {
    background-color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex-grow: 1; /* Allows the text to take up remaining space */
    margin-bottom: 25px;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto; /* Pushes the author info to the bottom of the card */
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.9em;
    color: #888;
}

/* Media query for smaller screens to stack cards */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================= FOOTER SECTION ======================= */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
}

.footer-brand h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-brand p {
    font-size: 0.9em;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-contact p {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9em;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons a {
    color: var(--text-light);
    margin-right: 15px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive styles for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ======================= Projects Section ======================= */
.projects-section {
    background-color: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.project-info p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ======================= CASE STUDY SECTION ======================= */
.page-hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.page-hero-content .hero-subheading {
    font-size: 1.2em;
    font-weight: 300;
}

.case-study-content {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.case-study-intro {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.intro-column {
    flex: 1;
}

.intro-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.intro-column p {
    line-height: 1.6;
    color: #555;
}

.intro-column ul {
    list-style: none;
    padding: 0;
}

.intro-column ul li {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.intro-column ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.case-study-results {
    text-align: center;
    margin-bottom: 60px;
}

.case-study-results h3 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.results-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.result-card {
    text-align: center;
}

.result-number {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-text {
    font-size: 1.2em;
    color: #666;
}

.case-study-quote {
    background-color: #f1f7fe;
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    font-style: italic;
    font-size: 1.2em;
    color: #444;
}

.case-study-quote span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .case-study-intro {
        flex-direction: column;
        gap: 20px;
    }

    .results-grid {
        flex-direction: column;
        gap: 20px;
    }

}

/* ======================= Blog Section ======================= */
.blog-section {
    background-color: var(--text-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-info {
    padding: 20px;
}

.blog-date {
    font-size: 0.8em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.blog-title {
    font-size: 1.25em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-info a {
    text-decoration: none;
    color: inherit;
}

.blog-excerpt {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    font-size: 0.9em;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* ======================= HERO SECTIONS ======================= */
.page-hero-section {
    width: 100%;
    min-height: 400px;
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.page-hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.page-hero-content .hero-subheading {
    font-size: 1.2em;
    font-weight: 300;
}

/* Specific Hero Image Styles for Each Page */
.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('Trust2.webp');
}

.services-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('our service3.webp');
}

.case-study-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('case study2.png');
}

.blog-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('blog.webp');
}

.blog-post-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('blog.webp');
}

.pricing-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                      url('price.webp');
}

/* You can create more specific ones if you want, e.g.
.ecommerce-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('images/ecommerce-bg.jpg') no-repeat center center/cover;
}
*/


/* ======================= BLOG Page CSS ======================= */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('blog.png') no-repeat center center/cover;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.blog-sidebar {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget h4 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    margin-bottom: 10px;
}

.sidebar-widget a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--primary-color);
}

/* Single Post Specific CSS */
.blog-post-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('blog.png') no-repeat center center/cover;
}

.single-post-content {
    padding: 80px 0;
    line-height: 1.8;
}

.post-main-image {
    margin-bottom: 40px;
    text-align: center;
}

.post-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-meta {
    font-size: 1.1em;
    color: var(--text-light);
    margin-top: 15px;
}

.single-post-content h3 {
    font-size: 2em;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.single-post-content p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ======================= PRICING Page CSS ======================= */
.pricing-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('price.png') no-repeat center center/cover;
}

.pricing-content-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.featured-plan {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: scale(1.05) translateY(-10px);
    border-color: var(--secondary-color);
    position: relative;
    z-index: 10;
}

.featured-plan .pricing-header p,
.featured-plan .pricing-price p,
.featured-plan .pricing-features li,
.featured-plan .pricing-features i,
.featured-plan .btn-primary {
    color: var(--text-light);
}

.tag-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.8em;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.pricing-header p {
    color: #888;
}

.pricing-price p {
    font-size: 3em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0 30px;
}

.pricing-price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #888;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.text-red {
    color: #e74c3c !important;
}

.pricing-card .btn-secondary, .pricing-card .btn-primary {
    width: 100%;
}

.featured-plan .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
/* ======================= FAQ PAGE CSS ======================= */


.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-page .page-hero-content {
    color: var(--secondary-color);
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header .icon {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
}

.accordion-content p {
    color: #555;
    padding-bottom: 20px;
    line-height: 1.6;
}





















