/* ===========================
   Global Reset & Layout
   =========================== */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	position: relative;
	scrollbar-width: none;  
}

/* ===========================
   Carousel / Slider Styling
   =========================== */
.carousel-item {
	height: 100vh;
}
.carousel-item img {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

/* ===========================
   Carousel Indicators
   =========================== */
.carousel-indicators {
	position: absolute;
	bottom: 3%;
	transform: translateX(-45%);
	flex-direction: row;
	margin: 0;
}
.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	margin-left: 15px;
}
.carousel-indicators .active {
	opacity: 1;
	background-color: #000;
}

/* ===========================
   Slide Counter
   =========================== */
.slide-counter {
	position: absolute;
	right: 2vw;
	bottom: 1vh;
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 35px;
}
.slide-counter .active-count {
	font-size: 40px;
	font-weight: bold;
}
.slide-counter .total-count {
	font-size: 20px;
	opacity: 0.8;
}

/* ===========================
   Decorative Carousel Lines
   =========================== */
.carousel-lines::before {
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}
.carousel-lines .line-left,
.carousel-lines .line-right {
	position: absolute;
	top: 0vh;
	width: 1px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}
.carousel-lines .line-left{
	left: 20%;
}
.carousel-lines .line-right {
	right: 20%;
}
.carousel-lines .line-top{
	position: absolute;
	top: 15vh;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
}
.carousel-lines .line-bottom{
	position: absolute;
	bottom: 15vh;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
}


/* ===========================
   Logo Placement
   =========================== */
.logo {
	position: absolute;
	top: 1.5vh;
	left: 6.5vw;
	z-index: 1098;
	border-radius: 8px;
	padding: 6px 12px;
}
.logo img {
	object-fit: contain;
}
@media (max-width: 576px) {
	.logo {
		padding: 4px 8px;
	}
	.logo img {
		height: 24px !important;
	}
}

/* ===========================
   Center Overlay Text
   =========================== */
.slider-text-overlay {
	position: absolute;
	top: 40vh;
	z-index: 2000;
	text-align: center;
	pointer-events: none;
}
.slider-text-overlay h2{
	font-size: 6vw;
	font-weight: 600;
	line-height: 1.4;
	width: 100vw;
	margin: 0;
	font-family: "Sofia", Fantasy;
	color: #ffffff;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
}

.slider-text-overlay .startproject{
	position: absolute;
	top: 51vh;
	left: 40vw;
	font-size: 1.5vw;
	font-weight: 500;
	line-height: 1.4;	
	width: 100vw;
	margin: 0;
	font-family: "Sofia", Fantasy;
	color: #ffffff;
	text-transform: uppercase;
}



@media (max-width: 768px) {
	.slider-text-overlay h2 {
		font-size: 1.6rem;
	}
}
@media (max-width: 576px) {
	.slider-text-overlay h2 {
		font-size: 1.2rem;
	}
}


/* ===========================
   Top Right Menu (Hamburger)
   =========================== */
.top-right-icons {
	position: absolute;
	top:3vh;
	right: 0.3vw;
	z-index: 1098;
	border-radius: 8px;
	padding: 6px 10px;
	color: rgba(255, 255, 255, 0.20);
}
.top-right-icons button {
	color: #fff;
	border: none;
	background: transparent;
}
@media (max-width: 576px) {
	.top-right-icons {
		top: 10px;
		right: 10px;
		padding: 4px 8px;
	}
}

/* ===========================
   Transparent Offcanvas Menu
   =========================== */
#offcanvasMenu {
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	backdrop-filter: blur(10px);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	width: 20vw;
	z-index: 2001;
}
#offcanvasMenuLabel {
	color: white;
	font-weight: 600;
	font-size: 1.25rem;
}
#offcanvasMenu.text-bg-dark {
	background-color: transparent !important;
}
#offcanvasMenu .nav-link:hover {
	color: #f0f0f0;
	text-decoration: underline;
}
#offcanvasMenu .offcanvas-header img {
	position: absolute;
	top: 2vh;
	width: 30px;
	transform: translateX(15vw);
	cursor: pointer;
	filter: brightness(0) invert(1);
}

/* ===========================
   Social Media Icons
   =========================== */
.social-media-icons {
    position: absolute;
    width: 3%;
    top: 35vh;
    left: 4vw;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1060;
}
.social-media-icons a {
    color: white;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 13px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}
.social-media-icons a:hover {
    background-color: #fff;
    color: #000;
}

/* Section Wrapper */
.container {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Heading Styling */
h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

h2.h4 {
    font-size: 1.5rem;
    color: #333;
}

/* Paragraph Styling */
p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Custom Text Styling for Left Column */
.text-md-start h2 {
    color: #111;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
}

/* Optional: Add a subtle background or section styling */
.container {
    background-color: #f9f9f9;
    border-radius: 12px;
}

/* Responsive Adjustments (Optional) */
@media (max-width: 768px) {
    h2 {
        font-size: 1.75rem;
	}
}
		/* Flip card wrapper */

.card-view{
	height: 100vh;
	width: 100vw;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}		
.text-center .fw-bold{
	transform: translateY(10vh);
	text-transform: uppercase;
	font-size: 3rem;
	color: #d4af37;
}

.flip-card {
	position: absolute;
	top: 28vh;
	transform: translatex(3.5vw);
    perspective: 1000px;
    height: 45vh;
    width: 25vw;
}

/* Inner container with flipping behavior */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

/* Flip on hover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and back face of the card */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Front style */
.flip-card-front {
    background-color: #fff;
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
}
.flip-card-front .icons{
	color: #d4af37;
}
.flip-card-front .icon-line {
    width: 5vw;
    margin: 35px auto 20px;
    border: 0;
    border-top: 2px solid #C09F70;
}
.flip-card-front .heading{
	text-transform: uppercase;
	font-size: 1.5rem;
    font-weight: bold;
}
/* Back style */
.flip-card-back{
    background-color: #343a40; /* Dark background */
    color: white;
    transform: rotateY(180deg);
    font-size: 0.95rem;
    overflow-y: auto;
}
.flip-card-back .back-content{
	color: #ffffff;
	font-weight: bold;
}

/* Container that holds the vertical lines */
.OurPurpose-carousel-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -100; /* Ensure it's behind the text */
}

/* Left vertical line */
.OurPurpose-line-left {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    left: 10%; /* Distance from left edge */
}

/* Right vertical line */
.OurPurpose-line-right {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    right: 10%; /* Distance from right edge */
}

/* Hide lines on mobile */
@media (max-width: 768px) {
    .OurPurpose-line-left,
    .OurPurpose-line-right {
        display: none;
    }
}

.team-member{
	position: relative;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	height: 100vh;
}
.team-member h2{
	text-align: center;
	transform: translateY(7.5vh);
	text-transform: uppercase;
	font-size: 2rem;
	color: #d4af37;
	font-weight: 600;
   
}
.team-member .swiper-pagination{
	position: absolute;
	bottom:5vh;
	display: flex !important;
  	justify-content: center; /* center-align the bullets */
  	align-items: center;
  	gap: 10px;
}
.team-member .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.team-member .swiper-pagination-bullet-active {
  background: #d4af37;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3); /* glowing gold ring */
}

.swiper {
	position: absolute;
    width: 100%;
    height: auto;
    top: 20vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 99%;
    height: auto;
    display: block;
    border: 0.5px solid #ccc;
}

.team-overlay {
    position: absolute;
    bottom: 0vh;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.team-overlay h6{
	position: absolute;
	top: 45%;
	left: 2.5vw;
	text-align: center;
	font-size: 2rem;
}
.team-overlay small{
	position: absolute;
	top: 55%;
	left: 2.5vw;
	text-align: center;
	font-size: 1rem;
}

.swiper-slide:hover .team-overlay {
    opacity: 1;
}

/* Container that holds the vertical lines */
.team-member-carousel-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -100; /* Ensure it's behind the text */
}

/* Left vertical line */
.team-member-line-left {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    left: 20%; /* Distance from left edge */
}

/* Right vertical line */
.team-member-line-right {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    right: 20%; /* Distance from right edge */
}

/* Hide lines on mobile */
@media (max-width: 768px) {
    .team-member-line-left,
    .team-member-line-right {
        display: none;
    }
}

.fnq{
	position: relative;
	height: 70vh;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.fnq .text-center{
	text-align: center;
	transform: translateY(7.5vh);
	text-transform: uppercase;
	font-size: 2rem;
	color: #d4af37;
	font-weight: 600;
}
.accordion {
  margin: 0 auto;
  border: none;
  width: 60vw;
  transform: translateY(10vh);

}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: #f7f7f7;
  color: #333;
  font-weight: 600;
  padding: 1rem 1.5rem;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #d4af37 !important;
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 1.5rem;
  background-color: #fff;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.accordion-collapse {
  transition: max-height 0.3s ease;
}

/* Container that holds the vertical lines */
.fnq-carousel-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -100; /* Ensure it's behind the text */
}

/* Left vertical line */
.fnq-line-left {
    position: absolute;
    width: 1.5px;
    background-color: #ccc;
    height: 30%;
    top: 10vh;
    left: 19%; /* Distance from left edge */
}

/* Right vertical line */
.fnq-line-right {
    position: absolute;
    width: 1.5px;
    background-color: #ccc;
    height: 30%;
    bottom: 10vh;
    right: 19%; /* Distance from right edge */
}
.fnq-carousel-lines .fnq-line-top{
	position: absolute;
	top: 17vh;
	left: 17%;
	width: 20%;
	height: 1.5px;
	background-color: #ccc
}
.fnq-carousel-lines .fnq-line-bottom{
	position: absolute;
	bottom: 17vh;
	right: 17%;
	width: 20%;
	height: 1.5px;
	background-color: #ccc;
}

/* Hide lines on mobile */
@media (max-width: 768px) {
    .fnq-line-left,
    .fnq-line-right {
        display: none;
    }
}