@charset "UTF-8";

@font-face {
	font-family: "Poppins-Bold";
	src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
}

@font-face {
	font-family: "Poppins-Medium";
	src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
}

@font-face {
	font-family: "Poppins-Regular";
	src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
	font-family: "Poppins-SemiBold";
	src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
}

body {
	margin: 0;
	background: #fff;
	font-family: "Poppins-Medium";
	color: #333;
}

/* .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 40px;
  color: #fff;
}

.navbar .logo img {
  height: 30px;
  margin-right: 10px;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
} */
.btn {
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
}

.btn-outline {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}
.box_backg{
	padding: 30px;
    background: #cccccc36;
    margin-top: 50px;
}

.btn-solid {
	background: #000000;
    color: #fff;
    width: 200px;
    padding: 12px;
    border-radius: 2px;
}


.btn-solid:hover, .btn-solid:focus {
	background: #fff;
	color: #000000;
	border: 1px solid #000;
}

.main-container {
	display: flex;
	height: 106vh; /* calc(100vh - 60px); */
}
.contact-left-section {
	flex: 1;
	background: #111;
	background: url('../../resources/product/skillelabs/contactus.jpg')
		no-repeat center center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	padding: 40px;
	background-size: cover; /* or other desired background properties */
	transform: scaleX(-1);
}
.contact-right-section{
	background: url('../../resources/product/skillelabs/contactus-a.jpg')
		repeat center center;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.left-section {
	flex: 1;
	background: #111;
	background: url('../../resources/product/skillelabs/vr-person.png')
		no-repeat center center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	padding: 40px;
	background-size: cover; /* or other desired background properties */
	transform: scaleX(-1);
}

.left-section-signin {
	flex: 1;
	background: #111;
	background: url('../../resources/product/skillelabs/vr-person1.jpg')
		no-repeat center center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	padding: 40px;
	background-size: cover; /* or other desired background properties */
	transform: scaleX(-1);
}

.left-section h1, .left-section-signin h1 {
	margin-top: 20px;
	font-size: 2rem;
	text-align: center;
}

.hero-img {
	width: 100%;
	max-width: 500px;
	border-radius: 10px;
}

.right-section {
	flex: 1;
	background: #f8f8f8;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-box {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 360px;
}
.contactform-box{
	width: 420px;
	border-radius: 5px;
}

.form-box h2 {
	margin-bottom: 20px;
	font-size: 1.5rem;
	text-align: center;
}

.form-box input, .form-box textarea {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border-radius: 6px;
	border: 1px solid #e4e1e1;
}

.form-box input:hover, .form-box input:focus {
	border: 1px solid #e4e1e1 !important;
}

.form-box input::placeholder {
	color: #424242; /* Text color */
	font-size: 14px; /* Font size */
	opacity: 1; /* Ensure it's fully visible */
}

.signin-text {
	margin-top: 15px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
}

.signin-text a {
	color: #27B833;
	text-decoration: underline !important;
	font-weight: 500;
}

.hero-text {
	transform: scaleX(-1);
	position: absolute;
	bottom: 40px;
	padding: 20px 20px 20px 40px;
}

.hero-text h2 {
	font-size: 46px;
	font-weight: bold;
	margin-bottom: 20px;
	font-family: "Poppins-SemiBold";
}

.hero-text p {
	font-size: 22px;
	padding-right: 20%;
	font-family: "Poppins-Regular";
}

.right-section-h2 {
	font-size: 26px !important;
	font-weight: 700;
	font-family: "Poppins-Bold";
}

.fp-form-text-grey {
	color: #AAAAAA;
	font-size: 12px;
	text-decoration: underline !important;
}


/* Mega menu for desktop */
.mega-dropdown {
	position: static !important;
}

.mega-dropdown-menu {
	padding: 20px;
	width: 100%;
	left: 0;
	right: 0;
	background: #111;
	color: #fff;
	display: none;
}

.mega-dropdown-menu h3, .mega-dropdown-menu h4 {
	color: #fff;
	font-weight: bold;
}

.mega-dropdown-menu a {
	color: #bbb;
}

.mega-dropdown-menu a:hover {
	color: #fff;
}

/* Show dropdown on hover - only desktop */
@media ( min-width : 768px) {
	.mega-dropdown:hover .mega-dropdown-menu {
		display: block;
	}
}

/* Mobile style (accordion look) */
@media ( max-width : 767px) {
	.mega-dropdown-menu {
		position: relative;
		width: 100%;
		background: #222;
		display: none;
	}
	.mega-dropdown.open .mega-dropdown-menu {
		display: block;
	}
	.mega-dropdown-menu .row {
		margin-bottom: 15px;
	}
}

.btn-regstr-hdr {
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 10px 18px !important;
	margin: 5px;
	color: #fff !important;
	font-size: 16px;
}

.btn-regstr-hdr:hover {
	background: #fff !important;
	color: #000 !important;
}

.btn-lgn-hdr {
	background: #fff;
	border-radius: 4px;
	padding: 10px 18px !important;
	margin: 5px;
	color: #000 !important;
	font-size: 16px;
}

.btn-lgn-hdr:hover {
	background: #fff !important;
	color: #000 !important;
}

.hdr-link-rt, .hdr-link-lt{
	margin: 5px;
	font-size: 16px;
	color: #fff !important;
	padding: 10px 18px !important;
}

.hdr-link{
	font-size: 16px;
	color: #fff !important;
}

.hdr-link-rt:hover {
	background: #f5a623;
	color: #fff !important;
	border: 1px solid #fff !important;
	border-radius: 4px;
}

.explre-main-content {
	background: url('../../resources/product/skillelabs/explr_bg.png');
}

.explre-bg-section {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.60),
		rgba(0, 0, 0, 0.60)), /* dark overlay */
    linear-gradient(0deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20)),
		/* light overlay */
    url('../../resources/product/skillelabs/exp_banner.jpg') center
		center/cover no-repeat; /* background image */
	color: #fff;
	text-align: center;
	padding: 80px 20px;
	height: 60vh;
}

.explre-bg-section-text{
	margin: 0 22.5%;
}

.explre-search-box {
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* soft, even shadow */
	padding: 50px; /* optional: ensures inner spacing */
	margin: 40px 100px;
}

.explre-bg-section h1 {
	font-size: 50px;
	font-weight: 600;
	font-weight: bold;
	font-family: "Poppins-SemiBold";
}

.explre-bg-section p {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	margin-top: 10px;
	font-family: "Poppins-Regular";
}

.explre-courses {
	padding: 40px 20px;
}

.course-card-explre {
	border: 1px solid #eee;
	border-radius: 6px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.course-card-explre:hover {
	/* transform: translateY(-5px); */
	transform: scale(1.03); /* increase by 5% */
}

.course-card-explre img {
	width: 100%;
	height: 40vh;
	object-fit: cover;
	padding: 20px;
}


.course-body-explre {
	padding: 0px 15px 15px;
}

.course-title-explre, .course-title-explre a {
	font-size: 20px;
	font-family: "Poppins-SemiBold";
	color: #000 !important;
}

.course-desc-explre {
	font-size: 12px;
	color: #000;
	margin: 10px 0;
	font-family: "Poppins-Regular";
}

.course-btn-explre {
	margin-top: 10px;
}
.explre-form-label{
	text-align:left;
	font-size: 20px;
	font-family: "Poppins-SemiBold";
	color:#000000;
}
.explre-search-group {
  position: relative;
}

.explre-search-group input, .explre-select {
  border-radius: 8px;
  padding-right: 40px; /* space for search button */
  height:50px;
  font-size: 16px;
  font-family: "Poppins-Regular";
}

.explre-search-btn {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  border: none;
  background: #00cc00;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.explre-search-btn i {
  font-size: 15px;
}
.course-btn-explre, .cou-de-btn{
    border: 1px solid #fff;
    color: #fff;
    background: #000;
    padding:10px 18px;
    font-size: 14px;
  font-family: "Poppins-Regular";
  border-radius: 0px !important;
}
.course-btn-explre:hover, .cou-de-btn:hover{
    border: 1px solid #000;
    color: #000;
    background: #fff;
}
.corse-det-bg-blue{
	background:#E5E7EB;
}

.inline-select {
  display: inline-block;
  width: auto;
}

.cou-de-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: height 0.3s ease;
  padding:20px;
}

.enroll-card:hover {
  height: auto; /* grows downward */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.cou-de-card-text-1{
	font-size: 28px;
	font-family: "Poppins-Medium";
	line-height: 1.75;
	color: #000;
}

.cou-de-card-text-2{
	font-size: 16px;
    line-height: 1.75;
	font-family: "Poppins-Regular";
	color: #000;
}
.cou-de-review-text{
	font-size: 16px;
	font-family: "Poppins-Regular";
	color: #000;
	font-weight:400;
}
.cou-de-glyphicon-star{
	color:#00CF11;
}
.cou-de-card-price{
	font-family: Roboto;
	font-size: 24px;
	font-weight:900;
	color: #00CF11;
}
.cou-de-old-price {
  text-decoration: line-through;
  color: #BFBFBF;
  font-size: 14px;
  margin-left: 5px;
  font-family: Roboto;
}

.cou-de-offer {
  color: #474747;
  font-size: 14px;
  margin-left: 5px;
  font-family: Roboto;
}

.cou-de-offer-text{
	color: #FF4848;
  font-size: 14px;
  font-family: Roboto Regular;
  margin-top:10px;
  margin-bottom:10px;
}
.cou-de-center-block {
    display: block;
    margin-left: auto;
}

.feature-box {
  margin-bottom: 20px;
    width: 60vh;
    margin-left: 10px;
    margin-right: 10px;
}

.feature-card {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 20vh;
  display: flex;
  align-items: center;   /* vertical align */
  justify-content: center; /* horizontal align (optional) */
}

/* .feature-card:hover {
  transform: scale(1.05);
} */

.cou-de-bedcrumbs{
	font-size: 19px;
	font-family: "Poppins-Medium";
}
.cou-de-ttle-sec-1{
	font-size: 50px;
	font-family: "Poppins-SemiBold";
	color: #000;
}
.cou-de-ttle-sec-2{
	font-size: 24px;
	font-family: "Poppins-Regular";
	color: #000;
	margin: 0 22.5%;
	height : 1.8em;
    overflow: hidden;
}
.cou-de-fc-text-1{
	font-size: 20px;
	font-family: "Poppins-Regular";
	color: #000;
}
.cou-de-fc-text-2{
	font-size: 12px;
	font-family: "Poppins-Medium";
	color: #000;
}
/* Mobile style  */
@media ( max-width : 767px) {
	.explre-search-box {
    padding: 20px;
    margin: 10px;
	}
}
.cou-de-container {
  padding: 40px 0px;
  display: flex;
}

.cou-de-left-content {
  flex: 2;
}

.cou-de-left-content-title {
  font-size: 48px;
  font-family: "Poppins-SemiBold";
  margin-bottom: 15px;
}

.cou-de-left-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.cou-de-left-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.cou-de-right-card {
  flex: 1;
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.cou-de-right-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cou-de-card-body {
  padding: 20px;
}

.cou-de-card-body-text-1 {
  font-size: 24px;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins-Bold";
}
.cou-de-card-body-text-2{
	font-family: "Poppins-Regular";
	font-size: 12px;
}
.cou-de-card-body-text-3{
	font-family: "Poppins-Regular";
	font-size: 13px;
}

.cou-de-badge {
  background: #d4f5d4;
  color: #2b8a3e;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 5px;
}

.cou-de-card-body ul {
  list-style: disc !important;
  margin-left: 20px;
  margin-bottom: 15px;
  font-family: "Poppins-SemiBold";
  font-size: 12px;
}
.cou-de-card-body ul li {
  list-style: disc !important;
}

.cou-de-rating {
  margin-bottom: 10px;
  font-family: "Poppins-SemiBold";
  font-size: 12px;
}

.c-de-price {
  font-size: 18px;
  margin-bottom: 15px;
}

.c-de-discount {
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

.c-de-original {
  text-decoration: line-through;
  color: #999;
}

.c-de-enroll-btn {
  background: black;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.c-de-enroll-btn:hover {
  background: #333;
}

@media (max-width: 768px) {
  .cou-de-container {
    flex-direction: column;
  }
}

.modules-container {
  margin: 40px auto;
  padding: 20px;
}

.modules-container h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.cou-de-accordion{
	/* border-bottom: 1px solid #EEEEEE; */
	background: #fff;
    border-radius: 0px;
    margin-bottom: 0px;
    padding: 30px 20px;
    /*  */
  cursor: pointer;
}

.accordion:last-child {
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 18px;
}

.accordion-header p {
  margin: 3px 0 0;
  color: #666;
  font-size: 14px;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.arrow.open {
  transform: rotate(180deg);
}

.accordion-body {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  background:#EEEEEE;
}
.cou-de-acc-list-group-item {
    position: relative;
    display : block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #EEEEEE;
}

.hover-card {
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.hover-card .extend {
  display: none;
}

.hover-card .compact {
  display: block;
}

/* On hover show extended view */
.hover-card:hover {
  
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hover-card:hover .extend {
  display: block;
}

.hover-card:hover .compact {
  display: none;
}

/* Active class to keep first one expanded */
.hover-card.active .extend {
  display: block;
}
.hover-card.active .compact {
  display: none;
}
.lg-course-img img{
	width:100% !important;
}
.padding-8-per {
	padding: 8% !important;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Addtional styles */

.bg-gray {
  background-color: #f5f5f51d;
}

.hover-card {
  width: 200px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: width 0.3s ease-in-out;
}

.hover-card.active {
  width: 100%;
  max-width: 400px;
}

.hover-card:not(.active) .extend {
  display: none;
}

.hover-card.active .compact {
  display: none;
}

.bg-account {
  background: url("../../resources/product/skillelabs/account-bg.png") no-repeat center center / cover;
}

.bg-account .overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.613)
  );
}

.cta-bg {
  background: url("../../resources/product/skillelabs/cta-bg.png") no-repeat center center / cover;
}

.cta-bg .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.offer-card {
  max-width: 600px;
  transition: all 0.3s ease-in-out;
}

.offer-card:hover {
  transform: scaleY(1.03);
}

.stripe-bg {
  background: repeating-linear-gradient(
    -45deg,
    black,
    black 8px,
    #000038 4px,
    #000038 10px
  );
}

.link-hover a {
  transition: all 0.3s;
}

.link-hover a:hover {
  opacity: 70%;
}

.slide-open {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.slide-open.show {
  transform: translateY(0);
  pointer-events: all;
}

.nav-link {
  color: #fff;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #00cf11;
  --bs-btn-border-color: #00cf11;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(38.25, 214.2, 52.7);
  --bs-btn-hover-border-color: rgb(25.5, 211.8, 40.8);
  --bs-btn-focus-shadow-rgb: 0, 176, 14;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(51, 216.6, 64.6);
  --bs-btn-active-border-color: rgb(25.5, 211.8, 40.8);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #00cf11;
  --bs-btn-disabled-border-color: #00cf11;
}

.left-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.hero-bg {
  background: url("../../resources/product/skillelabs/hero-bg.png") no-repeat center center / cover;
}

/* custom classes */

.smaller {
  font-size: 0.75rem;
}

.mini {
  font-size: 0.65rem;
}

.micro {
  font-size: 0.5rem;
}

.reset-input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.reset-input::placeholder {
  color: inherit;
  opacity: 0.5;
}
/* Create Account css */
.left-section {
  background: url("../../resources/product/skillelabs/account-bg.png") no-repeat center center;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2rem;
  min-height: 100vh;
}
.overlay-text {
  max-width: 400px;
}
.form-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* media classes */

@media (max-width: 1200px) {
  /* large screens */
}

@media (max-width: 992px) {
  /* medium screens */
}

@media (max-width: 768px) {
  /* small screens */
}

@media (max-width: 576px) {
  /* extra small screens */
  html {
    font-size: 14px;
  }
}
.splide__pagination{
	display:none !important;
}
.lg-img-wofr{
	width: 100%;
  height: 43vh;
  object-fit: cover;
  object-position: top;
}
.lg-img-title{
	font-family: "Poppins-Regular";
	font-size: 27px;
	font-weight:400;
}
.lg-img-75vh{
	height: 75vh;
  object-fit: cover;
  object-position: top;
}
.lg-course-title{
	font-family: "Poppins-SemiBold";
	font-size: 32px;
	font-weight:600;
}
.fr-list li{
	font-family: "Poppins-Regular";
	font-size: 14px;
	line-height:28px;
	text-align:left;
}
.fr-list-title{
	font-family: "Poppins-SemiBold";
	font-size: 20px;
	line-height:28px;
	text-align:left;
}
/* Footer Section */
.ftr-footer {
  background: #0a0a0a url('pattern.png') repeat; /* Optional diagonal stripe background */
  color: #ccc;
  padding: 30px 20px;
}

.ftr-left .ftr-logo {
  max-height: 35px;
  margin-right: 15px;
}

.footer-brand {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.footer-brand .highlight {
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 0 6px;
}

.social-icons li {
  display: inline-block;
  margin: 0 5px;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.padding-left-50 {
	padding-left:50px;
}
.padding-right-50{
	padding-right:50px;
}
.padding-20{
	padding:20px;
}
.padding-30{
	padding:30px;
}
.text-right{
	text-align: right;
}
#Rectangle_3488 {
    background-image: linear-gradient(#0003, #0003), linear-gradient(#0003, #0003), url(../../resources/product/skillelabs/aboutus.jpg);
    background-position: 0 0, 0 0, 0;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, 100% 181.2%;
    border-radius: 0;
    width: 100%;
    height: 600px;
    display: grid;
  	place-items: center;
}
.top-div{
	background: #f9f9f9;
}
.parent-second-main{
	padding: 85px 173px 100px;
}
.parent-second {
    display: flex;
    align-items: center;
    padding: 26px 40px;
    gap: 53px;
    background: white;
    box-shadow: 0 10px 25px #0000001a;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.parent-second p{
	font-size : 20px;
}
.parent-second .text-section {
    flex: 1;
    max-width: 50%;
    margin-right: 150px;
}
.parent {
  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 173px;   
    gap: 53px;
}

.parent .text-section {
  flex: 1;                    /* Take equal width */
  max-width: 50%;             /* Keep left side half */
}

.parent .text-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.parent .text-section p {
  margin-bottom: 10px;
}

.parent .text-section ul {
  list-style: disc;
  margin-left: 20px;
}

.parent .text-section li {
  margin-bottom: 5px;
}

.parent .image-section {
  flex: 1;
  max-width: 50%;
}

.parent .image-section  {
  width: 100%;
  height: auto;
  border-radius: 10px;        /* Rounded corners like screenshot */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Soft shadow */
}

input::placeholder {
  color: #8b8b8b!important;      /* Change text color */
  font-size: 11px !important;  /* Adjust font size */
}

.skill-section .text {
  margin-bottom: 10px;
}

.skill-section .text strong {
  font-weight: 700;
}

.skill-section .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-right : 100px;
}
.feature-card {
  display: flex;
  align-items: center;
  background-color: #f17e37;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 15px 8px;
  color: #fff;
  box-shadow: inset 0 -6px 5px #cc6b2f, inset 0 6px 5px #ffb080;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 160px;
  height: 50px;
  font-size:11px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.border-0{
	border-radius:0px !important;
}
.lg-navbar-menu-btn{
	    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.lg-navbar-menu-btn .icon-bar{
	display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
	background-color: #fff;
	margin-top: 4px;
}
.lg-navbar-nav{
	align-items :center;
	gap: 2rem !important;
}
@media ( max-width : 767.98px) {
  .lg-navbar-nav{
	align-items :start !important;
	gap: 0rem !important;
	}
.lg-navbar-nav li{
    font-size: 16px;
    color: #fff !important;
    padding: 10px 18px !important;}
}

@media ( max-width : 767.98px) {
	.main-container {
		display: flex;
		height: 100% !important;
	}
	.left-section, .left-section-signin, .contact-left-section{
		display: none !important;
	}
	.box_backg {
	    padding: unset;
	    background: unset;
	    margin-top: unset;
	}
	#Rectangle_3488 {
   		 height: 280px!important;
    }
    .parent {
	    padding: 10px 15px;
	    display: grid;
	    gap:15px;
	}
	.contactform-box {
    width: 390px;}
	.parent-second .text-section {
    max-width: unset;
    margin-right: unset;
	}
	.parent .text-section {
	    max-width: 100%;
	}
	.parent-second p {
    font-size: 15px;
}
	.parent .text-section h2 {
    font-size: 23px;}
	.parent-second-main {
	    padding: 40px 16px 14px;
	}
	.parent-second {
   	 display: grid;
	    gap: unset;
	    padding: 19px 14px;
	}
	.feature-card {width: 118px;}
    #Rectangle_3488 .font-50{
    	font-size : 2em!important;
    }
	.sk-e-display-wrap{
		flex-wrap : wrap !important;
	}
	.lg-img-75vh{
	height:100%  !important;}
	.lg-img-wofr{
	height:30vh !important;}
	
}
