/*******************************/
/********* General CSS *********/
/*******************************/

/* ── Body: padding-top offsets the fixed navbar on ALL pages ── */
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
    padding-top: 70px; /* same as navbar height so content never hides under it */
    margin: 0;
}

/* Project banner pulls back up flush under navbar */
.project-banner {
    margin-top: -70px;
}

@media (max-width: 1199px) {
    .navbar .navbar-brand span {
        font-size: 1rem;
        letter-spacing: 0;
    }
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 8px;
        font-size: 14px;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after,  [class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
    text-decoration: none;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0; left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text i {
    font-size: 16px;
    color: #FDBE33;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (min-width: 992px) {
    .top-bar { padding: 0 60px; }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    transition: .5s;
    z-index: 999;
    background: #20212B !important;
    padding: 12px 30px;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus {
    padding: 10px 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FDBE33;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.navbar .dropdown-menu .dropdown-item {
    color: #4a4c70;
    font-weight: 500;
    padding: 8px 20px;
    transition: .3s;
}

.navbar .dropdown-menu .dropdown-item:hover {
    color: #FDBE33;
    background: transparent;
}

@media (min-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 15px 30px;
        background: #20212B !important;
        z-index: 999;
    }

    .navbar.nav-sticky {
        padding: 10px 30px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #20212B !important;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FDBE33;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    color: #4a4c70;
}

@media (max-width: 991.98px) {
    .section-header h2 { font-size: 45px; }
}
@media (max-width: 767.98px) {
    .section-header h2 { font-size: 40px; }
}
@media (max-width: 575.98px) {
    .section-header h2 { font-size: 35px; }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
#heroCarousel {
    width: 100%;
    height: calc(100vh + 70px);
    margin-top: -70px;
    margin-bottom: 0;
    overflow: hidden;
    background: #000;
}

.carousel-inner { height: 100%; background: #000; }
.carousel-item  { height: 100%; background: #000; }

#heroCarousel .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: block !important;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
}

#heroCarousel .carousel-item.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

#heroCarousel .carousel-item.carousel-item-next,
#heroCarousel .carousel-item.carousel-item-prev { opacity: 0; z-index: 1; }

#heroCarousel .carousel-item.carousel-item-next.carousel-item-start,
#heroCarousel .carousel-item.carousel-item-prev.carousel-item-end { opacity: 1; z-index: 2; }

#heroCarousel .carousel-item.active.carousel-item-start,
#heroCarousel .carousel-item.active.carousel-item-end { opacity: 0; z-index: 1; }

.slider-slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slider-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 1rem;
}

.slider-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.slider-caption p.lead {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 25px;
}

.slider-caption .btn.btn-custom {
    color: #ffffff;
}

.slider-caption .btn.btn-custom:hover {
    color: #20212B;
}

/* Override Bootstrap btn-success in slider with reference style */
.slider-caption .btn-success,
.slider-caption .btn-outline-light {
    border-radius: 0;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
}

.slider-caption .btn-success {
    background: transparent;
    color: #ffffff;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
}

.slider-caption .btn-success:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 50px #FDBE33;
    border-color: #FDBE33;
}

.slider-caption .btn-outline-light {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    transition: ease-out 0.3s;
}

.slider-caption .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    background: rgba(256, 256, 256, .2);
    opacity: 1;
    z-index: 20;
    transition: .3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #FDBE33;
}

@media (max-width: 991.98px) {
    .slider-caption h1   { font-size: 35px; }
    .slider-caption p.lead { font-size: 16px; }
    #heroCarousel { height: calc(70vh + 70px); }
}
@media (max-width: 767.98px) {
    .slider-caption h1 { font-size: 30px; }
    #heroCarousel { height: calc(60vh + 60px); margin-top: -60px; }
}
@media (max-width: 575.98px) {
    .slider-caption h1 { font-size: 25px; }
    #heroCarousel { height: calc(50vh + 60px); }
}


/*******************************/
/******** Statistics CSS *******/
/*******************************/
.py-5.bg-success,
section.py-5[style*="background: #4CAF50"],
section.py-5[style*="background:#4CAF50"] {
    background: #20212B !important;
}

/* Facts/stats block — reference style */
.facts {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: #FDBE33;
}

.facts .facts-text { padding-left: 20px; }

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

/* Stats section inside index.html */
section.py-5 .display-4 {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
}

section.py-5 i.fa-3x {
    color: #FDBE33;
    margin-bottom: 15px;
}

section.py-5 p {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 100vh;
    min-height: 400px;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about .about-tab { width: 100%; }

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
    color: #4a4c70;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container { padding: 0; }

.about .section-header p {
    font-size: 22px;
    font-weight: 600;
    color: #FDBE33;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.about .section-header h2 {
    font-size: 45px;
    font-weight: 700;
    color: #4a4c70;
    margin: 0;
}

.about .section-header h3 {
    font-size: 20px;
    font-weight: 400;
    color: #777777;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .about .section-header { margin-top: 30px; }
    .about .about-img { height: 50vh; min-height: 300px; }
}
@media (max-width: 767.98px) {
    .about .about-img { height: 40vh; min-height: 250px; }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
    flex-shrink: 0;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: #FDBE33;
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    width: calc(100% - 80px);
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px; left: 0;
    background: rgba(0, 0, 0, .1);
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4a4c70;
}

.service .service-text p {
    margin: 0;
    color: #777777;
    line-height: 1.7;
}


/*******************************/
/********* Donate CSS **********/
/*******************************/
.donate {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.donate .donate-content {
    padding: 45px 0 15px 0;
}

.container .donate {
    margin: 90px 0;
}

.container .donate .donate-content {
    padding: 45px 30px 15px 30px;
}

.donate .donate-content .section-header {
    margin-bottom: 30px;
}

.donate .donate-content .section-header p {
    color: #FDBE33;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
}

.donate .donate-text p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.donate .donate-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.donate .donate-form .control-group {
    margin-bottom: 15px;
}

.donate .donate-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.donate .donate-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.donate .donate-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.donate .donate-form .btn.btn-custom:hover {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 60px #ffffff;
}


/*******************************/
/********** Event CSS **********/
/*******************************/
/* ============================================================
   EVENTS — matches reference design exactly
   Add/replace this block in static/css/style.css
   ============================================================ */

.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

/* ── Event Card ── */
.event .event-item {
    position: relative;
    margin-bottom: 30px;
    background: #f3f6ff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event .event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ── Event Image ── */
.event .event-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event .event-item:hover img {
    transform: scale(1.04);
}

/* ── No Image Placeholder ── */
.event .event-no-img {
    width: 100%;
    height: 220px;
    background: #e8ecf8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event .event-no-img i {
    font-size: 60px;
    color: #FDBE33;
}

/* ── Event Content Row ── */
.event .event-content {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/* ── Event Meta (date/location/seats column) ── */
.event .event-meta {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 110px;
}

.event .event-meta p {
    position: relative;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    color: #777777;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.event .event-meta p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event .event-meta i {
    color: #4a4c70;
    width: 22px;
    font-size: 13px;
}

/* ── Event Text (title/desc/btn column) ── */
.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    flex: 1;
}

/* Left border line */
.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 4px;
    left: 0;
    background: rgba(0, 0, 0, .12);
}

/* Gold accent bar */
.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.event .event-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event .event-text p {
    margin: 0 0 15px 0;
    color: #777777;
    font-size: 15px;
    line-height: 1.7;
}

.event .event-text .btn.btn-custom {
    padding: 8px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── No Events Fallback ── */
.event .event-empty {
    padding: 60px 0;
}

.event .event-empty i {
    display: block;
    font-size: 60px;
    color: #FDBE33;
    margin-bottom: 20px;
}

.event .event-empty h4 {
    color: #4a4c70;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-empty p {
    color: #777777;
    font-size: 16px;
}

/* ── Owl Carousel wrapper ── */
.event .events-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.event .events-carousel .event-item {
    margin: 0 15px 30px 15px;
}

/* ── Carousel Nav Arrows ── */
.event .owl-nav {
    margin-top: 10px;
    text-align: center;
}

.event .owl-nav .owl-prev,
.event .owl-nav .owl-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    background: #FDBE33;
    color: #4a4c70;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.event .owl-nav .owl-prev:hover,
.event .owl-nav .owl-next:hover {
    background: #4a4c70;
    color: #FDBE33;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .event .event-content {
        flex-direction: column;
        padding: 20px;
    }

    .event .event-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        min-width: unset;
        margin-bottom: 15px;
    }

    .event .event-meta p {
        font-size: 13px;
        padding: 0 10px 0 0;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, .12);
        margin-bottom: 0;
    }

    .event .event-meta p:last-child {
        border-right: none;
        padding-right: 0;
    }

    .event .event-text {
        margin-left: 0;
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .1);
    }

    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }

    .event .event-text h3 {
        font-size: 18px;
    }

    .event .event-item img,
    .event .event-no-img {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .event .event-item img,
    .event .event-no-img {
        height: 160px;
    }

    .event .event-text h3 {
        font-size: 16px;
    }
}
/* .event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
}

.event .event-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event .event-no-img {
    width: 100%;
    height: 220px;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event .event-no-img i {
    font-size: 60px;
    color: #FDBE33;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    color: #777777;
    font-size: 14px;
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px; left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0 0 15px 0;
    color: #777777;
    line-height: 1.7;
}

.event .btn.btn-custom {
    margin-top: 5px;
    padding: 8px 30px;
    font-size: 14px;
    font-weight: 600;
}

.event .events-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.event .events-carousel .event-item {
    margin: 0 15px 30px 15px;
}

.event .owl-nav {
    margin-top: 10px;
    text-align: center;
}

.event .owl-nav .owl-prev,
.event .owl-nav .owl-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background: #FDBE33;
    color: #4a4c70;
    font-size: 18px;
    transition: .3s;
    border: none;
    outline: none;
}

.event .owl-nav .owl-prev:hover,
.event .owl-nav .owl-next:hover {
    background: #4a4c70;
    color: #FDBE33;
}

@media (max-width: 575.98px) {
    .event .event-content  { flex-direction: column; }

    .event .event-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .event .event-meta p {
        font-size: 13px;
        padding-right: 10px;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, .15);
        margin-bottom: 0;
    }

    .event .event-meta p:last-child { border-right: none; }

    .event .event-text {
        margin: 15px 0 0 0;
        padding: 15px 0 0 0;
    }

    .event .event-text::before,
    .event .event-text::after { display: none; }

    .event .event-text h3 { font-size: 18px; }
} */


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 35px;
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    transform: scale(1.1);
    margin-bottom: -15px;
    transition: .3s;
}

.team .team-item:hover img {
    margin: -15px 0 0 0;
}

.team .team-img .team-no-img {
    width: 100%;
    height: 280px;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.1);
    margin-bottom: -15px;
    transition: .3s;
}

.team .team-item:hover .team-no-img {
    margin: -15px 0 0 0;
}

.team .team-img .team-no-img i {
    font-size: 80px;
    color: #FDBE33;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 40px);
    height: 96px;
    bottom: 0;
    left: 20px;
    padding: 22px 0;
    text-align: center;
    background: #ffffff;
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a4c70;
}

.team .team-text p {
    margin-bottom: 20px;
    color: #777777;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #4a4c70;
    border: 2px solid #FDBE33;
    transition: .3s;
}

.team .team-social a:hover {
    color: #20212B;
    background: #FDBE33;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-profile img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top center;
    margin-bottom: -1px;
    flex-shrink: 0;
}

/* No-image fallback */
.testimonial .testimonial-no-img {
    width: 80px;
    height: 80px;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: -1px;
}

.testimonial .testimonial-no-img i {
    font-size: 36px;
    color: #FDBE33;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a4c70;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
    color: #777777;
}

.testimonial .testimonial-text p {
    margin: 0;
    color: #777777;
    font-size: 16px;
    line-height: 1.8;
    padding-top: 5px;
}

/* Dots — exact reference style */
.testimonial .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 0;
    text-align: center;
}

.testimonial .owl-dots .owl-dot {
    display: inline-flex !important;
    background: none !important;
    border: none;
    outline: none;
    padding: 0;
    margin: 0 5px;
    cursor: pointer;
}

.testimonial .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
    transition: background 0.3s ease;
}

.testimonial .owl-dots .owl-dot.active span,
.testimonial .owl-dots .owl-dot:hover span {
    background: #20212B;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.blog .blog-item:hover {
    transform: translateY(-5px);
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4a4c70;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #FDBE33;
}

.blog .blog-text p {
    margin: 0;
    color: #777777;
}

/* Blog cards on index (Bootstrap card overrides) */
section.py-5 .card {
    border: none;
    border-radius: 0;
    background: #f3f6ff;
    box-shadow: none;
    transition: transform 0.3s ease;
}

section.py-5 .card:hover {
    transform: translateY(-5px);
}

section.py-5 .card-title {
    color: #4a4c70;
    font-weight: 700;
}

section.py-5 .card .btn-outline-success,
section.py-5 .card .btn-sm.btn-outline-success {
    border-radius: 0;
    border-color: #FDBE33;
    color: #4a4c70;
    font-weight: 500;
}

section.py-5 .card .btn-outline-success:hover {
    background: #FDBE33;
    border-color: #FDBE33;
    color: #20212B;
}

section.py-5 .btn-success {
    background: #FDBE33;
    border: 2px solid #FDBE33;
    color: #20212B;
    border-radius: 0;
    font-weight: 600;
}

section.py-5 .btn-success:hover {
    background: transparent;
    color: #FDBE33;
}

/* Gallery section */
section.py-5.bg-light {
    background: #f3f6ff !important;
}

section.py-5 h2.text-center {
    font-size: 45px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 5px;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    padding: 30px;
    background: #f3f6ff;
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #777777;
    outline: none;
    transition: border-color 0.3s;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    border-color: #FDBE33;
    box-shadow: none;
}

.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
    color: #aaaaaa;
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    resize: none;
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact .help-block.text-danger {
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
    color: #dc3545;
}

#success { margin-bottom: 15px; }

.control-group { margin-bottom: 5px; }

/* Validation */
.is-invalid {
    border-color: #dc3545 !important;
}

.is-valid {
    border-color: #198754 !important;
}

@media (max-width: 991.98px) {
    .contact .contact-form { max-width: 600px; }
}
@media (max-width: 767.98px) {
    .contact .contact-img img  { height: 300px; }
    .contact .contact-form {
        max-width: 90%;
        margin-top: -150px;
        padding: 20px;
    }
}
@media (max-width: 575.98px) {
    .contact .contact-img img { height: 200px; }
    .contact .contact-form {
        margin-top: -100px;
        padding: 15px;
    }
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #20212B;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #FDBE33;
}

.footer .footer-contact p {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer .footer-contact p i {
    width: 25px;
    color: #FDBE33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
    text-decoration: none;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #FDBE33;
}

.footer .footer-link a:hover {
    color: #FDBE33;
    letter-spacing: 1px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a.btn.btn-custom {
    width: 40px;
    height: 40px;
    padding: 6px 0;
    text-align: center;
    color: #FDBE33;
    border: 2px solid #FDBE33;
    border-radius: 0;
    margin-right: 5px;
    margin-top: 5px;
    font-size: 14px;
    transition: .3s;
    box-shadow: none;
}

.footer .footer-social a.btn.btn-custom:hover {
    color: #20212B;
    background: #FDBE33;
    box-shadow: none;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.1);
    color: #ffffff;
    padding: 0 15px;
}

.footer .footer-newsletter input::placeholder {
    color: #aaaaaa;
}

.footer .footer-newsletter input:focus {
    box-shadow: none;
    border: 1px solid #FDBE33;
    outline: none;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    height: 60px;
    padding: 15px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    box-shadow: inset 0 0 0 0 #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: ease-out 0.3s;
}

.footer .footer-newsletter .btn.btn-custom:hover {
    color: #FDBE33;
    box-shadow: inset 0 0 0 60px #ffffff;
}

.footer .copyright { padding: 0 30px; }

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.footer .copyright p a:hover {
    color: #FDBE33;
}

@media (max-width: 767.98px) {
    .footer { padding-top: 60px; }
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


/*******************************/
/***** Page Header CSS *********/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url(../uploads/page-header.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover { color: #FDBE33; }

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px; right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after { display: none; }

@media (max-width: 991.98px) {
    .page-header { padding: 60px 0; }
    .page-header h2 { font-size: 45px; }
    .page-header a  { font-size: 20px; }
}
@media (max-width: 767.98px) {
    .page-header { padding: 45px 0; }
    .page-header h2 { font-size: 35px; }
    .page-header a  { font-size: 18px; }
}


/*******************************/
/****** Single Post CSS ********/
/*******************************/
.single { position: relative; padding: 45px 0; }

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img { width: 100%; max-width: 100px; }

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text { padding-left: 30px; }

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p { margin: 0; }

.single .single-related { margin-bottom: 45px; }

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item { margin: 0 15px; }

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img { width: 100%; max-width: 80px; }
.single .post-item .post-img img { width: 100%; }
.single .post-item .post-text { padding-left: 15px; }

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
}

.single .post-item .post-text a:hover { color: #FDBE33; }

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px; right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #FDBE33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #FDBE33;
    background: #4a4c70;
}

.single .comment-form h2,
.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover { background: #FDBE33; }


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar { position: relative; width: 100%; }

@media(max-width: 991.98px) {
    .sidebar { margin-top: 45px; }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px; height: 2px;
    bottom: 0; left: 0;
    background: #FDBE33;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FDBE33;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px; right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #FDBE33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover { color: #4a4c70; }

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.sidebar .category-widget ul {
    margin: 0; padding: 0; list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FDBE33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover { transform: scale(1.1); }

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FDBE33;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link { color: #999999; }


/*******************************/
/**** Form Validation Misc *****/
/*******************************/
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */

/* Banner */
.project-banner {
    padding: 130px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    background-color: #20212B;
}

.project-banner-content { max-width: 760px; }

.project-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253,190,51,.15);
    border: 1px solid rgba(253,190,51,.4);
    color: #FDBE33;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 18px;
}

.project-banner-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Quicksand', sans-serif;
}

.project-banner-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.project-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Body */
.project-body { padding: 65px 0 20px 0; }

/* Content sections */
.project-content-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.project-content-section:last-child { border-bottom: none; }

.project-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-section-accent {
    display: inline-block;
    width: 4px;
    height: 28px;
    background: #FDBE33;
    border-radius: 2px;
    flex-shrink: 0;
}

.project-section-body {
    color: #555;
    font-size: 16px;
    line-height: 1.85;
}

.project-section-body h2,
.project-section-body h3,
.project-section-body h4 {
    color: #4a4c70;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.project-section-body p { margin-bottom: 14px; color: #555; }

.project-section-body ul,
.project-section-body ol {
    margin-bottom: 14px;
    padding-left: 22px;
}

.project-section-body li { margin-bottom: 6px; color: #555; }
.project-section-body strong { color: #4a4c70; font-weight: 700; }
.project-section-body a { color: #FDBE33; text-decoration: underline; }

/* Image sections */
.project-image-section { margin-bottom: 50px; }

.project-image-wrap {
    display: inline-block;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.13);
    transition: transform .3s ease, box-shadow .3s ease;
}

.project-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.project-section-img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.project-image-placeholder {
    padding: 60px;
    background: #f3f6ff;
    color: #aaa;
    text-align: center;
}

.project-image-placeholder i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    color: #FDBE33;
}

.project-image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* CTA */
.project-cta {
    background: #20212B;
    padding: 55px 0;
    margin-top: 20px;
}

.project-cta-title {
    color: #FDBE33;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-cta-text {
    color: rgba(255,255,255,.75);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .project-banner { padding: 120px 0 65px 0; background-attachment: scroll; }
    .project-banner-title { font-size: 38px; }
}

@media (max-width: 767px) {
    body { padding-top: 60px; }
    .project-banner { padding: 100px 0 55px 0; margin-top: -60px; }
    .project-banner-title { font-size: 28px; }
    .project-banner-subtitle { font-size: 15px; }
    .project-banner-actions { flex-direction: column; }
    .project-banner-actions .btn { width: 100%; text-align: center; }
    .project-section-title { font-size: 22px; }
    .project-body { padding: 40px 0 20px 0; }
    .project-cta-title { font-size: 20px; }
    .navbar { padding: 10px 15px; }
}