/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

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

a {
    color: #4a4c70;
    transition: .3s;
}

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;
}

.carousel .container-fluid {
    max-width: 100%;
    padding: 0;
}
[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;
}

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

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

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


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.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: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

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

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    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;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 4px;
        padding: 20px 60px;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #20212B !important;
        border-bottom: none;
    }
    
    .page .navbar {
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}
.navbar .container-fluid {
    display: flex;
    flex-direction: row-reverse;
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero-section {
    width: 100%;
    min-height: 100vh;

    /* Background image */
    background: url('../img/carousel-1.jpg') no-repeat center center;
    background-size: cover;

    position: relative;

    /* Center content vertically */
    display: flex;
    align-items: center;
}

/* Dark overlay for readability */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Gradient overlay (modern look) */
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 123, 255, 0.5)
    );
}
.hero-section p:first-child {
    font-size: 35px;
    font-weight: 600;
}

.hero-section p:last-child {
    opacity: 0.9;
}

/* Keep content above overlay */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Text styling */
.hero-section p {
    font-size: 30px;
    line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-section p {
        font-size: 22px;
    }
}
.hero-section .container {
    animation: fadeInUp 1s ease;
}
.hero-section {
    padding-top: 80px; /* adjust based on navbar height */
}
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}
.carousel,
.carousel .container-fluid,
.owl-carousel,
.carousel-item {
    width: 100%;
}
.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}
.carousel .carousel-text h7 {
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

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

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.carousel-item {
    position: relative;
}
.carousel-img {
    height: 60vh;
    width: 100%;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* 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(../img/page-header.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #ffffff;
    font-size: 45px;
    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;
    }
}


/*******************************/
/******* 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;
}

@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;
    }
}

/*******************************/
/******* About Section *********/
/*******************************/

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

.about .container {
    max-width: 1000px;
}

.about h5 {
    font-size: 25px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about h5::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #FDBE33, #ff9800);
    border-radius: 2px;
}

.about .container p {
    font-size: 18px;
    line-height: 1.9;
    color: #777777;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 500;
}

.about .container p:last-child {
    margin-bottom: 0;
}

.about-img {
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.about-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Animation for images */
.about-img {
    animation: fadeInImage 0.8s ease-out;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WOW Animation Support */
.about .wow {
    animation-duration: 0.8s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about .container p {
        font-size: 17px;
        line-height: 1.85;
    }

    .about h5 {
        font-size: 28px;
    }

    .about-img {
        max-height: 550px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about .container p {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }

    .about h5 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-img {
        margin-bottom: 30px;
        max-height: 450px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 30px 0;
    }

    .about .container p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about h5::after {
        width: 60px;
        height: 2px;
    }

    .about-img {
        border-radius: 10px;
        max-height: 350px;
    }
}

/*******************************/
/********* Service CSS *********/
/*******************************/

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: #ffffff;
}

.service .container {
    max-width: 1100px;
}

.service h5 {
    font-size: 28px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.service h5::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #FDBE33, #ff9800);
    border-radius: 2px;
}

.service .container p {
    font-size: 18px;
    line-height: 1.9;
    color: #777777;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
    text-align: justify;
    font-weight: 500;
}

.service .container p:last-child {
    margin-bottom: 0;
}

.service-img {
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Animation for images */
.service-img {
    animation: fadeInImage 0.8s ease-out;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WOW Animation Support */
.service .wow {
    animation-duration: 0.8s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service .container p {
        font-size: 17px;
        line-height: 1.85;
    }

    .service h5 {
        font-size: 26px;
    }

    .service-img {
        max-height: 550px;
    }
}

@media (max-width: 768px) {
    .service {
        padding: 40px 0;
    }

    .service .container p {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }

    .service h5 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .service-img {
        margin-bottom: 30px;
        max-height: 450px;
    }
}

@media (max-width: 576px) {
    .service {
        padding: 30px 0;
    }

    .service .container p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .service h5::after {
        width: 60px;
        height: 2px;
    }

    .service-img {
        border-radius: 10px;
        max-height: 350px;
    }
}

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

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

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

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

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

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

.souls .souls-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.souls .souls-text p {
    margin-bottom: 20px;
}

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

.souls .souls-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;
}

.souls .souls-social a:hover {
    color: #20212B;
    background: #FDBE33;
}
.souls-social span {
    display: block;
    margin-bottom: 5px;
}

/* Initial state */
.souls .souls-text {
    height: 80px; /* default height */
    overflow: hidden;
    transition: height 0.4s ease;
}

/* Smooth height increase */
.souls .souls-item:hover .souls-text {
    height: 120px;
    overflow: hidden;
}


/* Text zoom setup */
.souls .souls-text h2,
.souls .souls-text p {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Optional: slightly smaller initially */
.souls .souls-text h2 {
    transform: scale(1);
}

.souls .souls-text p {
    transform: scale(0.95);
    opacity: 0.8;
}

/* 🔥 Hover zoom effect */
.souls .souls-item:hover .souls-text h2 {
    transform: scale(1.15);
}

.souls .souls-item:hover .souls-text p {
    transform: scale(1.05);
    opacity: 1;
}
.souls .souls-item {
    transition: transform 0.4s ease;
}

.souls .souls-item:hover {
    transform: translateY(-8px);
}

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

.team .team-item {
    position: relative;
    margin-bottom: 35px;
}
.team-item {
    overflow: hidden;
}
.team-item {
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.team-img {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.team-img {
    position: relative;
    overflow: hidden;
}
.team-img img {
    width: 100%;
    transition: transform 0.6s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.15);
}
.team .team-img {
    position: relative;
    overflow: hidden;
}

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

.team-img img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    opacity: 0;
    transform: translateY(30px); /* start slightly down */
    transition: all 0.4s ease;
}
.team-item:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #fff;

    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%
    );

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}
.team-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );

    transition: 0.6s;
}

.team-item:hover .team-overlay::before {
    left: 100%;
}

/* Hover Effects */
.team-img:hover img {
    transform: scale(1.1);
}
.team-img:hover .team-overlay {
    transform: translateY(0);
    opacity: 1;
}
background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));

.team-img:hover .team-overlay {
    opacity: 1;
}
.team-overlay p {
    transform: scale(0.85) translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.team-overlay {
    background:
        radial-gradient(circle at var(--x, 50%) var(--y, 50%),
        rgba(255,255,255,0.15),
        transparent 40%),
        rgba(0,0,0,0.6);
}
.team-item:hover .team-overlay p {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}
.team-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item:hover img {
    margin: -15px 0 0 0;
}
.team-item:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team .team-text {
    position: absolute;
    width: calc(100% - 40px);
    height: 26px;
    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;
}

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

.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-social span {
    display: block;
    margin-bottom: 5px;
}



/*******************************/
/******* 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;
    margin-bottom: -1px;
}

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

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

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

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


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

.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

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

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

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

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

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

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

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

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

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

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

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-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;
}

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


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

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

.event .event-item img {
    width: 100%;
}

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

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

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

.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;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }
    
    .event .event-meta {
        flex-direction: row;
    }
    
    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }
    
    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }
    
    .event .event-meta i {
        width: 18px;
    }
    
    .event .event-text {
        margin: 0;
        padding: 0;
    }
    
    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
}

/*******************************/
/********* 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 h2 {
    color: #ffffff;
}

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

.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 .form-control:-ms-input-placeholder,
.donate .donate-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.donate .donate-form .btn-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.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;
}

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

/*******************************/
/******* Single Post CSS *******/
/*******************************/

/* Root variables for better maintainability */
:root {
    --primary-color: #4a4c70;
    --accent-color: #FDBE33;
    --light-bg: #f3f6ff;
    --border-color: #dddddd;
    --text-dark: #333333;
    --text-light: #999999;
    --transition-speed: 0.3s;
}

.single {
    position: relative;
    padding: 45px 0;
}

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

/* Featured Image */
.featured-image {
    margin: 0 0 30px 0;
    padding: 0;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.featured-image figcaption {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* Article Header */
.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Article Body */
.article-body {
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Biography Sections */
.biography-section {
    margin-bottom: 30px;
}

.biography-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

/* Bio Card */
.bio-card {
    margin: 40px 0;
    padding: 25px;
    background: var(--light-bg);
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
}

.bio-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bio-card dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
}

.bio-card dt {
    font-weight: 600;
    color: var(--primary-color);
}

.bio-card dd {
    margin: 0;
    color: var(--text-dark);
}

/* References Section */
.references {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.references h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.references ol {
    padding-left: 25px;
}

.references li {
    margin-bottom: 20px;
    line-height: 1.8;
}

.references strong {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.references span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.references .author {
    font-style: italic;
}

.references .award {
    color: var(--accent-color);
    font-weight: 500;
}

/* Tags */
.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.single .single-tags a:hover,
.single .single-tags a:focus {
    color: #ffffff;
    background: var(--accent-color);
    border-color: var(--accent-color);
    outline: none;
}

/* Bio Section */
.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: var(--light-bg);
    display: flex;
    gap: 30px;
    border-radius: 4px;
}

.single .single-bio-img {
    flex-shrink: 0;
    width: 100px;
}

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

.single .single-bio-text {
    flex: 1;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.single .single-bio-text p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Related Posts */
.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.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: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.single .post-item .post-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.single .post-item .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single .post-item .post-text {
    flex: 1;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.single .post-item .post-text a:hover {
    color: var(--accent-color);
}

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

.single .post-item .post-meta p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    font-style: italic;
}

.single .post-item .post-meta p a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.single .post-item .post-meta p a:hover {
    color: var(--accent-color);
}

/* Navigation Buttons */
.single .related-slider .owl-nav {
    position: absolute;
    display: flex;
    gap: 15px;
    top: -55px;
    right: 15px;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--accent-color);
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border-radius: 4px;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: var(--accent-color);
    background: var(--primary-color);
}

/* Comments Section */
.single .single-comment {
    position: relative;
    margin-bottom: 45px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.single .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single .comment-child {
    list-style: none;
    padding-left: 40px;
}

.single .comment-body {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.single .comment-img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
}

.single .comment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single .comment-text {
    flex: 1;
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.single .comment-text span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.single .comment-text p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
}

.single .comment-text .btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    background: var(--border-color);
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    transition: all var(--transition-speed) ease;
}

.single .comment-text .btn:hover {
    background: var(--accent-color);
    color: #ffffff;
}

/* Comment Form */
.single .comment-form {
    position: relative;
    margin-bottom: 45px;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.single .comment-form form {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 4px;
}

.single .comment-form form .form-group {
    margin-bottom: 20px;
}

.single .comment-form form .form-group:last-child {
    margin-bottom: 0;
}

.single .comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.single .comment-form input,
.single .comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition-speed) ease;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(253, 190, 51, 0.1);
}

.single .comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 24px;
    }

    .biography-section h2 {
        font-size: 20px;
    }

    .single .single-bio {
        flex-direction: column;
        align-items: flex-start;
    }

    .single .single-bio-text {
        padding-left: 0;
    }

    .single .post-item {
        flex-direction: column;
    }

    .single .comment-body {
        flex-direction: column;
    }

    .single .single-comment h2,
    .single .comment-form h2,
    .single .single-related h2 {
        font-size: 24px;
    }

    .related-slider .owl-nav {
        top: -45px;
        right: 0;
    }
}

@media (max-width: 480px) {
    .single {
        padding: 20px 0;
    }

    .article-header h1 {
        font-size: 20px;
    }

    .single .single-bio,
    .single .comment-form form {
        padding: 20px;
    }

    .bio-card dl {
        grid-template-columns: 1fr;
    }
}

/*******************************/
/********** Gallery CSS *********/
/*******************************/
.gallery-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Filter Buttons */
.gallery-filter {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #FDBE33;
    background: transparent;
    color: #4a4c70;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FDBE33;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 190, 51, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.hidden {
    display: none;
}

/* Image Wrapper */
.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(0.85);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 190, 51, 0.9) 0%, rgba(74, 76, 112, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Overlay Content */
.overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
}

/* Gallery Icon */
.gallery-icon {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.gallery-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.gallery-item:hover .gallery-icon {
    background: #ffffff;
    color: #FDBE33;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox Content */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: 1000px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#lightboxImage {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    color: #4a4c70;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #FDBE33;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav {
    width: 55px;
    height: 55px;
    background: rgba(253, 190, 51, 0.85);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(253, 190, 51, 0.3);
}

.lightbox-nav:hover {
    background: #FDBE33;
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(253, 190, 51, 0.5);
}

.lightbox-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox Info */
.lightbox-info {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

#lightboxTitle {
    font-size: 24px;
    font-weight: 700;
    color: #4a4c70;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .lightbox-content {
        max-width: 95%;
        width: 100%;
    }

    #lightboxImage {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-img-wrapper {
        height: 250px;
    }

    .gallery-filter {
        gap: 10px;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .overlay-content h4 {
        font-size: 18px;
    }

    .lightbox-content {
        max-width: 98%;
        border-radius: 15px;
    }

    #lightboxImage {
        height: 400px;
    }

    .lightbox-controls {
        padding: 0 10px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img-wrapper {
        height: 300px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    #lightboxImage {
        height: 350px;
    }

    .lightbox-info {
        padding: 20px;
    }

    #lightboxTitle {
        font-size: 18px;
    }
}
/*******************************/
/********* 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-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

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

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

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

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

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a {
    margin-top: 5px;
}

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

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

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

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.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;
}

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

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