/* ===========================
   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);
}

/* ===========================
   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: 25vh;
	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: rgba(255, 255, 255, 0.20);
}
@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;
}
#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);
}

/* ===========================
   Extra Visual Tweaks
   =========================== */
.icon-opacity-low {
	opacity: 0.8;
}

/* ===========================
   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;
}

/* ===========================
   Second Section
   =========================== */


/* Container padding and background */
.container-fluid.bg-light {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #f8f9fa; /* Light gray */
    position: relative;
}

/* Main heading styling */
.container-fluid h2.fw-bold {
    font-size: 3rem;
    letter-spacing: 1px;
    color: #222;
    margin-top: 5vh;
}

/* Subheading styling */
.container-fluid h2.h5 {
	 font-family: "Sofia", Fantasy;
    font-weight: 400;
    font-size: 2rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-top: 10vh;
    width: 75vw;
    transform: translateX(-7%);
    text-transform: uppercase;
}

/* Video preview image styling */
.container-fluid img {
    max-width: 100%;
    height: auto;
    width: 60px;
}

/* Video label */
.container-fluid h2.h6 {
    font-size: 1rem;
    color: #777;
    margin-top: 0.5rem;
}

/* Container that holds the vertical lines */
.second-carousel-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0; /* Ensure it's behind the text */
}

/* Left vertical line */
.second-line-left {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    left: 20%; /* Distance from left edge */
}

/* Right vertical line */
.second-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) {
    .second-line-left,
    .second-line-right {
        display: none;
    }

    .second-container-fluid h2.fw-bold {
        font-size: 1.5rem;
    }

    .second-container-fluid h2.h5 {
        font-size: 1rem;
    }
}



/* ===========================
   Thrid Section
   =========================== */

/* Main container styling */
.main_contant_3 {
    position: relative;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    height: 123vh
}

/* Line on the left */
.r_1 {
    position: absolute;
    width: 25%;       /* Width of the circle */
    height: 45%;      /* Height of the circle */
    border : 1.5px solid #ccc;
    border-radius: 50%;      /* Makes it a perfect circle */
    right: -12vw;
    z-index: 1;
}

/* Line on the right */
.r_2 {
	 position: absolute;
    width: 25%;       /* Width of the circle */
    height: 45%;      /* Height of the circle */
    border : 1.5px solid #ccc;
    border-radius: 50%;      /* Makes it a perfect circle */
    left: -12vw;
    bottom: 0px;
    z-index: 1;
}

/* Upper and lower content layout */
.up_side,
.down_side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Text content wrapper inside each section */
.up_side div,
.down_side div {
    max-width: 100%;
    padding: 20px;
}
/* Heading style */
.main_contant_3 .fw-bold {	
    font-size: 3rem;
    text-transform: uppercase;
    color: #333;
    width: 100%;
}

/* Paragraph text style */
.main_contant_3 .text-muted {
    font-size: 2rem;
    width: 100%;
    color: #666;
    line-height: 1.6;
}

/* Responsive styling */
@media (max-width: 768px) {
    .up_side,
    .down_side {
        flex-direction: column;
        text-align: center;
    }

    .up_side div,
    .down_side div {
        max-width: 100%;
        padding: 10px;
    }

    .r_1,
    .r_2 {
        display: none;
    }
}

.col-md-6 .img-fluid{
	margin-top: 10px;
	width: 35vw;
	transform: translateX(18%);
}

/* ===========================
   Process Slider Section
   =========================== */
.process_slider_section{
	border-bottom: 1px solid #ccc;
	height: 100vh;
	position: relative;
}
.process_slider{
	position: relative;
	border: 1px solid #ccc;
	top: 13vh;
	background-color: #ffffff;
}

.nav-step {
    cursor: pointer;
/*    padding: 10px 0;*/
    position: relative;
    text-align: center;
}

.nav-step h2 {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 25px;
}
.nav-step p {
    font-weight: bold;
    font-size: 18px;
}

.nav-step .progress-bar-line {
    height: 2px;
    background: #ccc;
    margin-top: 5px;
    transition: background 0.3s;
    width: 100%;
}

.nav-step.filled .progress-bar-line {
    background: #000;
}

.content-section {
    display: none;
}

.content-section.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
}

.rightarrow {
	position: absolute;
	top: 22vh;
    left: 1vw;
    font-size: 3rem;
    cursor: pointer;
    padding: 0 20px;
    user-select: none;
}
.leftarrow {
	position: absolute;
	top: 22vh;
	left: 6vw;
    font-size: 3rem;
    cursor: pointer;
    padding: 0 20px;
    user-select: none;
}

.content-text {
    max-width: 50%;
    text-align: left;
    font-size: 16px;
}

.content-text .hadding{
	margin-bottom: 5vh;
}


.content-text .number{
	position: absolute;
	font-size: 4rem	;
	border: 1px solid #ccc;
	border-bottom: 0;
	border-radius: 100px 100px 0 0; /* top half */
	width: 10vw;
	height: 11vh;
	text-align: center;
	bottom: 0;
	padding: 0;
	margin:0 ;
}


.content-img img {
    max-width: 100%;
    width: 500px;
    height: 250;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Container that holds the vertical lines */
.forth-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 */
.forth-line-left {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    left: 20%; /* Distance from left edge */
}

/* Right vertical line */
.forth-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) {
    .forth-line-left,
    .forth-line-right {
        display: none;
    }
}

/* ===========================
   Services Section
   =========================== */
.services-section{
	border-bottom: 1px solid #ccc;
}
/* Section heading styles */
.text-warning {
    font-size: 1.5rem;
}

.fw-bold {
    font-size: 3rem;
    margin: 35px auto;
}

/* Custom card style */
.card-custom {
    height: 55vh;
    width: 25vw;
    transform: translateX(3vw);
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon inside card */
.icon-style {
    font-size: 6rem;
    color: #d4af37; /* gold-like tone */
    margin-bottom: 15px;
}

/* Divider line under icon */
.icon-line {
    width: 5vw;
    margin: 40px auto 20px;
    border: 0;
    border-top: 2px solid #C09F70;
}

/* Card title */
.card-custom h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px auto 10px;
}

/* Paragraph */
.card-custom p {
    color: #6c757d; /* Bootstrap muted text */
    font-size: 1rem;
}

/* Hover effects */
.card-custom:hover {
    background-color: #202020 !important;
    color: #fff !important;
}

.card-custom:hover h5,
.card-custom:hover p,
.card-custom:hover a {
    color: #fff !important;
}

.card-custom:hover{
    color: #fff !important;
}

/* Optional: Center card lift effect */
.lower-center {
    margin-top: 40px; /* Use on center card only */
}

/* Container that holds the vertical lines */
.fifth-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 */
.fifth-line-left {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    left: 10%; /* Distance from left edge */
}

/* Right vertical line */
.fifth-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) {
    .fifth-line-left,
    .fifth-line-right {
        display: none;
    }
}

/* ===========================
   Skills Section
   =========================== */


/* General Section Styling */
.container-fluid.py-5 {
    position: relative;
    border-bottom: 1px solid #ccc;
}

/* Headings */
.container-fluid .ourskill{
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    transform: translateX(1vw);
}

.container-fluid .core_company{
    font-size: 1.75rem;
    font-weight: 600;
    color: #555;
    transform: translateX(1vw);
    margin: 40px auto;
}

.container-fluid .h5_text {
    font-size: 1.2rem;
    color: #777;
    transform: translateX(1vw);
    margin: 40px auto;
}

/* Skill Cards */
.bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 13vw;
    transform: translateX(0vw);
    margin: 10px auto;
}

.bg-white:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lord-icon {
    margin-bottom: 10px;
}

/* Skill Percent */
h2.mb-0 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4c430;
    transform: translateY(-11vh);
}

/* Skill Title */
h6.text-muted {
    font-size: 1.5rem;
    color: #555;
}

/* Contact Button */
.btn-warning {
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    background-color: #202020;
    color: #ffffff;
    border: none;
    transform: translateX(1vw);
    width: 15vw;
}

.btn-warning:hover {
    background-color: #e0b400;
}



/* Responsive tweaks (optional) */
@media (max-width: 767.98px) {
    .container-fluid h1 {
        font-size: 2rem;
    }

    .container-fluid h2 {
        font-size: 1.4rem;
    }

    .container-fluid h5 {
        font-size: 0.95rem;
    }

    .btn-warning {
        width: 100%;
    }
}

/* Container that holds the vertical lines */
.six-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 */
.six-line-left {
    position: absolute;
    width: 1px;
    background-color: #ccc;
    height: 100%;
    left: 50%; /* Distance from left edge */
}
/* Hide lines on mobile */
@media (max-width: 768px) {
    .six-line-left,{
        display: none;
    }
}
