/* ===========================
   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,
.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: 0;
	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,
.carousel-lines .line-bottom {
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
}
.carousel-lines .line-top {
	top: 15vh;
}
.carousel-lines .line-bottom {
	bottom: 15vh;
}

/* ===========================
   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;
	width: 100vw;
}
.slider-text-overlay h2 {
	font-size: 6vw;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	font-family: "Sofia", Fantasy;
	color: rgba(255, 255, 255, 0.50);
	text-transform: uppercase;
}
.slider-text-overlay .startproject {
	position: absolute;
	top: 50vh;
	left: 40vw;
	font-size: 1.5vw;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	font-family: "Sofia", Fantasy;
	color: #fff;
	text-transform: uppercase;
	width: 100vw;
}

@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: #ccc;
	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;
}

/* ===========================
   Typography and Containers
   =========================== */
.container {
	padding: 60px 0;
	background-color: #f9f9f9;
	border-radius: 12px;
}
h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #222;
}
h2.h4 {
	font-size: 1.5rem;
	color: #333;
}
p {
	font-size: 1rem;
	color: #555;
	line-height: 1.7;
}
.text-md-start h2 {
	color: #111;
	border-left: 5px solid #ffc107;
	padding-left: 15px;
}
@media (max-width: 768px) {
	h2 {
		font-size: 1.75rem;
	}
}


.career{
	position: relative;
	background-color: #ffffff;
	height: auto;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-radius: 0px;
	padding: 100px;
}

.career .how-text{
	color: #d4af37;
	font-family: sans-serif;
	margin-bottom: 5vh;

}
.rounded-span{
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: #fff;
  border-radius:50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

.g-rounded-30 {
  border-radius:30px !important;
}
.g-font-size-18 {
   font-size: 18px;
   color: #d4af37;
   font-weight: 600;
}

.current-text h4{
	color: #d4af37 !important; 
	font-weight: 600;
}