/*------------------------------------------------------------------
[Master Stylesheet]

Project:    Revive
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / #header
3. Navigation / #navbar
4. banner section / #banner
5. feature section / #feature
6. quality system section / #quality system
7. offer section / #offer 
8. fun facts section/ #fun facts
9. contact form section / #contact form
10. slider section / #slider
11. mobile app section / #mobile app
12. news letter section / #news letter
13. logo section  / #logo
14. weight footer section / #weight footer
19. footer section / #footer
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# primary color: #ffffff
# secondary color: #074560
# text color: #52656d
# accent: #ff8a00
# green-color: #1da678
# */
/*------------------------------------------------------------------
[Typography]

Body copy:     'Jost', sans-serif;

-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

html {
	scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
li,
input,
button,
select,
textarea,
label,
.btn {
	font-family: 'Noto Sans Thai', 'Jost', sans-serif !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary--color: #ffffff;
	--secondary--color: #36356f;
	--text-color: #52656d;
	--accent-color: #ff6100;
	--green-color: #00b14f;
}

/*top-bar-section*/
.top-bar-main-con {
	background: linear-gradient(90deg, #7440AF 0%, #FF6100 100%);
	padding: 5px 0;
}

.top-bar-main-con span {
	font-size: 10px;
	font-weight: 400;
}

.top-bar-main-con a i {
	font-size: 18px;
	padding: 0 0 0 5px;
}

.top-bar-right-con ul li:first-child a i {
	padding: 0 0 0 11px;
}

/*top-bar-section*/
/*navbar-start*/
.header-con {
	background: var(--green-color);
}

.header-and-banner-con {
	background: var(--accent-color);
}

.navbar {
	padding: 10px 0 15px 0 !important;
}

.navbar-btn {
	padding: 12px 28px 11px 28px;
	background: var(--accent-color);
	font-size: 8px;
	font-weight: 600;
	border-radius: 30px;
	box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 20%);
	display: inline-block;
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.navbar-btn:hover {
	background: var(--secondary--color);
	transform: translateY(-8px);
}

.navbar a {
	text-decoration: none;
}

.navbar-btn i {
	font-size: 18px;
	padding-right: 3px;
}

.nav-link {
	font-size: 15px;
	font-weight: 500;
}

.nav-link:hover {
	color: var(--accent-color) !important;
}

.nav-item {
	padding: 0 22px;
}

.navbar-nav li:first-child {
	padding-left: 62px;
}

.dropdown-menu .dropdown-item {
	font-size: 18px;
	font-weight: 400;
	color: var(--secondary--color);
}

.dropdown-menu .dropdown-item:hover {
	background: var(--accent-color);
	color: #ffffff;
}

.dropdown-menu {
	box-shadow: 0 0 2px 0px rgb(34 32 32 / 90%);
	border: none;
	border-radius: 0;
}

/*navbar-end*/
/*banner-start*/
/* Custom Dropdown Hover */
@media (min-width: 992px) {
	.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
		border-top: none;
	}
}

/* Ensure Hover Style is Orange BG and White Text */
.dropdown-item:hover,
.dropdown-item:focus {
	background-color: var(--accent-color) !important;
	color: #ffffff !important;
}

.bg-orange {
	background-color: #36356f;
	/* New Orange */
	color: #ffffff;
}

.bg-orange .weight-footer-content p,
.bg-orange .weight-footer-content ul li {
	color: #ffffff;
}

.banner-con {
	padding-top: 46px;
	padding-bottom: 120px;
}

.banner-right-content a {
	text-decoration: none;
	background: var(--primary--color);
	color: var(--secondary--color);
}

.banner-right-content a:hover {
	color: var(--secondary--color);
}

.banner-right-content h5 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--primary--color);
}

.banner-right-content h1 {
	margin-bottom: 24px;
}

.banner-right-content p {
	margin-bottom: 26px;
}

.banner-left-con {
	position: relative;
}

.banner-left-con::after {
	content: "";
	background: url(../image/banner-shape-img.png) no-repeat top center;
	width: 117%;
	height: 323px;
	position: absolute;
	top: 40%;
	left: -52px;
	z-index: -1;
}

.banner-right-content {
	padding-top: 122px;
}

/*banner-end*/

/* Video Banner Styles */
.banner-con {
	padding: 0 !important;
	height: 80vh;
	/* Adjust height as needed */
	overflow: hidden;
}

.video-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	object-fit: cover;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	/* 60% opacity black */
	z-index: 1;
}

.video-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	text-align: center;
}

.video-content h1 {
	font-size: 60px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.video-content p {
	font-size: 24px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 0;
}

/*feature-box*/
.feature-box-con {
	margin-top: -80px;
	position: relative;
	z-index: 1;
	margin-bottom: 80px;
}

.feature-box-item {
	padding: 20px 20px;
	background-color: #ffffff;
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.feature-box-item-round {
	border-radius: 50px 0 0 50px;
}

.feature-box-item-round-right {
	border-radius: 0 50px 50px 0;
}


/* .feature-box-con .row>div {
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
} */

.feature-box-item h5 {
	font-size: 20px;
	font-weight: 600;
	color: var(--secondary--color);
	margin-bottom: 10px;
}

.feature-box-item p {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-color);
}

.feature-box-item:hover,
.service-box-item:hover {
	background: var(--accent-color);
	box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 20%);
	transform: translateY(-20px);
}

.feature-box-item:hover h5,
.feature-box-item:hover p {
	color: var(--primary--color);
}

.feature-box-item:hover img {
	filter: brightness(0) invert(1);
}

/*feature-box*/
/*quality-system-con*/

.quality-system-left-con h2 {
	margin-bottom: 24px;
}

.quality-system-left-con p {
	margin-bottom: 28px;
}

.quality-system-left-con p:nth-child(3) {
	margin-bottom: 26px;
}

.quality-system-list ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	margin-left: 22px;
	margin-bottom: 4px;
}

.quality-system-list ul {
	width: 35%;
	float: left;
	margin-bottom: 26px;
}

.quality-system-left-con a {
	text-decoration: none;
}

.quality-system-left-con a:hover,
.submitform-btn:hover {
	background: var(--green-color);
}

.quality-system-list ul li i {
	font-size: 8px;
	position: absolute;
	left: -20px;
	top: 10px;
	color: var(--accent-color);
	box-shadow: 0px 1px 5px 0px var(--accent-color);
	background: var(--accent-color);
	border-radius: 100%;
}

.quality-system-right-con::before {
	content: "";
	background: url(../image/curve-shape-img.png) no-repeat top center;
	width: 110%;
	height: 323px;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
}

.quality-system-right-con {
	margin-top: 40px;
}

/*quality-system-con*/
/*offer-con*/
.offer-inner-con {
	background: var(--secondary--color);
	height: 384px;
}

.shope-btn {
	padding: 11px 39px 12px 39px;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	background: var(--primary--color);
	color: var(--secondary--color);
	box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 20%);
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.shope-btn:hover {
	color: var(--primary--color);
	background: var(--accent-color);
	transform: translateY(-8px);
}

.offer-right-con a {
	text-decoration: none;
}

.offer-right-con h2 {
	margin-bottom: 28px;
}

.offer-right-con h2 span {
	color: var(--accent-color);
	position: relative;
}

.offer-right-con h2 span::after {
	content: "";
	border-bottom: 1px solid var(--accent-color);
	width: 122px;
	height: auto;
	position: absolute;
	bottom: 7px;
	left: 1px;
}

.offer-left-con img {
	position: absolute;
	left: 66px;
	top: 8px;
}

.generic-banner-con {
	background: url(../image/element-1.png) no-repeat bottom center, linear-gradient(90deg, #ff6100 0%, #ff8a00 100%);
	background-size: cover;
	padding-top: 50px;
}

.offer-note {
	background: url(../image/offer-note--bg-img.png) no-repeat top;
	width: 100px;
	height: 130px;
	position: absolute;
	top: 0;
	right: 58%;
	z-index: 1;
}

.offer-note h4 {
	font-size: 30px;
	line-height: 24px;
	font-weight: 700;
	padding-top: 55px;
	text-align: center;
}

.offer-note h4 span {
	font-size: 24px;
}

.offer-right-con {
	margin-top: 70px;
}

/*offer-con*/
/*fun-facts-con*/
.fun-facts-con {
	padding-top: 100px;
	padding-bottom: 120px;
}

.fun-facts-box-item {
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.fun-facts-box-con .row>div {
	border: 1px solid #d6d6d6;
}

.fun-facts-item-content h2 {
	font-weight: 600;
	line-height: 48px;
	margin-bottom: 0;
}

.fun-facts-item-title span {
	font-size: 28px;
	font-weight: 600;
	position: absolute;
	right: -24px;
	top: -5px;
}

.fun-facts-box-item {
	padding: 38px;
}

.fun-facts-item-content {
	padding-left: 20px;
}

.fun-facts-item-content p {
	font-size: 16px;
}

.fun-facts-box-con {
	padding-top: 70px;
}

.fun-facts-box-item:hover {
	background: var(--accent-color);
	background: var(--accent-color);
	box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 20%);
	transform: translateY(-20px);
}

.fun-facts-box-item:hover img {
	filter: brightness(0) invert(1);
}

.fun-facts-box-item:hover h2 {
	color: var(--primary--color);
}

.fun-facts-box-item:hover span {
	color: var(--primary--color);
}

.fun-facts-box-item:hover p {
	color: var(--primary--color);
}

/*fun-facts-con*/
/*form-section*/
.contact-form input,
.contact-form select,
.contact-form textarea {
	padding: 22px 30px 22px 19px;
	height: auto !important;
	border-radius: 20px;
	border: 1px solid #e5e5e5;
	font-size: 16px;
	color: var(--text-color);
	font-weight: 500;
	margin-bottom: 30px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--text-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border-color: #e5e5e5;
}

.contact-form textarea {
	height: 148px !important;
	resize: none;
}

.contact-form label {
	font-size: 14px;
	font-weight: 600;
	background: var(--green-color);
	padding: 10px 20px 7px 15px;
	margin-bottom: 0;
	margin-left: 28px;
	line-height: 14px;
}

.contact-form button:hover {
	background: var(--green-color);
}

.form-main-con p {
	margin-bottom: 73px;
}

.form-main-con h2 {
	margin-bottom: 24px;
}

.form-main-con,
.quality-system-con,
.banner-con {
	overflow: hidden;
}

.form-left-con::before {
	content: "";
	background: url(../image/curve-shape-img.png) no-repeat top center;
	width: 115%;
	height: 323px;
	position: absolute;
	top: 50%;
	left: -48px;
	z-index: -1;
}

/* .contact-form button{
	box-shadow: none;
} */
/*form-section*/
/*slider-section*/
.slider-inner-con {
	background: var(--secondary--color);
	padding: 132px 95px 165px 95px;
	margin-bottom: 120px;
}

.slider-left-con h2 {
	margin-bottom: 29px;
}

.slider-left-con {
	padding-top: 56px;
}

.slider-left-con p {
	font-size: 16px;
	color: var(--accent-color);
	line-height: 20px;
}

.auther-title h4 {
	line-height: 24px;
	margin-bottom: 5px;
}

.auther-title p {
	color: var(--accent-color);
}

.auther-con+p {
	clear: both;
}

.auther-con {
	margin-bottom: 16px;
}

.auther-title {
	margin-left: 26px;
	margin-top: 18px;
	position: relative;
	top: 20px;
}

.slider-inner-con .carousel-control-prev {
	left: -9px;
	bottom: -74px !important;
	top: auto !important;
	justify-content: flex-start;
	width: 47px;
	height: 40px;
	background: var(--primary--color);
	color: var(--secondary--color);
	opacity: 1;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.slider-inner-con .carousel-control-next {
	right: auto;
	left: 38px;
	bottom: -74px !important;
	top: auto !important;
	justify-content: flex-start;
	width: 47px;
	height: 40px;
	background: var(--primary--color);
	color: var(--secondary--color);
	opacity: 1;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.slider-inner-con .carousel-control-next i,
.slider-inner-con .carousel-control-prev i {
	font-size: 16px;
}

.slider-inner-con .carousel-control-prev i {
	padding-left: 12px;
}

.slider-inner-con .carousel-control-next-icon {
	background: none;
}

.slider-inner-con .carousel-control-prev-icon {
	background: none;
}

.slider-inner-con .carousel-control-next:focus,
.slider-inner-con .carousel-control-next:hover,
.slider-inner-con .carousel-control-prev:hover,
.slider-inner-con .carousel-control-prev:focus {
	opacity: 1;
	background: #032230;
	color: var(--primary--color);
}

/*slider-section*/
/*mobile-app-section*/
.mobile-app-left-con::before {
	content: "";
	background: url(../image/mobile-app-shape-img.png) no-repeat top center;
	width: 100%;
	height: 323px;
	position: absolute;
	top: 84px;
	left: 0;
	z-index: -1;
}

.mobile-app-btn a {
	text-decoration: none;
	padding: 17px 25px;
}

.mobile-app-btn a:last-child {
	margin-left: 10px;
	padding: 17px 32px 17px 30px;
}

.mobile-app-btn a i {
	padding-right: 10px;
	font-weight: 100;
}

.mobile-app-btn a:first-child {
	background-color: var(--green-color);
}

.mobile-app-right-con h2 {
	margin-bottom: 26px;
}

.mobile-app-right-con p {
	margin-bottom: 28px;
}

.mobile-app-right-con p:nth-child(3) {
	margin-bottom: 34px;
}

.mobile-app-btn a {

	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.mobile-app-btn a:hover {
	transform: translateY(-8px);
}

/*mobile-app-section*/
/*news-letter-section*/
.news-letter-inner-con {
	background: var(--secondary--color);
	padding: 72px 95px;
	margin-bottom: 56px;
}

.news-letter-input-feild {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 20%);
}

.news-letter-input-feild input {
	border: none;
	padding: 23px 30px 23px 20px;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
}

.news-letter-input-con button {
	background: var(--accent-color);
	border: none;
	font-size: 24px;
	color: var(--primary--color);
	position: absolute;
	right: 0;
	top: 0;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 17px 25px;
}

.news-letter-input-con button:hover {
	background: var(--green-color);
}

.news-letter-input-con button i {
	font-size: 16px;
	font-weight: 600;
}

.news-letter-input-con button {
	outline: none;
}

.news-letter-input-feild input:focus {
	outline: none;
}

.news-letter-title {
	margin-top: 6px;
}

.news-letter-input-con button {
	cursor: pointer;
}

/*news-letter-section*/
/*logo-section*/
.logo-inner-con {
	padding-bottom: 48px;
}

.logo-con {
	padding-top: 50px;
	background-color: #fff5e5;
}

.logo-inner-con img {
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.logo-inner-con img:hover {
	transform: translateY(-8px);
}

/*logo-section*/
/*weight-footer-section*/
.weight-footer-content p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 36px;
	color: var(--text-color);
}

.weight-footer-content ul li {
	font-size: 16px;
	color: var(--text-color);
	text-decoration: none;
	line-height: 16px;
}

.weight-footer-content ul li:hover {
	color: var(--accent-color);
}

.weight-footer-content ul li {
	margin-bottom: 14px;
}

.weight-footer-content ul li span {
	color: var(--primary--color);
	font-weight: 400;
}

.weight-footer-content h5 {
	font-size: 20px;
	color: var(--primary--color);
	margin-bottom: 32px;
	font-weight: 600;
}

.weight-footer-content figure {
	margin-bottom: 32px;
}

.weight-social-list a,
.professional-box-social-list ul li a,
.professional-box a {
	text-decoration: none;
}

.weight-social-list a i,
.professional-box-social-list ul li a i {
	width: 30px;
	height: 30px;
	margin-right: 4px;
	background: #cbcbcb;
	border-radius: 50%;
	font-size: 16px;
}

.weight-social-list a i:hover {
	background: var(--green-color);
}

.weight-footer-inner-con {
	padding-bottom: 40px;
}

.weight-footer-con {
	padding-top: 50px;
}

.weight-footer-content ul li i {
	color: var(--accent-color);
	padding-right: 10px;
}

.weight-footer-content ul li {
	font-size: 16px;
	color: var(--text-color);
}

.weight-social-list ul li {
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.weight-social-list ul li:hover {
	transform: translateY(-8px);
}

.weight-footer-inner-con .row .col-lg-3:last-child .weight-footer-content ul li:last-child {
	line-height: normal;
}

.weight-footer-inner-con .row .col-lg-3:last-child .weight-footer-content ul li:last-child:hover {
	color: var(--text-color);
}

/*weight-footer-section*/
/*footer-section*/
.footer-con {
	background: #ff6b00;
}

.footer-con p {
	font-size: 16px;
	color: var(--primary--color);
}

.footer-con figure {
	margin-right: 10px;
}

/*footer-section*/
/*contact-page-css*/
.left-curve-img {
	position: absolute;
	top: 22%;
	left: 20px;
}

.right-curve-img {
	position: absolute;
	top: 58%;
	right: 10px;
}

.quality-system-right-con .left-curve-img {
	top: 37%;
	left: -50%;
	right: 5px;
}

.quality-system-right-con .right-curve-img {
	position: absolute;
	top: 75%;
}

.form-left-con .left-curve-img,
.faq-system-con .left-curve-img {
	top: 29%;
	right: 99px;
	transform: rotateZ(179deg);
	left: auto !important;
}

.form-left-con .right-curve-img {
	top: 68%;
	left: 0;
	right: auto;
}

.carousel-control-next i {
	position: relative;
	left: 22px;
}

.generic-banner-content {
	padding: 95px 0;
}

.generic-banner-content h1 {
	margin-bottom: 40px;
}

.Schedule-con {
	padding: 120px 0;
	background: #fafafa;
}

.Schedule-box-item {
	background: var(--primary--color);
	padding: 36px 46px;
	box-shadow: -1px 9px 10px 0px rgb(0 0 0 / 20%);
	margin-bottom: 30px;
}

.Schedule-heading h2,
.contact-page-form-txt h2 {
	margin-bottom: 70px;
}

.Schedule-box-item:after {
	content: "";
	position: absolute;
	top: 38px;
	right: 0;
	width: 120px;
	height: 120px;
	background: url("../image/Schedule-faded-icon1.png") no-repeat center right;
}

.Schedule-box .row .col-lg-6:nth-child(2) .Schedule-box-item:after {
	background: url("../image/Schedule-faded-icon2.png") no-repeat center right;
}

.Schedule-box .row .col-lg-6:nth-child(3) .Schedule-box-item:after {
	background: url("../image/Schedule-faded-icon3.png") no-repeat center right;
}

.Schedule-box .row .col-lg-6:nth-child(4) .Schedule-box-item:after {
	background: url("../image/Schedule-faded-icon4.png") no-repeat center right;
}

.Schedule-box-title {
	padding-left: 28px;
}

.Schedule-box-title span {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
}

.Schedule-box-title h5 {
	margin-bottom: 18px;
}

.contact-page-form-con {
	padding: 120px 0;
}

.contact-form-plan-box input,
.contact-form-plan-box textarea,
.contact-form-plan-box select {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px 18px 24px 26px;
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 30px;
}

.contact-form-plan-box input::placeholder,
.contact-form-plan-box textarea {
	color: var(--text-color);
}

.contact-form-plan-box select {
	height: auto !important;
}

.contact-form-plan-box input:focus,
.contact-form-plan-box textarea:focus,
.contact-form-plan-box select:focus {
	box-shadow: none;
	outline: none;
	border-color: #e5e5e5;
}

.contact-form-plan-box textarea {
	height: 148px;
	resize: none;
}

.submitform-btn {
	border: none;
}

.submitform-btn:focus {
	outline: none;
}

.map-con {
	margin-bottom: 100px;
}

.submitform-btn {
	cursor: pointer;
}

/*contact-page-css*/
.Experince-section {
	background: #fafafa;
}

.Experince-section .left-curve-img {
	top: 29%;
	left: -74%;
}

.Experince-section .right-curve-img {
	top: 78%;
	right: 16px;
}

.core-vaule-box-item figure {
	position: absolute;
}

.core-vaule-box-item img,
.Schedule-box-item:hover img {
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.core-vaule-box-item img:hover,
.Schedule-box-item:hover img {
	transform: translateY(-8px);
}

.core-vaule-box-item {
	margin-bottom: 38px;
}

.core-vaule-box-title {
	padding-left: 95px;
}

.core-vaule-con {
	overflow: hidden;
}

.core-vaule-box-title h5 {
	margin-bottom: 20px;
}

.core-vaule-box-title span {
	font-size: 16px;
	color: var(--text-color);
	font-weight: 400;
}

.core-vaule-title h2 {
	margin-bottom: 24px;
}

.core-vaule-title p {
	margin-bottom: 50px;
	padding-right: 37px;
}

.core-vaule-con {
	padding-top: 120px;
}

.about-fun-facts-con {
	background: var(--secondary--color);
	padding: 100px 29px 77px 36px;
}

.about-fun-facts-title h2 {
	margin-bottom: 70px;
}

.about-fun-facts-con .fun-facts-box-con .row>div {
	border-color: var(--secondary--color);
}

.about-fun-facts-con .fun-facts-box-item {
	padding: 33px 30px;
}

.professional-box-item {
	border: 1px solid #ececec;
	padding: 30px 33px;
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}

.professional-box-item img {
	margin-bottom: 37px;
}

.professional-box-item h5 {
	margin-bottom: 4px;
}

.professional-box-item span {
	margin-bottom: 26px;
	font-size: 16px;
	color: var(--text-color);
}

.professional-box-item small {
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
}

.professional-con {
	padding: 40px 20px 10px 20px;
}

.professional-title h2 {
	margin-bottom: 24px;
}

.professional-title p {
	margin-bottom: 73px;

}

.professional-box-item:hover {
	transition: all 0.6111s ease;
	background: #ff8800;
	transform: translateY(-20px);
	border: transparent;
}

.professional-box-item:hover h5,
.professional-box-item:hover small,
.professional-box-item:hover span {
	color: var(--primary--color);
}

.professional-box-item:hover .professional-box-social-list ul li a i {
	background: #ffac4d;
	color: var(--primary--color);
}

.core-vaule-con .form-left-con .left-curve-img {
	top: 31%;
	right: 58px;
}

.faq-system-con .left-curve-img {
	top: 31%;
	right: 81px;
}

.faq-system-con .right-curve-img {
	top: 78%;
	left: -255px;

}

.Experince-section {
	padding-top: 50px;
}

/*service page css*/
.service-page-vaule-con {
	background: #fafafa;
}

.service-box-con {
	padding: 120px 0;
}

.service-box-inner-con .row>div {
	border: 1px solid #bababa;
}

.service-box-item {
	padding: 54px 47px 50px 47px;
	transform: scale(1);
	transition: all 0.6111s ease;
}

.service-box-item h5 {
	margin-bottom: 20px;
}

.service-box-item span {
	font-size: 16px;
	color: var(--text-color);
}

.service-box-item:hover img {
	filter: brightness(0) invert(1);
}

.service-box-item:hover h5 {
	color: var(--primary--color);
}

.service-box-item:hover span {
	color: var(--primary--color);
}

.service-box-img {
	padding: 50px 0;
}

.professional-box .row:first-child {
	margin-bottom: 40px;
}

.faq-con {
	padding: 120px 0;
}

.faq-con button {
	font-size: 20px;
	color: var(--secondary--color);
	text-decoration: none;
	font-weight: 600;
	text-align: left;
}

.faq-con button:hover,
.faq-con button:focus {
	text-decoration: none;
	color: var(--secondary--color);
}

.faq-con .card-header button {
	padding: 30px 36px;
}

.faq-con .card-header {
	background: none;
	border-color: #eeeeee;
	border-radius: 5px;
	padding: 0;
	border-bottom: 0;
}

.faq-con .card {
	margin-bottom: 30px;
}

.faq-con .card-body {
	background: var(--accent-color);
	color: var(--primary--color);
	padding: 0 36px 30px 36px;
	font-size: 16px;
}

.faq-con .card-header:focus button {
	color: var(--primary--color);
}

.card-header:hover {
	border-color: transparent;
	border-radius: 0;
}

.faq-con button[aria-expanded="true"] {
	background: var(--accent-color);
	width: 100%;
	color: var(--primary--color);
	border-radius: 0;
	text-align: left;
}

.faq-system-con .quality-system-right-con::before {
	top: 36%;
}

.contact-form select,
.select-form {
	appearance: none;
}

.form-main-con i {
	position: absolute;
	top: 58px;
	right: 46px;
}

.form-main-con .down-icon {
	position: absolute;
	top: 28px;
	right: 46px;
}

.contact-form-plan-box .down-icon {
	position: absolute;
	top: 25px;
	right: 24px;
}

.fa-angle-down {
	color: var(--text-color);
}

/* .professional-box-social-list ul li a i:hover {
    background: #ffffff;
    color: #52656d !important;
} */

/*service page css*/
.team-detail-con {
	padding: 100px 0;
	overflow: hidden;
}

.team-professional-con {
	padding-bottom: 100px;
	overflow: hidden;
}

.skills {
	background-color: #ddd;
	width: 100%;
	height: 8px;
	position: relative;
	margin: 62px 0;
	border-radius: 8px;
}

.title-bar {
	position: absolute;
	top: -5px;
}

.skills span {
	float: right;
	margin-top: -24px;
	margin-right: 5px;
	border-radius: 6px;
	color: #fff;
}

.skillbar {
	background-color: var(--green-color);
	width: 0px;
	height: 8px;
	border-radius: 8px;
}

.title-bar h5 {
	position: relative;
	top: -24px;
	color: var(--secondary--color);
	letter-spacing: normal;
}

.skills span {
	float: right;
	margin-top: -24px;
	margin-right: 5px;
	border-radius: 6px;
	color: var(--text-color);
}

.team-contanct {
	margin-bottom: 20px;
}

.experiences-con ul li {
	position: relative;
	margin-bottom: 20px;
	margin-left: 20px;
}

.experiences-con ul li i {
	color: var(--green-color);
	position: absolute;
	left: -20px;
	top: 3px;
}

.team-professional-inner-con {
	border: 1px solid #ececec;
	padding: 60px 33px 0;
}

/********blog section**************/
.blog-con {
	padding-top: 60px;
	padding-bottom: 60px;
}

.blog-con a {
	text-decoration: none;
}

.blog-item {
	border: 1px solid #e5e5e5;
	overflow: hidden;
}

.blog-item .blog-item-content span {
	font-size: 14px;
	color: var(--accent-color);
}

.blog-item-content {
	padding: 20px 20px;
}

.blog-item-auther-name span:last-child {
	color: #808e94;
	margin-left: 18px;
}

.blog-item-content h4 {
	font-size: 20px;
	line-height: 30px;
	color: var(--secondary--color);
	margin-bottom: 18px;
}

.blog-item-auther-name {
	margin-bottom: 10px;
}

.blog-con p {
	margin-bottom: 55px;
}

.blog-item figure img {
	transition: ease-in-out 0.5s;
}

.blog-item:hover figure img {
	transform: scale(1.1);
}


/********blog section**************/

/* NSC Section Redesign */
.nsc-gradient-wrapper {
	background: linear-gradient(180deg, #ffffff 0%, #FF61001F 100%);
	padding-bottom: 80px;
	width: 100%;
	float: left;
}

.form-main-con {
	background: transparent;
	padding: 20px 0;
}

.nsc-title {
	font-size: 60px;
	font-weight: 700;
	color: #ff6b00;
	/* Orange color */
	margin-bottom: 24px;
	line-height: 1.2;
}

.nsc-desc {
	font-size: 22px;
	line-height: 1.6;
	color: #52656d;
}

.nsc-image-collage {
	position: relative;
	padding: 20px;
}

.nsc-shape-bg {
	position: absolute;
	top: 20%;
	right: -20px;
	width: 70%;
	height: 80%;
	background-color: #ff6b00;
	border-radius: 20px;
	z-index: 0;
	transform: none;
	opacity: 1;
}

.nsc-img-main,
.nsc-img-sub {
	position: relative;
	z-index: 1;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 5px solid #fff;
}

.nsc-img-main {
	height: 400px;
	/* Adjust as needed */
	object-fit: cover;
	width: 100%;
}

.nsc-img-sub {
	height: 190px;
	/* Adjust as needed */
	object-fit: cover;
	width: 100%;
}

/* Advertising Banner Section */
.advertising-banner-section {
	padding: 80px 0;
	background-color: #ff5500;
}

.advertising-title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	/* var(--secondary--color) */
	margin-bottom: 24px;
}

.btn-nsc {
	padding: 12px 30px;
	background: #ffd000;
	/* var(--accent-color) */
	color: #000000 !important;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-nsc:hover {
	background: #ffdc90;
	/* var(--secondary--color) */
	transform: translateY(-5px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

#advertisingCarousel .carousel-item img {
	height: 450px;
	object-fit: cover;
}

.carousel-inner {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Main Activities Section */
.main-activities-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffddbe 0%, #ffffff 100%);
	/* Light orange background matching theme */
}

.main-activities-title {
	font-size: 40px;
	font-weight: 700;
	color: #ff6b00;
	margin-bottom: 40px;
	line-height: 50px;
}

.activity-box {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	/* Ensure uniform height */
}

.activity-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.activity-icon {
	width: 50px;
	height: 50px;
	background: #ff6b00;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	flex-shrink: 0;
}

.activity-title {
	font-size: 18px;
	font-weight: 700;
	color: #ff6b00;
	line-height: 1.4;
}

.activity-list li {
	font-size: 14px;
	color: #52656d;
	margin-bottom: 8px;
	line-height: 1.6;
}

.main-activities-img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.img-fluid-footer {
	width: 70%;
}

/* Simulation Section */
.simulation-section {
	padding: 10px 0;
}

.simulation-text-con p,
.simulation-text-con li {
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	margin-bottom: 20px;
}

.simulation-text-con h4 {
	font-size: 24px;
	font-weight: 700;
	color: #ff6b00;
	margin-bottom: 20px;
}

.simulation-text-con ul {
	padding-left: 20px;
	list-style-type: decimal;
}


.simulation-img-con {
	height: auto;
	/* Removed fixed height */
}

.simulation-img-con figure {
	overflow: hidden;
	transition: all 0.3s ease;
	display: inline-block;
}

.simulation-img-con figure:hover {
	transform: scale(1.02);
}

.sim-img-1 {
	width: 100%;
}

/* Adjust media queries for responsiveness */
@media (max-width: 991px) {
	.simulation-img-con {
		margin-top: 50px;
	}

}

.vm-section {
	padding: 80px 0;
	background-color: #fffaf7;
	/* Light warm background */
}

.vm-title-con h2 {
	font-size: 36px;
	font-weight: 700;
	color: #ff6b00;
	margin-bottom: 50px;
}

.vm-subtitle {
	font-size: 24px;
	font-weight: 700;
	color: #ff6b00;
	margin-bottom: 20px;
}

.vm-box p,
.vm-box li {
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
}


.vm-list li {
	margin-bottom: 10px;
}


/* Org Structure Section */
.org-structure-con {
	padding: 20px 0;
}

#org-chart-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.org-section {
	margin-bottom: 50px;
	position: relative;
	padding-left: 20px;
	width: 100%;
	max-width: 800px;
	/* Centered block */
}

.org-header {
	display: inline-block;
	padding: 15px 40px;
	border-radius: 50px;
	color: white;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.org-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
}

.org-list {
	position: relative;
	padding-left: 30px;
	margin-left: 30px;
	border-left: 4px solid #ddd;
}

/* Colors */
.org-orange .org-header {
	background: linear-gradient(90deg, #ff8c00 0%, #ff5e00 100%);
}

.org-orange .org-list {
	border-left-color: #ff8c00;
}

.org-green .org-header {
	background: linear-gradient(90deg, #28a745 0%, #1e7e34 100%);
}

.org-green .org-list {
	border-left-color: #28a745;
}

.org-blue .org-header {
	background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
}

.org-blue .org-list {
	border-left-color: #007bff;
}

/* Items */
.org-item-wrapper {
	position: relative;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.org-dot {
	position: absolute;
	left: -42px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: white;
	border: 4px solid;
	z-index: 2;
}

.org-orange .org-dot {
	border-color: #ff8c00;
}

.org-green .org-dot {
	border-color: #28a745;
}

.org-blue .org-dot {
	border-color: #007bff;
}

.org-connector {
	width: 30px;
	height: 4px;
	background-color: #e9ecef;
	margin-right: 15px;
}

.org-orange .org-item-wrapper .org-connector {
	background-color: #ff8c00;
}

.org-green .org-item-wrapper .org-connector {
	background-color: #28a745;
}

.org-blue .org-item-wrapper .org-connector {
	background-color: #007bff;
}

.org-item {
	background: white;
	padding: 15px 30px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	background: linear-gradient(to right, #ffffff, #f8f9fa);
	border-left: 5px solid transparent;
	transition: all 0.3s ease;
	width: 100%;
}

.org-item:hover {
	transform: translateX(10px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.org-orange .org-item {
	border-left-color: #ff8c00;
}

.org-green .org-item {
	border-left-color: #28a745;
}

.org-blue .org-item {
	border-left-color: #007bff;
}

.org-item h5 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.org-item p {
	margin: 5px 0 0;
	font-size: 13px;
	color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
	.org-list {
		margin-left: 15px;
		padding-left: 20px;
	}

	.org-header h3 {
		font-size: 16px;
	}
}

/* Purple Theme */
.org-purple .org-header {
	background: linear-gradient(90deg, #6f42c1 0%, #5a32a3 100%);
	width: 100%;
	text-align: left;
	border-radius: 50px;
}

.org-purple .org-list {
	border-left-color: #6f42c1;
}

.org-purple .org-dot {
	border-color: #6f42c1;
	background-color: #007bff;
	/* Blue dot from image */
	border: none;
	width: 25px;
	height: 25px;
	left: -45px;
}

.org-purple .org-item-wrapper .org-connector {
	background-color: #007bff;
}

.org-purple .org-item {
	border-left: none;
	background: #f0f0f5;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	padding-right: 60px;
	/* Space for the purple end cap */
}

.org-purple .org-item::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	background: #6f42c1;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}

.text-purple {
	color: #4a00e0;
}

.carousel-item-index {
	height: 300px;
	width: 100%;
	object-fit: cover;
}

.carousel-item-index img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.icon-menu {
	width: 50px;
	height: 50px;
}