/* --- From main.css: Global Resets & Fonts --- */
@font-face {
    font-family: 'Source Sans Pro';
    src: url(/static/fonts/Source_Sans_Pro/SourcsSansPro-regular/SourceSansProRegular.woff2) format("woff2");
    font-weight: 400;
    font-display: swap
}

*,
*::before,
*::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:any-link {
    text-decoration: none;
    outline: none;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Source Sans Pro", sans-serif;
}

html {
    scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none !important;
    background-color: transparent;
    box-shadow: none !important;
}

/* --- From main.css: Navbar (Included in HTML) --- */
.navbar {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar .navbar-nav {
    gap: 40px;
}

.navbar .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 1199.98px) {
    .navbar .navbar-collapse {
        position: fixed;
        right: -600px;
        top: 0;
        height: 100vh;
        background-color: #179d86;
        width: 100%;
        z-index: 90;
        transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar .navbar-collapse.show {
        right: 0;
    }
}

/* --- From style.css: Top Banner & Navigation --- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");

.top-banner {
    background-image: url("../images/Banner.png");
    background-size: cover;
    background-position: top;
    height: 500px;
    border-radius: 0px 0px 50px 50px;
}

.top-banner .top-banner-title {
    width: 85%;
    color: #fff;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 48px;
    font-weight: 800;
    margin: 75px auto;
    text-transform: capitalize;
}

.top-banner .social {
    top: 30%;
    list-style: none;
}

.top-banner .gallary-tabs {
    border: 1px solid #fff;
    border-radius: 100px;
    display: flex;
    margin: 0 auto;
    width: auto !important;
}

.top-banner .gallary-tabs .nav-item .nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: capitalize;
}

.top-banner .gallary-tabs .nav-item .nav-link.active {
    color: #1bb097;
}

/* --- From style.css: Blog Sections (Lets Blog & Most Story) --- */
.lets-blog {
    margin: 50px auto;
    margin-top: 100px;
}

.lets-blog .lets-blog-title {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}

.lets-blog .lets-card {
    position: relative;
}

.lets-blog .lets-img {
    border-radius: 16px;
    height: 240px;
    object-fit: cover;
}

.lets-blog .overlay {
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(27, 176, 151, 0) 0%, rgba(27, 176, 151, 1) 100%);
    width: 100%;
    height: 155px;
    position: absolute;
    bottom: 0;
}

.lets-blog .category {
    bottom: 0px;
    position: absolute;
    padding: 10px;
    margin-left: 40px;
}

.lets-blog .category .cat-type {
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-weight: 300;
}

.lets-blog .category .cat-name {
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-weight: 800;
}

.most-story {
    padding: 50px 0;
    padding-bottom: 100px;
}

.most-story .most-story-title {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 48px;
    font-weight: 800;
}

.most-story .nav-link {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-weight: 500;
    border: 0 !important;
}

/* --- From style.css: Stepper Component (Nested Rules) --- */
.stepper {
    .line {
        width: 2px;
        background: #1bb097 !important;
        min-height: 100px;
    }

    .lead {
        font-size: 1.1rem;
    }

    .rounded-circle {
        border: 2px solid #1bb097 !important;
        background-color: #fff !important;
        position: relative;
        width: 32px;
        height: 35px;
    }

    .rounded-circle::after {
        width: 13px;
        height: 13px;
        content: "";
        display: block;
        background-color: #1bb097;
        position: absolute;
        top: 9px;
        left: 10px;
        border-radius: 100%;
    }

    .stepper-item {
        opacity: 0.4;
    }

    .stepper-item.active {
        opacity: 1;
    }

    .stepper-title {
        color: #000;
        font-family: "Plus Jakarta Sans";
        font-size: 24px;
        font-weight: 800;
    }

    .stepper-detail {
        color: #000;
        opacity: 0.6;
        font-size: 18px;
        line-height: 1.8;
    }

    .readmore-btn {
        padding: 15px 20px;
        border-radius: 47px;
        border: 2px solid #1bb097;
        background: #fff;
        color: #1bb097;
        font-weight: 600;
        text-transform: capitalize;
    }
}

.lets-blog .stepper-img {
    border-radius: 10px;
}

/* --- From style.css: Footer --- */
.dw-footer {
    background: #505050;
    padding: 15px;
    color: #fff;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
}

/* --- Carousel & Layout Media Queries --- */
@media (max-width: 991.98px) {

    .padding-horizontal-lg,
    .padding-horizontal-lg-left {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .latest-story-layout {
        flex-direction: column !important;
    }

    .carousel-slide {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .most-story .most-story-title,
    .lets-blog .lets-blog-title,
    .top-banner .top-banner-title {
        font-size: 30px !important;
    }
}

@media (max-width: 767px) {
    .top-banner {
        height: max-content;
        padding-bottom: 10px !important;
    }

    .top-banner .gallary-tabs {
        width: 85% !important;
        border-radius: 20px;
    }
}