html {
    scroll-behavior: smooth;
}

/* Basic Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #007bff; /* A standard blue for links */
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    color: #2c3e50; /* Darker blue for headings */
    margin-bottom: 15px;
}

h1 {
    font-size: 3em;
    font-weight: 700;
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: #007bff; /* Primary brand color */
    color: #fff;
    border: 2px solid #007bff;
}

.primary-btn:hover {
    background-color: #fdfffc;
    border-color: #0056b3;
}

.secondary-btn {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.secondary-btn:hover {
    background-color: #007bff;
    color: #fff;
}

.light-bg {
    background-color: #f2f7fb; /* A light background for alternating sections */
}

/* Header Section */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px; /* Adjust logo size */
    width: auto;
}

.navbar .nav-links {
    display: flex;
    gap: 30px;
}

.navbar .nav-links .active {
    background-color: lightgray;
    padding: 0 10px;
    border-radius: 3px;
}

.navbar .nav-links a {
    color: #2c3e50;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #007bff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease-in-out;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default, shown on smaller screens */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/media.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
}

/* General Content Sections */
.content-section, .packages-section {
    padding: 80px 0;
}

/* Packages Section */
.packages-section p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.package-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
    margin-bottom: 15px;
    color: #007bff;
}

.package-card p {
    margin-bottom: 25px;
    color: #555;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    color: #007bff;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}



.btn-t {
    display: table;
    margin: auto;
}




/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post h3 {
    padding: 20px 20px 10px;
    color: #007bff;
}

.blog-post p {
    padding: 0 20px 15px;
    color: #555;
    font-size: 0.95em;
}

.blog-post .read-more {
    display: inline-block;
    padding: 0 20px 20px;
    color: #007bff;
    font-weight: 600;
}

.blog-post .read-more:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eaf6ff; /* Lighter blue for question background */
    color: #2c3e50;
    font-weight: 600;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    padding: 20px;
}

.faq-answer p {
    margin-bottom: 0; /* Remove bottom margin for last paragraph */
    color: #555;
}

/* Contact Section */
.contact-section {
    background-color: #2c3e50; /* Dark background for contact */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info p i {
    color: #007bff; /* Icon color */
    font-size: 1.2em;
}

.contact-info a {
    color: #007bff;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #0056b3;
}

/* Contact Form (if you uncomment it in HTML) */
/*
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f2f7fb;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    cursor: pointer;
    font-size: 1.1em;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
}
*/

/* Footer Section */
.footer {
    background-color: #1a252f; /* Even darker blue for footer */
    color: #bbb;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar .nav-links {
        gap: 10px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }
}



/* --- Desktop Navigation (Default) --- */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Desktop: Display nav items horizontally */
    gap: 30px; /* Space between desktop nav items */
}

/* This ensures the hamburger is hidden on desktop */
.menu-toggle {
    display: none;
}

/* --- MOBILE MENU (HAMBURGER ICON & SLIDING MENU) STYLES --- */
@media (max-width: 768px) {
    /* Adjust header container for mobile */
    .header .container {
        flex-wrap: wrap; /* Allow logo and nav to wrap */
        justify-content: space-between; /* Keep logo and hamburger separate */
        align-items: center;
    }

    /* Adjust logo margin for mobile header */
    .logo {
        margin-bottom: 0; /* Remove previous margin if any */
    }

    /* Mobile Menu Container (.nav-links) */
    .nav-links {
        /* Initially hidden and off-screen to the right */
        display: none; /* Crucial: Hides the menu completely when not active on mobile */
        flex-direction: column; /* Stack links vertically when active */
        position: fixed; /* Fixed to viewport for full-screen overlay */
        top: 0;
        right: 0; /* Align to the right edge of the viewport */
        width: 100%; /* Take full width of viewport */
        height: 95vh; /* Take full viewport height */
        background-color: rgba(222, 222, 222, 0.98); /* Dark, slightly transparent overlay */
        justify-content: center; /* Center links vertically */
        align-items: center; /* Center links horizontally */
        z-index: 998; /* Below the menu-toggle but above content */
        transform: translateX(100%); /* Pushes the menu completely off-screen to the right */
        transition: transform 0.4s ease-in-out; /* Smooth slide animation */
    }

    /* Mobile Menu Active State (when JavaScript adds the 'active' class) */
    .nav-links.active {
        transform: translateX(0); /* Slides the menu into view */
        display: flex; /* Makes the menu visible and applies flex layout */
        /* Opacity/visibility are not needed here if using display: none/flex */
    }

    /* Styling for individual links within the mobile menu */
    .nav-links li {
        margin: 15px 0; /* Vertical spacing for mobile menu links */
    }

    .nav-links li a {
        font-size: 1.5em; /* Larger font for mobile links */
        color: #ffffff; /* Ensure white text on dark background */
        padding: 10px 0; /* Increase clickable area */
        display: block; /* Make links block-level for full width clicks */
    }

    /* Hide the underline effect on mobile menu links */
    .nav-links li a::after {
        display: none;
    }

    /* Mobile Hamburger Icon (.menu-toggle) */
    .menu-toggle {
        display: flex; /* IMPORTANT: Show hamburger on mobile */
        flex-direction: column; /* For vertical bars of the hamburger */
        cursor: pointer;
        z-index: 1000; /* Ensure it's clickable and above the sliding menu */
        padding: 10px; /* Give it a larger clickable area */
        /* Position it absolutely within the relatively positioned header, at the top-right */
        position: absolute;
        right: 20px;
        top: 25px; /* Adjust as needed to align with logo/header height */
    }

    /* Animation for hamburger icon when active */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* General mobile adjustments for other sections (if they were in the conflicting block) */
    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .content-section, .packages-section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .package-grid, .services-grid, .blog-grid, .contact-details-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }

    .footer .container {
        flex-direction: column;
        gap: 10px;
    }
}



@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .contact-info p {
        flex-direction: column;
        gap: 5px;
    }
}



/* Add this to your existing style.css file */

/* Subpage Hero Section */
.hero-subpage {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x400?text=Hajj+Packages+Banner') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 00px; /* Offset for fixed header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-subpage h1 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 15px;
}

.hero-subpage p {
    font-size: 1.1em;
    max-width: 800px;
    margin-bottom: 0;
}

/* Specific Styles for Package Detail Cards */
.package-detail-card {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.package-detail-card:nth-child(even) { /* Alternate layout for even cards */
    flex-direction: row-reverse;
}

.package-detail-card .package-image {
    flex: 1; /* Takes equal space, will adjust with min-width */
    min-width: 300px; /* Minimum width before wrapping */
}

.package-detail-card .package-image img {
    width: 100%;
    height: 100%; /* Ensures image fills container */
    object-fit: cover; /* Covers the area without distortion */
    display: block;
}

.package-detail-card .package-info {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-detail-card.light-bg .package-info {
    background-color: #f2f7fb; /* Same as the light-bg for sections */
}

.package-detail-card h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.package-detail-card .price {
    font-size: 1.4em;
    font-weight: 700;
    color: #28a745; /* Green for price */
    margin-bottom: 20px;
}

.package-detail-card h4 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.package-detail-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-detail-card ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
    display: flex;
    align-items: center;
}

.package-detail-card ul li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.1em;
}

/* Call to Action at the bottom of the page */
.call-to-action {
    text-align: center;
    padding: 40px 0;
    background-color: #eaf6ff;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.call-to-action h3 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.call-to-action p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Responsive adjustments for package detail cards */
@media (max-width: 992px) {
    .hero-subpage {
        margin-top: 0px; /* Adjust margin for smaller headers */
        padding: 80px 20px;
    }

    .hero-subpage h1 {
        font-size: 2.5em;
    }

    .package-detail-card {
        flex-direction: column !important; /* Stack image and info vertically */
    }

    .package-detail-card .package-image {
        min-width: unset;
    }

    .package-detail-card .package-info {
        min-width: unset;
        padding: 30px;
    }

    .package-detail-card:nth-child(even) .package-image {
        order: -1; /* Keep image on top when stacked */
    }
}

@media (max-width: 768px) {
    .hero-subpage {
        margin-top: 60px; /* Further adjust for very small header on mobile */
        padding: 60px 20px;
    }

    .hero-subpage h1 {
        font-size: 2em;
    }

    .package-detail-card h3 {
        font-size: 1.5em;
    }

    .package-detail-card .price {
        font-size: 1.2em;
    }

    .package-detail-card h4 {
        font-size: 1.1em;
    }

    .call-to-action h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .package-detail-card .package-info {
        padding: 20px;
    }

    .call-to-action h3 {
        font-size: 1.5em;
    }

    .call-to-action p {
        font-size: 1em;
    }
}







/* Add this to your existing style.css */

/* Services List Grid for services.html */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Larger min-width for detail items */
    gap: 30px;
    margin-top: 30px;
}

.service-detail-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-item i {
    color: #007bff; /* Primary color for icons */
    margin-bottom: 25px;
    font-size: 4em; /* Larger icons */
}

.service-detail-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.8em;
}

.service-detail-item p {
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1; /* Makes paragraphs take available space */
}

.service-detail-item ul {
    list-style: none;
    padding: 0;
    text-align: left; /* Align list items to left within card */
    width: 100%; /* Take full width of parent */
}

.service-detail-item ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #444;
}

.service-detail-item ul li i {
    color: #28a745; /* Green checkmark for features */
    margin-right: 10px;
    font-size: 1.1em; /* Adjust icon size */
    margin-bottom: 0; /* Remove bottom margin for list item icons */
}

/* Responsive adjustments for services.html */
@media (max-width: 992px) {
    .service-detail-item {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }
    .service-detail-item i {
        font-size: 3.5em;
    }
    .service-detail-item h3 {
        font-size: 1.5em;
    }
}








/* Add this to your existing style.css */

/* Training Intro Section */
.training-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Training Highlight Grid */
.training-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.training-highlight-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.training-highlight-item i {
    color: #007bff; /* Primary color for icons */
    margin-bottom: 20px;
    font-size: 3.5em; /* Larger icons */
}

.training-highlight-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.training-highlight-item p {
    color: #555;
    font-size: 0.95em;
}

/* Training Content Sections (Topics) */
.training-content-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.training-topic {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.training-topic.light-bg {
    background-color: #f2f7fb; /* Use the existing light-bg color for variety */
}

.training-topic h4 {
    color: #007bff;
    font-size: 1.4em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.training-topic h4 i {
    font-size: 1.2em;
    color: #2c3e50;
}

.training-topic ul {
    list-style: none;
    padding: 0;
}

.training-topic ul li {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    margin-bottom: 10px;
    color: #555;
    line-height: 1.5;
}

.training-topic ul li i {
    color: #28a745; /* Green checkmark */
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 3px; /* Adjust vertical alignment for checkmark */
}

/* Responsive adjustments for Hajj Training Page */
@media (max-width: 992px) {
    .training-highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .training-highlight-grid,
    .training-content-sections {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .training-highlight-item i {
        font-size: 3em;
    }
    .training-highlight-item h3 {
        font-size: 1.4em;
    }
    .training-topic h4 {
        font-size: 1.2em;
    }
}






/* Add this to your existing style.css */

/* Refined Blog Post Styling for blog.html */
.blog-post {
    background-color: #fff;
    border-radius: 10px; /* Slightly more rounded corners */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Stronger shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
}

.blog-post:hover {
    transform: translateY(-8px); /* More pronounced lift effect */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18); /* Stronger hover shadow */
}

.blog-post img {
    width: 100%;
    height: 220px; /* Slightly taller images */
    object-fit: cover;
}

.blog-post .post-content {
    padding: 25px; /* More padding inside content */
    flex-grow: 1; /* Allows content to take available space */
    display: flex;
    flex-direction: column;
}

.blog-post h3 {
    font-size: 1.6em; /* Larger title */
    margin-bottom: 10px;
    color: #007bff; /* Highlight title color */
}

.blog-post .post-meta {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 15px;
}

.blog-post p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take space */
}

.blog-post .read-more {
    display: inline-flex; /* Use flex for icon alignment */
    align-items: center;
    color: #007bff;
    font-weight: 600;
    margin-top: auto; /* Push to bottom of content area */
    transition: color 0.3s ease;
}

.blog-post .read-more:hover {
    color: #0056b3;
    text-decoration: underline;
}

.blog-post .read-more i {
    margin-left: 8px; /* Space between text and arrow icon */
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.blog-post .read-more:hover i {
    transform: translateX(5px); /* Slide arrow on hover */
}

/* Pagination (if you uncomment it in HTML) */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .btn {
    padding: 10px 18px;
    font-size: 1em;
}

.pagination .btn.active {
    background-color: #007bff;
    color: #fff;
}

/* Responsive adjustments for Blog Page */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjust column size */
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .blog-post img {
        height: 200px;
    }
}







/* Add this to your existing style.css */

/* Specific Styles for Blog Article Pages */
.blog-article-page {
    padding-top: 50px; /* Adjust padding for content below hero */
    padding-bottom: 80px;
}

.blog-article-page h2 {
    text-align: left; /* Article titles should align left */
    margin-bottom: 20px;
    font-size: 2.2em;
    color: #2c3e50;
}

.blog-article-page .article-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 25px;
    text-align: left; /* Align meta info left */
}

.blog-article-page .article-main-image {
    width: 100%;
    max-height: 450px; /* Max height for main image */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-article-page h3 {
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #007bff; /* Highlight subheadings */
}

.blog-article-page p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.blog-article-page ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.blog-article-page ul li {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.blog-article-page ul li i {
    color: #28a745; /* Green checkmark */
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 3px; /* Adjust vertical alignment */
}

.blog-article-page blockquote {
    background-color: #f2f7fb;
    border-left: 5px solid #007bff;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #444;
    font-size: 1.1em;
    line-height: 1.8;
    border-radius: 5px;
}

.blog-article-page blockquote small {
    display: block;
    margin-top: 15px;
    text-align: right;
    font-style: normal;
    color: #666;
}

.back-to-blog {
    text-align: center;
    margin-top: 60px;
}

/* Responsive adjustments for Blog Article Pages */
@media (max-width: 992px) {
    .blog-article-page .article-main-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .blog-article-page h2 {
        font-size: 1.8em;
    }
    .blog-article-page h3 {
        font-size: 1.5em;
    }
    .blog-article-page .article-main-image {
        max-height: 250px;
        margin-bottom: 30px;
    }
    .blog-article-page p,
    .blog-article-page ul li {
        font-size: 0.95em;
    }
    .blog-article-page blockquote {
        padding: 20px;
        font-size: 1em;
    }
}







/* Add this to your existing style.css */

/* FAQ Category Section Styling */
.faq-category-section {
    margin-bottom: 50px; /* Space between categories */
}

.faq-category-section h3 {
    text-align: left; /* Align category title to left */
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category-section h3 i {
    color: #007bff; /* Icon color for category titles */
    font-size: 1.1em;
}

.faq-category-section.light-bg {
    background-color: #f8f8f8; /* A subtle background for alternate categories */
    padding: 30px;
    border-radius: 10px;
}

/* Ensure faq-item within categories are still correctly styled */
.faq-list .faq-item {
    margin-bottom: 12px; /* Slightly less margin if grouped */
}

/* Responsive adjustments for FAQ Page */
@media (max-width: 768px) {
    .faq-category-section h3 {
        font-size: 1.6em;
        flex-direction: column; /* Stack icon and text on small screens */
        align-items: flex-start;
        gap: 5px;
    }
    .faq-category-section h3 i {
        font-size: 1em; /* Smaller icon on mobile */
    }
    .faq-category-section.light-bg {
        padding: 20px;
    }
}







/* Add this to your existing style.css */

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info on left, form on right */
    gap: 50px;
    align-items: flex-start; /* Align top of sections */
    margin-bottom: 60px; /* Space before map */
}

/* Contact Info Section */
.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.contact-info p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start; /* Align icon with text top */
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8em;
    color: #007bff; /* Primary color for icons */
    margin-right: 20px;
    margin-top: 5px; /* Adjust alignment for larger icon */
    width: 35px; /* Fixed width for consistent alignment */
    text-align: center;
}

.info-item h4 {
    font-size: 1.25em;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 5px; /* Less space between lines of info */
    font-size: 0.95em;
    color: #666;
}

.info-item p:last-child {
    margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-container {
    background-color: #f2f7fb; /* Light background for form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing only */
}

.contact-form .btn {
    width: auto; /* Button doesn't take full width */
    padding: 12px 30px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #0056b3;
}

.form-note {
    font-size: 0.85em;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

/* Embedded Map Styling */
.map-container {
    margin-top: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.map-container h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.map-container iframe {
    border-radius: 8px;
    width: 100%; /* Ensure it's responsive */
}

.map-note {
    font-size: 0.9em;
    color: #888;
    margin-top: 20px;
}


/* Responsive adjustments for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info h2,
    .contact-form-container h2,
    .map-container h2 {
        font-size: 1.8em;
    }
    .info-item i {
        font-size: 1.5em;
        margin-top: 3px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
    }
}