/* ----Intro Section---- */

#intro {
	width: 100%;
	height: 100%;
	position: relative;
	background: url('../image/live-img1.JPG');
	background-repeat: no-repeat;
	background-size: cover;
}

#intro #intro-carousel,
#intro .carousel-inner,
#intro .carousel-item {
	height: 80vh; /* full viewport height */
	min-height: 360px; /* prevents tiny heights on ultra-small screens */
}

#intro .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	-o-object-fit: cover;
}

.intro-content {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.intro-content h2 {
	color: var(--primary-color);
	margin-bottom: 100px;
	font-size: 30px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
}

.intro-content h2 span {
	color: var(--secondary-color);
	text-decoration: underline;
}

#intro-carousel {
	z-index: 8;
	display: block;
}

.carousel-item {
	height: 400px;
	object-fit: cover;
}

/* ----About-Us-Section---- */

#about-us-section {
	padding-top: 60px;
}

.about-us-intro {
	margin-bottom: 30px;
}

.about-us-intro h2 {
	font-size: 32px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

.about-us-intro h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background-color: var(--secondary-color);
	bottom: 0;
	left: 0;
}

.about-us-img img {
	max-width: 100%;
	max-height: 100%;
}

.about-us-details p {
	color: #555;
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	font-style: italic;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

/* ----our-motto-section---- */

#our-motto-section {
	padding: 30px 0 0 0;
	padding-top: 60px;
}

.our-motto-header {
	margin-bottom: 30px;
}

.our-motto-header h2 {
	font-size: 32px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

.our-motto-header h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background-color: var(--secondary-color);
	bottom: 0;
	left: 0;
}

.our-motto-header p {
	color: #444;
	font-family: var(--font-family);
	font-size: 18px;
}

/* ----services-section---- */

#services-section {
	padding: 30px 0 0 0;
}

.services-header {
	margin-bottom: 30px;
}

.services-header h2 {
	font-size: 32px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

.services-header h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background-color: var(--secondary-color);
	bottom: 0;
	left: 0;
}

.services-header p {
	color: #444;
	font-size: 18px;
	font-family: var(--font-family);
}

.services-details {
	display: flex;
	justify-content: space-between;
	align-self: center;
	margin-left: -15px;
	margin-right: -15px;
}

.services-box {
	float: left;
	width: 45%;
	display: flex;
	align-items: center;
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
	background: #fff;
	transition: 0.4s;
}

.services-box:hover {
	background-color: #fff;
	transform: translateY(-8px);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.services-img img {
	color: var(--secondary-color);
	transition: 0.5s;
	line-height: 0;
	width: 100px;
}

.box-detail {
	padding-left: 30px;
}

.box-title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 19px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	color: #444;
	text-decoration: none;
}

.description {
	font-size: 14px;
	margin-bottom: 0;
	line-height: 24px;
	font-family: var(--font-family);
}

/* ----testimonials-section---- */

#testimonials-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.testimonials-header {
	margin-bottom: 30px;
}

.testimonials-header h2 {
	font-size: 32px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
	padding-bottom: 20px;
}

.testimonials-header h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--secondary-color);
	bottom: 0;
	left: 0;
}

.testimonials-header p {
	color: #444;
	font-family: var(--font-family);
	font-size: 18px;
}

.testimonial-items {
	display: flex;
	justify-content: center;
}

.testimonial-item {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(241, 207, 207, 0.05);
	margin-bottom: 30px;
	position: relative;
	cursor: pointer;
}

.testimonial-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.last-testimonial {
	width: 430px;
}

.testimonial-item p {
	font-style: italic;
	color: #333;
	font-size: 20px;
	line-height: 1.6;
}

.quote-sign-left,
.quote-sign-right {
	width: 30px;
	opacity: 0.6;
}

.testimonial-item:hover .quote-sign-left,
.testimonial-item:hover .quote-sign-right {
	filter: brightness(1.2);
}

.testimonial-img {
	width: 90px;
	border-radius: 50%;
	border: 4px solid #fff;
	margin: 0 auto;
}

.testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #111;
	font-family: 'Montserrat', sans-serif;
}

.testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.owl-dots {
	margin-top: 5px;
	text-align: center;
}

.owl-dot.active {
	background-color: var(--secondary-color);
}

.owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
}

/* ----portfolio-section---- */

#portfolio-section {
	padding: 30px 0;
}

.portfolio-header {
	margin-bottom: 30px;
}

.portfolio-header h2 {
	font-size: 32px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

.portfolio-header h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--secondary-color);
	bottom: 0;
	left: 0;
}

.portfolio-header p {
	color: #444;
	font-size: 18px;
	font-family: var(--font-family);
}

.portfolio {
	padding-left: 15px;
	padding-right: 15px;
}

.portfolio .album {
	padding: 3rem 0;
	background-color: #f6f8fb; /* soft background */
}

.portfolio-item {
	width: 25%;
}

.portfolio .card {
	border: 0;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 250ms ease, box-shadow 250ms ease;
	background: #fff;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.portfolio .card img {
	width: 100%;
	height: 220px; /* adjust for desired height */
	object-fit: cover;
	display: block;
}

.portfolio .card-body {
	padding: 1.15rem;
	text-align: center;
	margin-top: auto; /* push body to bottom if content varies */
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 1)
	);
}

.portfolio .card-body h2 {
	font-size: 18px;
	line-height: 1.25;
	margin: 0;
	font-weight: 600;
	color: #0f1724;
	position: relative;
	z-index: 1;
	color: #fff;
	margin: 0;
	text-align: center;
	/* padding-bottom: 20px; */
	text-transform: uppercase;
}

.portfolio .card {
	position: relative;
	overflow: hidden;
}

.portfolio .card-body {
	padding: 0.85rem;
	background: var(--secondary-color);
}

/* title sits above the band */
/* .portfolio .card-body h2 {
	position: relative;
	z-index: 1;
	color: #fff;
	margin: 0;
	text-align: center;
	padding: 0.6rem 0.8rem 0.6rem 0;
} */

.card a {
	text-decoration: none;
}

.portfolio .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.portfolio .card:focus-within {
	outline: 2px solid rgba(99, 102, 241, 0.12);
	outline-offset: 4px;
}

/* overlay using ::after */
.portfolio .img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.12),
		rgba(0, 0, 0, 0.55)
	); /* dark rgba overlay */
	opacity: 0;
	transition: opacity 220ms ease;
	pointer-events: none;
}

/* hover states */
.portfolio .img-wrap:hover img {
	/* transform: scale(1.06); */
}
.portfolio .img-wrap:hover::after {
	opacity: 1;
}

/* .portfolio-items {
	display: flex;
	flex-wrap: wrap;
} */

/* .portfolio-item {
	overflow: hidden;
	position: relative;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	height: 235px;
} */

/* .portfolio-item img {
	width: 100%;
	height: 100%;
	vertical-align: middle;
} */

/* .portfolio-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
} */

/* .portfolio-info {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: black;
} */

/* .portfolio-item h2 {
	color: #ffffff;
	font-size: 18px;
	margin: 0;
	text-transform: capitalize;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
} */

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.8);
}

/* .portfolio-item:hover img {
	transform: scale(1.1);
} */

/* ----call-to-action-section---- */

#call-to-action-section {
	background: var(--primary-color);
	background-size: cover;
	padding: 40px 0;
}

.cta-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cta-detail {
	text-align: center;
}

.cta-detail h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

.cta-detail p {
	color: #fff;
	margin: 0 0 30px 0;
	width: 780px;
}

.cta-btn a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 26px;
	border-radius: 3px;
	transition: 0.5s;
	margin: 10px;
	border: 3px solid #fff;
	color: #fff;
	text-decoration: none;
}

.cta-btn a:hover {
	background-color: var(--secondary-color);
	border: 3px solid var(--secondary-color);
}

/* ----team-section---- */

#team-section {
	padding: 30px 0 0 0;
}

.team-header {
	margin-bottom: 30px;
}

.team-header h2 {
	font-size: 32px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 20px 0;
}

.team-header h2::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--secondary-color);
	bottom: 0;
	left: 0;
}

.team-details {
	display: flex;
}

.member {
	text-align: center;
	margin-bottom: 20px;
}

.pic img {
	max-width: 100%;
	vertical-align: middle;
}

.detail {
	background: var(--secondary-color);
	color: #fff;
	padding: 15px 0;
	border-radius: 0 0 3px 3px;
	margin-left: 20px;
}

.detail h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
}

.detail span {
	font-style: italic;
	display: block;
	font-size: 13px;
	font-family: var(--font-family);
}

.social {
	margin-top: 5px;
}

.social a {
	color: #fff;
	padding-left: 10px;
	text-decoration: none;
}
