/*Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    list-style: none;

}

:root {
    --primary-color: #0077B6;
    --secondary-color: #00B4D8;
    --accent-color: #90E0EF;
    --text-color: #01041D;
    --background-color: #f9f9f9;
    --button-color: #0C4C93;
    --button-text-color: #ffffff;

    /* Font Families */
    --font-poppins: 'Poppins', sans-serif;
    --font-comfortaa: "Comfortaa", sans-serif;
    --font-source: "Source Sans 3", sans-serif;
    --font-raleway: "Raleway", sans-serif;
    --font-montserat: "Montserrat", sans-serif;
    --font-dm: "DM Sans", sans-serif;
}

section.home {
    position: relative;
    height: 100vh;
    background: none;
}

.hero-section {
    position: relative;
    margin-top: 90px;
    width: 100%;
}

.navbar {
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    padding: 0px 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--background-color);
    /* ensure visibility */
}

.logo img {
    max-height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
}


.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-links li a {
    position: relative;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-dm);
    transition: all .55s ease-in-out;
}

.nav-links li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::before {
    width: 100%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.nav-menu i {
    font-size: 25px;
    color: var(--text-color);
    transition: all .55s ease-in-out;
}

.nav-menu i:hover {
    color: var(--primary-color);
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    background-color: var(--background-color);
    padding: 50px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 98;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mega-menu-parent:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

.mega-column {
    min-width: 240px;
}

.mega-column h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 12px;
}

.mega-column ul li a {
    color: var(--text-color);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-column ul li a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: none;
    flex-direction: column;
    min-width: 200px;
    z-index: 98;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
}

/* Carousel Styles */
.carousel {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}


.carousel-slide {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Per slide dark overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* dark transparent layer */
    z-index: 1;
    pointer-events: none;
}

/* Caption on top of overlay */
.carousel-caption {
    position: absolute;
    bottom: 210px;
    left: 100px;
    color: white;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.carousel-caption h1 {
    font-size: 2.5rem;
}

.carousel-caption p {
    font-size: 1.3rem;
    font-family: var(--font-dm);
    font-weight: 600;
    margin-bottom: 5px;
}

.carousel-caption h2 {
    font-family: var(--font-poppins);
    font-family: 18px;
    color: white;
}

.carousel-caption i {
    margin-right: 15px;
    margin-bottom: 20px;
}

.btn-contact {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background-color: var(--primary-color);
    color: var(--button-text-color);
    transition: all 0.55s ease-in-out;
    cursor: pointer;
}

.btn-contact:hover {
    color: var(--primary-color);
    background-color: var(--button-text-color);
}

/* Carousel buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%);
    border: none;
    font-size: 40px;
    border-radius: 50%;
    padding: 0 18px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.55s ease-in-out;
}

.carousel-btn:hover {
    background-color: var(--button-color);
    color: var(--button-text-color);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* Slide Menu Styles */
.mobile-menu {
    position: fixed;
    right: -400px;
    top: 0;
    height: 100vh;
    background-color: var(--background-color);
    width: 400px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 99;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .closeMenu {
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
    margin-bottom: 20px;
    cursor: pointer;
}

.slide-logo img {
    max-height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

.slide-nav {
    display: none;
}

.slide-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-links li a {
    position: relative;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-dm);
    transition: all .55s ease-in-out;
}

.slide-links li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.slide-links li a:hover::before {
    width: 100%;
}

.menu-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.menu-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button-color);
    padding: 12px;
    border-radius: 50%;
    /* Circle buttons */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-socials i {
    font-size: 18px;
    color: white;
    transition: color 0.3s ease;
}

.menu-socials a:hover {
    background-color: var(--background-color);
    transform: scale(1.1);
}

.menu-socials i:hover {
    color: var(--text-color);
}

.menu-info {
    margin-top: 15px;
}

.menu-info1 p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.menu-info1 button {
    padding: 15px 30px;
    font-size: 16px;
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px;
    transition: all .55s ease-in-out;
}

.menu-info1 button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.menu-info2 h1 {
    color: var(--button-color);
    font-size: 25px;
    margin-bottom: 10px;
}

.menu-info2 .info-box {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    margin-right: 10px;
}

.info-icon a i {
    font-size: 50px;
    color: var(--button-color);
}

.info-content h3 {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 20px;
}

.info-content p {
    font-family: var(--font-comfortaa);
    font-weight: 500;
    font-size: 15px;
}

.menu-info3 h1 {
    color: var(--button-color);
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsive Home Section Styles */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }

    .slide-nav {
        display: flex;
        flex-direction: column;
    }


    .carousel-caption {
        left: 50px;
        bottom: 160px;
        max-width: 600px;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {

    .carousel-caption {
        left: 30px;
        bottom: 250px;
        max-width: 500px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-btn {
        font-size: 30px;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 10px;
    }

    .navbar.scrolled {
        padding: 0;
    }
}


@media (max-width: 576px) {

    .mobile-menu {
        padding: 0 5px;
        width: 250px;
    }

    .slide-logo {
        display: none;
    }

    .slide-links li a {
        font-size: 14px;
    }

    .navbar {
        padding: 0 2px;
    }

    .logo img {
        max-height: 80px
    }

    .carousel-caption {
        bottom: 300px;
        padding: 0;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p,
    .carousel-caption h3,
    .carousel-caption h2 {
        font-size: 0.9rem;
    }

    .carousel-btn {
        font-size: 24px;
        padding: 0 10px;
    }

    .btn-contact {
        padding: 8px 16px;
        font-size: 13px;
    }


    .menu-info1 p {
        display: none;
    }

    .menu-info1 button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .info-content h3,
    .info-content p {
        font-size: 14px;
    }

    .menu-info2 h1,
    .menu-info3 h1 {
        font-size: 20px;
    }

    .info-icon a i {
        font-size: 36px;
    }

    .menu-socials i {
        font-size: 16px;
    }

    .menu-socials a {
        padding: 10px;
    }
}

/* Hero Section Styles Full Width Image */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0B2653 0%, #0077B6 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
}

.hero-overlay a {
    color: #0077B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-overlay a:hover {
    color: #fff;
}

@media (max-width: 1000px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }
}

/* Achievement Section Styles */


/* Overlay achievements at the bottom center */
.achievements {
    position: relative;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
}


/* Flex layout for boxes */
.achievements-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

/* Individual stat box */
.achievement {
    flex: 1;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 10000;
}

.achievement:hover {
    transform: translateY(-5px);
}

.achievement h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.achievement p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

/* Hide on smaller screens */
@media (max-width: 992px) {
    .achievements {
        display: none;
    }
}





/* About Section Styles */
.about {
    padding: 110px 20px;
    background-color: #fff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1 1 300px;
    padding: 0 10px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    width: 80%;
    height: auto;
}

.about-content {
    flex: 1 1 300px;
    padding: 0 10px;
}

.about-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.about-content span {
    color: var(--primary-color);
}

.about-content p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 10px;
}

.about-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.icon-box {
    display: flex;
    align-items: center;
    flex: 1 1 250px;
}

.icon-box-icon img {
    width: 50px;
    margin-right: 10px;
}

.icon-box-content h2 {
    font-size: 18px;
    margin: 0;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-list i {
    font-size: 15px;
    color: #0077B6;
    margin-right: 7px;
}

.about-content button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.about-content button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-content h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .about-content h1 {
        font-size: 22px;
    }

    .about-content p,
    .icon-box-content h2,
    .about-list li {
        font-size: 14px;
    }

    .icon-box-icon img {
        width: 40px;
    }

    .about-content button {
        width: 100%;
    }
}

/* About Page Styles */
.about-page-section {
    background-color: #fff;
    padding: 2em 1.5em;
}

.about-page-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.about-page-text {
    width: 100%;
}

.about-page-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75em;
}

.about-page-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-page-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

/* Tablet and up */
@media (min-width: 768px) {
    .about-page-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-page-text {
        flex: 1;
    }

    .about-page-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .about-page-text h2 {
        font-size: 2rem;
    }

    .about-page-text p {
        font-size: 1.1rem;
    }

    .about-page-image img {
        margin-left: 0;
        max-width: 100%;
    }
}

.about-page-credentials {
    background-color: #f1f1f1;
    padding: 2.5em 1.25em;
}

.about-page-credentials-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-page-credentials-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.about-page-credentials-container ul {
    list-style: none;
    padding: 0;
    margin: 2em 0;
}

.about-page-credentials-container li {
    font-size: 1rem;
    margin-bottom: 0.75em;
    padding-left: 1.75em;
    position: relative;
    text-align: left;
}

.about-page-credentials-container li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .about-page-credentials-container h2 {
        font-size: 2rem;
    }

    .about-page-credentials-container li {
        font-size: 1.1rem;
    }

    .btn-contact {
        font-size: 1.1rem;
    }
}

.about-page-testimonials {
    background-color: #fff;
    padding: 2em 1em;
    display: grid;
    gap: 1.5em;
    max-width: 800px;
    margin: auto;
}

.about-page-testimonials blockquote {
    font-style: italic;
    background-color: #e0e0e0;
    padding: 1em;
    border-left: 5px solid #d62828;
}

.about-page-cta {
    background-color: #003049;
    color: white;
    padding: 3em 1em;
    text-align: center;
}

.about-page-cta h2 {
    font-size: 2rem;
}

.about-page-cta p {
    font-size: 1.1rem;
    margin: 1em 0;
}



/* Services Section Styles */
.services {
    padding: 100px 80px;
    background-image: linear-gradient(180deg, #0B2653 0%, #0077B6 100%);
}

.services-container h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0077B6;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.services-container .service-p {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.services-container h1 span {
    color: var(--primary-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-wrapper {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-background {
    background-color: var(--primary-color);
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: -10px;
    right: -10px;
    border-radius: 4px;
    z-index: 0;
}

.card {
    display: flex;
    background-color: white;
    padding: 1.7rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    max-width: 400px;
}

.icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-right: 1rem;
}

.service-content h2 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-content p {
    margin: 0.25rem 0 0 0;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.service-cta {
    background-color: transparent;
    color: black;
    padding: 5px 20px;
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 15px;
    cursor: pointer;
    transition: all .55s ease-in-out;
}

.service-cta:hover {
    color: var(--button-text-color);
    background-color: var(--primary-color);
}

.service-cta2 {
    background-color: transparent;
    color: #fff;
    padding: 5px 20px;
    border: 2px solid var(--background-color);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 15px;
    cursor: pointer;
    transition: all .55s ease-in-out;
}

.service-cta2:hover {
    color: var(--primary-color);
    background-color: var(--button-text-color);
}

/* Alternate card styles */
.services-list .card-wrapper:nth-child(even) .card {
    background-color: var(--primary-color);
    color: white;
}

.services-list .card-wrapper:nth-child(even) .card .icon {
    color: white;
}

.services-list .card-wrapper:nth-child(even) .card .service-content h2,
.services-list .card-wrapper:nth-child(even) .card .service-content p {
    color: white;
}

.services-list .card-wrapper:nth-child(even) .card-background {
    background-color: white;
}

/* Services Section Responsive Styles */

@media (max-width: 1000px) {
    .services-container {
        padding: 50px 20px;
    }

    .services-container h3 {
        font-size: 16px;
    }

    .services-container h1 {
        font-size: 30px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service {
        padding: 50px;
    }

    .service h2 {
        font-size: 16px;
    }

    .service p {
        font-size: 14px;
    }

    .service button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Responsive Services Section */
@media (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-container h1 {
        font-size: 32px;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 420px) {
    .services {
        padding: 30px 20px;
    }

    .services-container h3 {
        font-size: 14px;
    }

    .services-container h1 {
        font-size: 24px;
    }

}


/* Mission Section Styles */
.mission {
    padding: 80px 20px;
    background-color: #fff;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-img {
    flex: 1 1 300px;
    text-align: center;
}

.mission-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    bottom: 0;
}

.mission-content {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 40px 20px;
    max-width: 600px;
}

.mission-content h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-poppins);
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-content h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.mission-content h1 span {
    color: var(--primary-color);
}

.mission-content p {
    color: #333;
    font-size: 16px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.progress-container h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}


.progress-track {
    background-color: #eee;
    border-radius: 20px;
    overflow: hidden;
    height: 12px;
    margin-bottom: 25px;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4fc3f7 100%);
    transition: width 0.6s ease-in-out;
}

.btn-call {
    color: var(--primary-color);
}


@media (max-width: 768px) {
    .mission-content h1 {
        font-size: 24px;
    }

    .mission-content p,
    .progress-container h4 {
        font-size: 14px;
    }

    .mission-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .mission-content h1 {
        font-size: 20px;
    }

    .mission-img img {
        bottom: 0;
    }

    .mission-buttons {
        display: grid;
        width: 100%;
        margin: 0;
    }
}

/* Tetimonials Sectio Styles */
/* Testimonials Section Styles */
.testimonials {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.testimonials-content {
    flex: 1 1 45%;
}

.testimonials-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonials-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonials-list ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
}

.testimonials-btn button {
    background-color: transparent;
    color: black;
    padding: 12px 20px;
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .55s ease-in-out;
}

.testimonials-btn button:hover {
    color: var(--button-text-color);
    background-color: var(--primary-color);

}

.testimonials-btn button:hover {
    background-color: #005fa3;
}

.testimonials-slider {
    flex: 1 1 45%;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.testimonials-slider .slide {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(100%);
}

.testimonials-slider .slide.active {
    display: block;
    opacity: 1;
    position: relative;
    transform: translateX(0);
}

.testimonials-slider .slide h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonials-slider .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonials-slider .slide p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonials-slider .prev,
.testimonials-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.testimonials-slider .prev {
    left: -10px;
}

.testimonials-slider .next {
    right: -10px;
}

@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        gap: 20px;
    }

    .testimonials-content,
    .testimonials-slider {
        flex: 1 1 100%;
    }

    .testimonials-content h2 {
        font-size: 1.5rem;
    }

    .testimonials-content h3 {
        font-size: 1.25rem;
    }

    .testimonials-btn button {
        width: 100%;
    }

    .testimonials-slider .prev,
    .testimonials-slider .next {
        top: auto;
        bottom: 10px;
        transform: none;
    }
}


/* Gallery Section Styles */
.gallery-container {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: black;
    margin: 0;
}

#mz-gallery-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#mz-gallery {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 70px);
    height: calc(100% - 50px);
    max-height: 670px;
    max-width: 1900px;
    margin: 35px 0px;
    background-color: black;
    background-image: radial-gradient(rgba(0, 162, 255, 0.4) 1px, black 1px);
    background-size: 40px 40px;
    border: 1px dotted #0077B6;
    outline: 1px dotted #0077B6;
    outline-offset: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 0 0 55px;
    scroll-behavior: smooth;
    /* firefox scrollbar */
    scrollbar-color: #0077B6 #222;
    scrollbar-width: auto;
    animation: background 300s linear infinite;
}

@keyframes background {
    0% {
        background-position: -300% 100%;
    }

    100% {
        background-position: 100% -300%;
    }
}

#mz-gallery::-webkit-scrollbar {
    height: 25px;
}

#mz-gallery::-webkit-scrollbar-track {
    background: transparent;
}

#mz-gallery::-webkit-scrollbar-thumb {
    background: #666;
}

#mz-gallery::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#mz-gallery::-webkit-scrollbar-thumb:active {
    background: #444;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement {
    height: 25px;
    width: 80px;
    background-color: #0077B6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-box-arrow-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 12.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v2a.5.5 0 0 1-1 0v-2A1.5 1.5 0 0 1 6.5 2h8A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 12.5v-2a.5.5 0 0 1 1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L1.707 7.5H10.5a.5.5 0 0 1 0 1H1.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3z'/%3E%3C/svg%3E");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment {
    height: 25px;
    width: 80px;
    background-color: #0077B6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-box-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement:hover,
#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
    background-color: #0077B6;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement:active,
#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment:active {
    background-color: #0077B6;
}

#mz-gallery figure {
    position: relative;
    margin: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: auto;
    min-height: 100px;
    margin-right: 60px;
    scroll-snap-align: start;
    transition: all 0.3s ease-in-out;
}

#mz-gallery figure:nth-child(1) {
    margin-left: 60px;
}

#mz-gallery figure div {
    position: absolute;
    width: 1%;
    height: 1%;
    background: transparent;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#mz-gallery figure div:nth-child(3) {
    top: 0;
    left: 0;
    border-left: 1px dotted #0077B6;
    border-top: 1px solid #0077B6;
    border-radius: 15px 0px 0px 0px;
}

#mz-gallery figure div:nth-child(4) {
    top: 0;
    right: 0;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-radius: 0px 15px 0px 0px;
}

#mz-gallery figure div:nth-child(5) {
    bottom: 0;
    right: 0;
    border-right: 1px dotted #0077B6;
    border-bottom: 1px solid #0077B6;
    border-radius: 0px 0px 15px 0px;
}

#mz-gallery figure div:nth-child(6) {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    border-radius: 0px 0px 0px 15px;
}

#mz-gallery figure img {
    height: 100%;
    width: auto;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 5px;
    opacity: 0.9;
    filter: brightness(1);
    outline: 1px solid transparent;
    outline-offset: -40px;
    transition: all 0.3s ease-in-out;
}

#mz-gallery figure figcaption {
    position: absolute;
    color: transparent;
    font-size: 18pt;
    line-height: 24pt;
    font-weight: 500;
    padding: 0px 20px;
    text-align: center;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(rgba(124, 252, 0, 0.7) 1px,
            rgba(0, 0, 0, 0.9) 1px);
    outline: 2px dotted transparent;
    outline-offset: 0px;
    background-size: 40px 40px;
    opacity: 0;
    border-radius: 100%;
    pointer-events: none;
    animation: background 100s linear infinite;
    transition: all 0.3s ease-in-out;
}

#mz-gallery figure:hover img {
    height: calc(100% - 40px);
    filter: brightness(1.5);
    border-radius: 10px;
    outline: 1px solid rgba(255, 255, 255, 0.8);
    outline-offset: 5px;
    transition: all 0.3s ease-in-out;
}

#mz-gallery figure:hover {
    padding: 0px 20px;
}

#mz-gallery figure:hover figcaption {
    opacity: 0.8;
    color: white;
    outline: 1px solid #0077B6;
    outline-offset: -20px;
    text-shadow: 1px 1px 3px black, 0px 0px 5px black;
    transition: all 0.3s ease-in-out;
}

#mz-gallery figure:hover div {
    width: 25%;
    height: 25%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1145px) {
    #mz-gallery figure {
        scroll-snap-align: center;
    }

    #mz-gallery {
        scroll-padding: 0px 0px 0px 0px !important;
    }
}

@media (max-width: 610px) {
    #mz-gallery {
        max-height: 320px;
    }

    #mz-gallery figure {
        margin-right: 20px;
    }

    #mz-gallery figure:nth-child(1) {
        margin-left: 20px;
    }
}

@media (max-height: 425px) {
    #mz-gallery figure figcaption {
        font-size: 14pt;
        line-height: 20pt;
    }
}

@media (max-height: 340px) {
    #mz-gallery {
        background-size: 30px 30px;
        scroll-padding: 0 0 0 28px;
    }

    #mz-gallery figure {
        margin-right: 30px;
    }

    #mz-gallery figure:nth-child(1) {
        margin-left: 30px;
    }

    #mz-gallery figure figcaption {
        font-size: 12pt;
        line-height: 18pt;
        font-weight: 400;
        background-size: 30px 30px;
    }
}

@media (max-height: 280px) {
    #mz-gallery::-webkit-scrollbar {
        height: 20px;
    }

    #mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement,
    #mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment {
        width: 80px;
        height: 20px;
        background-size: 15px;
    }
}

@media (max-height: 230px) {
    #mz-gallery figure figcaption {
        font-size: 10pt;
        line-height: 12pt;
    }

    #mz-gallery figure:hover figcaption {
        outline-offset: -10px;
    }

    #mz-gallery figure:hover img {
        outline-offset: 10px;
    }
}

@media (max-height: 165px) {
    #mz-gallery {
        scroll-padding: 0 0 0 18px;
        margin: 0px;
    }

    #mz-gallery figure {
        margin-right: 20px;
    }

    #mz-gallery figure:nth-child(1) {
        margin-left: 20px;
    }
}

/* touch screen devices */

@media (pointer: coarse) {
    #mz-gallery * {
        pointer-events: none;
    }

    #mz-gallery::-webkit-scrollbar {
        height: 35px;
    }

    #mz-gallery {
        scroll-snap-type: unset;
        scroll-padding: unset;
        scroll-behavior: unset;
    }

    #mz-gallery figure {
        scroll-snap-align: unset;
    }

    #mz-gallery figure figcaption {
        width: 100%;
        height: 30%;
        bottom: 0;
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        animation: unset;
        border-radius: 0;
        padding: 0px 15px;
        border-top: 1px solid #0077B6;
    }
}

/* Company Stats Section Styles */
.stats-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.stats-container {
    text-align: center;
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1 1 50%;
}

.stats-card {
    background-color: #f0f4ff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
}

.stats-card.normal {
    transform: translateY(-20px);
}

.stats-card.blue {
    background-color: var(--primary-color);
    transform: translateY(-30px);
    color: #fff;
}

.stats-card .stats-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stats-card h3 {
    font-size: 40px;
    font-weight: 900;
}

.stats-card p {
    font-size: 18px;
    font-weight: 500;
}

.stats-content {
    flex: 1 1 45%;
}

.stats-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.stats-content h2 span {
    color: var(--primary-color);
}

.stats-line {
    height: 5px;
    width: 50px;
    background-color: #cfd9ff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.stats-content blockquote {
    font-style: italic;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.stats-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.stats-content ul li {
    margin: 10px 0;
    position: relative;
    padding-left: 30px;
}

.stats-content ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.stats-btn {
    padding: 15px 30px;
    font-size: 16px;
    background-color: var(--background-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px;
    transition: all .55s ease-in-out;
}

.stats-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .content h2 {
        font-size: 32px;
    }
}


/* Where We Work Section Styles */
.where-we-work {
    padding: 50px 0px;
    background-color: #0077B6;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.work-content h2 {
    font-size: 25px;
    text-align: center;
}

.work-content p {
    margin-bottom: 5px;
    font-size: 18px;
    text-align: center;
}

.work-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.work-area {
    width: 200px;
    font-size: 20px;
    font-weight: 500;
    color: var(--button-text-color);
}

@media (min-width: 768px) {
    .work-content h2 {
        font-size: 2rem;
    }

    .work-content p {
        font-size: 1.1rem;
    }

    .work-area {
        font-size: 1.1rem;
        min-width: 180px;
    }
}

/* Gallery Section Styles */
.portofolio {
    padding: 50px 80px;
    background-color: #f9f9f9;
    text-align: center;
}

.portofolio h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0077B6;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portofolio h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.portofolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portofolio-grid img {
    width: 100%;
    height: 100vh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portofolio-grid img:hover {
    transform: scale(1.05);
}

/* Responsive styles for gallery */
@media (max-width: 768px) {
    .portofolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .portofolio {
        padding: 50px 20px;
    }

    .portofolio h1 {
        font-size: 28px;
    }

    .portofolio-grid img {
        height: auto;
    }
}

/* Contact Section Styles */
.contact {
    padding: 100px 80px;
    background-color: #F3F3F3;
}

.contact-container {
    display: flex;
    gap: 20px;
}

.contact-left {
    width: 50%;
}

.contact-left h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0077B6;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-left h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-group input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

button[type="submit"] {
    background-color: #0077B6;
    color: #fff;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.55s ease-in-out;
    align-self: center;
}

button[type="submit"]:hover {
    background-color: #000;
    color: #fff;
}

.contact-right {
    width: 50%;
}

.contact-right h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0077B6;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-right h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.contact-accordion {
    background-color: #0077B6;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-accordion::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-accordion.active::after {
    content: '-';
    transform: rotate(180deg);
}

.contact-accordion:hover {
    background-color: #000;
}

.contact-panel {
    padding: 0 15px;
    background-color: #f3f3f3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    margin-bottom: 10px;
    border-left: 2px solid #0077B6;
    border-right: 2px solid #0077B6;
    border-bottom: 2px solid #0077B6;
}

/* Contact Section Responsive Styles */

@media (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        padding: 0 20px;
    }

    .contact-left h3 {
        font-size: 16px;
    }

    .contact-left h1 {
        font-size: 30px;
    }

    .form-group input,
    textarea {
        font-size: 14px;
    }

    button[type="submit"] {
        font-size: 14px;
        padding: 10px 20px;
    }

    .contact-right h3 {
        font-size: 16px;
    }

    .contact-right h1 {
        font-size: 30px;
    }
}

@media (max-width: 420px) {

    /* CONTACT SECTION */
    .contact {
        padding: 50px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        padding: 0;
    }

    .contact-left h3,
    .contact-right h3 {
        font-size: 14px;
    }

    .contact-left h1,
    .contact-right h1 {
        font-size: 24px;
    }

    form {
        gap: 15px;
    }

    .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-group input,
    textarea {
        font-size: 14px;
        padding: 12px;
    }

    button[type="submit"] {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .contact-accordion {
        font-size: 14px;
        padding: 12px;
    }

    .contact-panel {
        font-size: 14px;
    }
}

/* Footer Section Styles */
footer {
    background-color: #111a3a;
    padding: 70px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.footer-column p,
.footer-column a,
.footer-column li {
    font-size: 16px;
    color: #cfcfcf;
    text-decoration: none;
    list-style: none;
    margin-bottom: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 100px;
}

.footer-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-icons a {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-post {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-post span {
    color: white;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 10px;
    border-top: 1px solid #ccc;
    font-size: 15px;
    color: #aaa;
}

@media (max-width: 600px) {
    .recent-post {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Boiler Installation Styles */

.service-intro {
    background: #e0f2f1;
    padding: 3rem 0;
    border-bottom: 1px solid #ddd;
}

.boiler-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.boiler-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.boiler-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.boiler-types {
    padding: 3rem 0;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.boiler-container ul {
    list-style: none;
    padding: 0;
}

.boiler-container ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.boiler-container ul li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.boiler-faversham {
    background-color: #f5f5f5;
    padding: 15px 30px;
}

.flex-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.text-block {
    flex: 1 1 50%;

}

.text-block p {
    margin-bottom: 10px;
}

.text-block h1 {
    font-size: 35px;
}

.text-block p {
    font-family: var(--font-poppins);
    font-weight: 600;
}

.boiler-p {
    margin-bottom: 15px;
}

.image-block {
    flex: 1 1 45%;
    text-align: center;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .flex-layout {
        flex-direction: column;
    }

    .text-block,
    .image-block {
        flex: 1 1 100%;
    }
}

.boiler-faq {
    padding: 3rem 0;
    border-bottom: 1px solid #ddd;
}

.boiler-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.boiler-faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.boiler-faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boiler-faq-question:hover {
    background-color: #004d40;
}

.boiler-faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.boiler-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    color: #444;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.boiler-faq-answer.show {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

.boiler-faq-question.open .boiler-faq-icon {
    transform: rotate(45deg);
}

/* Business Listings */
.listing-container h1{
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.slider {
    overflow: hidden;
    max-width: 1200px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    touch-action: pan-y;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.listing-slide {
    min-width: 200px;
    flex-shrink: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100px;
}

@media (max-width: 768px) {
    .listing-slide {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .listing-slide {
        min-width: 120px;
    }
}