     /* Global Styles */
     body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
    }

    .header {
        background-color: #003366;
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
.header .logo {
        font-size: 1.5em;
    }

    .header a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        font-size: 1.2em;
    }

    .header a:hover {
        text-decoration: underline;
    }

    /* Footer Section */
    .footer {
        background-color: #003366;
        color: white;
        text-align: center;
        padding: 15px 20px;
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5em;
        }

        .hero p {
            font-size: 1em;
        }

        .container {
            flex-direction: column;
            align-items: center;
        }

        .blog-box {
            width: 80%;
        }

        .header a {
            font-size: 1em;
            margin: 0 10px;
        }
    }

    @media (max-width: 480px) {
        .header {
            flex-direction: column;
            align-items: flex-start;
        }

        .header a {
            margin: 5px 0;
        }

        .hero h1 {
            font-size: 2em;
        }

        .hero p {
            font-size: 0.9em;
        }

        .hero a {
            padding: 10px 20px;
            font-size: 1em;
        }
    }

/* Footer Links Styling */
.footer-links {
        text-align: center;      /* Center align the links */
        margin-top: 20px;        /* Add spacing from the form */
        font-size: 0.9em;        /* Slightly smaller font */
        color: #555;             /* Subtle grey color */
}

.footer-links a {
    color: white;     /* Link color */
        text-decoration: none;   /* Remove underline */
        margin: 0 10px;          /* Space between links */
}

.footer-links a:hover {
        text-decoration: underline; /* Add underline on hover */
        color: #003366;            /* Highlight hover color */
}

/* Footer Links Styling */
.footer-links {
        text-align: center;      /* Center align the links */
        margin-top: 20px;        /* Add spacing from the form */
        font-size: 0.9em;        /* Slightly smaller font */
        color: #555;             /* Subtle grey color */
}

.footer-links a {
    color: white;     /* Link color */
        text-decoration: none;   /* Remove underline */
        margin: 0 10px;          /* Space between links */
}

.footer-links a:hover {
        text-decoration: underline; /* Add underline on hover */
        color: #003366;            /* Highlight hover color */
}

    .header a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        font-size: 1.2em;
    }

    .header a:hover {
        text-decoration: underline;
    }

    .hero {
        background-image: url('/static/images/background_blog.jpg');
        background-size: cover;
        background-position: center;
        height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.05);
        z-index: 0;
    }

    .hero h1 {
        font-size: 3em;
        margin: 0;
        z-index: 1;
    }

    .hero p {
        font-size: 1.2em;
        z-index: 1;
    }

    .hero a {
        margin-top: 20px;
        padding: 15px 30px;
        background-color: #003366;
        color: white;
        font-size: 1.2em;
        text-decoration: none;
        border-radius: 5px;
        z-index: 1;
        transition: background-color 0.3s ease;
    }

    .hero a:hover {
        background-color: #d0e0f5;
        color: #003366;
    }

    .container {
        width: 80%;
        margin: 3rem auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .blog-box {
        width: 30%;
        margin-bottom: 2rem;
        background-color: white;
        padding: 1.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .blog-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .blog-box img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.4);
    }

    .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        width: 60%;
        border-radius: 8px;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .close:hover {
        color: black;
        cursor: pointer;
    }

/*----------------------------
    About Section - Improved
----------------------------*/
.about {
    width: 100vw; /* Ensures it takes up the full viewport width */
    background-color: #f4f4f4; /* Replace with your desired grey */
    padding: 60px 0; /* Adds spacing top and bottom */
}

/* About Section Title */
.titlepage {
    max-width: 1200px; /* Ensures text doesn't stretch across too wide */
    margin: 0 auto; /* Centers the text */
    padding: 0 40px; /* Adds 40px padding to both left and right */
    text-align: center; /* Keeps title & paragraph centered */
}

.about .titlepage h2 {
    padding: 0 0 6px 0;
    font-size: 40px;
    font-weight: bold;
    color: #050303;
    line-height: 46px;
    border-bottom: #fc4311 solid 2px;
    display: inline-block;
}

/* About Section Content */
.about .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row;
    max-width: 1200px; /* Adjust this based on your layout */
    margin: 0 auto; /* Centers the content */
    padding: 0 20px; /* Adds small padding for responsiveness */
}

/* Text Content */
.about .about-box {
    max-width: 50%;
    padding: 20px;
    text-align: left; /* Ensures left-aligned text */
}

.about .about-box h3 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about .about-box p {
    font-size: 16px;
    line-height: 26px;
    color: #333;
}

/* Image Styling */
.about .about-img {
    max-width: 50%;
    flex-shrink: 0;
    text-align: right; /* Aligns image to the right */
}

.about .about-img img {
    width: 100%;
    border-radius: 8px; /* Optional for rounded corners */
    display: block;
}

/* Read More Button */
.about a {
    text-transform: uppercase;
    border: #000 solid 1px;
    background: #000;
    width: 180px;
    padding: 12px 0;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: block;
    margin-top: 30px;
    transition: 0.3s ease-in-out;
}

.about a:hover {
    background: #fc4311;
    border-color: #fc4311;
    border-radius: 25px;
}

.about li {
    margin-left: 20px; /* Moves list items further in */
}





/*----------------------------------------
  6.Faq Area
----------------------------------------*/

.faq-container {
    display: flex;
    justify-content: center; /* Keep FAQ and Tabs centered */
    align-items: flex-start;
    gap: 50px;
    max-width: 1100px; /* Set max width */
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensures responsiveness */
    text-align: center;
}

.faq-details {
    flex: 1;
    min-width: 450px; /* Ensures FAQ section has enough width */
    max-width: 500px;
    width: 50%;
}

.faq-left {
    width: 45%; /* Adjust width for better spacing */
}

/* Right Section - Tabbed Content */
.faq-right {
    width: 50%; /* Makes the tabbed section take half of the space */
}

.accordion,
.tab-content {
    width: 100%;
}

.section-headline {
    text-align: center; /* Ensures heading stays centered */
    width: 100%;
    margin-bottom: 30px;
}

.faq-details, .tab-menu-container {
    flex: 1;
    min-width: 450px; /* Prevents them from being too narrow */
    max-width: 500px;
    width: 50%;
    text-align: left; /* Keep content aligned properly */
}

/* Bootstrap Accordion Fixes */
.accordion-button {
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    background-color: #f9f9f9;
    border: none;
}

.tab-menu-container {
    flex: 1;
    min-width: 450px;
    max-width: 500px;
    width: 50%;
}

/* Style tab navigation */
.nav-tabs {
    display: flex;
    justify-content: flex-start; /* Aligns tabs to the left */
    border-bottom: 2px solid #ddd;
    padding-left: 0px; /* Adjust as needed */
}

.nav-tabs .nav-link {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    padding: 10px 20px;
    transition: 0.3s;
}

.nav-tabs .nav-link.active {
    color: #3EC1D5;
    border-bottom: 3px solid #3EC1D5;
}

/* Tab Content */
.tab-content {
    width: 100%; /* Ensure width matches FAQ section */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}

/* Center FAQ Section */
.faq-area {
    text-align: center;
    padding-bottom: 50px;
}

/* Adjust overall spacing */
.faq-section {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    flex-direction: column; /* Stack elements on small screens */
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
}


.accordion-button:hover {
    background-color: #eaeaea;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px; /* Increases spacing between FAQ items */
    background: #fff;
    overflow: hidden;
}

.accordion-button {
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    background-color: #f9f9f9;
    border: none;
}

.accordion-header {
    text-align: left;
}

.accordion-body {
    font-size: 14px;
    color: #333;
    padding: 15px;
}

.tab-container {
    width: 100%;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-item {
    margin-right: 5px;
}

.nav-tabs .nav-link {
    color: #444;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #3EC1D5;
    border-bottom: 3px solid #3EC1D5;
    background-color: #fff;
}

.tab-content {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
}

.tab-pane h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
}

.tab-pane p {
    font-size: 14px;
    color: #555;
}

.faq-details .panel-heading {
  padding: 0;
}

.panel-default>.panel-heading {
  background-color: transparent;
  border: medium none;
  color: #333;
}

.faq-details h4.check-title a {
  color: #333;
  display: block;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 40px;
  padding: 6px 10px;
  text-decoration: none;
}

.panel-body {
  padding: 15px 15px 0px 50px;
}

.faq-details h4.check-title {
  color: #444;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.faq-details a span.acc-icons {
  position: relative;
}

.faq-details a span.acc-icons::before {
  color: #333;
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.faq-details h4.check-title a.active, .faq-details a.active span.acc-icons::before {
  color: #3EC1D5;
}

.faq-details a.active span.acc-icons::before {
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.second-row {
  margin-top: 30px;
}

.event-content.head-team h4 {
  background: transparent none repeat scroll 0 0;
  color: #333;
  padding: 30px 0 10px;
  font-weight: 500;
  text-transform: capitalize;
}

.tab-menu .nav-tabs>li>a:hover {
  border-color: #eee #eee #ddd;
}

.tab-menu {
  display: block;
  text-align: center;
}

.tab-menu ul.nav {
  margin: 0;
  padding: 0;
}

.tab-menu ul.nav li {
  border: medium none;
  display: inline-block;
}

.tab-content {
  border: 1px solid #ccc;
  padding: 0 15px 15px;
}

.tab-menu ul.nav li a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-radius: 0;
  color: #444;
  display: block;
  font-weight: 500;
  margin-right: 5px;
  padding: 10px 20px;
  font-family: raleway;
  font-size: 18px;
}

.tab-menu ul li.active a, .tab-menu ul li.hover a, .tab-menu ul li.focus a {
  border-bottom: 1px solid #fff;
  color: #3EC1D5 !important;
}

.tab-menu .nav-tabs {
  border-bottom: none;
}

.tab-main-img a {
  position: relative;
  display: block;
}

.tab-main-img a:hover span.events-offer {
  height: 20%;
}

.tab-main-img a span.events-offer {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  bottom: 0;
  color: #fff;
  content: "";
  font-size: 20px;
  font-weight: 700;
  height: 0%;
  left: 0;
  line-height: 70px;
  padding: 0;
  position: absolute;
  text-align: left;
  transition: all 0.5s ease 0s;
  width: 100%;
  padding: 0px 10px;
}

/*----------------------------------------
  7.Blog Area
----------------------------------------*/

/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Blog Container */
.blog-container {
    display: flex;
    align-items: flex-start; /* Keeps sidebar and blog posts aligned at the top */
    justify-content: space-between; /* Ensures proper spacing */
}



/* Sidebar */
.sidebar {
    height: auto; /* Allow it to grow dynamically */
    position: sticky; /* Keeps it visible while scrolling */
    min-width: 200px; /* Prevents sidebar from getting too narrow */
    min-height: 300vh; /* Ensures it fills the full screen without extra space */
    top: 80px; /* Adjust based on header height */
    width: 25%;
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    flex-grow: 1; /* Prevents excess stretching */
    overflow: hidden; /* Prevents double scrolling */
    overflow-y: auto; /* Enables scrolling for long content */
}









/* Recent Posts */
h3 {
    margin-top: 20px;
    font-size: 18px;
    border-bottom: 2px solid #d23b3b;
    padding-bottom: 5px;
}

.recent-posts {
    position: sticky;
    top: 20px; /* Keeps it under the navbar */
    max-height: 80vh; /* Prevents excessive stretching */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    overflow-y: auto; /* Allows scrolling within the box */
    background: white; /* Ensures it keeps its box structure */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    white-space: normal; /* Ensures text wraps properly */
}

.post-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.post-item a {
    outline: none; /* Removes the blue outline */
    text-decoration: none;
    color: #003366;
    font-size: 14px;
    font-weight: bold;
    display: block;
    padding: 8px 12px;
    border: 0px solid #003366;
    background: white;
    text-align: center;
}

.post-item a:hover {
    transition: background 0.5s ease-in-out;
    background: #003366; /* Dark navy blue hover effect */
    color: white;
}

.blog-content {
    width: 80%; /* Adjust to fit better */
    margin: 0 auto; /* Centers the content */
}

/* Blog Post */
.blog-post {
    width: 100%;
    max-width: 800px; /* Adjust this as needed */
    margin: 0 auto; /* Centers the section */
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Blog Post Image Adjustments */
.blog-post img {
    width: 100%;
    border-radius: 5px;
}

.post-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.post-info i {
    margin-right: 5px;
}

/* Blog Titles */
.blog-post h2 {
    display: block;
    width: 100%;  /* Ensure it takes full available space */
    max-width: none; /* Remove any restriction */
    background: none; /* Remove black background */
    font-size: 22px; /* Increase text size */
    font-weight: bold;
    color: #222; /* Dark text */
    padding: 0px 0; /* Adjust spacing */
    text-align: left; /* Align properly */
}

.blog-post h2 a {
    border: none;
    outline: none;
    font-size: 22px; /* Increase text size */
    font-weight: bold;
    color: #222; /* Dark text */
    background: transparent !important;
    text-decoration: none;
    color: #003366; /* Dark blue color */
    background: none; /* Remove the black background */
    display: inline; /* Ensures it doesn't create an unnecessary box */
    padding: 0; /* Removes extra padding */
}

.blog-post h2 a:hover {
    color: #d23b3b;
    transition: background 0.3s ease-in-out;
}

/* Read More Button */
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px; /* Increase horizontal padding for a better look */
    background: #d23b3b;
    color: white;
    text-decoration: none;
    border-radius: 30px; /* Makes the button rounded */
    font-size: 14px;
    border: 2px solid #d23b3b; /* Optional: Keeps a border outline */
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.read-more:hover {
    background: white;  /* Change background on hover */
    color: #d23b3b; /* Change text color on hover */
}