/* Common Hero Styles */
.hero,
.about-hero,
.event-hero {
    background: url('../images/home_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-shadow: 1px 1px 8px #000;
}

.hero {
    padding: 100px 0 60px 0;
    position: relative;
}

.about-hero,
.event-hero {
    min-height: 350px;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-title {
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

/* Footer Styles */
.footer {
    background: #222;
    color: #ccc;
    padding: 2rem 0;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: #333 !important;
    transition: all 0.3s ease;
}

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

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(10deg);
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #000 !important;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #000 !important;
    background: rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-item .nav-link.active {
    color: #000000 !important;
    font-weight: 600;
    position: relative;
}
.navbar-nav .nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffc107;
}

.btn-donate {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    color: #000 !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #ff9800, #ffc107);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Event Card Styles */
.event-card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 3px 12px rgba(0,0,0,0.12);
}

.event-card img {
    height: 300px;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: filter 0.3s;
}

.event-card:hover img {
    filter: brightness(0.92) saturate(1.2);
}

.event-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(90deg, #ff9800, #ffc107);
    color: #fff;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.card-body {
    position: relative;
    padding-top: 1.5rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.section-top {
    text-align: center;
    margin-bottom: 40px;
}

.section-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #ffc107;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-line {
    display: block;
    width: 80px;
    height: 3px;
    background: #ffc107;
    margin: 0 auto;
    position: relative;
}

.section-line:before,
.section-line:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #ffc107;
    top: 0;
}

.section-line:before {
    left: -40px;
}

.section-line:after {
    right: -40px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(200, 169, 126, 0.25);
}

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

.btn-primary {
    background: #ffc107;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #ffc107;
    margin-right: 15px;
    margin-top: 5px;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.info-content p {
    color: #666;
    margin: 0;
}

/* Social Links Styles */
.social-links {
    margin-top: auto;
}

.social-links h4 {
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background: #ffc107;
    color: #fff;
    transform: translateY(-3px);
}

/* Map Styles */
.map-wrapper {
    margin-top: 50px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive Styles for Contact Section */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 30px;
    }

    .info-item {
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .nav-link {
        margin: 0.5rem 0;
    }
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Button Variants */
.btn-primary {
    background: #ffc107;
    color: #fff;
    border-color: #ffc107;
}

.btn-primary:hover {
    background: #ff9800;
    border-color: #ff9800;
}

.btn-outline-primary {
    background: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-primary:hover {
    background: #ffc107;
    color: #fff;
}

.btn-success {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.btn-success:hover {
    background: #218838;
    border-color: #218838;
}

.btn-warning {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.btn-warning:hover {
    background: #e0a800;
    border-color: #e0a800;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #333;
}

.btn-outline-secondary {
    background: transparent;
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: #fff;
}

/* Rounded Pill Buttons */
.btn.rounded-pill {
    border-radius: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Button with Icon */
.btn i {
    font-size: 1.1em;
}

/* Button Groups */
.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}

/* Responsive Button Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.625rem 1.25rem;
    }

    .btn-sm {
        padding: 0.375rem 0.875rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
    }
}

.top-padding{
    padding-top: 85px;
}
@media (max-width: 600px) {
    .top-padding{
        padding-top: 115px;
    }
}

.carousel-bg {
    background: url('../images/banner/banner1.jpg') center center/cover no-repeat;
    min-height: 560px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: 100% auto;
    }
    @media (max-width: 600px) {
    .carousel-bg {
    min-height: 170px;
    background-size: 100% 100%;
    background-position: center;
    }
    }

    .carousel-bg-1 { background-image: url('../images/banner/banner1.jpg'); }
    .carousel-bg-2 { background-image: url('../images/banner/banner2.jpg'); }
    .carousel-bg-3 { background-image: url('../images/banner/banner3.jpg'); }


    /* Home Page News Slider */
	#news-slider {
	margin-top: 80px;
	}
	.post-slide {
	background: #fff;
	margin: 20px 15px 20px;
	border-radius: 15px;
	padding-top: 1px;
	box-shadow: 0px 14px 22px -9px #bbcbd8;
	height: 550px;
	display: flex;
	flex-direction: column;
	}
	.youtube-slide {
	 background: #fff;
	 margin: 20px 15px 20px;
	 border-radius: 15px;
	 padding: 20px;
	 box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
	 height: 200px;
	 display: flex;
	 flex-direction: column;
	 transition: all 0.3s ease;
	 border: none;
	}
	.youtube-slide:hover {
		transform: translateY(-5px);
		box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
	}
	.post-slide .post-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 350px;
	}
	.post-slide .post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left top;
	transform: scale(1, 1);
	transition: transform 0.2s linear;
	}
	.post-slide:hover .post-img img {
	transform: scale(1.1, 1.1);
	}
	.post-slide .over-layer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
	);
	transition: all 0.5s linear;
	}
	.post-slide:hover .over-layer {
	opacity: 1;
	text-decoration: none;
	}
	.post-slide .over-layer i {
	position: relative;
	top: 45%;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 25px;
	}
	.post-slide .post-content {
	background: #fff;
	padding: 2px 20px 40px;
	border-radius: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
	}
	.post-slide .post-title {
	text-decoration: none;
	color: #3498db;
	font-size: 18px;
	padding-top: 10px;
	}
	.post-slide .post-description {
	line-height: 24px;
	color: #808080;
	margin-bottom: 25px;
	flex: 1;
	}
	.post-slide .post-date {
	color: #a9a9a9;
	font-size: 14px;
	}
	.post-slide .post-date i {
	font-size: 20px;
	margin-right: 8px;
	color: #cfdace;
	}
	.post-slide .post-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	.post-slide .read-more {
	padding: 7px 20px;
	float: right;
	font-size: 12px;
	background: #2196f3;
	color: #ffffff;
	box-shadow: 0px 10px 20px -10px #1376c5;
	border-radius: 5px;
	text-transform: uppercase;
	text-decoration:none
	}
	.post-slide .read-more:hover {
	background: #3498db;
	text-decoration: none;
	color: #fff;
	}
	.owl-controls .owl-buttons {
	text-align: center;
	margin-top: 20px;
	}
	.owl-controls .owl-buttons .owl-prev {
	position: absolute;
	top: 50%;
	left: 15px;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	}
	.owl-controls .owl-buttons .owl-next {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	box-shadow: -3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	}
	.owl-controls .owl-buttons .owl-prev:after,
	.owl-controls .owl-buttons .owl-next:after {
	content: "\f104";
	font-family: FontAwesome;
	color: #333;
	font-size: 20px;
	}
	.owl-controls .owl-buttons .owl-next:after {
	content: "\f105";
	}
	@media only screen and (max-width: 1280px) {
	.post-slide .post-content {
    padding: 0px 15px 25px 15px;
	}
	}
	.youtube-slide .post-content {
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	}
	.youtube-slide .post-title {
	color: #2c3e50;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	padding: 0;
	}
	.youtube-slide .post-description {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 15px;
	flex: 1;
	}
	.youtube-slide .post-footer {
	margin-top: auto;
	display: flex;
	justify-content: flex-end;
	}
	.youtube-slide .btn-outline-primary {
	border: 2px solid #3498db;
	color: #3498db;
	font-weight: 500;
	padding: 8px 20px;
	border-radius: 5px;
	transition: all 0.3s ease;
	}
	.youtube-slide .btn-outline-primary:hover {
	background: #3498db;
	color: #fff;
	transform: scale(1.05);
	}
	#youtube-slider .owl-nav button {
	background: #fff !important;
	width: 40px;
	height: 40px;
	border-radius: 50% !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	}
	#youtube-slider .owl-nav button:hover {
	background: #3498db !important;
	color: #fff !important;
	}
	#youtube-slider .owl-nav button.owl-prev {
	left: -20px;
	}
	#youtube-slider .owl-nav button.owl-next {
	right: -20px;
	}
	.youtube-slide .read-more-toggle {
	 color: #3498db;
	 font-size: 13px;
	 font-weight: 500;
	 transition: all 0.3s ease;
	}
	.youtube-slide .read-more-toggle:hover {
	 color: #2980b9;
	 text-decoration: none;
	}
	.activity-slide {
	 background: #fff;
	 margin: 20px 15px 20px;
	 border-radius: 15px;
	 padding-top: 1px;
	 box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
	 height: 550px;
	 display: flex;
	 flex-direction: column;
	 transition: all 0.3s ease;
	}
	.activity-slide:hover {
	 transform: translateY(-5px);
	 box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
	}
	.activity-slide .post-img {
	 height: 300px;
	 overflow: hidden;
	 border-radius: 5px 5px 0 0;
	}
	.activity-slide .post-img img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 transition: transform 0.3s ease;
	}
	.activity-slide:hover .post-img img {
	 transform: scale(1.1);
	}
	.activity-slide .post-content {
	 padding: 20px;
	 display: flex;
	 flex-direction: column;
	 flex: 1;
	}
	.activity-slide .post-title {
	 color: #2c3e50;
	 font-size: 18px;
	 font-weight: 600;
	 margin-bottom: 10px;
	}
	.activity-slide .post-description {
	 color: #666;
	 font-size: 14px;
	 line-height: 1.5;
	 margin-bottom: 15px;
	 flex: 1;
	}
	.activity-slide .post-footer {
	 margin-top: auto;
	 display: flex;
	 justify-content: flex-end;
	}
	.activity-slide .btn-outline-primary {
	 border: 2px solid #3498db;
	 color: #3498db;
	 font-weight: 500;
	 padding: 8px 20px;
	 border-radius: 5px;
	 transition: all 0.3s ease;
	}
	.activity-slide .btn-outline-primary:hover {
	 background: #3498db;
	 color: #fff;
	 transform: scale(1.05);
	}
	.activity-slide .read-more-toggle {
	 color: #3498db;
	 font-size: 13px;
	 font-weight: 500;
	 transition: all 0.3s ease;
	}
	.activity-slide .read-more-toggle:hover {
	 color: #2980b9;
	 text-decoration: none;
	}
	#activities-slider .owl-nav button {
	 background: #fff !important;
	 width: 40px;
	 height: 40px;
	 border-radius: 50% !important;
	 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	 transition: all 0.3s ease;
	}
	#activities-slider .owl-nav button:hover {
	 background: #3498db !important;
	 color: #fff !important;
	}
	#activities-slider .owl-nav button.owl-prev {
	 left: -20px;
	}
	#activities-slider .owl-nav button.owl-next {
	 right: -20px;
	}
	.event-slide {
	 background: #fff;
	 margin: 20px 15px 20px;
	 border-radius: 15px;
	 padding-top: 1px;
	 box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
	 height: 550px;
	 display: flex;
	 flex-direction: column;
	 transition: all 0.3s ease;
	}
	.event-slide:hover {
	 transform: translateY(-5px);
	 box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
	}
	.event-slide .post-img {
	 height: 300px;
	 overflow: hidden;
	 border-radius: 5px 5px 0 0;
	}
	.event-slide .post-img img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 transition: transform 0.3s ease;
	}
	.event-slide:hover .post-img img {
	 transform: scale(1.1);
	}
	.event-slide .post-content {
	 padding: 20px;
	 display: flex;
	 flex-direction: column;
	 flex: 1;
	}
	.event-slide .post-title {
	 color: #2c3e50;
	 font-size: 18px;
	 font-weight: 600;
	 margin-bottom: 10px;
	}
	.event-slide .event-date {
	 color: #666;
	 font-size: 13px;
	 margin-bottom: 15px;
	 line-height: 1.6;
	}
	.event-slide .event-date i {
	 color: #3498db;
	 margin-right: 5px;
	}
	.event-slide .post-description {
	 color: #666;
	 font-size: 14px;
	 line-height: 1.5;
	 margin-bottom: 15px;
	 flex: 1;
	}
	.event-slide .post-footer {
	 margin-top: auto;
	 display: flex;
	 justify-content: flex-end;
	}
	.event-slide .btn-outline-primary {
	 border: 2px solid #3498db;
	 color: #3498db;
	 font-weight: 500;
	 padding: 8px 20px;
	 border-radius: 5px;
	 transition: all 0.3s ease;
	}
	.event-slide .btn-outline-primary:hover {
	 background: #3498db;
	 color: #fff;
	 transform: scale(1.05);
	}
	.event-slide .read-more-toggle {
	 color: #3498db;
	 font-size: 13px;
	 font-weight: 500;
	 transition: all 0.3s ease;
	}
	.event-slide .read-more-toggle:hover {
	 color: #2980b9;
	 text-decoration: none;
	}
	#events-slider .owl-nav button {
	 background: #fff !important;
	 width: 40px;
	 height: 40px;
	 border-radius: 50% !important;
	 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	 transition: all 0.3s ease;
	}
	#events-slider .owl-nav button:hover {
	 background: #3498db !important;
	 color: #fff !important;
	}
	#events-slider .owl-nav button.owl-prev {
	 left: -20px;
	}
	#events-slider .owl-nav button.owl-next {
	 right: -20px;
	}

	/* Enhanced Others Activities Section Styles */
	#activities-slider {
		position: relative;
		padding: 20px 0;

		.activity-slide {
			background: linear-gradient(145deg, #ffffff, #f8f9fa);
			margin: 20px 15px;
			border-radius: 5px;
			padding: 0;
			box-shadow: 0 10px 20px rgba(0,0,0,0.05);
			height: 550px;
			display: flex;
			flex-direction: column;
			transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			position: relative;
			overflow: hidden;
			animation: slideIn 0.6s ease-out;

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

			&:hover {
				transform: translateY(-10px) scale(1.02);
				box-shadow: 0 15px 30px rgba(0,0,0,0.1);

				.post-img img {
					transform: scale(1.1) rotate(2deg);
				}

				.post-content {
					background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,1));
					transform: translateY(-5px);
				}

				.post-title {
					transform: translateX(10px);

					&::after {
						width: 100px;
						background: linear-gradient(45deg, #3498db, #2ecc71, #3498db);
						background-size: 200% 100%;
						animation: gradientMove 2s linear infinite;
					}
				}

				@keyframes gradientMove {
					0% { background-position: 0% 50%; }
					50% { background-position: 100% 50%; }
					100% { background-position: 0% 50%; }
				}

				.btn-outline-primary {
					transform: translateY(-2px) scale(1.05);
					box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);

					&::before {
						width: 100%;
						background: linear-gradient(45deg, #3498db, #2ecc71, #3498db);
						background-size: 200% 100%;
						animation: gradientMove 2s linear infinite;
					}
				}
			}

			.post-img {
				height: 300px;
				overflow: hidden;
				border-radius: 5px 5px 0 0;
				position: relative;

				&::before {
					content: '';
					position: absolute;
					top: 0;
					left: 0;
					right: 0;
					bottom: 0;
					background: linear-gradient(45deg, rgba(52, 152, 219, 0.2), rgba(46, 204, 113, 0.2));
					opacity: 0;
					transition: opacity 0.3s ease;
					z-index: 1;
				}

				&::after {
					content: '';
					position: absolute;
					bottom: 0;
					left: 0;
					right: 0;
					height: 50%;
					background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
					opacity: 0;
					transition: opacity 0.3s ease;
				}

				&:hover {
					&::before, &::after {
						opacity: 1;
					}
				}

				img {
					width: 100%;
					height: 100%;
					object-fit: cover;
					transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
				}
			}

			.post-content {
				padding: 25px;
				flex: 1;
				display: flex;
				flex-direction: column;
				background: #fff;
				transition: all 0.3s ease;

				.post-title {
					color: #2c3e50;
					font-size: 20px;
					font-weight: 600;
					margin-bottom: 15px;
					position: relative;
					padding-bottom: 10px;
					transition: transform 0.3s ease;

					&::after {
						content: '';
						position: absolute;
						bottom: 0;
						left: 0;
						width: 50px;
						height: 3px;
						background: linear-gradient(45deg, #3498db, #2ecc71);
						transition: all 0.3s ease;
					}
				}

				.post-description {
					color: #666;
					font-size: 14px;
					line-height: 1.6;
					margin-bottom: 20px;
					flex: 1;
					transition: all 0.3s ease;

					&:hover {
						color: #2c3e50;
					}
				}

				.post-footer {
					margin-top: auto;
					display: flex;
					justify-content: flex-end;

					.btn-outline-primary {
						border: 2px solid #3498db;
						color: #3498db;
						font-weight: 500;
						padding: 8px 25px;
						border-radius: 5px;
						transition: all 0.3s ease;
						position: relative;
						overflow: hidden;
						z-index: 1;

						&::before {
							content: '';
							position: absolute;
							top: 0;
							left: 0;
							width: 0;
							height: 100%;
							background: linear-gradient(45deg, #3498db, #2ecc71);
							transition: width 0.3s ease;
							z-index: -1;
						}

						&:hover {
							color: #fff;
							transform: translateY(-2px) scale(1.05);
							box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);

							&::before {
								width: 100%;
							}
						}
					}
				}
			}
		}

		/* Enhanced Navigation Buttons */
		.owl-nav {
			position: absolute;
			top: 50%;
			width: 100%;
			transform: translateY(-50%);
			display: flex;
			justify-content: space-between;
			pointer-events: none;

			button {
				width: 50px !important;
				height: 50px !important;
				border-radius: 50% !important;
				background: #fff !important;
				box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
				transition: all 0.3s ease !important;
				pointer-events: auto;
				position: relative;
				overflow: hidden;
				animation: pulse 2s infinite;

				@keyframes pulse {
					0% { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
					50% { box-shadow: 0 5px 25px rgba(52, 152, 219, 0.2); }
					100% { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
				}

				&::before {
					content: '';
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background: linear-gradient(45deg, #3498db, #2ecc71, #3498db);
					background-size: 200% 100%;
					opacity: 0;
					transition: all 0.3s ease;
				}

				&:hover {
					transform: scale(1.1);
					box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
					animation: none;

					&::before {
						opacity: 1;
						animation: gradientMove 2s linear infinite;
					}

					i {
						color: #fff;
						transform: scale(1.2);
					}
				}

				i {
					position: relative;
					z-index: 1;
					color: #3498db;
					font-size: 20px;
					transition: all 0.3s ease;
				}

				&.owl-prev {
					left: -25px;
					animation-delay: 0.5s;
				}

				&.owl-next {
					right: -25px;
				}
			}
		}
	}

	/* Enhanced Section Title Animation */
	.section-title {
		position: relative;
		margin-bottom: 40px;
		padding-bottom: 15px;
		text-align: center;
		font-weight: 600;
		color: #2c3e50;
		animation: fadeInDown 0.8s ease-out;

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

		&::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 80px;
			height: 3px;
			background: linear-gradient(45deg, #3498db, #2ecc71, #3498db);
			background-size: 200% 100%;
			transition: all 0.3s ease;
			animation: gradientMove 2s linear infinite;
		}

		&:hover {
			&::after {
				width: 120px;
				height: 4px;
			}
		}
	}

	/* Enhanced Upcoming Event Section Styles with New Animations */
	#events-slider {
		position: relative;
		padding: 20px 0;

		.event-slide {
			background: linear-gradient(145deg, #ffffff, #f8f9fa);
			margin: 20px 15px;
			border-radius: 5px;
			padding: 0;
			box-shadow: 0 10px 20px rgba(0,0,0,0.05);
			height: 550px;
			display: flex;
			flex-direction: column;
			transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			position: relative;
			overflow: hidden;
			animation: eventCardFloat 1s ease-out;

			&:hover {
				transform: translateY(-10px) scale(1.02);
				box-shadow: 0 15px 30px rgba(0,0,0,0.1);

				.post-img {
					&::before {
						opacity: 1;
						animation: shimmer 2s infinite;
					}

					@keyframes shimmer {
						0% { background-position: -200% 0; }
						100% { background-position: 200% 0; }
					}

					img {
						transform: scale(1.1) rotate(3deg);
						filter: brightness(1.1);
					}
				}

				.event-date {
					transform: translateY(-5px);

					i {
						animation: bounce 1s infinite;
					}
				}

				.post-content {
					background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,1));
					transform: translateY(-5px);
					animation: contentGlow 2s infinite;

					@keyframes contentGlow {
						0%, 100% { box-shadow: 0 0 5px rgba(255, 193, 7, 0.1); }
						50% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.2); }
					}
				}

				.post-title {
					transform: translateX(10px);

					&::after {
						width: 100px;
						background: linear-gradient(45deg, #ffc107, #ffd54f, #ffc107);
						background-size: 200% 100%;
						animation: gradientMove 2s linear infinite;
					}
				}

				.btn-outline-primary {
					transform: translateY(-2px) scale(1.05);
					box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
					animation: buttonPulse 1.5s infinite;

					&::before {
						width: 100%;
						background: linear-gradient(45deg, #ffc107, #ffd54f, #ffc107);
						background-size: 200% 100%;
						animation: gradientMove 2s linear infinite;
					}
				}
			}

			.post-img {
				height: 300px;
				overflow: hidden;
				border-radius: 5px 5px 0 0;
				position: relative;

				&::before {
					content: '';
					position: absolute;
					top: 0;
					left: 0;
					right: 0;
					bottom: 0;
					background: linear-gradient(90deg,
						rgba(255, 193, 7, 0) 0%,
						rgba(255, 193, 7, 0.2) 50%,
						rgba(255, 193, 7, 0) 100%);
					background-size: 200% 100%;
					opacity: 0;
					transition: opacity 0.3s ease;
					z-index: 1;
				}

				img {
					width: 100%;
					height: 100%;
					object-fit: cover;
					transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
				}
			}

			.post-content {
				padding: 25px;
				flex: 1;
				display: flex;
				flex-direction: column;
				background: #fff;
				transition: all 0.3s ease;

				.post-title {
					color: #2c3e50;
					font-size: 20px;
					font-weight: 600;
					margin-bottom: 15px;
					position: relative;
					padding-bottom: 10px;
					transition: transform 0.3s ease;

					&::after {
						content: '';
						position: absolute;
						bottom: 0;
						left: 0;
						width: 50px;
						height: 3px;
						background: linear-gradient(45deg, #ffc107, #ffd54f);
						transition: all 0.3s ease;
					}
				}

				.event-date {
					color: #000;
					font-size: 14px;
					margin-bottom: 15px;
					transition: all 0.3s ease;

					i {
						color: #000;
						margin-right: 5px;
						transition: all 0.3s ease;
					}
				}

				.post-description {
					color: #666;
					font-size: 14px;
					line-height: 1.6;
					margin-bottom: 20px;
					flex: 1;
					transition: all 0.3s ease;

					&:hover {
						color: #2c3e50;
					}
				}

				.post-footer {
					margin-top: auto;
					display: flex;
					justify-content: flex-end;

					.btn-outline-primary {
						border: 2px solid #ffc107;
						color: #ffc107;
						font-weight: 500;
						padding: 8px 25px;
						border-radius: 5px;
						transition: all 0.3s ease;
						position: relative;
						overflow: hidden;
						z-index: 1;

						&::before {
							content: '';
							position: absolute;
							top: 0;
							left: 0;
							width: 0;
							height: 100%;
							background: linear-gradient(45deg, #ffc107, #ffd54f);
							transition: width 0.3s ease;
							z-index: -1;
						}

						&:hover {
							color: #fff;
							transform: translateY(-2px) scale(1.05);
							box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);

							&::before {
								width: 100%;
							}
						}
					}
				}
			}
		}

		/* Enhanced Navigation Buttons with New Animations */
		.owl-nav {
			position: absolute;
			top: 50%;
			width: 100%;
			transform: translateY(-50%);
			display: flex;
			justify-content: space-between;
			pointer-events: none;

			button {
				width: 50px !important;
				height: 50px !important;
				border-radius: 50% !important;
				background: #fff !important;
				box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
				transition: all 0.3s ease !important;
				pointer-events: auto;
				position: relative;
				overflow: hidden;
				animation: navButtonFloat 2s infinite;

				&::before {
					content: '';
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background: linear-gradient(45deg, #ffc107, #ffd54f, #ffc107);
					background-size: 200% 100%;
					opacity: 0;
					transition: all 0.3s ease;
				}

				&:hover {
					transform: scale(1.1) rotate(5deg);
					box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
					animation: none;

					&::before {
						opacity: 1;
						animation: gradientMove 2s linear infinite;
					}

					i {
						color: #fff;
						transform: scale(1.2) rotate(-5deg);
					}
				}

				i {
					position: relative;
					z-index: 1;
					color: #ffc107;
					font-size: 20px;
					transition: all 0.3s ease;
				}

				&.owl-prev {
					left: -25px;
					animation-delay: 0.5s;
				}

				&.owl-next {
					right: -25px;
				}
			}
		}
	}

	/* Enhanced Event Section Title with New Animation */
	#events-slider + .section-title {
		position: relative;
		margin-bottom: 40px;
		padding-bottom: 15px;
		text-align: center;
		font-weight: 600;
		color: #2c3e50;
		animation: titleSlideIn 1s ease-out;

		&::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 80px;
			height: 3px;
			background: linear-gradient(45deg, #ffc107, #ffd54f, #ffc107);
			background-size: 200% 100%;
			transition: all 0.3s ease;
			animation: gradientMove 2s linear infinite;
		}

		&:hover {
			&::after {
				width: 120px;
				height: 4px;
				animation: underlinePulse 1s infinite;
			}
		}
	}

    /* Photo Gallery */
    .gallery {
        margin-top: 20px;
        }
        .gallery-item {
        width: calc(33.333% - 15px);
        margin-bottom: 15px;
        }
        .gallery img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 5px;
        transition: transform 0.3s;
        cursor: pointer;
        }
        .gallery img:hover {
        transform: scale(1.02);
        }
        .tab-content {
        padding: 20px 0;
        }
        .lazy {
        opacity: 0;
        transition: opacity 0.3s;
        }
        .lazy.loaded {
        opacity: 1;
        }

        /* Modal navigation styles */
        #prevBtn, #nextBtn {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #dee2e6;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        #prevBtn:hover, #nextBtn:hover {
            background: rgba(255, 255, 255, 1);
            border-color: #007bff;
            transform: scale(1.1);
        }

        #prevBtn:disabled, #nextBtn:disabled {
            background: rgba(255, 255, 255, 0.5);
            border-color: #dee2e6;
            cursor: not-allowed;
            transform: none;
        }

        #prevBtn:disabled:hover, #nextBtn:disabled:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: #dee2e6;
            transform: none;
        }

        .modal-body {
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #modalImage {
            max-height: 70vh;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .gallery-item {
                width: calc(50% - 15px);
            }
            #prevBtn, #nextBtn {
                width: 40px;
                height: 40px;
            }
        }
        @media (max-width: 576px) {
            .gallery-item {
                width: 100%;
            }
            #prevBtn, #nextBtn {
                width: 35px;
                height: 35px;
            }
            #prevBtn {
                left: 5px;
            }
            #nextBtn {
                right: 5px;
            }
        }