@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');



html {
  scroll-padding-top: 100px; /* Match or slightly exceed the height of your .header-sticky */
  height: 100%;
  margin: 0;
  padding: 0;
}
:root{
    --primary: #8A6B3D;
    /*--secondary: #7d3209;*/
    --secondary: #2D1B09;
    --light: #f9f5f0;
    --dark: #333333;
    --gray: #6c757d;
    --accent: #e67e22;
    --background: #ffffff;
    --card-bg: #f8f9fa;
    --border: #e9ecef;

}
body {
    font-family: 'Lato', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 1.2px;
}
.site-content {
    flex: 1;
}
.container
{
    max-width: 1450px;
}
section
{
    min-height: 50%;
    display: flex;
    flex-direction: column;
}

.inn-profile-dropdown-wrapper, .mb-profile-dropdown-wrapper {
    position: relative;
    display: inline-block;
    z-index: 9;
}
.inn-profile-toggle-btn
{
    padding: 5px 10px;
    border-radius: 5px;
}
.inn-profile-toggle-btn, .mb-profile-toggle-btn {
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary);
}

.inn-profile-dropdown, .mb-profile-dropdown {
    position: absolute;
    top: 100%;
    background: white;
    border: 1px solid #ddd;
    padding: 8px 0;
    min-width: 160px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 99999;
    border-radius: 5px;
}

.inn-profile-dropdown a, .mb-profile-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

.inn-profile-dropdown a:hover, .mb-profile-dropdown a:hover {
    color: var(--secondary) !important;
}


/*-------------------------------------------------------------*/
/*common-css*/
* {
    padding: 0;
    margin: 0;
}
h1 {
    margin-bottom: 20px;
    text-align: center;
}

/* slider-bg-setup */
.slider-items {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.slider-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
/*.slider-bg-img::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}*/

.slider-content-wrapper {
    position: relative;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;       /* vertical center */
}

.slider-container {
    display: flex;
    justify-content: center;  
    width: 100%;
}

.sigle-item {
    background: linear-gradient(rgba(195,163,92,0.8), #7d3209);
    color: #fff;
    width: 80%;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    opacity: 0; /* hide by default */
    transition: none;
}

@keyframes slideFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

.sigle-item.animate-in {
  animation: slideFadeInRight 0.8s ease both;
  opacity: 1;
}

button.user-registration-Button.button, button.btn.button.ur-submit-button
{
    background: var(--secondary) !important;
}
p.user-registration-LostPassword.lost_password, p.user-registration-register.register
{
    color: var(--secondary) !important;
}

.ur-frontend-form.login
{
    padding: 40px !important;
}

.ur-frontend-form.login .ur-reset-password-btn
{
    background: var(--secondary) !important;
}
a.home-btn:hover, .owl-nav div:hover {
    background-color: #000;
}
/*owl-nav*/
.owl-nav div {
    border: 2px solid #fff;
    color: #fff;
    height: 40px;
    width: 40px;
    position: absolute;
    z-index: 9;
    top: 50%;
    margin-top: -20px;
    left: 10px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
.owl-nav div.owl-next {
    left: auto;
    right: 10px;
}

/*-------------------------------------------------------------*/

a {
    color: var(--secondary);
    text-decoration: none;
    outline: 0 !important;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
a:hover {
    color: var(--primary);
    text-decoration: none;
}
p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
    a {
        color: var(--primary);
    }
}
img {
    max-width: 100%;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    /*font-family: 'Lora', 'Times New Roman', Times, serif;*/
    font-family: 'Marcellus', serif;
    font-weight: 700;
}
.ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
.btn {
    border: none;
    border-radius: 8px;
    position: relative;
    /*z-index: 2;*/
    padding: 9px 26px;
    font-size: 16px;
    text-transform: uppercase;
}
.btn::before {
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background: var(--secondary);
    color: #fff;
    z-index: -1;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 8px;
}
.btn:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}
.btn-primary {
    background: #fff;
    color: var(--secondary);
}
.campaignsBox .btn-primary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 14px;
}
.campaignsBox .event-actions
{
    padding: 0 10px 10px 10px;
    margin-top: auto;
}

.campaignsBox {
  display: flex;
  flex-direction: column;
  height: 100%; /* or specify a fixed height */
}

.campaigns-content {
  flex-grow: 1;
}


.btn-primary:hover {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
}
.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: var(--primary);
    border-color: var(--primary);
    opacity: 1;
}
.btn-primary.disabled:hover,
.btn-primary:disabled:hover {
    color: var(--primary);
}
/*.btn-secondary {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
}*/
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: none;
}
.section-title {
    text-align: center;
    margin-top: -7px;
}
.section-title h2 {
    background: linear-gradient(45deg, #7d3209, #C3A35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 2rem;
    line-height: 40px;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
}
.section-title p {
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}
.owl-theme .owl-nav {
    margin-top: 0;
}
.owl-theme .owl-nav [class*="owl-"] {
    margin: 0 3px;
    padding: 0;
    background: #e40943;
    border-radius: 0;
    font-size: 25px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-align: center;
    border-radius: 5px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #c20021;
    color: #fff;
}
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    background: #fff;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #c20021;
}
.form-group.submit-button {
    text-align: right;
}
@media(max-width: 767px)
{
    .form-group.submit-button 
    {
        text-align: left;
    }
    .rc-anchor-normal .rc-anchor-pt
    {
        margin: 2px 44px 0 0 !important;
    }
    .boxes-area .youth-content {
        text-align: center;
    }
}

.membership-module .membership-title
{
    text-align: right;
    padding-bottom: 10px;
}
.form-control {
    height: 50px;
    padding: 15px;
    font-size: 15px;
    color: #616161;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    border: 1px solid #eee;
    background: #fbfbfb;
}
.form-control:focus {
    color: #616161;
    background-color: #fff;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}
textarea.form-control {
    min-height: 120px;
}


#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white; /* or your site background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#site-loader img {
  width: 100px; /* adjust size as needed */
  height: auto;
}


.top-header {
    background: #464751;
    padding: 15px 0;
}
.top-header ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.top-header ul li {
    display: inline-block;
}
.top-header .header-info li a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 14px;
}
.top-header .header-info li:last-child a {
    margin-right: 0;
}
.top-header .header-info li a:hover {
    color: var(--primary);
}
.top-header .social-link {
    text-align: right;
}
.top-header .social-link li a {
    display: inline-block;
    margin-left: 9px;
    color: #fff;
    font-size: 14px;
}
.top-header .social-link li a:hover {
    color: var(--primary);
}
.middle-header {
    background: linear-gradient(to right, #7d3209, #C3A35C);;
    padding: 6px 0;
}

.middle-header .gsep-top-header 
{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.middle-header .gsep-top-header .donate-btn .btn.btn-primary
{
    background: var(--light);
    color: var(--secondary);
    padding: 7px 20px;
    font-size: 14px;
}
.middle-header .gsep-top-header .donate-btn .btn.btn-primary:hover
{
    color: var(--light);
}
.middle-header .logo {
    display: inline-block;    
}
.main-menu-area .logo
{
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-menu-area .logo img
{
    height: 60px;
}
.middle-header ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.top-header-info
{
    text-align: right;
}
.middle-header ul li {
    display: inline-flex;
    align-items: center;
}
.middle-header ul li i{
    color: white;
    padding-right: 5px;
}
.middle-header ul li:first-child {
    margin-left: 0;
}
.middle-header ul li .icon {
    color: var(--primary);
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
}
.middle-header ul li:hover .icon {
    background: var(--primary);
    color: #fff;
}
.middle-header ul li .title {
    display: block;
    color: var(--primary);
    font-size: 16px;
    margin-top: -1px;
}
.middle-header ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: white;
}
.gsep-top-header .inn-profile-dropdown a {
    color: var(--secondary);
}
.middle-header ul li:last-child {
    padding-left: 0;
    top: 0;
}
.search-wrapper {
    position: absolute;
    top: -41px;
    right: 0;
}
.search-wrapper.is-active {
    width: 565px;
}
.search-wrapper .searchline-wrapper {
    overflow: hidden;
}
.search-wrapper .searchline-wrapper .searchline {
    height: 45px;
    width: 100%;
    border-radius: 5px;
    background: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(80%);
    font-size: 17px;
    color: #343c48;
    border: 1px solid var(--primary);
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.search-wrapper.is-active .searchline {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    visibility: visible;
    opacity: 1;
}
.search-wrapper .search-button {
    position: absolute;
    right: -2px;
    top: 0;
    border-radius: 5px;
    outline: 0 !important;
    border: none;
    background: #464751;
    color: #fff;
    font-size: 17px;
    width: 45px;
    height: 45px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.search-wrapper .search-button:hover {
    background: var(--primary);
}
.search-wrapper .search-button .icofont-close {
    display: none;
}
.search-wrapper.is-active .icofont-search-1 {
    display: none;
}
.search-wrapper.is-active .icofont-close {
    display: block;
}
.main-menu-area {
    background: white;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    position: relative;
    z-index: 1;
}
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}
.main-menu-area nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.main-menu-area nav ul.main-nav {
    float: left;
}
.main-menu-area nav ul li {
    display: inline-block;
    margin-left: 25px;
    position: relative;
    padding: 10px 0;
}
.main-menu-area nav ul li:first-child {
    margin-left: 0;
}
.main-menu-area nav ul li a {
    display: inline-block;
    text-transform: capitalize;
    color: #000;
    font-size: 16px;
}
.main-menu-area nav a.btn.btn-primary {
    display: none;
/*    padding: 8px 20px;
    border: 1px solid;
*/}
    .main-menu-area nav ul li ul {
        display: block;
    }
    .main-menu-area nav ul li ul.dropdown-menu {
        width: 230px;
        background-color: #fff;
        top: 120%;
        left: 0;
        z-index: 100;
        height: auto;
        box-shadow: 0 0 15px 1px rgba(113, 106, 202, 0.2);
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.4s;
        opacity: 0;
        visibility: hidden;
        padding: 20px;
        border-radius: 5px;
        border: none;
    }
    .main-menu-area nav ul li:hover ul.dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }
    .main-menu-area nav ul li ul.dropdown-menu li {
        margin: 0;
        margin-top: 12px;
        padding: 0;
        display: block;
    }
    .main-menu-area nav ul li ul.dropdown-menu li:first-child {
        margin-top: 0;
    }
    .main-menu-area nav ul li ul.dropdown-menu li a {
        color: #444;
        font-size: 15px;
    }
    .main-menu-area nav ul li ul.dropdown-menu li a:hover {
        color: var(--primary);
    }
    .main-menu-area nav ul li ul.dropdown-menu .active a {
        color: var(--primary);
    }
    .main-menu-area nav ul li ul.dropdown-menu li ul.sub-menu {
        position: absolute;
        background: #fff;
        width: 230px;
        box-shadow: 0 0 15px 1px rgba(113, 106, 202, 0.2);
        left: 185px;
        padding: 20px;
        z-index: 1;
        top: 20px;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.4s;
        opacity: 0;
        visibility: hidden;
        padding: 20px;
        border-radius: 5px;
    }
    .main-menu-area nav ul > li > ul.dropdown-menu li:hover ul.sub-menu {
        visibility: visible;
        opacity: 1;
        top: 0;
    }
    .main-menu-area nav ul.donate-btn li {
        padding: 0;
        margin: 0;
    }
    .main-menu-area nav .donate-btn li a {
        color: var(--secondary);
    }
    .main-menu-area nav .donate-btn li a:hover {
        color: #fff;
        border: 1px solid;
    }
    a.meanmenu-reveal {
        display: none;
    }
    .mean-container .mean-bar {
        width: 100%;
        text-align: right;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mean-expand {
      font-family: "IcoFont" !important;
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }

/* Collapsed state (plus) */
.mean-expand::before {
  content: "\ea99"; /* IcoFont down arrow unicode */
  font-family: "IcoFont" !important;
  font-size: 18px;
}

/* Expanded state (minus) */
.mean-expand.mean-clicked::before {
  content: "\eaa1"; /* same icon, or change to another unicode if you want */
  font-family: "IcoFont" !important;
  /* You can rotate or style differently if you want */
  transform: rotate(180deg); /* example: rotate arrow up when expanded */
  transition: transform 0.3s ease;
  font-size: 18px !important;
}
.mean-container a.meanmenu-reveal .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 4px auto;
    border-radius: 2px;
}
.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 0 15px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    display: inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.mean-container a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 4px;
    margin-top: 3px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.main-menu-area.mean-container {
    padding-bottom: 0;
}
.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: var(--secondary);
    margin-top: 14px;
}
.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}
.mean-container .mean-nav .main-nav {
    padding: 10px 5px;
}
.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
    text-align: left;
}
.mean-container .mean-nav ul li a {
    padding: 10px 0;
    font-size: 16px;
    display: block;
    width: 100%;
}
.mean-container .mean-nav ul li li a {
    border-top: none;
    opacity: 1;
}
.mean-container .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0;
}
.mean-container .mean-nav ul li a.mean-expand {
    font-size: 0 !important;
    width: 30px;
    height: 10px;
    text-align: center;
    position: absolute;
    right: 15px;
    top: 5px;
    font-weight: 900;
    border: 1px solid #fff;
    display: inline-block;
    line-height: 12px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
    /*background: var(--primary);*/
    /*border-color: var(--primary);*/
    color: #fff;
}
.mean-container .mean-push {
    float: unset;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}
.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}
.mean-remove {
    display: none !important;
}
@media only screen and (max-width: 991px) {
    .boxes-area .youth-content
    {
        width: 100%;
        padding: 0;
    }
    .boxes-area .youth-image
    {
        display: none;
    }
    .footer-area {
        padding: 10px 0 0 0 !important;
    }

    .sponsors-section
    {
        padding: 10px 0 10px 0 !important;
    }
    .footer-middle {
        padding-bottom: 5px;
    }
    .footer-top-area
    {
        display: none;
    }

    .mean-container .mean-bar
    {
        padding-top: 10px;
    }

    .slider-content-wrapper
    {
        align-items: flex-end;
    }
    .sigle-item
    {
        width: 100%;
        padding: 10px;
    }
    .slider-container
    {
        width: 100%;
    }
    .main-menu-area nav ul li {
        display: block;
        margin-left: 0;
        padding: 0 15px;
    }
    .main-menu-area nav ul li ul.dropdown-menu {
        width: 230px;
        visibility: unset;
        position: relative;
        opacity: 1;
        top: 100%;
        overflow-y: auto;
    }
    .main-menu-area nav ul li ul.dropdown-menu li {
        margin-top: 0;
    }
    .main-menu-area nav ul li ul.dropdown-menu li a {
        padding: 7px 0;
    }
    .main-menu-area nav ul li ul.dropdown-menu li ul.sub-menu {
        top: 0;
        opacity: 1;
        visibility: visible;
        position: relative;
        height: 100%;
        background: 0 0;
        left: 0;
        box-shadow: none;
        padding: 0 20px;
    }
    .main-menu-area.is-sticky nav ul.main-nav {
        overflow-x: hidden;
        overflow-y: scroll;
        height: 450px;
    }
}
.main-menu-area.main-menu-two {
    background: #fff;
}
.main-navbar-nav
{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.main-menu-area.main-menu-two .main-navbar-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-aling: center;
    -ms-grid-row-aling: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.main-menu-area.main-menu-two .main-nav {
    float: none;
    width: 100%;
    text-align: right;
}
.main-menu-area.main-menu-two .main-navbar-nav .logo img
{
    height: 50px;
}
.main-menu-area.main-menu-two nav ul li a {
    color: var(--secondary);
}
.main-menu-area.main-menu-two nav ul li a:hover {
    color: var(--primary);
}
.main-menu-area.main-menu-two nav ul li:last-child {
    width: 40px;
}
.main-menu-area.main-menu-two nav ul li .search-wrapper {
    top: -10px;
}
.main-menu-area.main-menu-two nav ul li ul.dropdown-menu li {
    width: 100% !important;
}
.main-menu-area.main-menu-two nav ul li a.active {
    color: var(--primary);
}

@media only screen and (max-width: 991px) {


    .about-content.community-initiatives
    {
        margin-right: 0px !important;
    }
    .main-menu-area {
        background-color: #fff;
    }
    .mean-container a.meanmenu-reveal span {
        background-color: #333;
    }
    .middle-header {
        display: none;
    }
    .main-menu-area .logo {
        margin-top: 0;
        position: absolute;
        left: 15px;
        top: 0px;
        /*max-width: 100px;*/
        display: flex;
        align-items: center;
    }
    .btn-secondary.mobile-btn, .mb-profile-dropdown-wrapper.mobile-btn
    {
        margin-top: 0;
        border: 1px solid var(--primary);
        position: absolute;
        right: 65px;
        top: 10px;
        max-width: 100%;
        color: var(--primary);
        background-color: transparent;
        border-color: var(--primary);
        padding: 8px 12px;
        font-size: 14px;
        margin-top: 0;
    }


    .mb-profile-dropdown a
    {
        font-size: 12px;
    }

    .mean-container a.meanmenu-reveal {
        color: #333;
    }
    .main-menu-area.main-menu-two .main-navbar-nav {
        display: none !important;
    }
    .main-menu-two.mean-container a.meanmenu-reveal span {
        background: #000;
    }
    .main-menu-two.mean-container a.meanmenu-reveal {
        color: #000;
    }
    .main-menu-two.mean-container .mean-nav {
        background: #fff;
    }
    .main-menu-area.main-menu-two nav ul li.mean-last {
        display: none;
    }
}
@media only screen and (min-width: 992px) {
    .hide-min-992 {
        display: none;
    }
    .btn-secondary.mobile-btn, .mb-profile-dropdown-wrapper.mobile-btn
    {
        display: none;
    }
}
.main-menu-area.main-menu-three {
    background: #fff;
    text-align: center;
}
.main-menu-area.main-menu-three .main-logo {
    display: none;
}
.main-menu-area.main-menu-three .main-navbar-nav {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-aling: center;
    -ms-grid-row-aling: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.main-menu-area.main-menu-three nav ul li {
    margin: 0 15px;
}
.main-menu-area.main-menu-three nav ul li:first-child {
    margin-left: 0;
}
.main-menu-area.main-menu-three nav ul li:last-child {
    margin-right: 0;
}
.main-menu-area nav ul li.kylehope-logo {
    margin: 0 120px !important;
}
.main-menu-area.main-menu-three .main-nav {
    float: none;
}
.main-menu-area.main-menu-three nav ul li a {
    color: var(--secondary);
}
.main-menu-area.main-menu-three nav ul li a:hover {
    color: var(--primary);
}
.main-menu-area.main-menu-three nav ul li a.active {
    color: var(--primary);
}
@media only screen and (max-width: 991px) {
    .main-menu-area.main-menu-three .main-navbar-nav {
        display: none !important;
    }
    .main-menu-three.mean-container a.meanmenu-reveal span {
        background: #000;
    }
    .main-menu-three.mean-container a.meanmenu-reveal {
        color: #000;
    }
    .main-menu-three.mean-container .mean-nav {
        background: #fff;
    }
    .main-menu-area.main-menu-three nav ul li {
        margin: 0 0;
    }
    .main-menu-area.main-menu-three .main-logo {
        display: block;
        position: absolute;
        left: 15px;
        top: 20px;
        max-width: 120px;
    }
    .main-menu-area nav ul li.kylehope-logo {
        display: none;
    }
}
.main-banner {
    height: 680px;
    background: #464751;
    position: relative;
    overflow: hidden;
}
.main-banner::before {
    content: "";
    position: absolute;
    -webkit-clip-path: polygon(0 0, 52% 0, 38% 100%, 0 100%);
    clip-path: polygon(0 0, 52% 0, 38% 100%, 0 100%);
    background: var(--primary);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.main-banner-content {
    margin-top: 155px;
    position: relative;
}
.main-banner-content h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
}
.main-banner-content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 30px;
}
.main-banner-content .btn-primary {
    margin-right: 8px;
}
.main-banner-two {
    height: 550px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.main-banner-two::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #464751;
    opacity: 0.7;
}


.home-slides h1 {
    font-size: 35px;
    color: #fff;
    margin-bottom: 2px;
    text-align: center;
    font-weight: 600;
}
.home-slides h1 span
{
    background: var(--primary);
    padding: 0 3px;
    color: #ffffff;
}
.home-slides p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}
.home-slides.owl-carousel {
    z-index: unset !important;
}
.owl-carousel
{
    z-index: unset !important;
}
.home-slides.owl-theme .owl-nav [class*="owl-"]{
    position: absolute;
    left: -95px;
    top: 50%;
    background: 0 0;
    width: auto;
    height: auto;
    font-size: 65px;
    margin-top: -20px;
}
.home-slides.owl-theme .owl-nav .owl-next {
    left: auto;
    right: -95px;
}
.home-slides.owl-theme .owl-nav [class*="owl-"]:hover {
    color: var(--primary);
}
.home-slides .btn-primary {
    background: #fff;
    color: var(--primary);    
    margin-right: 8px;
}
.home-slides .btn-primary:hover {
    color: var(--primary);
}
.home-slides .btn-primary::before {
    background: #fff;
}
.boxes-area {
    position: relative;
}
.boxes-area .youth-involvement-bg {
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 12px rgb(48 87 140 / 22%);
    flex-grow: 1;
    background: #f0f8ff;
}
.boxes-area .youth-involvement-bg .row{
    align-items: center;
}

.boxes-area .youth-involvement-bg .contact-info
{
    margin-top: 10px;
}

.boxes-area .youth-involvement-bg .youth-image img
{
    border-radius: 15px;
}

.boxes-area::after,
/*.boxes-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.boxes-area::before {
    opacity: 0.82;
    background: #25599eed;
    z-index: 1;
}
*/
.boxes-content {

    position: relative;
    z-index: 2;
}
.boxes-content h3 {
    font-size: 30px;
    background: linear-gradient(45deg, #7d3209, #C3A35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.boxes-content p {    
    margin-bottom: 10px;
    font-size: 18px;
}
.boxes-content .btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.boxes-content .btn-primary::before {
    background: #fff;
}
.boxes-content .btn-primary:hover {
    color: var(--primary);
}
.boxes-content .btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
}
.boxes-content .btn-secondary::before {
    background: #fff;
}
.boxes-content .btn-secondary:hover {
    color: #464751;
    border-color: #464751;
}
.about-area, .about-area-custom
{
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-area.features
{
    padding-top: 15px;
    padding-bottom: 30px;
}
.about-image img {
    width: 100%;
    border-radius: 15px;
}

.about-area .community-initiatives-img
{
    z-index: -1;
}
.about-content {
    padding: 35px;    
}
.about-content h2 {
    position: relative;
    background: linear-gradient(45deg, #7d3209, #C3A35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    display: inline-block;
    z-index: 1;
    text-transform: capitalize;
    margin-top: -5px;
    line-height: 40px;
}
.about-content h2 span, .section-title span
{
    background: var(--primary);
    padding: 0 3px;
    color: #ffffff;
}
.about-content p {    
    margin: 16px 0 0;
}
.about-content .btn, .about-content-custom .btn{
    margin-top: 25px;
}
.about-content .btn-primary,  .about-content-custom .btn-primary{
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    padding: 9px 35px;
}
.about-content .btn::before, .about-content-custom .btn::before {
    background: #fff;
}
.about-content .btn-primary:hover, .about-content-custom .btn-primary:hover {
    color: var(--primary);
}
.mt-100 {
    margin-top: 100px;
}


.about-box {
    position: relative;
    text-align: center;
    background: linear-gradient(360deg, #7d3209, #C3A35C);
    border-radius: 15px;
    padding: 10px;
    height: 100%;
}
.about-box i {
    font-size: 45px;
    color: #fff;
    transform-style: preserve-3d;
    transition: 0.4s;
}
.about-box:hover i {
    transform: rotateY(180deg);
}
.about-box h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
}
.about-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}
.read-more {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 15px;
    border-radius: 4px;
}
.read-more:hover {
    border-radius: 4px;
}
.support-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 20px;
}
.support-area .support-image img
{
    border-radius: 15px;
}
.support-area::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #7d3209, #C3A35C);;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.75;
    z-index: -1;
}
.support-content h3 {
    font-size: 2rem;
    color: #fff;
    text-transform: capitalize;
    line-height: 40px;
    margin-bottom: 10px;
}
.support-content h3 span {
    background: var(--primary);
    padding: 0 3px;
}
.support-content p {
    color: #fff;
    margin-bottom: 30px;
    line-height: 26px;
    font-size: 16px;
}
.support-content .btn-primary {
    margin-left: 8px;
}
.support-content .btn-secondary, .footer-widget .btn-secondary{
    background: #fff;
    border-color: var(--primary);
    margin-right: 5px;
    color: var(--primary);
}

.support-content .btn-secondary::before, .footer-widget .btn-secondary::before {
    background: #fff;
}
.support-content .btn-secondary:hover, .footer-widget .btn-secondary::after {
    color: var(--primary);
}
.footer-widget .btn-secondary:hover
{
    color: var(--primary);
}
.mission-area {
    padding-bottom: 20px;
    padding-top: 20px;
}
.single-mission {
    margin-bottom: 30px;
    text-align: center;
}
.single-mission.youth-involvement img
{
    border: 1px solid var(--secondary);
    height: 120px;
    width: 120px;
}
.single-mission img
{
    height: 270px;
    width: 270px;
    object-fit: cover;
    border-radius: 100%;
}
.single-mission i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border: 1px solid var(--primary);
    text-align: center;
    color: #fff;
    background-color: var(--primary);
    font-size: 35px;
    display: inline-block;
    border-radius: 5px;
}
.single-mission:hover i {
    background-color: #333;
    border-color: #333;
    color: #fff;
}
.single-mission h3 {
    font-size: 26px;
    text-transform: capitalize;
    margin: 20px 0 0;
    color: var(--primary);
}
.single-mission p {
    margin-top: 10px;
}
.funfacts-area {
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}
.funFact {
    padding-top: 150px;
    padding-bottom: 150px;
    text-align: center;
    position: relative;
}
.funFact h3 {
    font-size: 25px;
    margin-bottom: 5px;
    letter-spacing: 3px;
    color: var(--primary);
}
.funFact p {
    font-size: 17px;
    text-transform: capitalize;
}
.funFact.bottom-line::before,
.funFact.top-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 4px solid #464751;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    top: 50%;
    margin-top: -75px;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.funFact.bottom-line::before {
    bottom: 50%;
    top: auto;
    margin-top: 0;
    margin-bottom: -75px;
}
.funFact.bottom-line:hover::before,
.funFact.top-line:hover::before {
    border-color: var(--primary);
}
.funFact.bottom-line::after,
.funFact.top-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 2px;
    height: 110px;
    background: #464751;
    margin: 0 auto;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.funFact.bottom-line::after {
    top: auto;
    bottom: 0;
}
.funFact.bottom-line:hover::after,
.funFact.top-line:hover::after {
    background: var(--primary);
}
.upcoming-campaigns {
    background-image: url(pattern.png);
    background-attachment: fixed;
    padding-top:30px ;
    padding-bottom:30px ;
}
.single-campaigns .campaigns-img {
    position: relative;
}
.single-campaigns .campaigns-img img {
    width: 100%;
    border-radius: 15px;
}
.single-campaigns .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(rgba(195,163,92,0.8), #7d3209);
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 22px 14px;
    line-height: 26px;
    z-index: 3;
}
/*.single-campaigns .date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
    clip-path: polygon(100% 0, 0 100%, 0 0);
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: -1;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}*/
/*.single-campaigns:hover .date::before {
    -webkit-clip-path: polygon(100% 6%, 0 100%, 100% 100%);
    clip-path: polygon(100% 6%, 0 100%, 100% 100%);
}*/
.single-campaigns .date span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}
.single-campaigns .campaigns-content {
    margin-top: 15px;
}
.single-campaigns .campaigns-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 31px;
}
.campaigns-box .single-campaigns {
    margin-bottom: 30px;
}
.campaigns-box .single-campaigns .campaigns-content {
    position: relative;
    margin-top: 0;
    padding-left: 120px;
}
.campaigns-box .single-campaigns .campaigns-content .date {
    left: 0;
    bottom: auto;
    border-radius: 5px;
}
.campaigns-box .single-campaigns .campaigns-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    line-height: 24px;
}
.campaigns-area {
    background: #f0f2f5;
    padding: 20px 0;
    position: relative;
}
.campaignsBox {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
    height: 100%;
}
.campaignsBox .campaigns-img {
    position: relative;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    height: 450px;
}

.campaignsBox .title-head
{
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #25599e42;
}
.campaignsBox .title-head h3
{
    font-size: 24px;
}
.campaignsBox .title-head h3 a
{
    color: var(--secondary);
}
.campaignsBox .title-head h3 a:hover
{
    color: var(--secondary);
}
.campaignsBox .campaigns-img img
{
    width: -webkit-fill-available;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    height: 450px;
    object-fit: fill;
}
.campaignsBox .date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
    background: var(--secondary);
    text-align: center;
    font-size: 16px;
    color: #fff;
    padding: 6px 20px;
    line-height: 26px;
    z-index: 3;
    font-weight: 600;
}
.campaignsBox .date i
{
    margin-right: 10px;
    font-size: 20px;
}

.campaignsBox .date::before {
/*    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
    clip-path: polygon(100% 0, 0 100%, 0 0);
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: -1;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;*/
}
.campaignsBox:hover .date::before {
    -webkit-clip-path: polygon(100% 6%, 0 100%, 100% 100%);
    clip-path: polygon(100% 6%, 0 100%, 100% 100%);
}
.campaignsBox .date span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}
.campaignsBox .campaigns-content {
    padding-top: 10px;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
}
.campaignsBox .campaigns-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
}
.campaignsBox .campaigns-content .post-meta {
    color: #666;
    display: flex;
    margin-top: 5px;    
    align-items: center;
    margin-bottom: 10px;
}
.campaignsBox .campaigns-content .post-meta .first
{
    min-width: 150px; /* adjust as needed */
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap; /* ✅ Keep label in one line */
    color: #333;
}
.campaignsBox .campaigns-content .post-meta .second
{
    flex: 1;
    color: #555;
}
.campaignsBox .campaigns-content .post-meta i {
    color: var(--primary);
    font-size: 20px;
    border-radius: 100%;
    margin-right: 8px;
}
.campaignsBox .campaigns-content p {
    color: #333;
    font-size: 15px;
}
.events-details-desc {
    margin-top: 30px;
}
.events-details-desc h4 {
    font-size: 24px;
    margin-bottom: 20px;
}
.events-details-desc p {
    font-size: 15px;
    margin-bottom: 20px;
}
.google-calendar {
    background: var(--secondary);
    color: #fff;
    padding: 4px 9px;
    display: inline-block;
    border-radius: 5px;
}
.google-calendar:hover
{
    color: #fff;
}
.events-details-box {
    margin-top: 30px;
}
.events-details-box h4 {
    font-size: 18px;
    background: #ececec;
    text-align: center;
    padding: 13px 0;
    border-radius: 3px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.events-details-box ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}
.events-details-box ul li {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 15px;
}
.events-details-box ul li:last-child {
    margin-bottom: 0;
}
.events-details-box span {
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}
.events-details-box p {
    font-size: 15px;
    margin-bottom: 15px;
}
.events-details-box p a {
    color: var(--primary);
}
.events-details #map {
    margin-bottom: 0;
    margin-top: 40px;
}
.donate-area {
    background-image: url(../../assets/img/support-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}
.donate-area::before {
    content: "";
    position: absolute;
    background: #262732;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.75;
}
.donate-area .section-title h2 {
    color: #fff;
    z-index: 1;
}
.donate-area .section-title p {
    color: #fff;
    position: relative;
}
.donate-price {
    text-align: center;
    position: relative;
}
.donate-price ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 35px;
}
.donate-price ul li {
    display: inline-block;
}
.donate-price ul li a {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 2px;
    padding: 4px 30px;
    font-size: 20px;
    margin: 0 4px;
}
.donate-price ul li a:focus,
.donate-price ul li a:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.donate-price .btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.donate-price .btn-primary:hover {
    color: var(--primary);
}
.donate-price .btn::before {
    background: #fff;
}

.donate-now h3
{
    text-align: left;
    font-size: 35px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #7d3209, #C3A35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.donate-now p
{
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
}
.donate-now.custom-contact .custom-form
{
    align-items: center;
}
.donate h3 {
    margin-bottom: 30px;
}
.donate .notice {
    position: relative;
    background: #eee;
    padding: 15px 25px;
    border-radius: 60px;
    padding-left: 68px;
    margin-bottom: 30px;
}
.donate .notice i {
    position: absolute;
    left: 20px;
    top: 12px;
    background: var(--primary);
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 33px;
    border-radius: 5px;
}
.donate .give-donation-custom {
    position: relative;
}
.donate .give-donation-custom input {
    background: #eee;
    height: 50px;
    font-size: 25px;
    width: 230px;
    border-radius: 60px;
    padding-left: 75px;
}
.donate .give-donation-custom span {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    color: #fff;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 28px;
    border-radius: 10px 0 0 10px;
}
.donate ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.donate .give-donation-radio-list li {
    display: inline-block;
    margin-right: 12px;
    background: #eee;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 50px;
    color: #666;
    font-weight: 500;
}
.donate .give-payment-mode-select ul
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px; /* spacing between items */
    list-style: none;
    padding: 0;
}
.donate .give-payment-mode-select {
    margin-top: 1px;
}
.donate .give-payment-mode-select h4 {
    font-size: 24px;
    margin-bottom: 15px;
}
.donate .give-payment-mode-select ul li {
    font-size: 17px;
    margin-bottom: 10px;
}
.donate .payment-personal-info h4 {
    font-size: 24px;
    margin-bottom: 15px;
}
.donate .payment-personal-info .form-control {
    border: 1px solid #eee;
    background: #eee;
}
.donate .payment-personal-info .btn-primary {
    background: var(--primary);
    color: #fff;
    margin-top: 10px;
    border: 2px solid var(--primary);
}
.donate .payment-personal-info .btn-primary:hover {
    color: var(--primary);
}
.donate .payment-personal-info .btn::before {
    background: #fff;
}
label {
    margin-bottom: 10px;
}
.donate-area .section-title {
    margin-bottom: 30px;
}
.history-timeline {
    text-align: center;
    position: relative;
    margin: 55px auto 0;
    width: 100%;
}
.single-history {
    position: relative;
}
.history-timeline .single-history .history-content {
    background: #eee9e9;
    padding: 50px 45px 45px 110px;
    max-width: 475px;
    text-align: left;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.history-timeline .single-history:hover .history-content {
    box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    background: #fff;
}
.history-timeline .single-history .history-content.left-side {
    position: absolute;
    left: 0;
    top: -55px;
}
.history-timeline .single-history .history-content.right-side {
    position: absolute;
    right: 0;
    top: -55px;
}
.history-timeline .single-history .history-content h3 {
    color: var(--primary);
    font-style: italic;
    font-size: 45px;
    position: absolute;
    left: 30px;
    top: 45px;
    opacity: 0.23;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.history-timeline .single-history:hover .history-content h3 {
    opacity: 1;
}
.history-timeline .single-history .history-content h3::before {
    content: "";
    position: absolute;
    right: 14px;
    top: -8px;
    background: var(--primary);
    width: 1px;
    height: 80px;
    transform: rotate(40deg);
}
.history-timeline .single-history .history-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
}
.shorting-menu {
    text-align: center;
    margin-bottom: 40px;
}
.shorting-menu .filter {
    display: inline-block;
    background: #fff;
    color: #7d3209;
    border: none;
    padding: 7px 25px;
    border-radius: 30px;
    margin: 0 2px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    outline: 0 !important;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.shorting-menu .filter.mixitup-control-active,
.shorting-menu .filter:hover {
    background: var(--primary);
    color: #fff;
}
.achievement-area {
    position: relative;
}
.achievement-area::after,
.achievement-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url(../../assets/img/achievement-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.achievement-area::after {
    background: #464751;
    right: 0;
    left: auto;
}
.achievement-area .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.achievement-area .overlay::after,
.achievement-area .overlay::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--primary);
    opacity: 0.8;
}
.achievement-area .overlay::after {
    left: auto;
    right: 0;
    background: #464751;
    opacity: 1;
}
.achievement-content {
    max-width: 630px;
    margin-left: 25px;
    position: relative;
    z-index: 1;
}
.achievement-area .section-title {
    text-align: left;
    margin-bottom: 10px;
}
.achievement-area .section-title h2 {
    color: #fff;
}
.achievement-content .item p {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
}
.achievement-content .item h4 {
    font-size: 18px;
    margin-top: 20px;
    color: #fff;
}
.achievement-slides.owl-theme .owl-nav {
    text-align: left;
    margin-top: 35px;
}
.video-play-btn {
    height: 70px;
    width: 70px;
    position: absolute;
    top: 50%;
    text-align: center;
    margin: -30px 0 0 -30px;
    border-radius: 100px;
    z-index: 1;
    background: #fff;
}
.video-play-btn i {
    font-size: 30px;
    color: #e40943;
    line-height: 72px;
}
.video-play-btn .ripple {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #fff;
    z-index: -1;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: -80px 0 0 -80px;
    border-radius: 100px;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
}
@-webkit-keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.video-play-btn .ripple:nth-child(2) {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}
.video-play-btn .ripple:nth-child(3) {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}
.volunteer-area {
    padding-bottom: 70px;
}
.single-team {
    -webkit-box-shadow: 0 0 15px 0 rgba(62, 28, 131, 0.1);
    box-shadow: 0 0 15px 0 rgba(62, 28, 131, 0.1);
    margin-bottom: 30px;
}
.single-team > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.single-team .team-content {
    padding: 25px 20px;
    position: relative;
}
.single-team .team-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.single-team .team-content span {
    display: inline-block;
    font-size: 14px;
    text-transform: capitalize;
}
.single-team .team-content ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    position: absolute;
    right: 20px;
    top: 36px;
    display: none;
}
.single-team .team-content ul li a {
    font-size: 20px;
    color: var(--primary);
    display: inline-block;
}
.single-team .team-content ul .social-dropdown {
    right: -6px;
    top: -165px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    opacity: 0;
    visibility: hidden;
}
.single-team .team-content ul li:hover .social-dropdown {
    visibility: visible;
    opacity: 1;
    top: -160px;
}
.single-team .team-content ul .social-dropdown li a {
    font-size: 15px;
    width: 35px;
    height: 35px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    line-height: 35px;
    border-radius: 50%;
    margin-bottom: 5px;
}
.single-team .team-content ul .social-dropdown li a:hover {
    background: #fff;
    color: var(--primary);
}
.team-slides.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    left: 20px;
    top: 50%;
    border-radius: 50%;
    margin-top: -35px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.team-slides.owl-theme:hover .owl-nav [class*="owl-"] {
    opacity: 1;
    visibility: visible;
    left: 0;
}
.team-slides.owl-theme .owl-nav .owl-next {
    left: auto;
    right: 20px;
}
.team-slides.owl-theme:hover .owl-nav .owl-next {
    opacity: 1;
    visibility: visible;
    right: 0;
    left: auto;
}
.volunteer-details-img img {
    width: 100%;
}
.volunteer-details-area .social {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
}
.volunteer-details-area .social li {
    display: inline-block;
}
.volunteer-details-area .social li a {
    width: 33px;
    height: 33px;
    display: inline-block;
    line-height: 33px;
    background: #ddd;
    color: #000;
    border-radius: 50%;
    font-size: 15px;
}
.volunteer-details-area .social li a:hover {
    background: var(--primary);
    color: #fff;
}
.volunteer-details h3 {
    font-size: 25px;
}
.volunteer-details span {
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
}
.volunteer-details p {
    font-size: 15px;
}
.volunteer-details .blockquote {
    padding: 25px;
    border-left: 5px solid var(--primary);
    margin-top: 25px;
    margin-bottom: 25px;
    background: #fff3f3;
}
.volunteer-details .blockquote-footer {
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
}
.volunteer-contact-info .box {
    margin-top: 30px;
    text-align: center;
    background: #fff3f3;
    padding: 20px 15px;
}
.volunteer-contact-info .box i {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--primary);
    display: block;
}
.volunteer-contact-info .box p a {
    word-wrap: break-word;
}
.volunteer-details .quick-contact {
    margin-top: 40px;
}
.volunteer-details .quick-contact h4 {
    font-size: 25px;
    margin-bottom: 25px;
}
.volunteer-details .quick-contact .form-control {
    border: 1px solid #eee;
}
.volunteer-details .quick-contact .btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}
.volunteer-details .quick-contact .btn-primary:hover {
    color: var(--primary);
}
.volunteer-details .quick-contact .btn::before {
    background: #fff;
}
.testimonials-area {
    background-image: url(../../assets/img/testimonials-bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.testimonials-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #41414c;
    opacity: 0.8;
    z-index: -1;
}
.testimonials-area h2 {
    font-size: 50px;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #fff;
}
.testimonials-area h2::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 12px;
    left: 0;
    height: 6px;
    background: var(--primary);
    border-radius: 10px 10px 0 0;
    z-index: -1;
}
.testimonials-area .item {
    padding: 0 0 2px;
    position: relative;
    margin-top: 55px;
}
.testimonials-area .item p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 30px;
}
.testimonials-area .item i {
    position: absolute;
    left: 0;
    top: -35px;
    font-size: 83px;
    color: #fff;
    opacity: 0.2;
    z-index: -1;
}
.client-info {
    position: relative;
    padding-left: 72px;
}
.client-info img {
    position: absolute;
    left: 0;
    width: 52px !important;
}
.client-info h4 {
    font-size: 17px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 9px;
}
.client-info span {
    font-size: 14px;
    color: #fff;
    display: block;
}
.feedback-slides .owl-dots {
    position: absolute;
    right: 0;
    bottom: 10px;
}
.latest-news {
    padding-bottom: 70px;
}
.single-blog-post {
    margin-bottom: 30px;
}
.single-blog-post img {
    width: 100%;
}
.single-blog-post .blog-content {
    overflow: hidden;
    border: 1px solid #ebebeb;
    padding: 20px;
}
.single-blog-post .blog-content h4 {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 27px;
}
.single-blog-post .blog-content ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.single-blog-post .blog-content ul.post-meta {
    float: left;
}
.single-blog-post .blog-content ul.post-meta li {
    display: inline-block;
    margin-right: 8px;
}
.single-blog-post .blog-content ul.post-meta li a {
    display: inline-block;
    font-size: 14px;
    color: #616161;
}
.single-blog-post .blog-content ul.post-meta li a:hover {
    color: var(--primary);
}
.single-blog-post .blog-content ul.share-social {
    float: right;
    margin-top: -2px;
}
.single-blog-post .blog-content ul.share-social li {
    position: relative;
}
.single-blog-post .blog-content ul.share-social li a {
    font-size: 18px;
    display: inline-block;
}
.single-blog-post .blog-content ul .social-dropdown {
    position: absolute;
    top: -1px;
    height: 100%;
    left: -150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
.single-blog-post .blog-content .share-social li:hover .social-dropdown {
    opacity: 1;
    visibility: visible;
    left: -138px;
}
.single-blog-post .blog-content .social-dropdown li {
    display: inline-block;
}
.single-blog-post .blog-content ul .social-dropdown li a {
    font-size: 13px;
    width: 28px;
    height: 28px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    line-height: 28px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    margin-right: 2px;
}
.single-blog-post .blog-content ul .social-dropdown li a:hover {
    background: #fff;
    color: var(--primary);
}
.news-slides.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    left: 20px;
    top: 50%;
    border-radius: 50%;
    margin-top: -35px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.news-slides.owl-theme:hover .owl-nav [class*="owl-"] {
    opacity: 1;
    visibility: visible;
    left: 0;
}
.news-slides.owl-theme .owl-nav .owl-next {
    left: auto;
    right: 20px;
}
.news-slides.owl-theme:hover .owl-nav .owl-next {
    opacity: 1;
    visibility: visible;
    right: 0;
    left: auto;
}
.news-details-img img
{
    width: 100%;
    object-fit: cover;
}

.news-details-desc {
    margin-top: 15px;
}
.news-details-desc h4 {
    font-size: 30px;
}
.news-details-desc .post-meta {
    padding: 0;
    margin-bottom: 15px;
    list-style-type: none;
    margin-top: 15px;
}
.news-details-desc .post-meta li {
    display: inline-block;
    margin-right: 15px;
}
.news-details-desc .post-meta li i {
    color: var(--primary);
    margin-right: 5px;
}
.news-details-desc p {
    font-size: 15px;
    margin-bottom: 20px;
}
.news-details-desc .blockquote {
    margin-bottom: 20px;
    border: 2px dashed var(--secondary);
    padding: 18px;
}
.news-details-desc .blockquote p {
    font-size: 18px;
    font-style: italic;
}
.news-details-desc .features {
    margin-bottom: 20px;
    padding-left: 0;
    list-style-type: none;
}
.news-details-desc .features li i{
    color: var(--primary);
    font-size: 26px;
}
.news-details-desc .features li {
    margin-bottom: 12px;
}
.news-details-desc .features li:last-child {
    margin-bottom: 0;
}
.news-details-desc .social-share {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 15px 20px;
    background-color: #fafafa;
    list-style-type: none;
}
.news-details-desc .social-share li {
    display: inline-block;
    margin-right: 3px;
}
.news-details-desc .social-share li:first-child {
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}
.news-details-desc .social-share li a {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    background: #778793;
    color: #fff;
    border-radius: 50%;
}
.news-details-desc .social-share li a:hover {
    background: var(--primary);
    color: #fff;
}
.news-details .comments {
    margin-top: 40px;
}
.news-details .comments h4 {
    font-size: 24px;
    margin-bottom: 35px;
}
.news-details .single-comments {
    position: relative;
    padding-left: 75px;
}
.news-details .single-comments .img {
    position: absolute;
    left: 0;
    top: 0;
}
.news-details .single-comments .content span {
    display: block;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #616161;
}
.news-details .single-comments .content a {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary);
    padding: 4px 15px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid var(--primary);
}
.news-details .single-comments .content a:hover {
    background-color: var(--primary);
    color: #fff;
}
.news-details .single-comments .content p {
    font-size: 15px;
}
.news-details .single-comments.left-mr {
    margin-left: 45px;
    margin-top: 30px;
}
.news-details .border {
    margin: 25px 0;
    border-color: #fff3f3 !important;
}
.news-details .leave-a-comment {
    margin-top: 40px;
}
.news-details .leave-a-comment h4 {
    font-size: 24px;
    margin-bottom: 35px;
}
.news-details .leave-a-comment .form-control {
    border: 1px solid #eee;
}
.news-details form .btn {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.news-details form .btn::before {
    background: #fff;
}
.news-details form .btn:hover {
    color: var(--primary);
}
.newsletter-area {
    background: #eee9e9;
    position: relative;
    overflow: hidden;
}
.map-image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    width: 100%;
}
.newsletter {
    position: relative;
    text-align: center;
}
.newsletter span {
    display: block;
    font-size: 20px;
    margin-top: -6px;
}
.newsletter h3 {
    font-size: 50px;
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 30px;
}
.newsletter form {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}
.newsletter form .subscribe-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    cursor: pointer;
    padding: 0 25px;
    background: #464751;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0 5px 5px 0;
}
.newsletter form .subscribe-btn i {
    font-size: 17px;
    margin-right: 4px;
}
.become-a-volunteer {
    text-align: center;
}
.become-a-volunteer p
{
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
}
.become-a-volunteer h3 {
    text-align: left;
    font-size: 35px;
    margin-bottom: 10px;
}
.become-a-volunteer form .form-control {
    border: 1px solid #eee;
    font-size: 16px;
    height: 50px;
    padding: 6px 25px;
}
.become-a-volunteer form .form-control:focus,
.become-a-volunteer form .form-control:hover {
    border-color: var(--primary);
}
.become-a-volunteer .btn, .donate-now .btn {
    background: var(--primary);
    color: #fff;
    margin-top: 10px;
    border: 2px solid var(--primary);
}
.become-a-volunteer .btn::before, .donate-now .btn::before {
    background: #fff;
}
.become-a-volunteer .btn:hover, .donate-now .btn::after{
    color: var(--primary);
    border-color: var(--primary);
}
.page-title {
    position: relative;
    /*background-image: url(../../assets/img/page-title-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;*/
    height: 100px;
}


.page-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #41414c;
    opacity: 0.8;
}
.page-title h3 {
    position: relative;
    color: #fff;
    font-size: 36px;
    margin: 0;
}
.page-title ul {
    padding: 0;
    position: relative;
    margin: 10px 0 0;
    list-style-type: none;
}
.page-title ul li {
    display: inline-block;
    color: #eee;
    font-size: 18px;
    margin: 0 2px;
}
.page-title ul li a {
    color: #fff;
}
.pagination-area {
    text-align: center;
    margin-top: 10px;
}
.pagination-area ul {
    padding: 0;
    margin: 0;
}
.page-link {
    padding: 12px 21px;
    margin-left: 5px;
    color: var(--secondary);
    background-color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    box-shadow: 0 2px 10px 0 #d8dde6;
}
.page-item.active .page-link {
    color: #fff;
    background-color: var(--primary);
}
.page-link:hover {
    color: #fff;
    background-color: var(--primary);
}
.page-link:focus {
    box-shadow: unset;
}
.side-bar .widget-box {
    margin-bottom: 35px;
}
.side-bar .widget-box .event-title
{
    font-size: 35px;
}
.side-bar .widget-box .event-meta
{
    list-style: none;
    padding-left: 0;
}
.side-bar .widget-box .title {
    position: relative;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-left: 10px;
}
.side-bar .widget-box .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    height: 100%;
    width: 3px;
    background: var(--primary);
}
.side-bar .search-box form {
    position: relative;
}
.side-bar .search-box form .form-control {
    border: 1px solid #eee;
    font-size: 16px;
}
.side-bar .search-box form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 55px;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
}
.side-bar .latest-post .single-latest-post {
    overflow: hidden;
    position: relative;
    padding-left: 105px;
    margin-bottom: 20px;
}
.side-bar .latest-post .single-latest-post .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
}
.side-bar .latest-post .single-latest-post .img img
{
    height: 90px;
    width: 90px;
    object-fit: cover;
}
.side-bar .latest-post .single-latest-post .content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 22px;
    text-transform: capitalize;
}
.side-bar .latest-post .single-latest-post .content span {
    display: block;
    font-size: 14px;
    color: #616161;
}
.side-bar .latest-post .single-latest-post .content span i {
    color: var(--primary);
}
.side-bar .categories-box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.side-bar .categories-box li a {
    display: inline-block;
    margin-bottom: 10px;
}
.side-bar .categories-box li:last-child a {
    margin-bottom: 0;
}
.side-bar .categories-box li a:hover {
    padding-left: 10px;
}
.side-bar .text-box p {
    font-size: 16px;
    font-style: italic;
}
.side-bar .tag-box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.side-bar .tag-box ul li {
    display: inline-block;
    margin-top: 5px;
}
.side-bar .tag-box ul li a {
    padding: 5px 14px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid #273272;
}
.side-bar .tag-box ul li a:hover {
    background: var(--primary);
    color: #fff;
}
.faq-area {
    background-image: url(../../assets/img/pattern.png);
    background-attachment: fixed;
}
.single-questions {
    margin-bottom: 30px;
}
.single-questions h4 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 30px;
}
.single-questions p {
    font-size: 15px;
}
.faq-contact {
    text-align: center;
    padding: 40px 30px;
    background-image: url(../../assets/img/achievement-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.faq-contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    width: 100%;
    height: 100%;
    opacity: 0.66;
    z-index: -1;
}
.faq-contact h3 {
    font-size: 25px;
    margin-bottom: 35px;
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
    position: relative;
}
.faq-contact .btn {
    margin-top: 15px;
}
.error-wall {
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    max-width: 750px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 5px;
}
.error-wall h1 {
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
}
.error-wall h3 {
    font-size: 30px;
    margin: 10px 0 0;
}
.error-wall h4 {
    margin: 15px 0 0;
    color: red;
    font-size: 30px;
}
.error-wall p {
    max-width: 520px;
    margin: 15px auto 0;
}

#map iframe {
    width: 100%;
    margin-bottom: 60px;
    height: 450px;
    margin-bottom: -10px;
}
#contactForm label {
    font-weight: 600;
}
#contactForm p
{
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
}

#contactForm .form-control {
    border: 1px solid #eee;
    background: #fbfbfb;
}
#contactForm .form-control:hover {
    border-color: var(--primary);
}
form .form-control:hover
{
    border-color: var(--primary);    
}
#contactForm .list-unstyled li {
    color: red;
}
#contactForm .btn {
    margin-top: 5px;
}
#contactForm .btn::before {
    background: #fff;
}
.text-danger {
    margin-top: 20px !important;
}
.contact-info h4 {
    font-size: 35px;
    margin-bottom: 10px;
}
.contact-info p {
    font-size: 16px;
}
.contact-info ul, .widget-box .info{
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    margin-top: 20px;
}
.contact-info .info li, .widget-box .info li {
    position: relative;
    margin-bottom: 20px;
    color: #595757;
    display: flex;
    align-items: center;
}
.widget-box .info li
{
    text-transform: capitalize;
}
.widget-box .info li a
{
    margin-left: 10px;
}
.footer-widget.contact-info .info li {
    margin-bottom: 5px;
}
.contact-info .info li:last-child {
    margin-bottom: 0;
}
.contact-area .contact-info .info li i, .widget-box .info li i{
    color: #fff;
    font-size: 22px;
    background: var(--primary);
    border-radius: 50%;
    padding: 8px;
}
.widget-box .info li i{
    font-size: 28px;
}
.footer-widget.contact-info .info li
{
    padding-left: 0;
}

.footer-widget.contact-info .info li:first-child
{
    text-transform: capitalize;
}

.footer-widget.contact-info .info li i {
    color: var(--primary);
    font-size: 22px;
    background: #ffffff;
    border-radius: 50%;
    padding: 8px;
}
.footer-widget .info li a
{
    color: #ffffff !important;
    margin-left: 10px;
}
.contact-area .contact-info .info li a{
    color: #595757;
    display: inline-block;
    font-size: 18px;
    margin-left: 10px;
}
.contact-area .contact-info .info li:first-child{
    text-transform: capitalize;
}
.footer-widget.contact-info .info li a 
{
    font-size: 16px;
    color: #ffffff;
}
.contact-info .info li a:hover {
    color: var(--primary);
}
.contact-info .social-icon li {
    display: inline-block;
    margin-right: 3px;
}
.contact-info .social-icon li a i
{
    font-size: 18px;
}
.footer-top-area
{
    position: absolute;
    width: 60%;
    left: 50%;
    top: -10px;
    transform: translate(-50%, -50%); /* center horizontally & vertically */
    z-index: 10;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid var(--primary);
}
.footer-top-area .logo img
{
    height: 120px;
}
.footer-top-area .col-lg-7
{
    align-self: center;
}
.footer-top-area .footer-social-links
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer-top-area .footer-social-links .social-icon li
{
    display: inline-block;
    margin-right: 3px;
}

.footer-top-area .footer-social-links .social-icon li a i {
    font-size: 30px;
}
.contact-info .social-icon li a.fb, .footer-social-links .social-icon li a.fb
{
    background-color: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.contact-info .social-icon li a.ig, .footer-social-links .social-icon li a.ig
{
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.contact-info .social-icon li a.tw, .footer-social-links .social-icon li a.tw
{
  background-color: #1DA1F2;
  color: #fff;
  border-color: #1DA1F2;
}

.contact-info .social-icon li a.link, .footer-social-links .social-icon li a.link
{
  background-color: #0077B5;
  color: #fff;
  border-color: #0077B5;
}


.contact-info .social-icon li a{
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid #595757;
    color: #595757;
    border-radius: 50%;
}
.footer-social-links .social-icon li a
{
 width: 45px;
 height: 45px;
 line-height: 45px;
}

.footer-social-links .social-icon li a i
{
    font-size: 20px;
}
.contact-info .social-icon li a:hover {
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
}
.footer-area {
    padding: 50px 0 0 0;
    background: linear-gradient(rgba(195,163,92,0.8), #7d3209);
    position: relative;
}
.footer-middle
{
    padding-bottom: 20px;
}
.footer-area .bg {
    /*padding-left: 25px;*/
    /*padding-right: 25px;*/
}

.footer-widget.contact-info .footer-android img
{
    height: 60px;
}
.footer-widget.contact-info .footer-ios img
{
    height: 68px;
}

.footer-widget h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 16px;
    text-transform: capitalize;
    display: inline-block;
}
.footer-widget .logo {
    margin-bottom: 0px;
    margin-top: -10px;
}
.footer-widget .logo img
{
    height: 90px;
    margin-bottom: 5px;
}
.footer-widget p {
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-widget .recent-post li img
{
    height: 70px;
    width: 70px;
    object-fit: cover;
}
.footer-widget .recent-post li
{
    display: flex;
    gap: 15px;
}
.footer-widget .recent-post .recent-post-meta
{
    color: #ffffff;
}
.footer-widget .recent-post .recent-post-meta i
{
    padding-right: 5px;
}
.footer-widget .footer-social-links {
    margin-top: 20px;
}
.footer-widget .social-links li {
    display: inline-block;
}
.footer-widget .social-links li a {
    display: inline-block;
    color: #fff;
    margin-right: 11px;
    font-size: 28px;
}
.footer-widget .social-links li a:hover {
    color: var(--primary);
}
.quick-links-widget {
    margin-left: 1px;
}
.footer-widget .quick-links li {
    margin-bottom: 5px;
}
.footer-widget .quick-links li:last-child {
    margin-bottom: 0;
}
.footer-widget .quick-links li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
}
.footer-widget .quick-links li a::before {
/*    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 1px;
    background: #e40943;*/
}
.footer-widget .recent-post li {
    margin-bottom: 15px;
}
.footer-widget .recent-pos li:last-child {
    margin-bottom: 0;
}
.footer-widget .recent-post li a {
    color: #fff;
    font-size: 15px;
    display: inline-block;
}
.footer-widget .recent-post li span
{
    font-size: 14px;
}
.footer-widget .recent-post li a:hover {
    text-decoration: none;
}
.footer-widget .instagram-post {
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
}
.footer-widget .instagram-post li {
    float: left;
    width: 33.3333%;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 10px;
}
.footer-widget .instagram-post li a:hover {
    opacity: 0.33;
}
.copyright-area {
    background: var(--secondary);
    padding: 10px 0;
}
.copyright-area p {
    color: #fff;
    text-transform: capitalize;
}
.copyright-area p a
{
    color: #fff;
}
.copyright-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: right;
}
.copyright-area ul li {
    display: inline-block;
    margin-right: 20px;    
}
.copyright-area ul li a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
}
.copyright-area ul li a:hover {
    color: var(--primary);
}
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 30px;
    right: 20px;
    font-size: 25px;
    color: #fff;
    background-color: var(--primary);
    z-index: 1;
    display: none;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 39px;
    border-radius: 50%;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.go-top:hover {
    color: #fff;
    background: var(--secondary);
}
.single-photo img {
    width: 100%;
    aspect-ratio: 1 / 0.921;
    object-fit: cover;
}

/*sponsor css*/
.sponsors-section {
  padding: 20px 0 20px 0;
  color: #333;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.sponsors-layout {
  display: flex;  
  gap: 20px;
  margin: 0 auto;
}

.column {
  flex: 1; /* equal width for both columns */
  display: flex;
  flex-direction: column;
}


@media (max-width: 768px) {
    .sponsors-layout {
        display: block;
    }
    .grand, .platinum, .gold
    {
        margin-bottom: 10px;
    }
    .donate-now .column, .about-area-custom .column
    {
        flex: none;
    }
}
@media (min-width: 768px) {
    .sponsors-layout {
        flex-direction: row;
    }
    .column {
        flex: 1;
    }

    .grand-sponsors {
        width: 40%;
    }

    .right-sponsors {
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.sponsor-box {
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgb(48 87 140 / 30%);
  flex-grow: 1;
}

.sponsor-box h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 6px;  
}



.grand h3 {
  color: var(--primary);
  font-size: 5vh;
}

.platinum h3 {
  color: var(--secondary);
  font-size: 4vh;
}

.gold h3 {
  color: var(--secondary);
  font-size: 3vh;
}
.owl-carousel img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.owl-carousel .gold-sponsor-img
{    
  max-height: 160px;
}
.owl-carousel .grand-sponsor-img
{
    max-height: 400px;
}
.owl-carousel .platinum-sponsor-img
{
    max-height: 200px;
}
/*details sponsor*/


.detail-sponsors-section .row
{
    box-shadow: 0 4px 12px rgb(48 87 140 / 30%);
    padding: 10px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.detail-sponsors-section .platinum-sponsor-slider, .detail-sponsors-section .gold-sponsor-slider
{
    padding-bottom: 20px;
}
.detail-sponsors-section {
  padding: 10px 10px;
  background: #f5f5f5;
}

.detail-sponsors-section h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}
.detail-sponsors-section .grand-sponsor-title {
    font-size: 5vh;
    color: var(--primary);
}
.detail-sponsors-section .platinum-sponsor-title {
    font-size: 4vh;
}
.detail-sponsors-section .gold-sponsor-title {
    font-size: 3vh;
}


.detail-sponsors-section .sponsor-title
{
    align-content: center;
}
.detail-slider {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 18 / 9;
  margin: auto;
  perspective: 1500px;
}

.detail-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.detail-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.detail-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detail-slide.detail-grand-sponsor img
{
    height: 300px;
    width: 300px;
}
.detail-slide.detail-platinum-sponsor img
{
    height: 250px;
    width: 250px;    
}

.detail-slide.detail-gold-sponsor img
{
    height: 200px;
    width: 200px;    
}

.detail-slide.current {
  transform: translate(-50%, -50%) translateZ(0) scale(1);
  opacity: 1;
  z-index: 10;
}

.detail-slide.prev {
  transform: translate(calc(-50% - 130px), -50%) translateZ(-300px) scale(0.7) rotateY(25deg);
  opacity: 0.2;
  z-index: 5;
  filter: brightness(0.75);
}

.detail-slide.next {
  transform: translate(calc(-50% + 130px), -50%) translateZ(-300px) scale(0.7) rotateY(-25deg);
  opacity: 0.2;
  z-index: 5;
  filter: brightness(0.75);
}

.detail-slide:not(.current):not(.prev):not(.next) {
  opacity: 0;
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
  z-index: 20;
}


.prev-btn {
  display: none;
}

.next-btn {
  display: none;
}


.gold-sponsor-slider .prev-btn
{
    display: none;
}
.gold-sponsor-slider .next-btn
{
    display: none;
}

@media (max-width: 1399px) {

    .detail-slide.current
    {
        box-shadow: none;
    }
    .detail-slide img
    {
        border-radius: 16px;
    }   
    .detail-slide.detail-grand-sponsor img, .detail-slide.detail-platinum-sponsor img, .detail-slide.detail-gold-sponsor img 
    {
        height: 200px;
        width: 200px;
    }

}
@media (max-width: 767px) {
    .detail-slider
    {
        aspect-ratio: 16 / 7;
    }
}
@media (max-width: 999px) {
    .two-current-slider .detail-gold-sponsor img
    {
        height: 150px;
        width: 150px;
    }

}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .detail-slider
    {
        aspect-ratio: 16 / 5;
    }
}
@media (max-width: 991px) {
  .detail-slide {
    transform: translate(-50%, -50%) scale(0.9);
}
.detail-sponsors-section h3
{
    text-align: center;
}

.detail-slide.prev,
.detail-slide.next {
    display: none;
}
.prev-btn, .next-btn
{
    display: none;
}
}

@media (max-width: 576px) {
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.ur-frontend-form.login {
    padding: 20px !important;
}
}

@media (max-width: 747px) {
    .detail-sponsors-section h3
    {
        margin-bottom: 20px;
    }
}
@media(max-width: 474px)
{
    .detail-slide.detail-grand-sponsor img, .detail-slide.detail-platinum-sponsor img, .detail-slide.detail-gold-sponsor img 
    {
        height: 200px;
        width: 200px;
    }
    .detail-sponsors-section .grand-sponsor-slider
    {
        padding-bottom:20px ;
    }
    .logo-text p
    {
        display: none;
    }
    .mobile-site-title
    {
        font-size: 18px !important;
    }
}

.two-current-slider .detail-slide {
  /*width: 45%;*/
}

.two-current-slider .detail-slide.current-left {
  transform: translate(calc(-100% - 10px), -50%) scale(1);
  z-index: 10;
}

.two-current-slider .detail-slide.current-right {
  transform: translate(calc(0% + 10px), -50%) scale(1);
  z-index: 10;
}

.two-current-slider .detail-slide.prev {
  transform: translate(calc(-100% - 100px), -50%) scale(0.75) rotateY(20deg);
  opacity: 0.2;
  z-index: 5;
}

.two-current-slider .detail-slide.next {
  transform: translate(calc(0% + 100px), -50%) scale(0.75) rotateY(-20deg);
  opacity: 0.2;
  z-index: 5;
}


@media (max-width: 768px) {
  .two-current-slider .detail-slide {

  }

  .two-current-slider .detail-slide.current-left {
    transform: translate(calc(-100% - 5px), -50%) scale(1);
}

.two-current-slider .detail-slide.current-right {
    transform: translate(calc(0% + 5px), -50%) scale(1);
}
}


.venue-details-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.venue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.venue-header h3 {
  margin: 0;
  font-size: 28px;
}

.venue-actions .icon-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
}

.venue-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.venue-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #222;
  padding-bottom: 15px;
  
}
.venue-list li:not(:last-child) {
    border-bottom: 1px solid var(--primary);
}

.venue-list i {
  color: var(--primary);
  font-size: 32px;
  width: 30px;
  text-align: center;
  margin-right: 10px;
  margin-top: 2px;
}

.venue-list span {
  font-size: 14px;
  line-height: 1.4;
}
.venue-list span strong
{
    color: var(--secondary);
    font-size: 18px;
}

.venue-list a {
  color: #222;
  text-decoration: none;
}

.social-icons {
  margin-top: 5px;
}

.social-icons a {
  color: #999;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f2c14e;
}

/*@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .container
    {
        max-width: 1180px;
    }
}
*/
.event-rsvp .card-header .event-title
{
    font-size: 18px;
    color: var(--secondary);
}

.event-rsvp .badge.bg-success
{
    padding: 5px;
    font-size: 14px;
    margin-left: 10px;
}
.event-rsvp .card-body
{
    display: flex;
    justify-content: space-between;
}
.event-rsvp .card-rsvp-btn button
{
    border: 1px solid var(--primary);
    color: var(--primary);
}
.event-rsvp .card-rsvp-btn button:hover
{
    color: #ffffff;
}
.event-rsvp .event-date
{
    color: var(--primary);
}

@media (max-width: 991px) {
    .main-navbar-nav
    {
        display: none !important;
    }
    .main-menu-area .logo img
    {
        height: 55px;
    }
    .mean-container .mean-nav ul li a
    {
        color: #fff;
    }
}
.logo-text
{
    text-align: left;
}
.logo-text p
{
    font-size: 16px;
}

.mobile-site-title
{

    font-size: 24px;
    font-weight: 700;
    /*margin-left: 10px;*/
    color: var(--secondary);
}
/*@media (min-width: 991px) {
    .mobile-site-title
    {
        display: none;
    }
}*/


/*ABOUT US SECTION CSS START*/

.gsep-about-area {
    padding: 20px 0;
}

.gsep-about-area .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gsep-about-area .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.gsep-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.gsep-section-header h2 {
    font-size: 2rem;
    background: linear-gradient(45deg, #7d3209, #C3A35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.gsep-section-header p {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
}

.gsep-about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    border: 8px solid white;
}

.gsep-about-image:hover {
    transform: translateY(-10px);
}

.gsep-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gsep-about-image:hover img {
    transform: scale(1.05);
}

.gsep-about-content {
    padding-left: 30px;
}

.gsep-about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.gsep-about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.gsep-about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.8;
}

.gsep-about-area .btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 10px;
    font-size: 14px;
    border: none;
}

.gsep-about-area .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary);
    transition: all 0.5s;
    z-index: -1;
}

.gsep-about-area .btn:hover::before {
    width: 100%;
}

.gsep-about-area .btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(125, 50, 9, 0.2);
}

.gsep-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gsep-feature-item {
    flex: 0 0 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.gsep-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(138, 107, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.2rem;
}

.gsep-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.gsep-feature-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--dark);
}

/* Responsive styles */
@media (max-width: 991px) {
    .gsep-about-area .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gsep-about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .gsep-about-content h3 {
        font-size: 2rem;
    }

    .gsep-section-header h2 {
        font-size: 1.3rem;
    }
    .gsep-section-header
    {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .gsep-about-area 
    {
        padding: 20px 0;
    }

    .gsep-feature-item 
    {
        flex: 0 0 100%;
    }
    .gsep-section-header p, .gsep-about-content p
    {
        font-size: 1rem;
    }
}

/*ABOUT US SECTION CSS END*/

/*FEATURES SECTION CSS START*/
.gsep-feature-area.features {
    padding: 20px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}      


.gsep-feature-area .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gsep-feature-area .g-2 {
    margin: 0 -15px;
}

.gsep-feature-area .col-lg-3, .gsep-feature-area .col-md-4, .gsep-feature-area .col-sm-2 {
    padding: 15px;
}


.gsep-feature-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(138, 107, 61, 0.08);
}

.gsep-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 2;
}

.gsep-feature-box::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 107, 61, 0.03) 0%, rgba(125, 50, 9, 0.03) 100%);
    top: -60px;
    right: -60px;
    z-index: -1;
    transition: all 0.5s ease;
}

.gsep-feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(125, 50, 9, 0.15);
}

.gsep-feature-box:hover::after {
    transform: scale(1.8);
    background: linear-gradient(135deg, rgba(138, 107, 61, 0.08) 0%, rgba(125, 50, 9, 0.08) 100%);
}

.gsep-feature-box h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    position: relative;
    font-weight: 700;
}


.gsep-feature-box p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.gsep-feature-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 3px solid white;
}

.gsep-feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 107, 61, 0.2) 0%, rgba(125, 50, 9, 0.2) 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.gsep-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gsep-feature-box:hover .gsep-feature-image {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 12px 25px rgba(125, 50, 9, 0.2);
}

.gsep-feature-box:hover .gsep-feature-image::before {
    opacity: 1;
}

.gsep-feature-box:hover .gsep-feature-image img {
    transform: scale(1.1);
}

.gsep-feature-area .mt-0 {
    margin-top: 0 !important;
}


/* Responsive styles */
@media (max-width: 991px) {
    .gsep-feature-area .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gsep-feature-box {
        padding: 35px 25px 30px;
    }
}

@media (max-width: 768px) {
    .gsep-feature-area .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .gsep-feature-area.features {
        padding: 20px 0;
    }

    .gsep-feature-area .col-sm-2, .gsep-feature-area .col-md-4, .gsep-feature-area .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gsep-feature-box {
        padding: 30px 25px 25px;
        margin-bottom: 10px;
    }

    .gsep-feature-box h3 {
        font-size: 1.3rem;
    }

    .gsep-feature-image {
        width: 90px;
        height: 90px;
    }
}
/*FEATURES SECTION CSS END*/

/*SPONSOR SECTION CSS START*/

.gsep-sponsors-section {
    width: 100%;
    padding: 20px 0;
}

.gsep-sponsor-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.gsep-sponsors-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #7d3209, #C3A35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}


.gsep-section-subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto;
}

.gsep-sponsor-tiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tier {
    background: var(--background);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.tier:hover {
    box-shadow: 0 15px 50px rgba(138, 107, 61, 0.15);
    transform: translateY(-5px);
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tier-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: white;
}

.grand .tier-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.platinum .tier-icon {
    background: linear-gradient(135deg, #5a5a5a, #7a7a7a);
}

.gold .tier-icon {
    background: linear-gradient(135deg, #ffd700, #daa520);
}

.tier-name {
    font-size: 2rem;
    font-weight: 700;
}

.grand .tier-name {
    color: var(--secondary);
}

.platinum .tier-name {
    color: #5a5a5a;
}

.gold .tier-name {
    color: #b8860b;
}

.gsep-sponsor-count {
    background: var(--light);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(138, 107, 61, 0.2);
    color: var(--primary);
}

.gsep-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.sponsor-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}



.sponsor-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 15px 35px rgba(138, 107, 61, 0.15);
    border-color: rgba(138, 107, 61, 0.3);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.4);
    transition: all 0.4s ease;
    border-radius: 5px;
}

.sponsor-card:hover .sponsor-logo {
    filter: grayscale(0);
    transform: scale(1.08);
}

.tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 99;
}

.grand .tier-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.platinum .tier-badge {
    background: linear-gradient(135deg, #5a5a5a, #7a7a7a);
}

.gold .tier-badge {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #333;
    z-index: 99;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.tier-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    pointer-events: none;
}

.grand .tier-decoration {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0 24px 0 100px;
}

.platinum .tier-decoration {
    background: linear-gradient(135deg, #5a5a5a, #7a7a7a);
    border-radius: 0 24px 0 100px;
}

.gold .tier-decoration {
    background: linear-gradient(135deg, #ffd700, #daa520);
    border-radius: 0 24px 0 100px;
}


/* Responsive styles */
@media (max-width: 1200px) {
    .gsep-sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }

    .tier {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }

    .tier-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .tier-title {
        flex-direction: column;
        gap: 15px;
    }

    .gsep-sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .sponsor-card {
        padding: 25px;
    }

    .tier-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .tier-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .gsep-sponsors-section {
        padding: 20px 0;
    }

    .gsep-sponsor-section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }
    .gsep-sponsors-section .section-title
    {
        font-size: 1.5rem;
    }

    .gsep-section-subtitle {
        font-size: 1rem;
    }

    .tier {
        padding: 20px;
    }

    .gsep-sponsors-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .sponsor-card {
        padding: 20px;
    }

    .sponsor-logo {
        max-height: 100%;
    }

    .tier-decoration {
        width: 100px;
        height: 100px;
    }
}

/*SPONSOR SECTION CSS END*/

/*-------------------------------------------------- Main Hero Banner CSS Start -------------------------------------------------------*/

.hero-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  height: 80vh;
  position: relative;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 35%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  top: 250px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.gujarati-text {
  font-family: 'Shruti', 'Nirmala UI', sans-serif;
  font-size: 1.8rem;
  margin: 15px 0;
  color: #ffcc00;
}

.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-slider .owl-prev, .hero-slider .owl-next {
  background: rgba(255, 255, 255, 0.2) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 20px !important;
  transition: all 0.3s ease;
  color: white;
}

.hero-slider .owl-prev:hover, .hero-slider .owl-next:hover {
  background: rgba(255, 153, 51, 0.8) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-slider .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.hero-slider .owl-dot.active span {
  background: var(--secondary) !important;
  transform: scale(1.3);
}

.community-stats {
  width: 100%;
  background: var(--secondary);
  padding: 15px 0;
  z-index: 3;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: white;
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {

    .hero-section, .hero-slider, .hero-slide
    {
        height: 60vh;
    }
    .hero-content h1
    {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .gujarati-text {
        font-size: 1.5rem;
    }



    .stats-container {
        flex-direction: column;
    }
    .hero-content
    {
        top: 145px;
    }
    .hero-content p
    {
        font-size: 1rem;
        margin-top: 10px;
    }
}

@media (max-width: 474px) {

}
/*-------------------------------------------------- Main Hero Banner CSS END -------------------------------------------------------*/


/*EVENT PAGE CSS START*/


/* Events Section */
.gsep-events-area {
    padding: 20px 0;
}

.gsep-events-area .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gsep-events-area .col-lg-4, .gsep-events-area .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.gsep-events-area .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.gsep-events-area .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.gsep-event-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gsep-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.event-details
{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gsep-event-card:hover .event-img img {
    transform: scale(1.05);
}

.gsep-event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.gsep-event-date i {
    margin-right: 5px;
}

.gsep-event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gsep-event-title {
    margin-bottom: 15px;
}

.gsep-event-title h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    line-height: 1.3;
}

.gsep-event-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.gsep-event-title a:hover {
    color: var(--primary);
}

.gsep-event-meta {
    margin-bottom: 15px;
}

.gsep-meta-item {
    display: flex;
    margin-bottom: 8px;
    align-items: flex-start;
}

.meta-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.gsep-meta-text {
    color: var(--dark);
    font-size: 0.95rem;
}

.event-actions {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gsep-events-area .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.gsep-events-area .btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.gsep-events-area .btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.gsep-events-area .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.gsep-events-area .btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.past-events .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 14px;
}

.past-events .btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Highlighted Event */
.highlighted-event {
    background: linear-gradient(135deg, var(--light) 0%, var(--card-bg) 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent);
}

.highlighted-header h3{
    font-size: 1.2rem;
}
.highlighted-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.highlighted-badge {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.highlighted-content {
    display: flex;
    gap: 30px;
}

.highlighted-image {
    flex: 0 0 40%;
    border-radius: 12px;
    overflow: hidden;
}

.highlighted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlighted-details {
    flex: 1;
}

.highlighted-details h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.highlighted-meta {
    margin-bottom: 20px;
}

.highlighted-meta .gsep-meta-item {
    margin-bottom: 10px;
}

.highlighted-meta .meta-icon {
    font-size: 1.1rem;
}

.highlighted-meta .gsep-meta-text {
    font-size: 1rem;
}

.highlighted-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.event-section-subtitle
{
    margin: 30px 0;
}

/* Past Events */
.past-events {
    background-color: var(--light);
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.gsep-section-title
{
    margin: 20px 0;
}

.past-gsep-event-card {
    background-color: var(--background);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.past-gsep-event-card:hover {
    opacity: 1;
}

.past-gsep-event-card .gsep-event-date {
    background: var(--gray);
}

/* No Events Message */
.no-events {
    text-align: center;
    padding: 40px 0;
    color: var(--gray);
}

.no-events i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--border);
}



/* Responsive Design */
@media (max-width: 991px) {
    .gsep-events-area .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .highlighted-content {
        flex-direction: column;
    }

    .highlighted-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .gsep-events-area .col-lg-4, .gsep-events-area .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gsep-section-title h2 {
        font-size: 1.5rem;
    }

    .highlighted-actions {
        flex-direction: column;
    }

    .highlighted-actions .btn {
        width: 100%;
        text-align: center;
    }
    .highlighted-details h3
    {
        font-size: 1.4rem;
    }
    .highlighted-event
    {
        padding: 20px;
    }
    .gsep-event-content
    {
        padding: 20px;
    }
}

/*EVENT PAGE CSS END*/

/*NEW CONTACT US PAGE CSS START*/

/* Contact Section */
.gsep-contact-area {
    padding: 20px 0;
}

.gsep-contact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.gsep-contact-content {
    display: flex;
    min-height: 700px;
    background: var(--background);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Contact Info - Left Side */
.gsep-contact-info-side {
    flex: 0 0 45%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gsep-contact-info-side::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.gsep-contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.gsep-contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.2rem;
    margin: 20px 0;
    opacity: 0.9;
}

.gsep-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.gsep-info-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.gsep-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gsep-info-card .gsep-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.gsep-card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gsep-card-content a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.gsep-card-content a:hover {
    opacity: 1;
}

/* Social Icons */
.gsep-social-section {
    margin-top: auto;
}

.gsep-social-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.gsep-social-icon {
    display: flex;
    gap: 15px;
}

.gsep-social-icon a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gsep-social-icon a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Contact Form - Right Side */
.gsep-contact-form-side {
    flex: 0 0 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background);
}

.form-header {
    margin-bottom: 40px;
}

.gsep-form-header h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.gsep-form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.gsep-contact-form {
    width: 100%;
}

.gsep-form-row {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.gsep-form-group {
    flex: 1;
    margin-bottom: 0;
}

.gsep-form-group.full-width {
    flex: 0 0 100%;
    margin-top: 10px;
}

.gsep-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.gsep-form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--card-bg);
}

.gsep-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(138, 107, 61, 0.1);
    background-color: var(--background);
}

textarea.gsep-form-control {
    min-height: 150px;
    resize: vertical;
}

.gsep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 107, 61, 0.3);
}

.gsep-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 107, 61, 0.4);
}

.gsep-btn svg {
    font-size: 1.2rem;
}

/* Map Area */
.map-area {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-header svg {
    font-size: 1.5rem;
}

.map-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.map-area iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gsep-contact-info h2 {
        font-size: 2.4rem;
    }
    
    .gsep-contact-info-side, .gsep-contact-form-side {
        padding: 50px 40px;
    }
}

@media (max-width: 991px) {
    .gsep-contact-content {
        flex-direction: column-reverse;
    }
    
    .gsep-contact-info-side, .gsep-contact-form-side {
        flex: 0 0 100%;
    }
    
    .gsep-contact-info-side {
        border-radius: 24px 24px 0 0;
    }
    
    .gsep-contact-form-side {
        border-radius: 0 0 24px 24px;
    }
}

@media (max-width: 768px) {
    .gsep-contact-info-side, .gsep-contact-form-side {
        padding: 20px;
    }
    
    .gsep-contact-info h2 {
        font-size: 2rem;
    }
    
    .gsep-form-header h3 {
        font-size: 1.8rem;
    }
    
    .gsep-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .gsep-form-group {
        margin-bottom: 15px;
    }
    
    .gsep-info-card {
        align-items: flex-start;
        padding: 15px;
    }
    
    .gsep-info-card svg {
        margin-right: 0;
    }
}

@media (max-width: 576px) {


    .gsep-contact-info-side, .gsep-contact-form-side {
        padding: 30px 20px;
    }
    
    .gsep-contact-info h2 {
        font-size: 1.5rem;
    }
    
    .gsep-form-header h3 {
        font-size: 1.5rem;
    }
    
    .gsep-btn {
        width: 100%;
    }
    
    .gsep-social-icon {
        justify-content: center;
    }
    .gsep-info-card .gsep-contact-icon
    {
        width: 50px;
        height: 50px;
    }
    .gsep-form-header p
    {
        font-size: 1rem;
    }
}

/*NEW CONTACT US PAGE CSS END*/


/*MEMBERSHIP STEPS CSS START*/

.membership-steps-section
{
    padding: 20px 0;
}
.membership-steps-section .membership-steps-inner-section
{
    margin: 0 auto;
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Overview Section */
.membership-steps-overview {
    background-color: var(--card-bg);
    padding: 20px;
    border-left: 5px solid var(--accent);
    margin: 20px 0;
    border-radius: 4px;
    display: flex; /* Enable flexbox for alignment */
    align-items: center; /* Vertically align items */
}


.membership-steps-overview-content {
    flex-grow: 1; /* Allows the content to take up remaining space */
}

.membership-steps-logo-container {
    flex-shrink: 0; /* Prevents the logo from shrinking */
    margin-right: 20px;
}

.membership-steps-logo-container img {
    width: 90px; /* Adjust size as needed for a logo icon */
    height: auto;
    border-radius: 50%; /* Optional: for a circular logo */
    background-color: var(--light);
    padding: 5px;
}


/* Membership Steps */
.membership-steps-step-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.membership-steps-step-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--card-bg);
    position: relative;
}

.membership-steps-step-number {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 15px;
    position: absolute;
    left: -10px;
    top: -10px;
    border: 3px solid var(--background); /* To make the circle pop */
}

.membership-steps-step-title {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1em;
    margin-left: 20px; /* Adjust for the number position */
    display: block;
    margin-bottom: 10px;
}

.membership-steps-step-details {
    padding-left: 20px;
}

/* What You Get Section */
.membership-steps-benefits-list {
    list-style-type: '👉 ';
    padding-left: 20px;
}
.membership-steps-benefits-list li {
    margin-bottom: 10px;
}

/* Buttons and Call to Action */
.membership-steps-cta-buttons {
    text-align: center;
    margin: 30px 0;
}
.membership-steps-cta-button {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.membership-steps-btn-register {
    background-color: var(--accent);
    color: var(--light);
    border: 2px solid var(--accent);
}
.membership-steps-btn-register:hover {
    background-color: #d1701d; /* slightly darker accent */
    color: white;
    transform: translateY(-2px);
}

.membership-steps-btn-contact {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}
.membership-steps-btn-contact:hover {
    background-color: #795d35; /* slightly darker primary */
    transform: translateY(-2px);
    color: white;

}

/* Contact Section */
.membership-steps-contact-info {
    background-color: var(--light);
    padding: 20px;
    border: 1px dashed var(--gray);
    border-radius: 6px;
    margin-top: 30px;
    text-align: center;
    color: var(--dark);
}
.membership-steps-contact-info p {
    margin: 0;
    font-style: italic;
}

/*MEMBERSHIP STEPS CSS END*/


.membership-steps-inner-section  .gsep-section-header
{
    text-align: center;
    margin-bottom: 0;
}

@media(max-width: 991px)
{
    .membership-steps-logo-container img
    {
        width: 60px;
    }
    .membership-steps-step-details
    {
        padding-left: 0;
    }
    .membership-steps-step-title
    {
        font-size: 1em;
    }
    .membership-steps-step-item
    {
        padding: 10px;
    }
    .membership-steps-section .membership-steps-inner-section
    {
        padding: 10px;
    }
    .membership-steps-cta-button
    {
        padding: 5px 20px;
        font-size: 1em;
    }
}



/*.menu-item-mobile-login .mobile-login-button
{
    display: none;
}*/
/*@media(max-width: 991px)
{
   .menu-item-mobile-login .mobile-login-button
   {
        display: block;
   }   
   .middle-header .mb-profile-dropdown-wrapper
   {
    display: none;
   }

}
*/

#eventDetailsModal .modal-body .row
{
    align-items: center;
}

.header-area .login-btn
{
    padding: 6px 25px;
    font-size: 14px;
}

.menu-item-mobile-login {
    display: none !important;  /* Hidden on desktop */
}

@media (max-width: 991px) {
    .menu-item-mobile-login {
        display: block !important;
        order: 999; /* Force last position */
    }
    
    /* Fix MeanMenu interference */
    .main-nav .menu-item-mobile-login {
        position: relative;
    }
    
    /* Ensure dropdown can show */
    .mb-profile-dropdown-wrapper {
        position: relative;
        width: 100% !important;
    }
    .mb-profile-toggle-btn
    {
        width: 100%;
    }
    .inn-profile-dropdown, .mb-profile-dropdown
    {
        position: relative !important;
        padding: 0;
    }
    .inn-profile-dropdown, .mb-profile-dropdown a
    {
        color: unset !important;
        padding: 5px 0 !important;
        text-align: center;
    }    
    .mobile-btn 
    {
        padding: 6px 12px;
        font-size: 13px;
    }
    .mb-profile-dropdown 
    {
        right: 0;
    }

    .modalEventImage
    {
        display: none;
    }
    .menu-item-mobile-login {
        display: block !important;  /* Show on mobile */
        order: 999;  /* Force last position if flex */
    }
    
    /* Fix MeanMenu positioning */
    .main-nav.mean-container .menu-item-mobile-login {
        position: relative;
        margin-top: 10px;
        padding: 10px;
        border-top: 1px solid #eee;
    }
    .mobile-login-button .login-btn
    {
        color: #2d1b09 !important;
        padding: 5px 0 !important;
    }
}



/*API GALLERY CSS START*/

.gallery-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.gallery-loader p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Filter buttons styling */
.shorting-menu .filter {
    padding: 10px 20px;
    background: white;
    border: 2px solid #8a6b3d;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 5px;
    text-transform: capitalize;
    font-size: 16px;
}

/*.shorting-menu .filter:hover {
    background: #f0f0f0;
    border-color: #999;
}*/

.shorting-menu .filter.mixitup-control-active {
    background: linear-gradient(to right, #7d3209, #C3A35C);
    color: white;
    border: 2px solid #7d3209;
}

/* Gallery item styling */
.single-photo {
    position: relative;
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.single-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.single-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /*opacity: 0;*/
}

.single-photo a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.single-photo a:hover img {
    transform: scale(1.05);
}

/* Load More Button */
#galleryloadMoreBtn {
    padding: 12px 30px;
    background: #256502;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

#galleryloadMoreBtn:hover {
    background: #1a4a01;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 101, 2, 0.3);
}

#galleryloadMoreBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Button loader */
.btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 992px) {
    .col-lg-3 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .col-lg-3, .col-md-6 {
        width: 100%;
    }
    
    .shorting-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .shorting-menu .filter {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 5px 0;
    }
}

.no-images, .error {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

/*API GALLERY CSS END*/


/*Community Care PAGE CSS START*/

/* Community Care Page Styles */
.community-care-page {
    padding: 20px 0;
    background-color: var(--light);
}

.community-care-page .section-title p
{
    max-width: 900px;
    margin: 0 auto;
}

/* Infinite Slider */
.cc-infinite-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    border-radius: 12px;
}

.cc-slider-track {
    display: flex;
    animation: cc-slideAnimation 30s linear infinite;
    width: calc(250px * 8);
}

@keyframes cc-slideAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4));
    }
}

.cc-slide {
    width: 300px;
    height: 250px;
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.cc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Key Images Section */
.cc-key-images {
    margin-bottom: 20px;
}

.cc-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cc-image-card {
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.cc-image-card:hover {
    box-shadow: 0 15px 40px rgba(138, 107, 61, 0.15);
}

.cc-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cc-image-card:hover .cc-image-wrapper img {
    transform: scale(1.05);
}


.cc-image-content {
    padding: 15px;
}

.cc-image-content p {
    line-height: 1.4;
}

/* Video Section */
.cc-video-section {
    padding: 20px 0;
}


.cc-video-feature {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.cc-video-player {
    flex: 1;
    /*min-width: 300px;*/
}

.cc-video-thumbnail {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.cc-video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cc-video-details {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--card-bg);
}

.cc-video-details h4 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cc-video-desc {
    color: var(--gray);
    line-height: 1.7;
}

/* Services Section */
.cc-services-section {
    padding: 20px 0;
}

.cc-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.cc-services-header h3 {
    color: var(--secondary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}


.cc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.cc-service-card {
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.cc-service-card:hover {
    box-shadow: 0 15px 35px rgba(138, 107, 61, 0.15);
}

.cc-service-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cc-service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(45 27 9 / 31%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cc-service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.cc-service-content h4 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.3;
}

.cc-service-desc {
    margin: 10px 0;
    flex-grow: 1;
}

.cc-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cc-service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 107, 61, 0.3);
}
.cc-service-link:hover
{
    color: white;
}

/* Gratitude Section */
.cc-gratitude-section {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    opacity: 0.9;
    padding: 20px 15px;
    position: relative;
}

.cc-gratitude-header {
    text-align: center;
    margin-bottom: 30px;
}

.cc-gratitude-header h3 {
    color: var(--gray);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cc-gratitude-section .message-logo
{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.cc-gratitude-section .message-logo img
{
    height: 140px;
    border-radius: 50%;
    width: 100%;
}

.cc-gratitude-subtitle {
    color: var(--gray);
    font-style: italic;
}


.cc-letter-content {
    line-height: 1.7;
}

.cc-letter-content p {
    margin-bottom: 20px;
}

.cc-letter-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cc-signature-name {
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.cc-signature-title {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cc-video-feature {
        flex-direction: column;
    }

    .cc-video-thumbnail {
        min-height: 250px;
    }
}

@media (max-width: 768px) {

    .cc-services-header h3 {
        font-size: 1.6rem;
    }

    .cc-images-grid {
        grid-template-columns: 1fr;
    }

    .cc-video-details {
        padding: 25px;
    }

    .cc-video-details h4 {
        font-size: 1.5rem;
    }

    .cc-slider-track {
        animation-duration: 20s;
    }
}

@media (max-width: 576px) {

    .cc-image-overlay h4, .cc-service-content h4
    {
        font-size: 1.1rem;
    }
    .cc-image-overlay
    {
        padding: 15px;
    }

    .cc-services-grid {
        grid-template-columns: 1fr;
    }

    .cc-slider-track {
        animation-duration: 15s;
    }
    .cc-service-content
    {
        padding: 15px;
    }
    .cc-service-link
    {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .cc-slide
    {
        width: 200px;
        height: 150px;
        margin: 0 5px;
    }
}

/* Pause animation on hover */
.cc-infinite-slider:hover .cc-slider-track {
    animation-play-state: paused;
}


/* Video Player Styles */
.cc-video-thumbnail {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    background-color: #000;
}

.cc-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide default controls when using custom controls */
.cc-video-element::-webkit-media-controls {
    display: none !important;
}

/* Custom Video Controls */
.cc-video-custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.cc-video-thumbnail:hover .cc-video-custom-controls {
    opacity: 1;
}

/* Play/Pause Button */
.cc-video-play-btn {
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.cc-video-play-btn:hover {
    background: var(--accent);
}

.cc-video-play-btn .fa-pause {
    display: none;
}

.cc-video-play-btn.playing .fa-play {
    display: none;
}

.cc-video-play-btn.playing .fa-pause {
    display: block;
}

/* Progress Bar */
.cc-video-progress {
    flex: 1;
}

.cc-video-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.cc-video-progress-filled {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s;
}

/* Time Display */
.cc-video-time {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

/* Mute Button */
.cc-video-mute-btn {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-video-mute-btn .fa-volume-xmark {
    display: none;
}

.cc-video-mute-btn.muted .fa-volume-xmark {
    display: none;
}

.cc-video-mute-btn.muted .fa-volume-high {
    display: block;
}

/* Fullscreen Button */
.cc-video-fullscreen-btn {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-video-fullscreen-btn .fa-compress {
    display: none;
}

.cc-video-fullscreen-btn.fullscreen .fa-expand {
    display: none;
}

.cc-video-fullscreen-btn.fullscreen .fa-compress {
    display: block;
}

/* Responsive Styles for Controls */
@media (max-width: 768px) {
    .cc-video-custom-controls {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .cc-video-play-btn,
    .cc-video-mute-btn,
    .cc-video-fullscreen-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cc-video-time {
        font-size: 0.8rem;
        min-width: 80px;
    }
    .community-care-page .section-title p
    {
        font-size: 14px;
    }
    .cc-gratitude-section .message-logo img
    {
        height: 100px;
    }
}

@media (max-width: 599px) {
    .cc-gratitude-section .message-logo
    {
        display: none;
    }
}


/* Tab Navigation Styles */
.cc-tabs-nav {
    margin-bottom: 30px;
}

.cc-tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cc-tab-btn {
    padding: 10px 20px;
    background: #fff;
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cc-tab-btn:hover {
    background: #e0e0e0;
}

.cc-tab-btn.active {
    background: linear-gradient(to right, #7d3209, #C3A35C);;
    color: white;
    position: relative;
}


/* Tab Content Styles */
.cc-tabs-content {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.cc-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.cc-tab-pane.active {
    display: block;
}

.cc-tab-title h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 24px;
}

.cc-tab-description {
    margin: 0 auto;
    max-width: 800px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Gallery Styles */
.cc-media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cc-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cc-gallery-item:hover {
    transform: translateY(-5px);
}

/* Image Styles */
.cc-media-image .cc-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.cc-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cc-media-image:hover img {
    transform: scale(1.05);
}

.cc-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.cc-media-image:hover .cc-image-overlay {
    opacity: 1;
}

.cc-zoom-icon svg {
    width: 40px;
    height: 40px;
}

/* Video Styles */
.cc-media-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.cc-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.cc-video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.cc-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.cc-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Controls */
.cc-video-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cc-video-player:hover .cc-video-controls {
    opacity: 1;
}

.cc-video-fullscreen {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cc-video-fullscreen:hover {
    background: rgba(0, 115, 170, 0.9);
    transform: scale(1.1);
}

.cc-video-fullscreen svg {
    width: 18px;
    height: 18px;
}

/* Fullscreen Styles */
.cc-video-player.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
}

.cc-video-player.fullscreen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cc-video-player.fullscreen .cc-video-play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cc-video-player.fullscreen .cc-video-controls {
    bottom: 20px;
    right: 20px;
    opacity: 1;
}

.cc-video-player.fullscreen .cc-video-fullscreen {
    background: rgba(255, 255, 255, 0.2);
}

.cc-video-player.fullscreen .cc-video-fullscreen:hover {
    background: rgba(0, 115, 170, 0.9);
}

/* Exit fullscreen button style */
.cc-video-player.fullscreen .cc-video-fullscreen svg {
    transform: rotate(45deg);
}

/* Video Overlay */
.cc-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure video controls are visible in fullscreen */
.cc-video-player.fullscreen .cc-video-controls {
    pointer-events: all;
}

/* Lightbox Modal (optional) */
.cc-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.cc-lightbox.active {
    display: flex;
}

.cc-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.cc-lightbox-img {
    max-width: 60%;
    max-height: 60%;
}

.cc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .cc-media-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cc-tabs-list {
        flex-direction: column;
    }
    
    .cc-tab-btn {
        width: 100%;
        text-align: left;
        border-radius: 5px;
        margin-bottom: 5px;
    }
    
    .cc-tab-btn.active::after {
        display: none;
    }
}

/* ... previous styles ... */

/* Gallery Styles */
.cc-media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.cc-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cc-hidden-media {
    display: none;
}

.cc-gallery-item.cc-visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Load More Button Styles */
.cc-load-more-container {
    text-align: center;
}

.cc-load-more-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    justify-content: center;
    background: linear-gradient(to right, #7d3209, #C3A35C);
}

.cc-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 115, 170, 0.3);
}

.cc-load-more-btn:active {
    transform: translateY(0);
}

.cc-load-more-btn.loading {
    pointer-events: none;
}

.cc-load-more-btn.loading .cc-load-more-text {
    opacity: 0.7;
}

.cc-loading-spinner {
    display: flex;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for new items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc-gallery-item.new-item {
    animation: slideIn 0.5s ease;
}

/* Show More Animation */
.cc-media-gallery.show-more .cc-hidden-media {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Media counter */
.cc-media-counter {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cc-load-more-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cc-media-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
@media (max-width: 568px) {

    .cc-media-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .single-team > img
    {
        height: 350px;
    }
}


/*Community Care PAGE CSS END*/

/*FACEBOOK GALLERY CSS START*/

    .fb-grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px; /* space between items */
      padding: 20px 0;
  }

  .fb-grid-item {
      text-align: center;
      border-radius: 8px;
  }

  .fb-loadmore-btn
  {
    margin-bottom: 20px;
  }

  /* Responsive: stack on small screens */
  @media (max-width: 991px) {
      .fb-grid-container {
        grid-template-columns: 2fr 2fr;
    }
}    
@media (max-width: 575px) {
  .fb-grid-container {
    grid-template-columns: 1fr;
}
}

/*FACEBOOK GALLERY CSS END*/