/********** Template CSS **********/
:root {
    --primary: #FC8500;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
    background: rgba(0, 29, 35, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    min-height: 100px;
}

/* Centered Brand/Title Styling */
.navbar-brand-center {
    position: relative;
}

.navbar-brand {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.navbar-brand:hover {
    text-decoration: none;
}

.navbar-brand h4, .navbar-brand h5 {
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.navbar-brand h4 {
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand h5 {
    font-size: 0.9rem;
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover h4,
.navbar-brand:hover h5 {
    transform: scale(1.05);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Navigation Equal Distribution Layout */
.nav-distribution {
    align-items: center;
    min-height: 50px;
    justify-content: center;
}

.nav-left, .nav-right {
    align-items: center;
    gap: 0;
    justify-content: center;
}

.nav-left {
    flex: 1;
    justify-content: space-evenly;
}

.nav-right {
    flex: 1;
    justify-content: space-evenly;
}

.navbar .navbar-nav .nav-link {
    margin: 0;
    padding: 10px 8px;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    flex: 1;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(252, 133, 0, 0.1);
    transform: translateY(-2px);
}

/* Center the quicklinks button */
.navbar .d-none.d-lg-flex {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Navbar Toggler Positioning */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(252, 133, 0, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 1.5em;
    height: 1.5em;
}

.navbar .btn-outline-primary {
    border: 2px solid var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.navbar .btn-outline-primary:hover::before {
    left: 0;
}

.navbar .btn-outline-primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 133, 0, 0.3);
}

.navbar .btn-sm-square {
    transition: all 0.3s ease;
}

.navbar .btn-outline-primary:hover .btn-sm-square {
    background: #FFFFFF !important;
    transform: translateX(3px);
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
        min-height: 80px;
    }
    
    /* Mobile Brand Title */
    .navbar-brand h4 {
        font-size: 0.9rem;
    }
    
    .navbar-brand h5 {
        font-size: 0.75rem;
        margin-top: 1px;
    }

    /* Mobile Navigation - Stack vertically */
    .nav-distribution {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 29, 35, 0.98);
        padding: 1.5rem 0;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-left, .nav-right {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 5px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 3px 15px;
        text-align: center;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-weight: 500;
        width: 90%;
        max-width: 280px;
        display: block;
    }
    
    .navbar .navbar-nav .nav-link:hover {
        background: rgba(252, 133, 0, 0.1);
        transform: translateX(5px);
    }
    
    .navbar .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Mobile Toggler */
    .navbar-toggler {
        border: none;
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        position: absolute;
        left: 15px;
        top: 15px;
        z-index: 1000;
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(252, 133, 0, 0.25);
        outline: none;
    }
    
    /* Mobile Donate Button positioning */
    .d-lg-none.text-center {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .d-lg-none .btn-outline-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar {
        min-height: 85px;
        padding: 0.75rem 0;
    }
    
    .navbar-brand h4 {
        font-size: 1rem;
    }
    
    .navbar-brand h5 {
        font-size: 0.8rem;
    }
    
    /* Tablet Navigation - Equal distribution with smaller spacing */
    .nav-distribution {
        justify-content: center;
    }
    
    .nav-left, .nav-right {
        gap: 0;
        justify-content: space-evenly;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 8px 8px;
        margin: 0;
        font-size: 0.8rem;
        flex: 1;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
        min-height: 75px;
    }
    
    .navbar-brand h4 {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .navbar-brand h5 {
        font-size: 0.65rem;
        line-height: 1.1;
        margin-top: 1px;
    }
    
    .navbar .navbar-nav {
        padding: 1rem 0;
        margin-top: 10px;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 3px 10px;
        font-size: 0.8rem;
    }
    
    .d-lg-none .btn-outline-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .navbar-toggler {
        padding: 0.3rem 0.5rem;
        top: 10px;
        left: 10px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    
    /* Enhanced desktop navbar styling */
    .navbar {
        padding: 1.2rem 0;
        min-height: 120px;
    }
    
    .navbar-brand h4 {
        font-size: 1.3rem;
    }
    
    .navbar-brand h5 {
        font-size: 1rem;
    }
    
    /* Desktop Navigation Equal Distribution */
    .nav-distribution {
        justify-content: center;
        align-items: center;
        max-width: 100%;
    }
    
    .nav-left, .nav-right {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-evenly;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 10px 12px;
        margin: 0;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        flex: 1;
    }
    
    .navbar .btn-outline-primary {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .navbar {
        min-height: 130px;
    }
    
    .navbar-brand h4 {
        font-size: 1.4rem;
    }
    
    .navbar-brand h5 {
        font-size: 1.1rem;
    }
    
    .nav-left, .nav-right {
        gap: 0;
        justify-content: space-evenly;
    }
    
    .navbar .navbar-nav .nav-link {
        margin: 0;
        font-size: 0.95rem;
        padding: 12px 14px;
        flex: 1;
    }
    
    .navbar .btn-outline-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}


/*** Header ***/
/* Hero Logo Styling - Now as background */
#header-carousel .carousel-item {
    background: url('../assets/logoth.jpeg') center center no-repeat;
    background-size: 60% auto;
    background-position: center 30%;
    min-height: 600px;
    position: relative;
}

#header-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 29, 35, 0.85) 0%, rgba(0, 29, 35, 0.75) 100%);
    z-index: 1;
}

/* Hero Title Styling */
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #FFD700 100%);
    border-radius: 2px;
}

/* Hero Subtitle Styling */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 180px;
}

.carousel-caption .container {
    margin-top: 100px;
}

.carousel-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(252, 133, 0, 0.1) 0%, rgba(0, 29, 35, 0.8) 100%);
    z-index: -1;
}

.carousel-caption h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
    z-index: 4;
    opacity: 1;
    cursor: pointer;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Ensure controls are clickable */
.carousel-control-prev,
.carousel-control-next {
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Make sure controls are visible on all screen sizes */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        border: 8px solid var(--dark);
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
        border: 6px solid var(--dark);
    }
}

/* Carousel Indicators Styling */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-indicators button.active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(252, 133, 0, 0.5);
}

/* Responsive Hero Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        background-size: 70% auto;
        background-position: center 25%;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .carousel-caption {
        padding-top: 120px;
    }
    
    .carousel-caption .container {
        margin-top: 60px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .carousel-caption h1 {
        font-size: 1.75rem;
    }
    
    .carousel-caption p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-item {
        background-size: 80% auto;
        background-position: center 20%;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .carousel-caption {
        padding-top: 100px;
    }
    
    .carousel-caption .container {
        margin-top: 40px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header .breadcrumb {
    font-size: 0.9rem;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

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

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    /* max-height: 100%; */
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Our Services Section Styling */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
}

.service-item {
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(252, 133, 0, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(252, 133, 0, 0.15) !important;
  border-color: rgba(252, 133, 0, 0.3) !important;
}

.service-item:hover::before {
  transform: scaleX(1);
}

/* Modern Image Container with Standardized Sizing */
.service-item .img-fluid {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  border-radius: 15px 15px 0 0 !important;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 0 !important;
}

.service-item:hover .img-fluid {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Content Container */
.service-item .service-content {
  padding: 2rem !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.service-item h4 {
  color: #001D23 !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
  margin-bottom: 1rem !important;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-item h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-item:hover h4::after {
  width: 60px;
}

.service-item p {
  color: #6c757d !important;
  line-height: 1.7 !important;
  font-size: 1rem !important;
  margin-bottom: 1.5rem !important;
  flex: 1 !important;
}

.service-item .btn {
  border-radius: 25px !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-item .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.service-item .btn:hover::before {
  left: 0;
}

.service-item .btn:hover {
  color: #ffffff !important;
  border-color: #fc8500 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 133, 0, 0.3);
}

.service-item .btn-sm-square {
  transition: all 0.3s ease;
}

.service-item .btn:hover .btn-sm-square {
  background: #ffffff !important;
  color: #fc8500 !important;
  transform: translateX(3px);
}

/* Service Icons */
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  background: linear-gradient(135deg, #fc8500 0%, #fd9d0d 100%);
  box-shadow: 0 8px 25px rgba(252, 133, 0, 0.3);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(252, 133, 0, 0.4);
}

.service-item:hover .service-icon i {
  transform: scale(1.1);
}

/* Services Title Enhancement */
.services-title h1 {
  background: linear-gradient(135deg, #fc8500 0%, #fd9d0d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  text-shadow: 0 4px 8px rgba(252, 133, 0, 0.1);
  margin-bottom: 1rem !important;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
  .service-item .img-fluid {
    height: 220px !important;
  }
  
  .service-item .service-content {
    padding: 1.5rem !important;
  }
  
  .services-title h1 {
    font-size: 2.5rem !important;
  }
  
  .service-item h4 {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 576px) {
  .service-item .img-fluid {
    height: 200px !important;
  }
  
  .service-item .service-content {
    padding: 1rem !important;
  }
  
  .services-title h1 {
    font-size: 2rem !important;
  }
}



/* Welcome Modal Styling */
#welcomeModal .modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#welcomeModal .modal-header {
  background: linear-gradient(135deg, #06A3DA 0%, #0DCAF0 100%);
  padding: 1.5rem 1.5rem 0;
}

#welcomeModal .btn-close {
  background-color: white;
  opacity: 0.8;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

#welcomeModal .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

#welcomeModal .modal-body {
  padding: 2rem 2rem 1.5rem;
  background: white;
}

.welcome-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06A3DA 0%, #0DCAF0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: welcomePulse 2s infinite;
}

.welcome-icon i {
  font-size: 2.5rem;
  color: white;
}

#welcomeModal .modal-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#welcomeModal .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

#welcomeModal .btn-primary {
  background: linear-gradient(135deg, #06A3DA 0%, #0DCAF0 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 163, 218, 0.3);
}

#welcomeModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 163, 218, 0.4);
}

@keyframes welcomePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(6, 163, 218, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(6, 163, 218, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(6, 163, 218, 0);
  }
}

/* Responsive adjustments for welcome modal */
@media (max-width: 768px) {
  #welcomeModal .modal-body {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .welcome-icon {
    width: 70px;
    height: 70px;
  }
  
  .welcome-icon i {
    font-size: 2rem;
  }
  
  #welcomeModal .modal-title {
    font-size: 1.5rem;
  }
  
  #welcomeModal .lead {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #welcomeModal .modal-body {
    padding: 1rem 1rem 0.5rem;
  }
  
  .welcome-icon {
    width: 60px;
    height: 60px;
  }
  
  .welcome-icon i {
    font-size: 1.8rem;
  }
  
  #welcomeModal .modal-title {
    font-size: 1.3rem;
  }
}

/* Together We Make Change Section */
.impact-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary);
}

.impact-item img {
  transition: all 0.3s ease;
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.impact-item:hover img {
  transform: scale(1.05);
}

.impact-item h5 {
  font-weight: 600;
  transition: color 0.3s ease;
}

.impact-item:hover h5 {
  color: var(--primary) !important;
}

/* Our Partners Section */
.partner-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.partner-placeholder {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-card:hover .partner-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scale(1.1);
}

.partner-card:hover .partner-placeholder i {
  color: white !important;
}

.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item h4 {
  font-weight: 700;
  font-size: 1.8rem;
}

.partnership-benefits ul li {
  transition: all 0.3s ease;
  padding: 5px 0;
}

.partnership-benefits ul li:hover {
  transform: translateX(5px);
  color: var(--primary);
}

.partnership-benefits ul li i {
  transition: all 0.3s ease;
}

.partnership-benefits ul li:hover i {
  transform: scale(1.2);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .impact-item img {
    height: 150px;
  }
  
  .partner-card {
    margin-bottom: 2rem;
  }
  
  .stat-item h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .impact-item {
    margin-bottom: 1.5rem;
  }
  
  .partner-card {
    padding: 2rem !important;
  }
  
  .stat-item h4 {
    font-size: 1.3rem;
  }
}

/* Modern Testimonial Page Styling */
.bg-gradient-primary {
  background: linear-gradient(135deg, #fc8500 0%, #fd9d0d 100%) !important;
}

/* Jack Oraro Quotes Section */
.jack-quotes-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jack-quotes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.jack-avatar {
  position: relative;
  z-index: 2;
}

.quote-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.quote-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.quote-card blockquote {
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  font-size: 1.1rem;
}

.quote-author {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

/* Modern Testimonial Card */
.testimonial-modern-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(252, 133, 0, 0.1);
}

.testimonial-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(252, 133, 0, 0.15) !important;
}

.testimonial-header {
  position: relative;
  overflow: hidden;
}

.testimonial-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.9) 0%, rgba(253, 157, 13, 0.9) 100%);
  z-index: 1;
}

.testimonial-header > * {
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  position: relative;
}

.testimonial-avatar::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.testimonial-body {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.quote-marks {
  text-align: center;
  opacity: 0.3;
}

.testimonial-text h5 {
  font-weight: 600;
  border-left: 4px solid #fc8500;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.highlight-box {
  border-left: 5px solid #fc8500;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(252, 133, 0, 0.1);
}

.testimonial-footer {
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.05) 0%, rgba(253, 157, 13, 0.05) 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(252, 133, 0, 0.1);
}

.signature {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(252, 133, 0, 0.2);
}

/* Responsive adjustments for testimonial */
@media (max-width: 768px) {
  .jack-quotes-section {
    padding: 3rem 2rem !important;
  }
  
  .quote-card {
    margin-bottom: 1rem;
  }
  
  .testimonial-header .col-md-3 {
    margin-bottom: 1rem;
  }
  
  .testimonial-body {
    padding: 2rem !important;
  }
  
  .testimonial-text .row > div {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .jack-quotes-section {
    padding: 2rem 1rem !important;
  }
  
  .testimonial-body {
    padding: 1.5rem !important;
  }
  
  .testimonial-footer {
    padding: 1.5rem;
  }
}

/* Enhanced Typography for Empowered Voices Page */

/* Page Title Styling */
.page-header h1.display-4 {
  font-weight: 700;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Title Enhancement */
.display-4.fw-bold.text-primary {
  font-weight: 900 !important;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(252, 133, 0, 0.2);
  position: relative;
}

.display-4.fw-bold.text-primary::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
  border-radius: 2px;
}

/* Lead Text Enhancement */
.lead {
  font-weight: 500 !important;
  line-height: 1.8 !important;
  color: #495057 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Jack Oraro Section Text */
.jack-quotes-section h3 {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.jack-quotes-section .lead {
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Quote Text Styling */
.quote-card blockquote {
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

.quote-author small {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Badge Text Enhancement */
.badge {
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Testimonial Header Text */
.testimonial-header h3 {
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.testimonial-header p {
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

/* Main Testimonial Text */
.testimonial-text .lead {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  color: #2c3e50 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.testimonial-text p {
  font-weight: 400;
  line-height: 1.7;
  color: #495057;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* Journey Card Headers */
.journey-card h5 {
  font-weight: 700 !important;
  color: #001D23 !important;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.journey-card p {
  font-weight: 400;
  line-height: 1.7;
  color: #495057;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* Highlight Box Text */
.highlight-box h5 {
  font-weight: 700 !important;
  color: #001D23 !important;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
  font-weight: 500;
  line-height: 1.7;
  color: #2c3e50;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* Footer Quote Text */
.testimonial-footer .lead {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  color: #fc8500 !important;
  text-shadow: 0 2px 4px rgba(252, 133, 0, 0.1);
  position: relative;
  padding: 0 2rem;
}

.testimonial-footer .lead::before,
.testimonial-footer .lead::after {
  content: '"';
  font-size: 3rem;
  color: #fc8500;
  position: absolute;
  top: -10px;
  opacity: 0.3;
  font-weight: 300;
}

.testimonial-footer .lead::before {
  left: 0;
}

.testimonial-footer .lead::after {
  right: 0;
}

/* Signature Text */
.signature strong {
  font-weight: 800 !important;
  font-size: 1.3rem;
  color: #fc8500;
  text-shadow: 0 2px 4px rgba(252, 133, 0, 0.2);
  letter-spacing: 0.5px;
}

.signature small {
  font-weight: 500;
  color: #6c757d;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Breadcrumb Text Enhancement */
.breadcrumb-item a {
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item.active {
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(252, 133, 0, 0.2);
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
  .display-4.fw-bold.text-primary {
    font-size: 2.5rem !important;
  }
  
  .testimonial-footer .lead {
    font-size: 1.1rem !important;
    padding: 0 1rem;
  }
  
  .testimonial-footer .lead::before,
  .testimonial-footer .lead::after {
    font-size: 2rem;
    top: -5px;
  }
  
  .testimonial-text .lead {
    font-size: 1.1rem !important;
  }
  
  .quote-card blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .display-4.fw-bold.text-primary {
    font-size: 2rem !important;
  }
  
  .testimonial-footer .lead {
    font-size: 1rem !important;
    padding: 0 0.5rem;
  }
  
  .testimonial-footer .lead::before,
  .testimonial-footer .lead::after {
    font-size: 1.5rem;
    top: -3px;
  }
  
  .badge {
    font-size: 0.7rem;
  }
  
  .testimonial-text .lead {
    font-size: 1rem !important;
  }
}

/* Enhanced Ogaa Collins Story UI Styling */

/* Story Section Styling */
.story-section {
  margin-bottom: 3rem;
}

.section-header {
  position: relative;
  margin-bottom: 2rem;
}

.section-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fc8500;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.section-header h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #fc8500 0%, #fd9d0d 100%);
  border-radius: 2px;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #fc8500 0%, transparent 100%);
  border-radius: 1px;
  margin-top: 0.5rem;
}

/* Story Content Styling */
.story-content {
  padding-left: 1rem;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 1.5rem;
}

/* Opening Quote Styling */
.opening-quote {
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.05) 0%, rgba(253, 157, 13, 0.05) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(252, 133, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.opening-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
}

.opening-quote .quote-marks {
  margin-bottom: 2rem;
}

.opening-quote .quote-marks i {
  color: #fc8500;
  opacity: 0.3;
  animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Highlight Box Styling */
.highlight-box {
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.08) 0%, rgba(253, 157, 13, 0.08) 100%);
  border: 1px solid rgba(252, 133, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(252, 133, 0, 0.05) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.highlight-box:hover::before {
  transform: translateX(100%);
}

.highlight-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 133, 0, 0.15);
}

.highlight-box h5 {
  font-weight: 700;
  color: #fc8500;
  margin-bottom: 1rem;
}

/* Journey Card Styling */
.journey-card {
  background: #ffffff;
  border: 1px solid rgba(252, 133, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #fc8500 0%, #fd9d0d 100%);
  transition: width 0.3s ease;
}

.journey-card:hover::before {
  width: 8px;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(252, 133, 0, 0.15);
  border-color: rgba(252, 133, 0, 0.3);
}

.journey-card h5 {
  font-weight: 700;
  color: #fc8500;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.journey-card:hover h5 {
  color: #001D23;
}

.journey-card p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.achievement-badge {
  margin-top: auto;
}

.achievement-badge .badge {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Mission Stats Styling */
.mission-stats {
  margin-top: 2rem;
}

.stat-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(252, 133, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(252, 133, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fc8500;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Call to Action Box Styling */
.cta-box {
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.1) 0%, rgba(253, 157, 13, 0.1) 100%);
  border: 2px solid rgba(252, 133, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots3" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(252,133,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots3)"/></svg>');
  opacity: 0.5;
}

.cta-box > * {
  position: relative;
  z-index: 2;
}

.cta-box h5 {
  font-weight: 700;
  color: #fc8500;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #2c3e50;
  font-weight: 500;
  line-height: 1.7;
}

.cta-buttons {
  margin-top: 2rem;
}

.cta-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 133, 0, 0.3);
}

/* Inspirational Closing Styling */
.inspirational-closing {
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.05) 0%, rgba(253, 157, 13, 0.05) 100%);
  border: 1px solid rgba(252, 133, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.inspirational-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fc8500 0%, #fd9d0d 100%);
}

.inspirational-closing .quote-marks {
  margin-bottom: 1.5rem;
}

.inspirational-closing .quote-marks i {
  color: #fc8500;
  opacity: 0.3;
}

.inspirational-closing .lead {
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.8;
}

/* Enhanced Footer Styling */
.testimonial-footer {
  background: linear-gradient(135deg, rgba(252, 133, 0, 0.08) 0%, rgba(253, 157, 13, 0.08) 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(252, 133, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.testimonial-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots4" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.5" fill="rgba(252,133,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots4)"/></svg>');
  opacity: 0.3;
}

.testimonial-footer > * {
  position: relative;
  z-index: 2;
}

.signature-section {
  text-align: center;
}

.signature-section .lead {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 2rem;
}

.signature-section .lead::before,
.signature-section .lead::after {
  content: '"';
  font-size: 3rem;
  color: #fc8500;
  position: absolute;
  top: -10px;
  opacity: 0.3;
  font-weight: 300;
}

.signature-section .lead::before {
  left: 0;
}

.signature-section .lead::after {
  right: 0;
}

.signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(252, 133, 0, 0.2);
}

.signature-line {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.signature-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fc8500;
  text-shadow: 0 2px 4px rgba(252, 133, 0, 0.2);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.signature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
}

.signature-quote {
  font-style: italic;
  color: #6c757d;
}

.signature-quote small {
  font-size: 0.9rem;
}

/* Enhanced Header Content */
.testimonial-header-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.testimonial-header-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.testimonial-header-content p {
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.badge-container {
  margin-top: 1rem;
}

.badge-container .badge {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.badge-container .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-section {
    margin-bottom: 2rem;
  }
  
  .section-header h4 {
    font-size: 1.3rem;
  }
  
  .story-text {
    font-size: 1rem;
    text-align: left;
  }
  
  .opening-quote {
    padding: 2rem 1.5rem;
  }
  
  .opening-quote .lead {
    font-size: 1.1rem;
  }
  
  .journey-card {
    margin-bottom: 1rem;
  }
  
  .mission-stats .col-md-3 {
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .testimonial-footer {
    padding: 2rem 1.5rem;
  }
  
  .signature-section .lead {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  
  .signature-section .lead::before,
  .signature-section .lead::after {
    font-size: 2rem;
    top: -5px;
  }
  
  .testimonial-header-content h2 {
    font-size: 1.5rem;
  }
  
  .testimonial-header-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .section-header h4 {
    font-size: 1.2rem;
  }
  
  .story-text {
    font-size: 0.95rem;
  }
  
  .opening-quote {
    padding: 1.5rem 1rem;
  }
  
  .opening-quote .lead {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .testimonial-footer {
    padding: 1.5rem 1rem;
  }
  
  .signature-section .lead {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }
  
  .signature-section .lead::before,
  .signature-section .lead::after {
    font-size: 1.5rem;
    top: -3px;
  }
  
  .signature-name {
    font-size: 1.3rem;
  }
  
  .badge-container .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.whatsapp-chat-widget.active {
  display: flex;
}

/* Chat Header */
.chat-header {
  background: #25D366;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-logo {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.header-text {
  font-weight: 600;
  font-size: 14px;
}

.minimize-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.minimize-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Chat Area */
.chat-area {
  flex: 1;
  padding: 20px;
  background: #f8f9fa;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 20px;
}

.chat-message.incoming {
  display: flex;
  justify-content: flex-start;
}

.message-content {
  background: white;
  padding: 15px;
  border-radius: 18px;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sender-name {
  color: #25D366;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}

.message-text {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.message-time {
  color: #999;
  font-size: 11px;
  text-align: right;
}

/* Message Input */
.message-input {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 12px;
}

.input-left {
  color: #999;
  font-size: 18px;
  cursor: pointer;
}

.message-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 0;
  font-size: 14px;
  color: #333;
}

.message-field::placeholder {
  color: #999;
}

.input-right {
  display: flex;
  align-items: center;
}

.send-btn {
  width: 36px;
  height: 36px;
  background: #06A3DA;
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.send-btn:hover {
  background: #0596c7;
}

/* Close Button */
.close-chat-btn {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  display: none; /* Hide the close button */
}

.close-chat-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
}

/* WhatsApp Toggle Button */
.whatsapp-toggle-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-toggle-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-toggle-btn.hidden {
  display: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive adjustments for WhatsApp chat widget */
@media (max-width: 768px) {
  .whatsapp-chat-widget {
    width: 320px;
    height: 450px;
    bottom: 90px;
    right: 20px;
  }
  
  .whatsapp-toggle-btn {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 90px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .whatsapp-chat-widget {
    width: 300px;
    height: 400px;
    bottom: 80px;
    right: 15px;
  }
  
  .whatsapp-toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 80px;
    right: 15px;
  }
}

