
body{
    margin: 0;
    padding: 0;

}

:root
 {
   --primary-font:'Outfit', sans-serif;
    --Secondary-font:'Jost', sans-serif;
    --pre-header-color:#ffb21b;
    --nav-color:#633b35;
    --font-color:#fff;
    --card-color:#4b0f0a;
}


.sec-padding{
    padding: 70px 0;
}

/*pre-hesder style */

.pre-header {
    background-color:#ffb21b; 
    padding: 8px 0;
}
.social-icons a {
    font-size: 18px;
    color: #633b35;
    transition: 0.3s;
    text-decoration: none;
    padding-left: 5px;
    transition: all .2s ease;
}

.social-icons a:hover {
    color: white;
}



.pre-logo img {
    height: 80px;
}

.pre-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-icons {
    margin-top: 6px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.donate-btn {
    background-color: var(--nav-color);
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    font-family: var(--primary-font);
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: color 0.3s ease;
}

/* LEFT SLIDE */
.donate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0.18);
    transition: left 0.4s ease;
}

/* RIGHT SLIDE */
.donate-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0.18);
    transition: right 0.4s ease;
}

/* HOVER EFFECT */
.donate-btn:hover::before {
    left: 0;
}

.donate-btn:hover::after {
    right: 0;
}





/* .donate-btn:hover {
    background-color:var(--pre-header-color);
    color: #fff;
} */

/*pre-hesder end */




/*navbar style */


.offcanvas-header{
    background-color: var(--pre-header-color);
}

.navbar{
    background-color:var(--nav-color);
    padding: 0;
    line-height: 18px;
}


.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.btn-close:focus{
    outline: none;
    box-shadow: none;
}
.navbar-nav .nav-link{
    font-size: 16px;
}
.navbar-nav .nav-link.active {
    color: var(--pre-header-color);
}
.navbar-toggler{
    border: none;
    font-size: 16px;
}
/* Navbar links */
.navbar .nav-link {
   
    padding: 10px 15px;
    transition: color 0.3s ease;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: var(--primary-font);
}

.nav-item{
    padding-left: 35px;
}
.navbar .nav-link:hover {
    color: var(--pre-header-color);
}

/* Hover dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeDown 0.3s ease;
    background-color:var(--nav-color);
}

/* Dropdown animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown menu style */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    background-color: #7b1e1e;
  
   
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.dropdown-item{
    color: white;
    font-size: 14px;
   
    margin-bottom: 10px;
    font-family: var(--primary-font);
}
/* Icons */
.icon-btn {
    margin-left: 12px;
    position: relative;
}

.icon-btn img {
    width: 22px;
}

/* User dropdown wrapper */
.user-dropdown {
    position: relative;
}

/* Dropdown menu */
.user-menu {
    position: absolute;
    top: 140%;
    right: 0;
    width: 180px;
    background: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* Show on hover */
.user-dropdown:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu links */
.user-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.user-menu li a:hover {
    background: #f5f5f5;
}

/* Divider */
.user-menu .divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

/* Logout color */
.user-menu .logout {
    color: #e63946;
}

/* Icons */
.icon-btn {
    margin-left: 12px;
    position: relative;
}

.icon-btn img {
    width: 22px;
}


.navbar-brand img{
    width: 70px;
    height: 70px;
}

.offcanvas-header img{
    width: 80px;
    height: 80px;
}

.offcanvas-body{
    background-color:var(--nav-color);
    color: white;
}

.navbar-toggler {
    border-color: #ffffff; /* optional */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* navbar style end */



.section-title {
     font-size: 30px;
     font-weight: bold;
     font-weight: 600;
     font-family: var(--primary-font);
     color: #343434;
     position: relative;
     display: inline-block;
     
    
}
 .section-title::after{
    content: "";
    width: 60px;
    height: 3px;
    background: #6f3831;
    position: absolute;
    left: 50%;
    border-radius: 50px;
    transform: translateX(-50%);
    bottom: -10px;
    
} 


.event-card{
   
    background-color:var(--card-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:hover {
      transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
   
}

.event-card h4{
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700; 
    color: white;
    margin-top: 20px;
    letter-spacing: 0.8px;

}
.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-card h5{
 color:#d0a867;
font-size: 16px;
font-family: var(--Secondary-font);
}
.event-item{
    padding: 14px;
  
}





.details{
    padding: 10px 12px;
    background-color: #ffd683;
    color: #6f382e;
    font-family: var(--Secondary-font);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #e2b766;
    transition: all 0.3s ease;
}


.details:hover{
    background-color: #f3c55e;    
    color: #5a2b22;
    box-shadow: 0 4px 10px rgba(111,56,46,0.25);
    transform: translateY(-1px);
}


.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background:var(--nav-color);
  border-radius: 50%;
  color: white;
  transition: 0.3s ease;
}


.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}


.swiper-button-next:hover,
.swiper-button-prev:hover {
  background:var(--pre-header-color);
  color: white;
}



.puja-gallery {

    background-image: url(../img/backgroundphoto.jpg);
    object-fit: cover;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
}







/* Sponsors */
.sponsor-logos img {
    max-height: 100px;
    margin-bottom: 40px;
  
    opacity: 0.9;
   
}

/* Text */
.connect-title {
   font-family: var(--primary-font);
    font-size: 30px;
    color: #633b35;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    

}

.connect-subtitle {
    font-size: 15px;
    color: #6f3831;
    margin-bottom: 18px;
    font-size: 18px;
    font-family: var(--primary-font);
}

/* Subscribe Form */

.oikotan-sub{

    background-image: url(../img/footer-bg-1.png);
    object-fit: cover;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}
.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 520px;
    margin: auto;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 22px;
    border-radius: 40px 0 0 40px;
    border: none;
    background: #6f3831;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: #f3cfc4;
}

.subscribe-form button {
    padding: 14px 35px;
    border-radius: 0 40px 40px 0;
    border: none;
    background:var(--pre-header-color);
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    font-family: var(--primary-font);
}

.subscribe-form button:hover {
    background: #fca311;
}

.oikotan-sub-item{
    margin-top: 55px;
}
.oikotan-footer {
    background-color: var(--pre-header-color);
    font-family: var(--primary-font);
    font-size: 20px;
    text-align: center;
    padding: 15px 10px;
    font-size: 15px;
    color: var(--nav-color);
   
}

/*gallery */

/* CARD WRAPPER */
.gallery-item-box .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow:0 0 10px 0 #d1d1d1;
}

.gallery-item-box .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* IMAGE */
.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* REMOVE OLD HOVER STYLE */
.gallery-text {
    position: static;   
    background:#ffb21b;
    color: #333;
    text-align: center;
    padding: 15px;
    font-weight:500;
    font-family: var(--primary-font);
}

.gallery-texts {
    position: static;   
    background:#f0e7d9;
    color: #333;
    text-align: center;
    padding: 15px;
    font-weight:500;
    font-family: var(--primary-font);
}
/* TITLE */
.gallery-texts h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

/* BUTTON */
.gallery-texts a {
    display: inline-block;
    padding: 8px 15px;
    background: var(--pre-header-color);
    color: #6f382e;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight:600;
    transition: 0.3s;
   font-family: var(--primary-font);
}

.gallery-texts a:hover {
    background: #6f382e;
    color: #fff;
}
/*swiper style */
/* Event Swiper Custom Styles */

.eventSwiper{
   
    max-width: 1100px;
    overflow: hidden;
    margin: 0 60px 35px;
    padding: 20px 10px;

}

/* event style */

.event-banner{
 position: relative;
}
.event-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); 
    z-index: 1;
}

.event-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    text-align: center;
    color: #fff;

}

.event-text h1{
    font-family: var(--primary-font);
    font-size: 35px;
    color: #f4e3b2;
    text-shadow: 1px 2px 3px rgb(0 0 0 / 70%);
}


/*event details style */



.event-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 40px;
    font-family: var(--primary-font);
    color: var(--nav-color);
}

.event-meta ul{
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.event-meta li {
    font-size: 14px;
}

.event-desc p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-family: var(--Secondary-font);
    color:#4a4a4a;
}

.event-meta {
    list-style: none;
    padding: 0;
}

.event-meta li {
    margin-bottom: 6px;
    font-size: 14px;
}

.event-meta .date {
    color:#5c5c5c;
    font-weight: 600;
    font-family: var(--Secondary-font);
}

.event-meta .time {
    color:#5c5c5c;
    font-weight: 600;
    font-family: var(--Secondary-font);
}

.event-meta .venue {
    color:#5c5c5c;
    font-weight: 600;
    font-family: var(--Secondary-font);
}

.purchase{

    background-color:var(--nav-color);
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    font-family: var(--Secondary-font);
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: color 0.3s ease;
}

.purchase:hover{
 background: var(--pre-header-color);
color: var(--nav-color);
}
.event-poster img{
    border-radius: 8px;
}
/*antorik Style  */

.antorik-card{
    background-color: var(--card-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 18%);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  
}


.antorik-item{
    padding: 14px; 
    margin-bottom: -9px;

}
.antorik-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.antorik-card img{
    width: 100%;
    height: 250px;
}

.antorik-card h4 {
    font-family: var(--Secondary-font);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    letter-spacing: 0.8px;
}


.antorik-card h5 {
    color: #d0a867;
    font-size: 12px;
    font-family: var(--Secondary-font);}


.anto-details {
    padding: 8px 8px;
    background-color: #ffd683;
    color: #6f382e;
    font-family: var(--Secondary-font);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid #e2b766;
    transition: all 0.3s ease;
}

.anto-details:hover{
    background-color: #f3c55e;    
    color: #5a2b22;
    box-shadow: 0 4px 10px rgba(111,56,46,0.25);
    transform: translateY(-1px);
}


/*about style section */
.member{
   /* background-image: url(../img/mission.jpg);*/
    /* object-fit: cover;
    height: auto;
    padding-top: 10px; */
    background-color: #f3c55e;
}
.about-info p{
font-family: var(--Secondary-font);
font-size: 15px;

}
.about-info h4{
 font-family: var(--primary-font);
 font-size: 26px;
 font-weight: 700;
 letter-spacing: 2px;
 margin-bottom: 14px;
 color: var(--nav-color);
}

.about-img img{
    width: 400px;
    height: 400px;
}


.member-item{
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0  0 10px 0 #d1d1d1;
}
.member-img img{
    width: 60px;
    margin-bottom: 10px;
    margin-bottom: 10px;
    border: 2px solid #ffb21b; 
    border-radius: 52px;
}

.member-info p{
    font-size: 14px;
    font-family: var(--Secondary-font);
}
.member-info h4{
    font-size: 18px;
    font-family: var(--primary-font);
}


.testi-Swiper{
   
    max-width: 1100px;
    overflow: hidden;
    margin: 0 60px 35px;
    padding: 20px 10px;

}




  

  
 
 
  
 
  .btn-group .btn-outline-dark:hover,
  .btn-group .btn.active {
    background:var(--card-color);
    color: #fff;
    border-color:navajowhite;
  }
  
  /* Sort buttons */
  .btn-outline-primary {
    border-radius: 30px !important;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .grid-item .card-body {
      font-size: 16px;
      padding: 24px 16px;
    }
  }
  

  section {
    clear: both;
    position: relative;
}
.gallery-grid {
    margin-bottom: 60px;
}


.row::after {
    content: "";
    display: block;
    clear: both;
}
.gallery-grid,
.video .grid {
    min-height: 1px;
}
.video-thumb {
    position: relative;
    padding-top: 56.25%; /* 16:9 ratio */
}

.video-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.antorik-card{
    background-color: var(--card-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 18%);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  
}


.antorik-item{
    padding: 14px;

}

.antorik-card img{
    width: 100%;
    height: 250px;
}

.antorik-card h4 {
    font-family: var(--Secondary-font);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    letter-spacing: 0.8px;
}


.antorik-card h5 {
    color: #d0a867;
    font-size: 12px;
    font-family: var(--Secondary-font);}


.anto-details {
    padding: 8px 8px;
    background-color: #ffd683;
    color: #6f382e;
    font-family: var(--Secondary-font);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid #e2b766;
    transition: all 0.3s ease;
}

.anto-details:hover{
    background-color: #f3c55e;    
    color: #5a2b22;
    box-shadow: 0 4px 10px rgba(111,56,46,0.25);
    transform: translateY(-1px);
}


.antorik-grid {
    position: relative;
}

.antorik-iso-item {
    width: 25%;        /* col-md-3 = 4 item */
    padding: 0 12px;   /* bootstrap gutter match */
    box-sizing: border-box;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .antorik-iso-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .antorik-iso-item {
        width: 100%;
    }
}
.btn-group {
    border-radius: 25px;
    
}

/*contact style */


.contact-banner{
    position: relative;
}


.contact-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    text-align: center;
    color: #fff;

}

.contact-text  h1{
    font-family: var(--primary-font);
    font-size: 45px;
    
   
    color: #f4e3b2;
    background-color: #7b1e1e;
    padding: 20px;
    text-shadow: 1px 2px 3px rgb(0 0 0 / 70%);
}


.contact-section {
    background: #e9e2d3;
    padding: 80px 0;
   font-family: var(--primary-font);
}

.section-header h2 {
    color: #7a4a22;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b5a45;
    font-size: 15px;
}

.contact-card {
    background: #fff3d8;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    height: 100%;
}

.contact-card::before,
.contact-card::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid #d8b26e;
}

.contact-card::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.contact-card::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: #7a4a22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
}

.contact-card h5 {
    color: #7a4a22;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--Secondary-font);
}

.contact-card p {
    color: #5e4b36;
    font-size: 14px;
    line-height: 1.6;
}


.message-section {
    background:#f0e3c5c5;
    padding: 80px 0;
    font-family: var(--primary-font);
}

.section-header h2 {
    color: #7a4a22;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b5a45;
    font-size: 14px;
    font-family: var(--Secondary-font);
}

.message-form {
    background: #ffe3a4;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}

.message-form label {
    font-size: 15px;
    color: #5e4b36;
    margin-bottom: 5px;
    font-family: var(--Secondary-font);
}

.message-form .form-control {
    background: #fff7e6;
    border: 1px solid #d9c39a;
    border-radius: 6px;
    font-size: 14px;
}

.message-form .form-control:focus {
    border-color: #7a4a22;
    box-shadow: none;
}

.btn-send {
    background: #7a4a22;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 14px;
    font-family: var(--Secondary-font);
}

.btn-send:hover {
    background: #5e381a;
}

.map-box {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}
.contact-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.object-fit-cover{
    object-fit: cover;
}

.oikotan-project{
    transition: 0.3s;
}

.oikotan-project:hover{
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.oikotan-project p{
    font-family: var(--Secondary-font);
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    color: var(--card-colors);
}

.oikotan-project-info{
    background-color: #ffd683;
}


.mission-vision {
    background: #f8f9fa;
}

.mission h3{
    font-family: var(--primary-font);
    font-size: 26px;
    color: var(--card-color);
    font-weight: 500;
}
.mission p{
    font-size: 15px;
    font-family: var(--Secondary-font);
}


.leadership-card {
    background: #efefef;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leadership-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.leadership-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--primary-font);
    font-size: 16px;
}

.leadership-card .post {
    font-size: 14px;
    font-weight: 500;
    color: #0d6efd;
    margin-bottom: 10px;
}

.leadership-card .detailse {
    font-size: 14px;
    color: #323131;
    font-family: var(--Secondary-font);
}

.charter-hero{
    background: #b99e79;
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.charter-hero h1{
    font-weight:700;
    font-family: var(--primary-font);
}
.charter-content p{
    font-size: 14px;
    font-family: var(--Secondary-font);
}
.charter-content{
    background:#fff;
    padding:60px;
    margin-top:-40px;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.charter-content h2{
    margin-top:40px;
    font-weight:700;
    border-bottom:2px solid #ddd;
    padding-bottom:10px;
    font-family: var(--primary-font);
}
.charter-content h4{
    margin-top:25px;
    font-weight:600;
    font-family: var(--primary-font);
}
.charter-content ul{
    padding-left:25px;
}
.lg-close::after {
    content: "✕" !important;
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
}

.gallery-section {
    padding: 18px 0;
}

/* IMAGE CARD */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
/* LIGHTGALLERY FIX */
.lg-toolbar {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 99999 !important;
}

.lg-close {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 22px !important;
    color: #fff !important;
}

/* ensure full layer visible */
.lg-outer {
    z-index: 99999 !important;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23ffffff' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1 3 8l8 7' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23ffffff' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1l8 7-8 7' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}
.leadership {
    background-color: #cfbca2;
}