html {
	scroll-padding-top: 80px;
	/* Adjust this based on your navbar height */
	scroll-behavior: smooth;
}

:root {
	--cerulean-blue: #275cac;
	--mauvelous: #f28fba;
	--cerulean-light: #3a7ae0;
	--mauvelous-light: #ffb6d8;
	--dark-color: #1a2e35;
}

/* Header Area */
.header-area {
    background-color: #343a40; /* Dark background for the header */
}

.main-header {
    position: relative;
}

/* Top Header Styling */
.header-top {
    background-color: #C30047; /* Darker background for top bar */
    padding: 10px 0;
	justify-content: center; /* Center all content */
    align-items: center; /* Vertically center content */
}

.header-info-left ul, .header-info-right ul {
    margin: 0;
    list-style: none;
	display: flex;
    align-items: center;
    justify-content: center; /* Center items horizontally */
}

.header-info-left li, .header-info-right li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #fff; /* White text for header info */
}

.header-info-left li i, .header-info-right li i {
    margin-right: 5px;
}

.header-info-left li {
    font-size: 16px;
	
}

.header-info-right .header-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-social li {
    margin-left: 10px;
}

.header-social li a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.header-social li a:hover {
    color: #007bff; /* Blue color on hover for social icons */
}

/* Responsive Styles for smaller screens */
@media (max-width: 991px) {
    .header-top {
        padding: 5px 0;
    }

    .header-info-left li, .header-info-right li {
        font-size: 14px;
    }

    .header-info-right .header-social {
        margin-left: auto;
    }

    .header-info-left li {
        margin-right: 10px;
    }

    .header-social li a {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header-info-left, .header-info-right {
        text-align: center;
        width: 100%;
    }

    .header-info-left ul, .header-info-right ul {
        display: block;
        margin: 0 auto;
    }

    .header-info-left li, .header-info-right li {
        display: block;
        margin-bottom: 10px;
    }

    .header-social li {
        margin-left: 15px;
        margin-bottom: 10px;
    }

    .header-social li a {
        font-size: 20px;
    }
}
.navbar {
	background-color: white;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	padding: 0.8rem 1rem;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	< !-- background-color: var(--cerulean-blue);
	-->
}

.navbar.scrolled .nav-link {
	< !-- color: rgba(255, 255, 255, 0.85) !important;
	-->
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
	< !-- color: white !important;
	-->
}

.navbar.scrolled .navbar-brand {
	< !-- color: white !important;
	-->
}

.navbar-brand {
	padding: 0;
	margin: 0;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--cerulean-blue) !important;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.navbar-brand img {
	height: 80px;
	/* or 50-70px as needed */
	margin: 0;
	padding: 0;
	display: inline-block;
}

.navbar-brand i {
	margin-right: 10px;
	font-size: 1.5rem;
	color: var(--mauvelous);
}

.nav-link {
	color: var(--cerulean-blue) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	margin: 0 0.2rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link:focus {
	color: var(--cerulean-light) !important;
	background: rgba(39, 92, 172, 0.05);
}

.nav-link.active {
	color: var(--cerulean-blue) !important;
	font-weight: 600;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 3px;
	background: var(--mauvelous);
	border-radius: 3px;
}

/* Improved Carousel Styles */
.carousel-img-wrapper {
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.carousel-img {
	width: 100%;
	height: auto;
	display: block;
}

.carousel-caption {
	background: rgba(0, 0, 0, 0.5);
	padding: 1rem;
	text-align: center;
	color: #fff;
}

.carousel-caption h1 {
	font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.carousel-caption p {
	font-size: clamp(1rem, 2vw, 1.2rem);
}

.carousel-caption .btn {
	margin-top: 0.5rem;
}



/* Section Styling */
.section {
	padding: 50px 0;
}

.section-title {
	color: var(--primary-color);
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 40px;
	font-weight: 700;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: #f28fba;
}

.section-subtitle {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.dropdown-menu {
	border: none;
	border-radius: 0.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	border-top: 3px solid var(--mauvelous);
}

.dropdown-item {
	padding: 0.5rem 1.5rem;
	transition: all 0.2s ease;
	color: #333;
}

.dropdown-item:hover,
.dropdown-item:focus {
	background-color: var(--mauvelous);
	color: white !important;
	transform: translateX(5px);
}

.dropdown-divider {
	margin: 0.3rem 0;
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.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='%23275cac' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-primary {
	background-color: var(--cerulean-blue);
	border-color: var(--cerulean-blue);
}

.btn-outline-primary {
	color: var(--cerulean-blue);
	border-color: var(--cerulean-blue);
}

.btn-outline-primary:hover {
	background-color: var(--cerulean-blue);
	color: white;
}

.btn-pink {
	background-color: var(--mauvelous);
	border-color: var(--mauvelous);
	color: white;
}

.btn-pink:hover {
	background-color: var(--mauvelous-light);
	border-color: var(--mauvelous-light);
	color: white;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.navbar-collapse {
		background-color: white;
		padding: 1rem;
		border-radius: 0.5rem;
		margin-top: 0.5rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.nav-link {
		margin: 0.2rem 0;
	}

	.dropdown-menu {
		box-shadow: none;
		background-color: rgba(242, 143, 186, 0.05);
		margin-left: 1rem;
		border-left: 3px solid var(--mauvelous);
		border-top: none;
	}
}

/* Cards */
.card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 25px;
	height: 100%;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
	height: 200px;
	object-fit: cover;
}

.card-body {
	padding: 25px;
}

.card-title {
	color: var(--primary-color);
	font-weight: 600;
}


.media-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
	min-height: 400px;         /* taller cards */
}

.media-card-body {
      padding: 20px 25px;

}

.media-title {
    font-weight: bold;
    color: #333;
}

.media-img {
   width: 100%;
  height: 300px;
    object-fit: contain;

  border-radius: 12px;
  transition: transform 0.4s ease;
}
.media-card:hover .media-img {
  transform: scale(1.05);
}
.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}

#imageModal .modal-body {
    text-align: center;
}

#modalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}
.aboutus-img {
	height: 90%;
	width: 100%;
	/* Or set a fixed width like 300px if needed */
	object-fit: cover;
	border-radius: 12px;
	/* Soft rounded corners */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	/* Soft shadow */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* About Founder */
.founder-section {
	background-color: var(--secondary-color);
	border-radius: 10px;
	overflow: hidden;
}

.founder-img {
	height: 90%;
	width: 100%;
	/* Or set a fixed width like 300px if needed */
	object-fit: cover;
	border-radius: 12px;
	/* Soft rounded corners */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	/* Soft shadow */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.founder-img:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.donate-cta {
	background-color: #ff6b35;
	color: white;
	padding: 50px 0;
	text-align: center;
}

/* Footer */
footer {
	background-color: #343a40;
	color: white;
	padding: 60px 0 20px;
}

.footer-logo img {
	height: 70px;
	margin-bottom: 20px;
}

.footer-links h5 {
	color: white;
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-links ul {
	list-style: none;
	padding-left: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #adb5bd;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	margin-right: 10px;
	transition: all 0.3s;
}

.social-icons a:hover {
	background-color: #f28fba;
	transform: translateY(-5px);
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	margin-top: 40px;
}


.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.brand-name {
	font-weight: bold;
	font-size: 1.1rem;
	margin-left: 10px;
}

.brand-tagline {
	font-size: 0.75rem;
	color: #666;
	/* Adjust to match your design */
	margin-top: 2px;
	margin-left: 2px;

}

.logo-img {
	height: 40px;
	transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
	transform: scale(1.3);
	/* Zooms the logo on hover */
}

.annoucement-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.marquee-container {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.marquee {
	display: flex;
	gap: 30px;
	white-space: nowrap;
	animation: scroll-left 20s linear infinite;
}

.marquee a {
	font-size: 1.25rem;
	color: #13406C;
	text-decoration: none;
}

.marquee:hover {
	animation-play-state: paused;
}

.play-pause-btn {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin-left: 15px;
}

@keyframes scroll-left {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.navbar-nav {
	flex-wrap: wrap !important;
}

.navbar .container {
	padding-left: 0 !important;
}

.card .fa {
	transition: all 0.4s ease;
}

.card:hover .fa {
	color: var(--cerulean-blue);
	text-shadow: 0 0 8px var(--cerulean-light), 0 0 15px var(--mauvelous);
}

/* Back to top button */
#backToTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--cerulean-blue);
	color: #fff;
	border: none;
	padding: 10px 15px;
	border-radius: 50%;
	font-size: 1.2rem;
	display: none;
	z-index: 1000;
}

.social-links a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: var(--cerulean-blue, #275cac);
	color: #fff;
	border-radius: 50%;
	margin: 0 5px;
	transition: background 0.3s ease;
}

.social-links a:hover {
	background: var(--mauvelous, #f28fba);
	color: #fff;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--dark-color);
}

.tab-content .tab-pane {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.tab-content .tab-pane.active {
	opacity: 1;
}

.card-cerulean {
	background-color: var(--cerulean-blue);
	color: #fff;
}

.card-mauvelous {
	background-color: var(--mauvelous);
	color: #fff;
}

.card-cerulean-light {
	background-color: var(--cerulean-light);
	color: #fff;
}

.card-mauvelous-light {
	background-color: var(--mauvelous-light);
	color: var(--dark-color);
}

.card-dark-theme {
	background-color: var(--dark-color);
	color: #fff;
}

.card .card-title {
	font-weight: bold;
}

.card .card-text {
	font-size: 0.95rem;
}
.magnify-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: none;  /* Hidden by default */
}

.card-img-top:hover .magnify-icon {
    display: block;  /* Show icon when image is hovered */
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Custom minimum height for the modal */
.modal-dialog {
    min-height: 400px; /* Set your preferred minimum height */
    margin: 30px auto; /* Optional: To center the modal */
}

.modal-content {
    height: 100%; /* Ensure the content stretches to the modal height */
}


/* Custom Carousel Indicators */
.custom-carousel-indicators {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  padding-left: 0;
  margin-top: 1rem;
  list-style: none;
  z-index: 2;
}

.custom-carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #888; /* Inactive dot */
  opacity: 0.6;
  margin: 0 6px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-carousel-indicators button.active {
  background-color: #C30047; /* Active dot (red) */
  opacity: 1;
  transform: scale(1.2);
}

.custom-carousel-indicators button:hover {
  background-color: #f28fba; /* Hover effect (pink) */
}



