*{
    margin: 0;
    padding: 0;
}

:root {   
    --primary-color: #001D23;
    --secondary-color: #004d60;
    --accent-color: #FF6F0F;
    --light-color: #ffffff;
    --dark-color: #333333;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.text-light {
    color: var(--light-color);
}

.text-dark {
    color: var(--dark-color);
}


.h-90{
    height: 90vh;
}
.object-cover{
    object-fit: cover;
}

.carasol-container .carousel-item{
    position: relative;
}
.carasol-container .carousel-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}
.carasol-container .carousel-caption{
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.carousel-caption h5{
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}
.carousel-caption p{
    font-size: 20px;
    color: #ffffff;
}
.carousel-caption a{
    font-size: 16px;
    color: #ffffff;
}

.carousel-location-label {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    max-width: 80%;
}

.carousel-location-label:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.75);
}

.carousel-location-label i {
    color: var(--accent-color);
    font-size: 18px;
}

/* Gallery Start */
.gallery{
    width: 100%;
    height: auto;
    padding: 4% 0;
    background-color: #ffffff;
}
.gallery-head{
    width: 60%;
    margin: auto;
    padding-bottom: 2%;
    text-align: center;
}
.gallery-head h2{
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    /* margin-bottom: 15px; */
}
.gallery-head p{
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.4;
    /* margin-bottom: 15px; */
}
/* .gallery-img-wrapper{
    width: 100%;
    height: auto;
    margin: auto;
} */
.gallery-img-wrapper img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-img-wrapper img:hover{
    transform: scale(1.05);
}

/* Gallery carousel */
.gallery-carousel{
    max-width: 900px;
    margin: 0 auto;
}
.gallery-carousel-img{
    height: 400px;
    object-fit: cover;
}
/* Gallery End */
.programs{
    width: 100%;
    height: auto;
    padding: 4% 0;
    background-color: #ffffff;
}
.programs-container{
    width: 90%;
    height: auto;
    margin: auto;
}
.program-card{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
    height: 100%;
}
.program-card h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.program-card p{
    font-size: 15px;
    line-height: 1.5;
    color: #787878;
    margin: 0;
}
.program-icon{
    font-size: 40px;
    color: #FF6F0F;
    margin-bottom: 12px;
}

body{
    font-family: 'Poppins', sans-serif;
}

/* Global watermark background */
body::before{
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('../images/logo/sampige_logo.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 420px auto;
    opacity: 0.10;
    pointer-events: none;
    z-index: -1;
}

.t-top{
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), #004d60);
    color: #ffffff;
    font-size: 13px;
}
.t-top-inner{
    width: 96%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 6px 0;
}
.t-top-left,
.t-top-right{
    display: flex;
    align-items: center;
}
.t-label{
    margin-right: 8px;
    font-weight: 500;
}
.t-social{
    display: flex;
    align-items: center;
}
.t-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    margin-right: 6px;
    font-size: 16px;
    text-decoration: none;
}
.t-social a:hover{
    background: #FF6F0F;
    color: #ffffff;
}
.t-top-link{
    display: flex;
    align-items: center;
    margin-left: 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
}
.t-top-link i{
    margin-right: 6px;
    font-size: 16px;
}
.t-top-link:hover{
    color: #FF6F0F;
}

.top-container{
    background-color: #f8f9fa;
    padding: 10px;
    width: 100%;
    height: auto;
    border-bottom: 0.5px solid #dee2e6;
}

.header-inner{
    width: 96%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-content{
    display: flex;
    align-items: center;
}

.logo img{
    width: 80px;
    height: 80px;
}   
.logo-text{
    margin-left: 20px;
}

.logo-text h1{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.logo-text h2{
    font-size: 16px;
    margin: 0;
    padding: 0;
}
.logo-text p{
    font-size: 14px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.about{
    width: 100%;
    height: auto;
    padding: 4% 0;
    background-color: #f1f6fc;
}
.about-container{
    width: 90%;
    height: auto;
    margin: auto;
}
.about-heading{
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}
.about-text{
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.about-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.about-stat{
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}
.about-stat h3{
    color: #FF6F0F;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}
.about-stat p{
    margin: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.membership{
    width: 100%;
    height: auto;
    padding: 4% 0;
    background-color: #ffffff;
}
.membership-container{
    width: 90%;
    height: auto;
    margin: auto;
}
.m-head{
    padding-bottom: 3%;
}
.m-heading{
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.m-heading-text{
    color: var(--primary-color);
    font-size: 16px;
    /* font-weight: 600; */
    line-height: 1.4;
    text-align: center;
}
.membership-card{
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    border-radius: 10px;
    /* margin: 20px; */
}
.membership-card h3{
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);
}
.membership-icon {
    font-size: 50px;
    margin-bottom: 25px;
    vertical-align: middle;
    color: #FF6F0F;
}
.membership-card p{
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
    color: #787878;
    /* margin: 20px 0; */
}

.articles{
    width: 100%;
    height: auto;
    padding: 4% 0;
    background-color: #ffffff;
}
.articles-container{
    width: 90%;
    height: auto;
    margin: auto;
}
.article-card{
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.06);
    padding: 18px;
    height: 100%;
    position: relative; /* For stretched-link */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.article-date{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF6F0F;
    margin-bottom: 6px;
}
.article-title{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.article-excerpt{
    font-size: 14px;
    color: #787878;
    margin-bottom: 10px;
}
.article-link{
    font-size: 14px;
    color: #FF6F0F;
    text-decoration: none;
}
.article-link:hover{
    text-decoration: underline;
}

.events{
    width: 100%;
    height: auto;
    padding: 4% 0;
    background-color: #f8f9fa;
}
.events-container{
    width: 90%;
    height: auto;
    margin: auto;
}
.event-list{
    max-width: 700px;
    margin: 0 auto;
}
.event-item{
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.event-date{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #FF6F0F;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
.event-day{
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.event-month{
    font-size: 12px;
    text-transform: uppercase;
}
.event-info{
    flex: 1;
}
.event-title{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.event-meta{
    font-size: 14px;
    color: #787878;
    margin: 0;
}

.sponsors{
    width: 100%;
    height: auto;
    background-color: #f1f6fc;
    padding: 4% 0;
}
.sponsors-container{
    width: 90%;
    height: auto;
    margin: auto;
}
.sponsors-head{
    width: 60%;
    padding-bottom: 3%;
    margin: auto;
}
.sponsors-head p{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}
.sponsors-heading{
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.sponsors-heading-text{
    color: var(--primary-color);
    font-size: 16px;
    /* font-weight: 600; */
    line-height: 1.4;
    text-align: justify;

}

.i-sponsor{
    width: 100%;
    height: auto;
    text-align: center;
    /* background-color: #ffffff; */
    padding: 4% 0;
}
.i-sponsor h2{
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.i-sponsor p{
    text-align: center;
    font-size: 16px;
    /* font-weight: 600; */
    line-height: 1.4;
}

/* Sponsors custom slider layout */
.sponsors-carousel{
    position: relative;
    overflow: hidden;
}

.sponsors-track{
    display: flex;
    transition: transform 0.6s ease;
}

.sponsor-item{
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

/* Sponsors carousel */
.sponsor-logo{
    width: 265px;
    /* height: 140px; */
    /* margin: 0 10px; */
    object-fit: contain;
}

.sponsor-type{
    margin-top: 8px;
    font-size: 14px;
    color: #555555;
    text-align: center;
}

.sponsors-carousel .carousel-control-prev,
.sponsors-carousel .carousel-control-next{
    width: 5%;
}

.sponsors-carousel .carousel-control-prev-icon,
.sponsors-carousel .carousel-control-next-icon{
    width: 3rem;
    height: 3rem;
    background-color: rgba(0,0,0,0.65);
    border-radius: 50%;
    background-size: 60% 60%;
}

/* Sponsors End */

/* Events Page Start */
.page-hero{
    width: 100%;
    height: 50vh;
    background: url(../images/carousel/2.jpg) center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
/* Events Page End */

/* Footer Start */
.footer{
	width: 100%;
	height: auto;
	background: linear-gradient(135deg, var(--primary-color), #004d60);
	color: #ffffff !important;
	padding: 3% 0 1.8%;
	box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
}
.top-footer{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff !important;
	padding: 10px 0 18px;
}
.footer-logo{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.footer-logo img{
	width: 80px;
	height: 80px;
	border-radius: 14px;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}
.footer-logo p{
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 6px;
}
.footer-org-text{
	margin-left: 15px;
	max-width: 420px;
}
.footer-org-name{
	font-weight: 600;
	font-size: 15px;
}
.footer-org-desc{
	margin-bottom: 0;
}
.top-footer h6{
	color: #ffffff !important;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}
.top-footer p{
	color: #ffffff !important;
}
.top-footer ul{
	padding: 0;
	list-style: none;
}
.top-footer ul li{
	margin-bottom: 8px;
}
.top-footer ul li a{
	color: #ffffff !important;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.9;
	transition: color 0.2s ease, padding-left 0.2s ease, opacity 0.2s ease;
}
.top-footer ul li a:hover{
	color: #FF6F0F !important;
	padding-left: 4px;
	opacity: 1;
}
.footer-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 12px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 13px;
}
.footer-container p{
	margin: 0;
	padding: 0;
}
.footer-link{
    color: #FF6F0F;
    font-weight: 600;

}
/* Footer End */



/* Button Start */
.btn-primary{
    background-color: #FF6F0F !important;
    border: none;
}
.btn-invert-primary{
    /* background-color: #ffffff !important; */
    color: #FF6F0F !important;
    border: 1px solid #FF6F0F !important;
}
.btn-invert-primary:hover{
    color: var(--light-color) !important;
    background-color: var(--accent-color) !important;
}
.btn-outline-primary{
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color) !important;
}
.btn-outline-primary:hover{
    color: var(--light-color) !important;
    background-color: var(--accent-color) !important;
}

.bg-primary{
    background-color: var(--accent-color) !important;
}
/* Button End */




/* Media Queries Start */
	@media (max-width: 768px) {
		.h-90  {
			height: auto;
		}
		.footer-logo{
			flex-direction: column;
			align-items: center;
			text-align: center;
		}
		.footer-org-text{
			margin-left: 0;
			margin-top: 10px;
		}
		.footer-container{
			flex-direction: column;
			text-align: center;
			gap: 8px;
		}
        
        .carousel-location-label {
            bottom: 15px;
            right: 15px;
            padding: 6px 12px;
            font-size: 12px;
            max-width: 90%;
        }
        
        .carousel-location-label i {
            font-size: 15px;
        }
	}
/* Media Queries End */