/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name :  The Sun Yttc Bali - Yoga & Meditation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. What We Do css
08. Why Choose Us css
09. Our Benefits css
10. Intro Video css
11. How It Work css
12. Our Features css
13. Our Pricing css
14. Scrolling Ticker css
15. Our Testimonial css
16. Our FAQs css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Book Appointment css
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #1E1E1E;
	--secondary-color			: #FAF9FA;
	--text-color				: #9C9C9C;
	--accent-color				: #3D493A;
	--accent-secondary-color	: #AEA17E;
	--white-color				: #FFFFFF;
	--black-color				: #000000;
	--divider-color				: #4156491A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Sora", sans-serif;
	--accent-font				: "Poppins", sans-serif;
	--handwritten-font			: "Caveat", cursive;
	--handwritten-bold-font		: "Kalam", cursive;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

html{
	scroll-behavior: smooth;
}

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--secondary-color);
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
	z-index: 1;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
	border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 44px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 14px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-20px, -50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-secondary-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted{
	background: var(--accent-secondary-color);
}

.btn-default.btn-highlighted::after{
	background: var(--primary-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding: 5px 40px 5px 0;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--accent-secondary-color);
}

.readmore-btn:after{
	content: '';
    position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	background-color: var(--accent-color);
    background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after{
	background-color: var(--accent-secondary-color);
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before{
	background: var(--accent-secondary-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-secondary-color) transparent var(--accent-secondary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: 18px auto;
	padding-left: 28px;
    margin-bottom: 10px;
}

.section-title h1{
	font-size: 60px;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-secondary-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 10px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
	height: 70px;
}

.navbar-brand img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	padding: 15px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-secondary-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--accent-secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-btn{
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-contact-now{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
}

.header-contact-now i{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	text-align: center;
	align-content: center;
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-secondary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 240px 0 140px;
	min-height: 100vh;
	align-content: center;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(269.99deg, rgba(30, 30, 30, 0) 15.73%, rgba(30, 30, 30, 0.828125) 66.76%, #1E1E1E 101.51%), linear-gradient(360deg, rgba(30, 30, 30, 0) 87.87%, #1E1E1E 102.84%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 240px 0 140px;
	min-height: 100vh;
	align-content: center;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(269.99deg, rgba(30, 30, 30, 0) 15.73%, rgba(30, 30, 30, 0.828125) 66.76%, #1E1E1E 101.51%), linear-gradient(360deg, rgba(30, 30, 30, 0) 87.87%, #1E1E1E 102.84%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title p{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.hero-content .section-title h3{
	margin-bottom: 30px;
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 40px;
}

.hero-body .video-play-button{
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.hero-body .video-play-button p{
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	border-color: var(--accent-color);
}

.video-play-button a i{
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i{
	color: var(--accent-color);
}

.down-arrow-circle{
	position: absolute;
	right: 15px;
	bottom: 30px;
	text-align: center;
	z-index: 3;
}

.down-arrow-circle a{
	position: relative;
	display: inline-block;
	border-radius: 50%;
}

.down-arrow-circle a img{
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.down-arrow-circle a i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white-color);
	font-size: 50px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	position: relative;
	padding: 100px 0 50px;
}

.about-us::before{
    content: '';
    position: absolute;
    bottom: -80px;
    right: -25px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.about-images{
	position: relative;
	text-align: center;
	margin: 20px 0px 20px 0;
	padding-left: 20px;
}

.about-images::before{
	content: '';
	position: absolute;
	top: 20px;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, var(--accent-color) 50%, transparent 50%);
	border-radius: 50%;
	width: 100%;
	height: 100%;
}

.about-images::after{
	content: '';
	position: absolute;
	top: -19px;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/about-img-bg-shape.png') no-repeat;
	background-position: left top;
	background-size: auto;
	width: 100%;
	height: 100%;
}

.about-image{
	position: relative;
	z-index: 1;
}

.about-image figure{
	display: block;
}

.about-image img{
	width: 100%;
	max-width: 405px;
	margin: 0 auto;
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
}

.about-image-title{
	position: absolute;
	top: 0;
	right: 40px;
	transform: rotate(-180deg);
    writing-mode: vertical-rl;
	height: 100%;
	align-content: center;
}

.about-image-title h2{
	font-family: var(--default-font);
	font-size: 5.625vw;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--divider-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
	color: var(--secondary-color);
	cursor: none;
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.about-images:hover .about-image-title h2{
	color: var(--accent-color);
}

.about-us-content{
	margin-left: 15px;
}

.about-content-body{
	margin-bottom: 40px;
}

.about-benefit-item{
	display: flex;
	margin-bottom: 30px;
}

.about-benefit-item:last-child{
	margin-bottom: 0;
}

.about-benefit-item .icon-box{
	position: relative;
	margin-right: 20px;
}


.about-benefit-item .icon-box img{
	position: relative;
	max-width: 60px;
	z-index: 1;
}

.about-benefit-item-content{
	width: calc(100% - 80px);
}

.about-benefit-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.about-benefit-item-content p{
	margin: 0;
}

/************************************/
/***  About Page Redesign css      ***/
/************************************/

/* About Introduction Section */
.about-intro-section{
	padding: 80px 0;
	background: var(--section-bg-color);
}

.about-intro-image{
	text-align: center;
}

.about-intro-image img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
}

.about-intro-content{
	margin-left: 30px;
}

.about-intro-content .section-title p{
	margin-top: 20px;
	line-height: 1.8em;
}

/* School History Section */
.school-history-section{
	padding: 80px 0;
	position: relative;
}

.history-content{
	position: relative;
}

.history-timeline{
	position: relative;
	padding-left: 40px;
}

.history-timeline::before{
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--accent-color);
	opacity: 0.3;
}

.history-item{
	position: relative;
	margin-bottom: 50px;
	padding-left: 40px;
}

.history-item::before{
	content: '';
	position: absolute;
	left: -25px;
	top: 5px;
	width: 20px;
	height: 20px;
	background: var(--accent-color);
	border-radius: 50%;
	border: 4px solid var(--white-color);
	box-shadow: 0 0 0 3px var(--accent-color);
}

.history-year{
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 15px;
	font-family: var(--heading-font);
}

.history-content-box h3{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
	font-family: var(--heading-font);
}

.history-content-box p{
	color: var(--text-color);
	line-height: 1.8em;
	margin: 0;
}

.history-image{
	text-align: center;
}

.history-image img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
}

/* Vision Mission Section */
.vision-mission-section{
	padding: 80px 0;
	background: var(--section-bg-color);
}

/* Yoga Alliance Badge Section */
.yoga-alliance-badge-section{
	padding: 60px 20px;
	margin-bottom: 60px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
	border-radius: 30px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.badge-content{
	text-align: left;
}

.badge-icon-box{
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-icon-box i{
	font-size: 48px;
	color: var(--white-color);
}

.badge-content h2{
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	font-family: var(--heading-font);
	line-height: 1.3em;
}

.badge-description{
	color: var(--text-color);
	line-height: 1.8em;
	margin-bottom: 30px;
	font-size: 16px;
}

.badge-features{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.badge-feature-item{
	display: flex;
	align-items: center;
	gap: 12px;
}

.badge-feature-item i{
	color: var(--accent-color);
	font-size: 20px;
}

.badge-feature-item span{
	color: var(--text-color);
	font-size: 16px;
	font-weight: 500;
}

.badge-verify{
	margin-top: 30px;
}

.badge-image-box{
	text-align: center;
}

.badge-certificate{
	position: relative;
}

.certificate-border{
	background: linear-gradient(135deg, #f5f5f5, #ffffff);
	border: 3px solid var(--accent-color);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
}

.certificate-border::before{
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

@keyframes rotate{
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}

.certificate-content{
	position: relative;
	z-index: 1;
	text-align: center;
}

.certificate-header{
	margin-bottom: 30px;
}

.certificate-header i{
	font-size: 60px;
	color: var(--accent-color);
	margin-bottom: 15px;
	display: block;
}

.certificate-header h3{
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	font-family: var(--heading-font);
}

.certificate-header p{
	color: var(--text-color);
	font-size: 16px;
	margin: 0;
	font-weight: 500;
}

.certificate-body h4{
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
	font-family: var(--heading-font);
}

.certificate-body p{
	color: var(--text-color);
	line-height: 1.6em;
	margin-bottom: 25px;
}

.certificate-programs{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 25px;
}

.certificate-programs span{
	background: var(--accent-color);
	color: var(--white-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
}

/* Vision Mission Content */
.vision-mission-content{
	margin-bottom: 60px;
}

.vision-mission-box{
	background: var(--white-color);
	border-radius: 20px;
	padding: 50px 40px;
	height: 100%;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(255, 165, 0, 0.08);
	transition: box-shadow 0.3s ease;
}

.vision-mission-box:hover{
	box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.vision-mission-header{
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 165, 0, 0.15);
}

.vision-mission-icon{
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
	border: 2px solid rgba(255, 165, 0, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vision-mission-icon i{
	font-size: 32px;
	color: var(--accent-color);
}

.vision-mission-box h3{
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	font-family: var(--heading-font);
}

.vision-mission-body p{
	color: var(--text-color);
	line-height: 1.8em;
	margin-bottom: 20px;
	font-size: 16px;
}

.vision-mission-body p:last-of-type{
	margin-bottom: 30px;
}

.vision-points,
.mission-points{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.vision-point,
.mission-point{
	display: flex;
	align-items: center;
	gap: 12px;
}

.vision-point i{
	color: #FFA500;
	font-size: 18px;
}

.mission-point i{
	color: var(--accent-color);
	font-size: 18px;
}

.vision-point span,
.mission-point span{
	color: var(--text-color);
	font-size: 15px;
	font-weight: 500;
}

/* School Surroundings Section */
.school-surroundings-section{
	margin-bottom: 60px;
}

.school-surroundings-section .section-title p{
	margin-top: 15px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.surrounding-image-item{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
	height: 350px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.surrounding-image-item:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.surrounding-image-item figure{
	display: block;
	height: 100%;
	overflow: hidden;
}

.surrounding-image-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.surrounding-image-item:hover img{
	transform: scale(1.1);
}

.surrounding-overlay{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
	padding: 30px 25px 25px;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.surrounding-image-item:hover .surrounding-overlay{
	transform: translateY(0);
}

.surrounding-overlay h4{
	font-size: 22px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 8px;
	font-family: var(--heading-font);
}

.surrounding-overlay p{
	color: var(--white-color);
	font-size: 14px;
	margin: 0;
	opacity: 0.9;
}

/* Values Section */
.values-section{
	margin-top: 60px;
}

.values-box{
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	border-radius: 30px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(255, 165, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.values-box::before{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 165, 0, 0.03) 0%, transparent 70%);
	animation: gentleRotate 20s linear infinite;
}

@keyframes gentleRotate{
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}

.values-box h3{
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	font-family: var(--heading-font);
	position: relative;
	z-index: 1;
}

.values-intro{
	color: var(--text-color);
	font-size: 16px;
	margin-bottom: 40px;
	line-height: 1.6em;
	opacity: 0.8;
	position: relative;
	z-index: 1;
}

.values-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.value-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	min-width: 140px;
	transition: transform 0.3s ease;
}

.value-item:hover{
	transform: translateY(-5px);
}

.value-item{
	position: relative;
	z-index: 1;
}

.value-icon{
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
	border: 2px solid rgba(255, 165, 0, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(255, 165, 0, 0.15);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.value-icon::before{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.25));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 50%;
}

.value-item:hover .value-icon{
	box-shadow: 0 10px 30px rgba(255, 165, 0, 0.25);
	transform: scale(1.15) rotate(5deg);
	border-color: rgba(255, 165, 0, 0.5);
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.1));
}

.value-item:hover .value-icon::before{
	opacity: 1;
}

.value-icon i{
	font-size: 36px;
	color: var(--accent-color);
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
}

.value-item:hover .value-icon i{
	color: var(--accent-color);
	transform: scale(1.1);
	filter: brightness(1.2);
}

.value-item span{
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: color 0.3s ease;
}

.value-item:hover span{
	color: var(--accent-color);
}


/* Google Reviews Section */
.google-reviews-section{
	padding: 80px 0;
}

.rating-summary-box{
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.google-logo{
	margin-bottom: 30px;
	opacity: 0.8;
}

.rating-display{
	margin-bottom: 30px;
}

.rating-number{
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	display: block;
	margin-bottom: 10px;
	font-family: var(--heading-font);
}

.stars{
	color: #FFA500;
	font-size: 24px;
	margin-bottom: 15px;
}

.rating-count{
	color: var(--text-color);
	font-size: 16px;
	margin: 0;
}

.rating-count strong{
	color: var(--primary-color);
	font-weight: 600;
}

.rating-breakdown{
	margin-bottom: 30px;
}

.rating-bar-item{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
	font-size: 14px;
}

.rating-bar-item span:first-child{
	min-width: 50px;
	text-align: left;
	color: var(--text-color);
}

.rating-bar{
	flex: 1;
	height: 8px;
	background: var(--divider-color);
	border-radius: 4px;
	overflow: hidden;
}

.rating-bar-fill{
	height: 100%;
	background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
	border-radius: 4px;
	transition: width 0.5s ease;
}

.rating-bar-item span:last-child{
	min-width: 40px;
	text-align: right;
	color: var(--text-color);
	font-weight: 600;
}

.rating-action{
	margin-top: 30px;
}

.reviews-list{
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.review-item{
	background: var(--white-color);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.review-item:hover{
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.review-header{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.reviewer-info{
	display: flex;
	align-items: center;
	gap: 15px;
}

.reviewer-avatar{
	width: 50px;
	height: 50px;
	background: var(--section-bg-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviewer-avatar i{
	font-size: 24px;
	color: var(--accent-color);
}

.reviewer-details h4{
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 5px;
	font-family: var(--heading-font);
}

.review-stars{
	color: #FFA500;
	font-size: 14px;
}

.review-date{
	font-size: 14px;
	color: var(--text-color);
	opacity: 0.7;
}

.review-content p{
	color: var(--text-color);
	line-height: 1.8em;
	margin: 0;
	font-style: italic;
}

/************************************/
/***  Food & Accommodation Page css  ***/
/************************************/

/* Food Accommodation Intro Section */
.food-accommodation-intro{
	padding: 80px 0;
	background: var(--section-bg-color);
}

.intro-image{
	text-align: center;
}

.intro-image img{
	width: 100%;
	border-radius: 20px;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
}

.intro-content{
	margin-left: 30px;
}

.intro-content .section-title p{
	margin-top: 20px;
	line-height: 1.8em;
}

/* Accommodation Section */
.accommodation-section{
	padding: 80px 0;
}

.accommodation-features-list{
	flex-direction: row;
}

.accommodation-content{
	margin-right: 30px;
}

.accommodation-features{
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 40px;
}

.feature-item{
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.feature-icon{
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
	border: 2px solid rgba(255, 165, 0, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.feature-item:hover .feature-icon{
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.1));
	border-color: rgba(255, 165, 0, 0.4);
	transform: scale(1.1);
}

.feature-icon i{
	font-size: 24px;
	color: var(--accent-color);
}

.feature-content h4{
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
	font-family: var(--heading-font);
}

.feature-content p{
	color: var(--text-color);
	line-height: 1.7em;
	margin: 0;
	font-size: 15px;
}

.accommodation-options{
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--accent-secondary-color)
}

.accommodation-options h4{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
	font-family: var(--heading-font);
}

.room-options-list{
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.room-option{
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 165, 0, 0.03);
	border-radius: 10px;
	border-left: 3px solid var(--accent-secondary-color)
}

.room-option i{
	font-size: 20px;
	color: var(--accent-color);
	flex-shrink: 0;
}

.room-option span{
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.6em;
}

.accommodation-gallery,
.food-gallery{
	display: flex;
	flex-direction: column;
}

.gallery-item{
	margin-bottom: 20px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.gallery-item:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item figure{
	display: block;
	height: 250px;
	overflow: hidden;
}

.gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img{
	transform: scale(1.1);
}

/* Food Section */
.food-section{
	padding: 80px 0;
	background: var(--section-bg-color);
}

.food-content{
	margin-left: 30px;
}

.food-features{
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* What's Included Section */
.whats-included-section{
	padding: 80px 0;
}

.included-box{
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(255, 165, 0, 0.1);
	height: 100%;
}

.included-box h4{
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 25px;
	font-family: var(--heading-font);
	display: flex;
	align-items: center;
	gap: 12px;
}

.included-box h4 i{
	color: var(--accent-color);
	font-size: 28px;
}

.included-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.included-box ul li{
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.7em;
}

.included-box ul li i{
	color: var(--accent-color);
	font-size: 16px;
	margin-top: 3px;
	flex-shrink: 0;
}

.accommodation-included{
	border-left: 4px solid var(--accent-secondary-color)
}

.food-included{
	border-left: 4px solid var(--accent-secondary-color)
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services{
	padding: 50px 0;
}

.service-item{
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 25px;
	overflow: hidden;
}

.service-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.service-header{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 80px;
	z-index: 1;
}

.service-header .icon-box img{
	max-width: 80px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-header .icon-box img{
	filter: brightness(0) invert(1);
}

.service-btn a{
	display: block;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-btn a{
	background: var(--accent-secondary-color);
}

.service-btn a img{
	max-width: 14px;
	transition: all 0.3s ease-in-out;
}

.service-btn a:hover img{
	transform: rotate(45deg);
}

.service-content{
	position: relative;
	z-index: 1;
}

.service-content h3{
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
	color: var(--black-color);
}

.service-item:hover .service-content p,
.service-item:hover .service-content h3{
	color: var(--white-color);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	margin: 0;
}

.section-footer-text p span{
	font-weight: 500;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 24px;
	padding: 2px 8px;
	margin-right: 10px;
}

.section-footer-text p a{
	color: var(--accent-secondary-color);
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/***      07. What We Do css      ***/
/************************************/

.what-we-do{
	position: relative;
	padding: 50px 0;
}

.what-we-do::before{
    content: '';
    position: absolute;
    top: -70px;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.what-we-image{
	background: url('../images/what-we-bg-shape.svg') no-repeat;
	background-position: center center;
	background-size: auto;
	text-align: center;
	margin: 0 20px 0 30px;
}

.what-we-image img{
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: cover;
}

.what-we-body{
	margin-bottom: 40px;
}

.what-we-body ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.what-we-body ul li{
	width: calc(50% - 20px);
	text-transform: capitalize;
	line-height: 1.6em;
}

.what-we-body ul li:last-child{
	margin-bottom: 0;
}

.what-we-body ul li::marker{
    color: var(--accent-color);
}

.what-we-benefits-box{
	display: flex;
	flex-wrap: wrap;
	border-radius: 30px;
	overflow: hidden;
}

.what-we-benefits-list{
	width: calc(100% - 417px);
	background: var(--primary-color);
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	gap: 50px 30px;
	padding: 60px;
}

.what-we-item{
	width: calc(50% - 15px);
	display: flex;
}

.what-we-item .icon-box{
	margin-right: 20px;
}

.what-we-item .icon-box img{
	max-width: 40px;
}

.what-we-item-content{
	width: calc(100% - 60px);
}

.what-we-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.what-we-item-content p{
	color: var(--white-color);
	margin: 0;
}

.what-we-benefit-image{
	width: 417px;
	border-left: 4px solid var(--white-color);
}

.what-we-benefit-image figure{
	display: block;
	height: 100%;
}

.what-we-benefit-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.862;
	object-fit: cover;
}

/************************************/
/***  International Certification css  ***/
/************************************/

.international-certification{
	position: relative;
	padding: 50px 0;
	background: var(--section-bg-color);
}

.certification-image{
	background: url('../images/what-we-bg-shape.svg') no-repeat;
	background-position: center center;
	background-size: auto;
	text-align: center;
	margin: 0 20px 0 30px;
}

.certification-image img{
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: cover;
	border-radius: 20px;
}

.certification-content{
	margin-left: 15px;
}

.certification-features{
	margin-bottom: 40px;
}

.certification-features ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.certification-features ul li{
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 1.6em;
	color: var(--text-color);
}

.certification-features ul li i{
	color: var(--accent-color);
	margin-right: 12px;
	font-size: 18px;
}

.certification-btn{
	margin-top: 30px;
}

/************************************/
/***    08. Why Choose Us css     ***/
/************************************/

.why-choose-us{
	padding: 50px 0;
}

.why-choose-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-image{
	width: calc(50% - 20px);
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.5512;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-item{
	position: relative;
	width: calc(25% - 20px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	overflow: hidden;
}

.why-choose-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.why-choose-item .icon-box{
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}

.why-choose-item .icon-box img{
	max-width: 80px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content{
	position: relative;
	z-index: 1;
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.why-choose-item-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .why-choose-item-content p,
.why-choose-item:hover .why-choose-item-content h3{
	color: var(--white-color);
}

.why-choose-counter-box{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	border-top: 1px solid var(--divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.why-choose-counter-item{
	position: relative;
	width: calc(25% - 37.5px);
	display: flex;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	right: -25px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.why-choose-counter-item:nth-child(4n + 4):before,
.why-choose-counter-item:last-child:before{
	display: none;
}

.why-choose-counter-item .icon-box{
	margin-right: 20px;
}

.why-choose-counter-item .icon-box img{
	max-width: 50px;
}

.why-choose-counter-content h3{
	font-size: 30px;
	margin-bottom: 5px;
}

.why-choose-counter-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     09. Our Benefits css     ***/
/************************************/

.our-benefits{
	position: relative;
	padding: 50px 0 100px;
}

.our-benefits::before{
    content: '';
    position: absolute;
    bottom: 10px;
    right: -75px;
    background-image: url('../images/section-bg-img-3.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    height: 417px;
    width: 431px;
    z-index: 0;
}

.benefit-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.benefit-item:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.benefit-item .icon-box{
	margin-bottom: 30px;
}

.benefit-item .icon-box img{
	max-width: 80px;
}

.benefit-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefit-item-content p{
	margin: 0;
}

.our-benefits-image{
	position: relative;
	text-align: center;
	margin: 0 30px;
}

.our-benefits-image::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--accent-color);
	opacity: 10%;
	width: 445px;
	height: 410px;
	z-index: 0;
}

.our-benefits-image figure{
	position: relative;
	background: url('../images/benefits-image-bg-shape.svg') no-repeat;
	background-position: top center;
	background-size: auto;
	z-index: 1;
}

.our-benefits-image img{
	width: 100%;
	max-width: 474px;
	margin: 0 auto;
}

/************************************/
/***      10. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
	overflow: hidden;
	height: 700px;
}

.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 30%;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro-video-box .video-play-button{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video-box .video-play-button a{
	width: 100px;
	height: 100px;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.video-play-button:hover a{
	border-color: var(--accent-color);
	color: var(--accent-color);
}

.cta-box{
	background: var(--accent-color);
	padding: 50px 0;
}

.cta-box .section-title{
	margin-bottom: 0;
}

.cta-box .section-title h2{
	color: var(--white-color);
}

/************************************/
/***      11. How It Work css     ***/
/************************************/

.how-it-work{
	padding: 100px 0 50px;
}

.how-work-content{
	margin-right: 30px;
}

.how-work-stpes-box{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.how-work-step{
	display: flex;
	margin-bottom: 40px;
}

.how-work-step:last-child{
	margin-bottom: 0;
}

.how-work-step-no{
	margin-right: 20px;
}

.how-work-step-no h2{
	font-size: 40px;
}

.how-work-step-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.how-work-step-content p{
	margin: 0;
}

.how-work-image{
	position: relative;
	padding-bottom: 40px
}

.how-work-image::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent 46%, var(--accent-color) 46%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.how-work-image::after{
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(90deg, var(--divider-color) 39%, transparent 39%);
    border-radius: 50%;
    width: 100%;
    height: calc(100% - 60px);
}

.how-work-image figure{
	position: relative;
	background: url('../images/how-work-image-bg-shape.svg') no-repeat;
	background-position: right 10px top;
	background-size: auto;
	z-index: 1;
}

.how-work-image img{
	width: 100%;
	aspect-ratio: 1 / 0.92;
	object-fit: cover;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features{
	padding: 50px 0;
}

.features-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
	align-content: end;
	padding: 30px 0 0 30px;
}

.features-item-image{
	text-align: right;
	margin-right: -110px;
	margin-bottom: -40px;
}

.features-item-image img{
	width: 100%;
	aspect-ratio: 1 / 0.816;
	object-fit: contain;
}

.our-features-boxes{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.features-box{
	position: relative;
	width: calc(50% - 15px);
	border-radius: 30px;
	overflow: hidden;
}

.features-box .features-box-content{
	position: absolute;
	top: 30px;
	left: 30px;
}

.features-box-image img{
	width: 100%;
	aspect-ratio: 1 / 0.5;
	border-radius: 30px;
	object-fit: cover;
}

.features-box.box-1{
	width: 100%;
}

.features-box.box-2 .features-box-image img{
	aspect-ratio: 1 / 1.051;
	filter: brightness(70%);
}

.features-box.box-2 .features-box-content{
	position: absolute;
	top: auto;
	left: 30px;
	bottom: 30px;
	right: 30px;
	max-width: calc(100% - 60px);
}

.features-box.box-2 .features-box-content{
	position: absolute;
	top: auto;
	left: 30px;
	bottom: 30px;
}

.features-box.box-3 .features-item-image{
	margin-right: -40px;
	margin-bottom: -17px;
}

.features-box.box-3 .features-item-image img{
	max-width: 188px;
	aspect-ratio: 1 / 1.57;
}

.features-box.box-3 .features-box-content{
	position: absolute;
	top: auto;
	left: 30px;
	bottom: 30px;
	max-width: 140px;
}

.features-box.box-2 .features-box-content p,
.features-box.box-2 .features-box-content h3{
	color: var(--white-color);
}

.features-box-content,
.features-item-content{
	position: relative;
	width: 100%;
	max-width: 285px;
	z-index: 1;
}

.features-box-content p,
.features-item-content p{
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.features-box-content h3,
.features-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
}

/************************************/
/***      13. Our Pricing css     ***/
/************************************/

.our-pricing{
	position: relative;
	padding: 50px 0 20px;
}

.our-pricing::before{
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    transform: rotateY(180deg);
    height: 274px;
    width: 337px;
    z-index: 0;
}

.our-pricing::after{
    content: '';
    position: absolute;
    bottom: 10px;
    right: -50px;
    background-image: url('../images/section-bg-img-4.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    height: 136px;
    width: 381px;
    z-index: 0;
}

.pricing-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.pricing-image figure{
	display: block;
}

.pricing-image img{
	width: 100%;
	aspect-ratio: 1 / 0.484;
	object-fit: cover;
}

.pricing-content{
	padding: 30px;
	border-bottom: 1px solid var(--divider-color);
}

.pricing-title{
	margin-top: -52px;
	margin-bottom: 30px;
}

.pricing-content h3{
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #00000014;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 12px 30px;
}

.pricing-content h2{
	font-size: 48px;
}

.pricing-content p{
	text-transform: capitalize;
	margin: 0;
}

.pricing-body{
	padding: 30px;
}

.pricing-list{
	margin-bottom: 40px;
}

.pricing-list ul{
    list-style: disc;
    display: inline-block;
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.pricing-list ul li{
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
}

.pricing-list ul li:last-child{
	margin-bottom: 0;
}

.pricing-list ul li::marker{
    color: var(--accent-color);
}

.pricing-item.highlighted-box{
	background: var(--accent-color);
	border: none;
}

.pricing-item.highlighted-box .pricing-content{
	border-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-list ul li::marker,
.pricing-item.highlighted-box .pricing-list ul li,
.pricing-item.highlighted-box .pricing-content p,
.pricing-item.highlighted-box .pricing-content h2{
	color: var(--white-color);
}

/************************************/
/***   14. Scrolling Ticker css	  ***/
/************************************/

.scrolling-ticker{
	padding: 50px 0;
}

.scrolling-ticker-box{
	position: relative;
	--gap: 40px;
	display: flex;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 80px 0;
	margin: 40px 0;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span{
	font-family: var(--accent-font);
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-size: 60px;
	line-height: 1em;
	font-weight: 400;
	color: var(--accent-color);
}

.scrolling-ticker-box .scrolling-content span img{
	width: 20px;
	margin-right: 40px;
}

.scrolling-ticker-images{
	display: flex;
	min-width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	height: 100%;
}

.scrolling-ticker-image{
	position: relative;
	text-align: center;
	transform: translateY(40px);
	align-content: end;
	width: 25%;
}

.scrolling-ticker-images .scrolling-ticker-image:nth-child(even){
	align-content: start;
	transform: translateY(-40px);
}

.scrolling-ticker-image figure{
	display: block;
	border-radius: 50%;
}

.scrolling-ticker-image img{
	border-radius: 50%;
	max-width: 80px;
}

/************************************/
/***    15. Our Testimonial css   ***/
/************************************/

.our-testimonials{
	padding: 50px 0;
}

.testimonial-image{
	margin-bottom: 30px;
}

.testimonial-image figure{
	display: block;
	border-radius: 30px;
}

.testimonial-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7581;
	object-fit: cover;
	border-radius: 30px;
}

.testimonial-review-box{
	background: var(--primary-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-review-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px 20px;
	margin-bottom: 60px;
}

.testimonial-review-title h3{
	font-size: 30px;
	text-transform: capitalize;
	color: var(--white-color);
}

.testimonial-review-counter{
	display: flex;
	align-items: center;
}

.testimonial-review-counter p{
	color: var(--white-color);
	line-height: normal;
	max-width: 100px;
	margin: 0;
}

.testimonial-review-counter span{
	background: var(--white-color);
	border-radius: 100px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	padding: 4px 10px;
	margin-right: 10px;
}

.testimonial-review-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 50px;
}

.testimonial-review-content{
	width: calc(100% - 106px);
}

.testimonial-review-content p{
	color: var(--white-color);
	margin: 0;
}

.testimonial-review-btn a{
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.testimonial-review-btn a:hover{
	background: var(--accent-color);
}

.testimonial-review-btn a img{
	max-width: 16px;
	transition: all 0.3s ease-in-out;
}

.testimonial-review-btn a:hover img{
	transform: rotate(45deg);
}

.our-testimonial-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-item{
	position: relative;
	width: 100%;
    background: var(--white-color);
	border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

.testimonial-author{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.testimonial-author .author-image{
	margin-right: 15px;
}

.testimonial-author .author-image figure{
	border-radius: 50%;
}

.testimonial-author .author-image img{
	max-width: 60px;
	width: 100%;
	border-radius: 50%;
}

.testimonial-author .author-content{
	width: calc(100% - 75px);
}

.testimonial-author .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.testimonial-author .author-content p{
	margin: 0;
}

.testimonial-item-content{
	margin-bottom: 15px;
}

.testimonial-item-content p{
	margin: 0;
}

.testimonial-rating i{
	font-size: 16px;
	color: var(--accent-secondary-color);
}

/************************************/
/***        16. Our FAQs css      ***/
/************************************/

.our-faqs{
	padding: 80px 0;
	background: var(--white-color);
}

.our-faqs .section-title h3{
	margin-bottom: 10px;
}

.our-faqs .section-title h3.text-anime-style-2{
	margin-bottom: 50px;
}

.faq-accordion .accordion-item{
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #f5f5f5 !important;
	border-radius: 12px !important;
	margin-bottom: 15px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
}

.faq-accordion .accordion-item:hover{
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
	transform: translateY(-2px);
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion-header{
	position: relative;
}

.faq-accordion-button{
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5em;
	background: #f5f5f5 !important;
	color: #1a1a1a !important;
	padding: 18px 45px 18px 20px;
	transition: all 0.3s ease-in-out;
	border: none !important;
	box-shadow: none !important;
	text-align: left;
	width: 100%;
	cursor: pointer;
	position: relative;
	border-radius: 12px !important;
}

.faq-accordion-button:not(.collapsed){
	background: #f5f5f5 !important;
	color: #1a1a1a !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	border-radius: 12px 12px 0 0 !important;
}

.faq-accordion-button.collapsed{
	color: #1a1a1a !important;
	background: #f5f5f5 !important;
}

.faq-accordion-button:hover{
	background: #eeeeee !important;
}

.faq-accordion-button::after,
.faq-accordion-button.collapsed::after{
	content: '+';
	font-family: Arial, sans-serif;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 300;
    line-height: normal;
    color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion-button:not(.collapsed)::after{
	content: '−';
	color: var(--accent-color);
}

.faq-accordion-button.collapsed::after{
	content: '+';
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: #f5f5f5 !important;
	border-top: none !important;
	padding: 20px;
	z-index: 1;
	border-radius: 0 0 12px 12px !important;
}

.faq-accordion .accordion-item .accordion-body p{
    color: #4a4a4a;
	margin: 0;
	font-size: 16px;
	line-height: 1.7em;
}

.faqs-image{
	position: relative;
	padding: 35px 35px 30px 45px;
	margin-left: 20px;
}

.faqs-image::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: var(--accent-secondary-color);
	border-radius: 30px;
	width: 310px;
	height: 310px;
}

.faqs-image figure{
	position: relative;
	display: block;
	border-radius: 30px;
	z-index: 1;
}

.faqs-image img{
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
	border-radius: 30px;
}

.faqs-contact-box{
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	padding: 20px;
	animation: contactbox 3s infinite linear;
	overflow: hidden;
	z-index: 1;
}

@keyframes contactbox{
	50%{
		left: 40px;
	}
}

.faqs-contact-box::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faqs-contact-box:hover:before{
	border-radius: 0;
	height: 100%;
}

.faqs-contact-box .icon-box{
	position: relative;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	z-index: 1;
}

.faqs-contact-box .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}

.faqs-contact-box-content{
	position: relative;
	width: calc(100% - 65px);
	z-index: 1;
}

.faqs-contact-box-content h3{
	font-size: 20px;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.faqs-contact-box-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.faqs-contact-box:hover .faqs-contact-box-content p,
.faqs-contact-box:hover .faqs-contact-box-content h3{
	color: var(--white-color);
}

.faqs-contact-box-content p a{
	color: inherit;
}

/************************************/
/***      17. Our Blog css        ***/
/************************************/

.our-blog{
	position: relative;
	padding: 50px 0 70px;
}

.our-blog::before{
    content: '';
    position: absolute;
    top: -90px;
    right: -60px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.post-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;	
    display: block;
	border-radius: 30px;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.645;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

/************************************/
/***       18. Footer css	      ***/
/************************************/

.footer-main{
	position: relative;
    background: url('../images/footer-bg.svg'), var(--accent-color);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
	padding: 80px 0 0 0;
}

.footer-main::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    height: 500px;
    width: 350px;
    transform: rotateY(180deg) translateY(-85%);
    z-index: 0;
    opacity: 0.15;
}

.footer-main::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: -80px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    height: 450px;
    width: 320px;
    z-index: 0;
    opacity: 0.15;
}

.footer-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-about{
    width: calc(78% - 10px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logo{
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 40px;
    padding-right: 70px;
}

.footer-logo img{
    width: 100%;
    max-width: 181px;
}

.about-footer-content{
    width: calc(100% - 292px);
}

.about-footer-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-social-links{
    width: calc(22% - 15px);
    text-align: right;
}

.footer-social-links ul{
	display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin: 0;
}

.footer-social-links ul li a{
	width: 36px;
	height: 36px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li:hover a{
	background: var(--primary-color);
}

.footer-social-links ul li a i{
    color: inherit;
    font-size: 18px;
}

.footer-links h3{
	font-size: 20px;
    color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
    color: var(--white-color);
	line-height: 1.7em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-secondary-color);
}

.footer-contact-links{
    margin-right: 50px;
}

.footer-newsletter-box .section-title h2{
    color: var(--white-color);
}

.newsletter-form .form-group{
	display: flex;
}

.newsletter-form .form-group .form-control{
	width: calc(100% - 56px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-secondary-color);
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--primary-color);
    transform: rotate(15deg);
}

.newsletter-form .form-group .newsletter-btn i{
    font-size: 24px;
    color: var(--white-color);
	padding-right: 5px;
}

/* Newsletter Message Styles */
.newsletter-message{
	margin-top: 15px;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	display: none;
	animation: fadeIn 0.3s ease-in;
}

.newsletter-message-success{
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.newsletter-message-error{
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer-copyright{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding: 50px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-privacy-policy ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li{
	position: relative;
    color: var(--white-color);
	text-transform: capitalize;
	display: inline-block;
	margin-right: 10px;
    padding-right: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover{
	color: var(--accent-secondary-color);
}

.footer-privacy-policy ul li::before{
	content: '/';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: var(--white-color);
}

.footer-privacy-policy ul li:last-child{
	padding: 0;
	margin: 0;
}

.footer-privacy-policy ul li:last-child:before{
	display: none;
}

.footer-privacy-policy ul li a{
	color: inherit;
}

/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
    background: url('../images/page-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 153px 0 56px;
}

.page-header::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	right: 0;
	bottom: 0;
    left: 0;
    background: linear-gradient(269.99deg, rgba(30, 30, 30, 0) 43.61%, rgba(30, 30, 30, 0.828125) 78.06%, #1E1E1E 101.51%),linear-gradient(360deg, rgba(30, 30, 30, 0.1) 78.13%, #1E1E1E 102.84%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Palm Tree Decorative Elements for Page Header */
.page-header::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    height: 500px;
    width: 350px;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.page-header .container::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: -80px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    height: 450px;
    width: 320px;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
    transform: scaleX(-1);
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	color: var(--white-color);
    font-size: 60px;
    text-transform: uppercase;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "/";
    color: var(--white-color);
}

.our-approach{
	padding: 50px 0;
}

.our-approach-body{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px;
}

.mission-vision-item{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.mission-vision-item:last-child{
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}

.mission-vision-item h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	margin-bottom: 15px;
}

.mission-vision-item p{
	margin: 0;
}

.our-approach-image{
	position: relative;
	padding-right: 222px;
	margin-left: 15px;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure{
	display: block;
}

.our-approach-img-1 img,
.our-approach-img-2 img{
	width: 100%;
	object-fit: cover;
}

.our-approach-img-1 figure{
	border-radius: 999px;
}

.our-approach-img-1 img{
	aspect-ratio: 1 / 1.796;
	border-radius: 999px;
}

.our-approach-img-2{
	max-width: 364px;
	position: absolute;
	right: 0;
	bottom: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
}

.our-approach-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.291;
}

.approach-explore-more-circle{
	position: absolute;
	top: 30px;
	right: 20px;
}

.approach-explore-more-circle a{
	display: block;
	border-radius: 50%;
}

.approach-explore-more-circle img{
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.who-we-are{
	padding: 50px 0;
}

.who-we-are-image{
	position: relative;
}

.who-we-are-image:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 380px;
	height: 380px;
	background: url('../images/who-we-are-image-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 0;
	animation: whoweimagebg 20s infinite linear;
}

@keyframes whoweimagebg{
	from{
		transform: translate(-50% , -50%) rotate(0deg);
	  }
	to{
		transform: translate(-50% , -50%) rotate(360deg);
	}
}

.who-we-are-image figure{
	position: relative;
	display: block;
	z-index: 1;
}

.who-we-are-image img{
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
}

.who-we-are-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.we-are-item{
	width: calc(50% - 15px);
	display: flex;
}

.we-are-item .icon-box{
	margin-right: 20px;
}

.we-are-item .icon-box img{
	width: 100%;
	max-width: 60px;
}

.we-are-item-content{
	width: calc(100% - 80px);
}

.we-are-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.we-are-item-content p{
	margin: 0;
}

.our-expertise{
	padding: 50px 0;
}

.our-expertise-body ul{
	list-style: disc;
    padding: 0;
	padding-left: 20px;
    margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 40px;
}

.our-expertise-body ul li{
	width: calc(50% - 20px);
	line-height: 1.4em;
}

.our-expertise-body ul li::marker{
    color: var(--accent-color);
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
	gap: 10px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title{
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.expertise-image{
	position: relative;
	padding: 0 0 60px 80px;
	overflow: hidden;
	margin-left: 15px;
}

.expertise-img figure{
	display: block;
	border-radius: 30px;
}

.expertise-img img{
	width: 100%;
	aspect-ratio: 1 / 0.891;
	object-fit: cover;
	border-radius: 30px;
}

.expertise-image-list{
	max-width: 216px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	z-index: 1;
}

.expertise-list-img{
	border: 6px solid var(--white-color);
	border-radius: 20px;
	overflow: hidden;
}

.expertise-list-img img{
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.expertise-explore-more-circle{
	position: absolute;
	right: 130px;
	bottom: 0;
	border: 6px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.expertise-explore-more-circle a{
	display: block;
	border-radius: 50%;
}

.expertise-explore-more-circle img{
	width: 100%;
	max-width: 140px;
	animation: infiniterotate 20s infinite linear;
}

.our-features.about-our-features{
    position: relative;
}

.our-features.about-our-features::before{
    content: '';
    position: absolute;
    top: -105px;
    right: -140px;
    background-image: url(../images/section-bg-img-3.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    height: 417px;
    width: 431px;
    z-index: 0;
}

.our-team{
	padding: 50px 0 20px;
}

.team-member-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-member-item .team-image{
	width: 47%;
}

.team-image a{
	height: 100%;
    display: block;
	cursor: none;
}

.team-image figure{
	height: 100%;
}

.team-image img{
	height: 100%;
    width: 100%;
	aspect-ratio: 1 / 1.033;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image img{
	transform: scale(1.1);
}

.team-member-item .team-body{
	width: 53%;
}

.team-body{
	align-content: center;
	padding: 40px;
}

.team-content{
	margin-bottom: 15px;
}

.team-content p{
	color: var(--accent-secondary-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h2{
	font-size: 20px;
	text-transform: capitalize;
}

.team-content h2 a{
	color: inherit;
}

.team-body-content{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-body-content p{
	margin: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.team-social-icon ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.our-testimonials.about-our-testimonials{
    position: relative;
}

.our-testimonials.about-our-testimonials::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: -60px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    height: 251px;
    width: 308px;
    transform: translateY(68%);
    z-index: 0;
}

.our-appointment{
	padding: 50px 0;
}

.our-appointment-box{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 70px;
	padding: 100px;
}

.our-appointment-content,
.appointment-form{
	width: calc(50% - 35px);
}

.appointment-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 17px 20px;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder{
	text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select{
	padding: 16px 30px 16px 20px;
}

.appointment-form form .form-group select option{
	color: var(--primary-color);
}

.appointment-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.appointment-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.appointment-item .icon-box{
	margin-right: 20px;
}

.appointment-item .icon-box img{
	max-width: 60px;
}

.appointment-item-content{
	width: calc(100% - 80px);
}

.appointment-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.appointment-item-content p{
	margin: 0;
}

.appointment-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.appointment-item-content p a:hover{
	color: var(--primary-color);
}

.our-faqs.about-faqs{
	padding: 50px 0 100px;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services{
	position: relative;
	padding: 100px 0 50px;
}

.page-services::before{
    content: '';
    position: absolute;
    bottom: 50px;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

.page-service-single{
	position: relative;
    padding: 100px 0;
}

.page-service-single::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    height: 450px;
    width: 300px;
    z-index: 0;
    opacity: 0.15;
}

.page-service-single::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    height: 400px;
    width: 280px;
    z-index: 0;
    opacity: 0.15;
    transform: scaleX(-1);
}

.page-single-sidebar{
    position: sticky;
    top: 20px;
	margin-right: 20px;
	margin-bottom: 0;
}

.page-catagery-list{
	background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 30px;
}

.page-catagery-list ul li{
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    margin: 0;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: 1.3em;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--secondary-color);
	border-radius: 15px;
	padding: 17px 45px 17px 20px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--white-color);
}

.page-catagery-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 14px;
    height: 14px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before{
    filter: brightness(0) invert(1);
    transform: translate(0px, -50%) rotate(45deg);
}

.page-catagery-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.course-overview-card{
    background: #f5f5f5;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.course-overview-card > *{
    position: relative;
    z-index: 1;
}

.course-overview-card h3{
	font-family: var(--handwritten-bold-font);
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.2;
	text-align: center;
}

.course-overview-detail{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    gap: 8px;
}

.course-overview-detail:last-of-type{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.course-overview-detail-label{
	font-family: var(--handwritten-bold-font);
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 600;
    flex: 0 0 45%;
    line-height: 1.3;
}

.course-overview-detail-value{
	font-family: var(--handwritten-bold-font);
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
    flex: 1;
    line-height: 1.3;
    word-break: break-word;
}

.course-overview-pricing{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.course-pricing-option{
    background: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 5px 8px;
    margin-bottom: 6px;
    text-align: center;
}

.course-pricing-option:last-child{
    margin-bottom: 0;
}

.course-pricing-label{
    font-size: 11px;
    color: #4a4a4a;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-pricing-amount{
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1.1;
}

.course-pricing-original{
    font-size: 14px;
    color: #888888;
    text-decoration: line-through;
}

.course-overview-booking{
    padding-top: 14px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.course-overview-book-now{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-book-now-bali{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 35px;
    background: var(--accent-color);
    color: var(--white-color);
    font-family: var(--handwritten-bold-font);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(61, 73, 58, 0.3);
    cursor: pointer;
    z-index: 1;
}

/* Palm Trees Behind Text - Elegant & Peaceful */
.btn-book-now-bali::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-55%, -50%);
    width: 200px;
    height: 200px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.25;
    transition: all 0.6s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.btn-book-now-bali::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-45%, -50%) scaleX(-1);
    width: 180px;
    height: 180px;
    background-image: url('../images/TheSunYttc-palm.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.22;
    transition: all 0.6s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

/* Elegant Hover Effect */
.btn-book-now-bali:hover{
    background: #4a5d45;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(61, 73, 58, 0.4);
}

.btn-book-now-bali:hover::before{
    opacity: 0.35;
    transform: translate(-55%, -50%) scale(1.08) rotate(-3deg);
}

.btn-book-now-bali:hover::after{
    opacity: 0.3;
    transform: translate(-45%, -50%) scaleX(-1) scale(1.08) rotate(3deg);
}

.btn-book-now-bali:active{
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 73, 58, 0.35);
}

.btn-book-now-bali span{
    position: relative;
    z-index: 2;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.btn-book-now-bali i{
    position: relative;
    z-index: 2;
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white-color);
}

.btn-book-now-bali:hover i{
    transform: translateX(5px);
}

.course-booking-amount{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.course-booking-amount:last-child{
    margin-bottom: 0;
}

.course-booking-label{
    font-size: 11px;
    color: #4a4a4a;
    font-weight: 600;
    flex: 1;
}

.course-booking-value{
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 700;
    white-space: nowrap;
}

.sidebar-cta-box{
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px;
}

.sidebar-cta-image{
    margin-bottom: 20px;
}

.sidebar-cta-image figure{
    display: block;
    border-radius: 30px;
}

.sidebar-cta-image img{
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img{
    transform: scale(1.1);
}

.sidebar-cta-content h3{
    font-size: 20px;
	line-height: 1.3em;
    margin-bottom: 20px;
}

.service-featured-image{
    margin-bottom: 40px;
}

.service-featured-image figure{
    display: block;
    border-radius: 30px;
}

.service-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 30px;
}

/* Share Button Styles */
.page-share-button{
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-share-url{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-family: var(--accent-font);
}

.btn-share-url:hover{
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-share-url i{
    font-size: 18px;
}

.share-success-message{
    display: none;
    opacity: 0;
    padding: 10px 18px;
    background: #4caf50;
    color: var(--white-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease-in-out;
    position: relative;
}

.share-success-message::before{
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #4caf50;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.7em;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.1) 0%, rgba(174, 161, 126, 0.08) 100%);
    border-left: 6px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.service-entry h2:first-child{
    margin-top: 0;
}

.service-entry h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 8px 0 0 8px;
}

.service-entry h2 span{
    color: var(--accent-secondary-color);
}

.service-entry h3{
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #2a2a2a;
    font-weight: 600;
}

.service-entry h3:first-child{
    margin-top: 0;
}

.service-entry ul{
    list-style: none;
    margin: 20px 0 20px 0;
    padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 30px;
}

.service-entry ul:last-child{
    margin-bottom: 0;
}

.service-entry ul li{
	width: calc(33.33% - 20px);
	line-height: 1.5em;
	color: #4a4a4a;
	font-size: 15px;
	position: relative;
	padding-left: 22px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
    top: 2px;
}

/* Daily Schedule Table */
.daily-schedule-table{
    margin: 30px 0 40px;
    overflow-x: auto;
}

.daily-schedule-table table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: whitesmoke;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.daily-schedule-table table thead{
    background: var(--accent-color);
}

.daily-schedule-table table thead th{
    padding: 18px 20px;
    text-align: left;
    font-family: var(--accent-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px dotted rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.daily-schedule-table table thead th:last-child{
    border-right: none;
}

.daily-schedule-table table tbody tr{
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.daily-schedule-table table tbody tr:last-child{
    border-bottom: none;
}

.daily-schedule-table table tbody tr:hover{
    background: rgba(61, 73, 58, 0.03);
}

.daily-schedule-table table tbody td{
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.6em;
    color: #4a4a4a;
    border-right: 1px dotted rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

.daily-schedule-table table tbody td:first-child{
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    width: 140px;
}

.daily-schedule-table table tbody td:nth-child(2){
    font-weight: 600;
    color: #2a2a2a;
    width: 205px;
}

.daily-schedule-table table tbody td:last-child{
    border-right: none;
    color: #6a6a6a;
}

.discover-peace-box,
.service-benefits-box,
.service-process-box{
    margin-top: 60px;
}

.discover-peace-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.discover-peace-item{
    position: relative;
    width: calc(50% - 15px);
    display: flex;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px 25px;
    overflow: hidden;
}

.discover-peace-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.discover-peace-item:hover:before{
	height: 100%;
}

.discover-peace-item .icon-box{
    position: relative;
    margin-right: 20px;
    z-index: 1;
}

.discover-peace-item .icon-box img{
    width: 100%;
    max-width: 60px;
    transition: all 0.4s ease-in-out;
}

.discover-peace-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.discover-peace-item-content{
    position: relative;
    width: calc(100% - 80px);
    z-index: 1;
}

.discover-peace-item-content h3{
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.discover-peace-item-content p{
	margin: 0;
    transition: all 0.4s ease-in-out;
}

.discover-peace-item:hover .discover-peace-item-content h3,
.discover-peace-item:hover .discover-peace-item-content p{
    color: var(--white-color);
}

.discover-peace-info-box{
    display: flex;
    align-items: center;
    background: var(--accent-color);
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0 40px;
}

.discover-peace-info-box .icon-box{
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 30px;
    padding-right: 30px;
}

.discover-peace-info-box .icon-box img{
    width: 100%;
    max-width: 80px;
}

.discover-peace-info-content{
    width: calc(100% - 140px);
}

.discover-peace-info-content h3{
    font-size: 20px;
	line-height: 1.3em;
    color: var(--white-color);
}

.service-benefits-image{
    margin-top: 40px;
}

.service-benefits-image figure{
    width: 100%;
    border-radius: 30px;
}

.service-benefits-image img{
    width: 100%;
    aspect-ratio: 1 / 0.479;
    object-fit: cover;
    border-radius: 30px;
}

.service-process-steps{
    margin-top: 40px;
}

.service-process-steps .how-work-step .how-work-step-no h2{
    font-size: 40px;
    margin-bottom: 0;
}

/************************************/
/***      22. Blog Archive css    ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    color: var(--accent-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***      23. Blog Single css     ***/
/************************************/

.page-single-post{
	position: relative;
	padding: 100px 0;
}

.page-single-post::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-single-post::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 30px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 400;
	line-height: 1.2em;
	margin: 0 0 0.42em;
}

.post-entry h1{
	font-size: 60px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-family: var(--accent-font);
    font-size: 20px;
	font-weight: 400;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
	font-family: var(--default-font);
    font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--accent-secondary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--accent-secondary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

.team-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-item .team-image{
	position: relative;
	margin-bottom: 20px;
}

.team-item .team-image figure:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(61, 73, 58, 0) 61.53%, rgba(61, 73, 58, 0.6) 100%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-image figure:before{
	top: 0;
}

.team-item .team-social-icon{
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-item .team-social-icon ul{
	justify-content: center;
}

.team-item .team-social-icon ul a{
	display: flex;
	cursor: pointer;
}

.team-item .team-image a{
	border-radius: 20px;
    display: block;
	cursor: none;
	overflow: hidden;
}

.team-item .team-image img{
    width: 100%;
	aspect-ratio: 1 / 1.19;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-item .team-content{
	text-align: center;
	margin-bottom: 0;
}

.team-item .team-content h2{
	margin-bottom: 5px;
}

.team-item .team-content p{
	margin: 0;
}

/************************************/
/***      25. Team Single css     ***/
/************************************/

.page-team-single{
	position: relative;
	padding: 100px 0;
}

.page-team-single::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-team-single::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.page-team-single-box{
	display: flex;
	flex-wrap: wrap;
	gap: 100px 0;
}

.team-member-info-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.team-member-image,
.team-member-content{
	width: calc(50% - 30px);
}

.team-member-image{
	border-radius: 30px;
	overflow: hidden;
}

.team-member-image figure{
	display: block;
}

.team-member-image img{
	width: 100%;
    aspect-ratio: 1 / 1.022;
	object-fit: cover;
}

.member-social-list{
	background-color: var(--accent-color);
	padding: 20px 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}

.member-social-list h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
}

.member-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.member-social-list ul li a{
	width: 38px;
	height: 38px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover{
	background: var(--white-color);
	color: var(--primary-color);
}

.member-social-list ul li a i{
	color: inherit;
	font-size: 18px;
}

.member-info-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.member-info-list ul li{
	position: relative;
    width: calc(50% - 15px);
	font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
}

.member-info-list ul li:before{
	content: '';
	position: absolute;
	right: 0;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--divider-color);
}

.member-info-list ul li:nth-last-child(-n + 2):before{
	display: none;
}

.member-info-list ul li span{
    width: 58%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
}

.member-about-list{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.member-about-list ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.member-about-list ul li{
	width: calc(50% - 20px);
	line-height: 1.6em;
}

.member-about-list ul li::marker{
    color: var(--accent-color);
}

.team-member-about .section-title{
	margin-bottom: 0;
}

.team-member-Skill-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.team-member-Skill-feature,
.team-contact-form{
	width: calc(50% - 30px);
}

.member-feature-content{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.member-feature-content .member-about-list{
	background: transparent;
	border-radius: 0;
	border: none;
	padding: 0;
}

/************************************/
/*** 	 26. Pricing Page css	  ***/
/************************************/

.page-pricing{
	position: relative;
	padding: 100px 0 20px;
}

.page-pricing::before{
    content: '';
    position: absolute;
    bottom: 20px;
    left: -100px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

/************************************/
/***   27. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	position: relative;
	padding: 100px 0 50px;
}

.page-testimonials::before{
    content: '';
    position: absolute;
    bottom: 150px;
    left: -100px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-testimonials .our-testimonial-box .testimonial-item{
	width: calc(50% - 15px);
}

/************************************/
/*** 	 28. Dynamic Gallery css	  ***/
/************************************/

/* Dynamic Gallery Section */
.dynamic-gallery-section{
	padding: 100px 0;
	overflow: hidden;
	background: var(--section-bg-color);
	position: relative;
}

.dynamic-gallery-header{
	margin-bottom: 80px;
	padding: 0 20px;
}

/* Dynamic Photo Grid - Masonry Style */
.dynamic-photo-grid{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(300px, auto);
	gap: 25px;
	padding: 0 30px;
	margin-bottom: 100px;
}

/* Large Item - Spans 2 columns, 2 rows */
.dynamic-item-large{
	grid-column: span 6;
	grid-row: span 2;
}

/* Medium Item - Spans 3 columns, 1 row */
.dynamic-item-medium{
	grid-column: span 3;
	grid-row: span 1;
}

/* Small Item - Spans 3 columns, 1 row */
.dynamic-item-small{
	grid-column: span 3;
	grid-row: span 1;
}

/* Text Card - Spans 3 columns, 1 row */
.dynamic-item-text{
	grid-column: span 3;
	grid-row: span 1;
}

/* Dynamic Items */
.dynamic-item{
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.dynamic-item:nth-child(1) { animation-delay: 0.1s; }
.dynamic-item:nth-child(2) { animation-delay: 0.2s; }
.dynamic-item:nth-child(3) { animation-delay: 0.3s; }
.dynamic-item:nth-child(4) { animation-delay: 0.4s; }
.dynamic-item:nth-child(5) { animation-delay: 0.5s; }
.dynamic-item:nth-child(6) { animation-delay: 0.6s; }
.dynamic-item:nth-child(7) { animation-delay: 0.7s; }
.dynamic-item:nth-child(8) { animation-delay: 0.8s; }
.dynamic-item:nth-child(9) { animation-delay: 0.9s; }

.dynamic-image-link{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--white-color);
	padding: 8px;
}

.dynamic-image-link::before{
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--accent-color), rgba(255, 165, 0, 0.5), var(--accent-color));
	border-radius: 30px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	background-size: 200% 200%;
}

.dynamic-image-link:hover::before{
	opacity: 1;
	animation: gradientRotate 3s linear infinite;
}

.dynamic-image-link:hover{
	transform: translateY(-10px) rotate(1deg) scale(1.02);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.dynamic-image-wrapper{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 25px;
}

.dynamic-item-large .dynamic-image-wrapper{
	aspect-ratio: 1 / 1;
}

.dynamic-item-medium .dynamic-image-wrapper{
	aspect-ratio: 4 / 3;
}

.dynamic-item-small .dynamic-image-wrapper{
	aspect-ratio: 1 / 1;
}

.dynamic-image-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-image-link:hover .dynamic-image-wrapper img{
	transform: scale(1.15);
}

.dynamic-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	padding: 30px;
}

.dynamic-image-link:hover .dynamic-overlay{
	opacity: 1;
}

.dynamic-content{
	width: 100%;
}

.dynamic-category{
	font-family: var(--handwritten-font);
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-color);
	background: rgba(255, 255, 255, 0.2);
	padding: 6px 14px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 12px;
	backdrop-filter: blur(10px);
}

.dynamic-title{
	font-family: var(--handwritten-bold-font);
	font-size: 28px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 10px;
	line-height: 1.2em;
	text-transform: lowercase;
}

.dynamic-item-large .dynamic-title{
	font-size: 36px;
}

.dynamic-text{
	font-family: var(--handwritten-bold-font);
	font-size: 15px;
	line-height: 1.7em;
	color: rgba(255, 255, 255, 0.95);
	margin-top: 12px;
}

.dynamic-item-large .dynamic-text{
	font-size: 16px;
}

.dynamic-sticker{
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--white-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--handwritten-font);
	color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transform: rotate(5deg);
	z-index: 2;
	border: 3px solid var(--accent-color);
	letter-spacing: 1px;
	animation: floatSticker 3s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

.dynamic-image-link:hover .dynamic-sticker{
	animation: bounceSticker 0.6s ease;
	transform: rotate(-2deg) scale(1.1);
}

/* Text Card */
.dynamic-text-card{
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(61, 73, 58, 0.08));
	padding: 40px;
	border-radius: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 2px solid rgba(255, 165, 0, 0.2);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.dynamic-text-card::before{
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent);
	border-radius: 50%;
	animation: floatCircle 8s ease-in-out infinite;
}

.dynamic-text-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 165, 0, 0.4);
}

.dynamic-text-card .dynamic-category{
	background: rgba(255, 165, 0, 0.15);
	color: var(--accent-color);
	margin-bottom: 20px;
}

.dynamic-text-card .dynamic-title{
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.dynamic-text-card .dynamic-text{
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 25px;
	line-height: 1.8em;
}

.dynamic-notes{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: auto;
}

.dynamic-note{
	font-family: var(--handwritten-font);
	font-size: 14px;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 165, 0, 0.1);
	padding: 8px 16px;
	border-radius: 20px;
	border: 1.5px solid rgba(255, 165, 0, 0.3);
	transform: rotate(0.5deg);
	transition: all 0.3s ease;
}

.dynamic-note:hover{
	transform: rotate(-0.5deg) scale(1.05);
	background: rgba(255, 165, 0, 0.15);
}

.dynamic-note i{
	color: var(--accent-color);
	font-size: 16px;
}

/* Dynamic Video Grid */
.dynamic-video-grid{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(300px, auto);
	gap: 25px;
	padding: 0 30px;
}

.dynamic-video-featured{
	grid-column: span 8;
	grid-row: span 2;
}

.dynamic-video-medium{
	grid-column: span 4;
	grid-row: span 1;
}

.dynamic-video-small{
	grid-column: span 4;
	grid-row: span 1;
}

.dynamic-video-text{
	grid-column: span 4;
	grid-row: span 1;
}

.dynamic-video-item{
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.dynamic-video-item:nth-child(1) { animation-delay: 0.2s; }
.dynamic-video-item:nth-child(2) { animation-delay: 0.3s; }
.dynamic-video-item:nth-child(3) { animation-delay: 0.4s; }
.dynamic-video-item:nth-child(4) { animation-delay: 0.5s; }
.dynamic-video-item:nth-child(5) { animation-delay: 0.6s; }
.dynamic-video-item:nth-child(6) { animation-delay: 0.7s; }

.dynamic-video-item{
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--white-color);
	padding: 8px;
}

.dynamic-video-item::before{
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--accent-color), rgba(255, 165, 0, 0.5), var(--accent-color));
	border-radius: 30px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	background-size: 200% 200%;
}

.dynamic-video-item:hover::before{
	opacity: 1;
	animation: gradientRotate 3s linear infinite;
}

.dynamic-video-item:hover{
	transform: translateY(-15px) rotate(-1deg) scale(1.03);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.dynamic-video-item:hover video.playing{
	transform: none;
}

.dynamic-video-wrapper{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 25px;
}

.dynamic-video-featured .dynamic-video-wrapper{
	aspect-ratio: 16 / 9;
}

.dynamic-video-medium .dynamic-video-wrapper,
.dynamic-video-small .dynamic-video-wrapper{
	aspect-ratio: 9 / 16;
}

.dynamic-video-wrapper img,
.dynamic-video-wrapper video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

.dynamic-video-player{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #000;
	cursor: pointer;
}

/* Hide all default video controls */
.dynamic-video-player::-webkit-media-controls-panel,
.dynamic-video-player::-webkit-media-controls-play-button,
.dynamic-video-player::-webkit-media-controls-pause-button,
.dynamic-video-player::-webkit-media-controls-current-time-display,
.dynamic-video-player::-webkit-media-controls-time-remaining-display,
.dynamic-video-player::-webkit-media-controls-timeline,
.dynamic-video-player::-webkit-media-controls-volume-slider,
.dynamic-video-player::-webkit-media-controls-mute-button,
.dynamic-video-player::-webkit-media-controls-fullscreen-button,
.dynamic-video-player::-webkit-media-controls-overlay-enclosure,
.dynamic-video-player::-webkit-media-controls-overlay-play-button{
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

/* Hide controls for other browsers */
.dynamic-video-player::-moz-media-controls,
.dynamic-video-player::-moz-media-controls-panel,
.dynamic-video-player::-moz-media-controls-play-button,
.dynamic-video-player::-moz-media-controls-fullscreen-button{
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

.dynamic-video-player::--webkit-media-controls{
	display: none !important;
}

.dynamic-video-wrapper:hover img,
.dynamic-video-wrapper:hover video:not(.playing){
	transform: scale(1.12);
}

.dynamic-video-wrapper video.playing{
	transform: none;
}

.dynamic-video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	opacity: 1;
	transition: opacity 0.4s ease;
	z-index: 1;
	cursor: pointer;
}

.dynamic-video-wrapper:hover .dynamic-video-overlay{
	opacity: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.dynamic-video-wrapper video.playing ~ .dynamic-video-overlay,
.dynamic-video-wrapper video.playing ~ .dynamic-video-overlay ~ .dynamic-play-btn,
.dynamic-video-wrapper video.playing ~ .dynamic-video-overlay ~ .dynamic-video-content{
	opacity: 0 !important;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.dynamic-play-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	opacity: 1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 40px rgba(255, 165, 0, 0.4);
	animation: pulsePlay 2s ease-in-out infinite;
}

.dynamic-video-featured .dynamic-play-btn{
	width: 120px;
	height: 120px;
}

.dynamic-play-btn i{
	font-size: 38px;
	color: var(--white-color);
	margin-left: 4px;
	transition: all 0.3s ease;
}

.dynamic-video-featured .dynamic-play-btn i{
	font-size: 46px;
}

.dynamic-video-wrapper:hover .dynamic-play-btn{
	width: 115px;
	height: 115px;
	box-shadow: 0 15px 50px rgba(255, 165, 0, 0.6);
	transform: translate(-50%, -50%) scale(1.1);
}

.dynamic-video-featured .dynamic-video-wrapper:hover .dynamic-play-btn{
	width: 135px;
	height: 135px;
}

.dynamic-video-wrapper:hover .dynamic-play-btn i{
	font-size: 42px;
	transform: scale(1.1);
}

.dynamic-video-featured .dynamic-video-wrapper:hover .dynamic-play-btn i{
	font-size: 50px;
}

.dynamic-video-content{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.dynamic-video-wrapper:hover .dynamic-video-content{
	opacity: 1;
}

.dynamic-video-content .dynamic-category{
	background: rgba(255, 255, 255, 0.2);
	color: var(--accent-color);
	margin-bottom: 10px;
}

.dynamic-video-content .dynamic-title{
	font-size: 24px;
	color: var(--white-color);
}

.dynamic-video-featured .dynamic-video-content .dynamic-title{
	font-size: 32px;
}

.dynamic-video-sticker{
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--white-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--handwritten-font);
	color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transform: rotate(-3deg);
	z-index: 2;
	border: 3px solid var(--accent-color);
	letter-spacing: 1px;
	animation: floatSticker 3s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

.dynamic-video-wrapper:hover .dynamic-video-sticker{
	animation: bounceSticker 0.6s ease;
}

.dynamic-video-wrapper video.playing ~ .dynamic-video-overlay ~ .dynamic-video-sticker{
	opacity: 0;
	pointer-events: none;
}

/* Video Popup Container */
.video-popup-container{
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: #000;
	border-radius: 15px;
	overflow: hidden;
	padding: 0;
}

.video-popup-player{
	width: 100%;
	height: auto;
	display: block;
	max-height: 80vh;
}

.mfp-video-popup .mfp-content{
	max-width: 1200px;
	width: 90%;
}

.mfp-video-popup .mfp-close{
	color: #fff;
	font-size: 40px;
	right: 10px;
	top: 10px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.mfp-video-popup .mfp-close:hover{
	opacity: 1;
}

/* Image Popup - Equal Width/Height without Frame */
.mfp-image-holder{
	padding: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mfp-image-holder .mfp-close{
	right: 10px;
	top: 10px;
}

.mfp-image-holder .mfp-content{
	max-width: 900px !important;
	max-height: 900px !important;
	width: 900px !important;
	height: 900px !important;
	margin: 0 auto;
	position: relative;
	display: block;
}

.mfp-figure{
	width: 900px !important;
	height: 900px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	line-height: 0;
	padding: 0 !important;
	margin: 0 !important;
}

.mfp-figure:after{
	display: none !important;
}

.mfp-figure figure{
	width: 900px !important;
	height: 900px !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: transparent !important;
	border-radius: 0;
	box-shadow: none !important;
	position: relative;
	overflow: visible;
	box-sizing: border-box !important;
}

.mfp-figure figure:before{
	display: none;
}

.mfp-image-holder img.mfp-img{
	width: 840px !important;
	height: 840px !important;
	max-width: 840px !important;
	max-height: 840px !important;
	min-width: 840px !important;
	min-height: 840px !important;
	object-fit: contain !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	position: relative;
	z-index: 2;
	box-sizing: border-box !important;
	line-height: 0 !important;
}

/* Override any default Magnific Popup image styles */
.mfp-image-holder .mfp-content img.mfp-img,
.mfp-figure img.mfp-img,
.mfp-figure figure img.mfp-img{
	width: 840px !important;
	height: 840px !important;
	max-width: 840px !important;
	max-height: 840px !important;
	min-width: 840px !important;
	min-height: 840px !important;
	padding: 0 !important;
}

/* Hide photo counter */
.mfp-counter{
	display: none !important;
}

/* Disable scrolling in popup */
.mfp-wrap{
	overflow: hidden !important;
}

.mfp-container{
	overflow: hidden !important;
}

.mfp-image-holder{
	overflow: hidden !important;
}

/* Video Popup Responsive */
@media (max-width: 991px) {
	.mfp-video-popup .mfp-content{
		width: 95%;
	}

	.video-popup-player{
		max-height: 70vh;
	}

	.mfp-video-popup .mfp-close{
		font-size: 32px;
		right: 5px;
		top: 5px;
	}
	
	.mfp-image-holder{
		padding: 20px;
	}
	
	.mfp-image-holder .mfp-content{
		max-width: 90vw !important;
		max-height: 90vw !important;
		width: 90vw !important;
		height: 90vw !important;
	}
	
	.mfp-figure{
		width: 90vw !important;
		height: 90vw !important;
	}
	
	.mfp-figure figure{
		width: 90vw !important;
		height: 90vw !important;
		padding: 20px;
	}
	
	.mfp-image-holder img.mfp-img{
		width: calc(90vw - 40px) !important;
		height: calc(90vw - 40px) !important;
		max-width: calc(90vw - 40px) !important;
		max-height: calc(90vw - 40px) !important;
		min-width: calc(90vw - 40px) !important;
		min-height: calc(90vw - 40px) !important;
	}
}

@media (max-width: 767px) {
	.mfp-video-popup .mfp-content{
		width: 98%;
	}

	.video-popup-container{
		border-radius: 10px;
	}

	.video-popup-player{
		max-height: 60vh;
	}

	.mfp-video-popup .mfp-close{
		font-size: 28px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatSticker {
	0%, 100% { transform: rotate(5deg) translateY(0px); }
	50% { transform: rotate(6deg) translateY(-5px); }
}

@keyframes bounceSticker {
	0%, 100% { transform: rotate(-2deg) scale(1.1); }
	50% { transform: rotate(-4deg) scale(1.15); }
}

@keyframes pulsePlay {
	0%, 100% {
		box-shadow: 0 10px 40px rgba(255, 165, 0, 0.4);
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		box-shadow: 0 15px 50px rgba(255, 165, 0, 0.6);
		transform: translate(-50%, -50%) scale(1.05);
	}
}

@keyframes gradientRotate {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes floatCircle {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(20px, -30px) scale(1.1); }
}

/* Gen Z Gallery Section */
.genz-gallery-section{
	padding: 0;
	overflow: hidden;
	background: var(--section-bg-color);
}

/* Gen Z Photo Gallery */
.genz-photo-gallery{
	padding: 100px 0;
}

.genz-section-header{
	margin-bottom: 100px;
	position: relative;
}

.genz-section-header::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
	opacity: 0.3;
}

.genz-handwritten{
	font-family: var(--handwritten-font);
	font-size: 32px;
	font-weight: 600;
	color: var(--accent-color);
	display: block;
	margin-bottom: 15px;
	transform: rotate(-3deg);
	display: inline-block;
	letter-spacing: 1px;
	text-shadow: 2px 2px 0px rgba(255, 165, 0, 0.2);
}

.genz-title{
	font-family: var(--handwritten-bold-font);
	font-size: 52px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.2em;
	letter-spacing: -1px;
	position: relative;
	display: inline-block;
}

.genz-highlight{
	color: var(--accent-color);
	position: relative;
	display: inline-block;
}

.genz-highlight::after{
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	height: 8px;
	background: rgba(255, 165, 0, 0.3);
	transform: rotate(-1deg);
	z-index: -1;
}

/* Gen Z Items */
.genz-item{
	display: flex;
	align-items: center;
	min-height: 500px;
	margin-bottom: 120px;
	position: relative;
	gap: 60px;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.genz-item:nth-child(1) { animation-delay: 0.1s; }
.genz-item:nth-child(2) { animation-delay: 0.3s; }
.genz-item:nth-child(3) { animation-delay: 0.5s; }
.genz-item:nth-child(4) { animation-delay: 0.7s; }
.genz-item:nth-child(5) { animation-delay: 0.9s; }

.genz-item:last-child{
	margin-bottom: 0;
}

.genz-item-1,
.genz-item-3,
.genz-item-5{
	flex-direction: row;
}

.genz-item-2,
.genz-item-4{
	flex-direction: row-reverse;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.04), rgba(61, 73, 58, 0.03));
	padding: 80px 0;
	margin-left: -100px;
	margin-right: -100px;
	padding-left: 100px;
	padding-right: 100px;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
}

.genz-item-2::before,
.genz-item-4::before{
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 165, 0, 0.1), transparent);
	border-radius: 50%;
	animation: floatCircle 8s ease-in-out infinite;
}

.genz-item-2::after,
.genz-item-4::after{
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(61, 73, 58, 0.08), transparent);
	border-radius: 50%;
	animation: floatCircle 10s ease-in-out infinite reverse;
}

@keyframes floatCircle {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(20px, -30px) scale(1.1); }
}

.genz-image-box{
	flex: 0 0 50%;
	position: relative;
	transform: perspective(1000px) rotateY(0deg);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.genz-item:hover .genz-image-box{
	transform: perspective(1000px) rotateY(-2deg) scale(1.02);
}

.genz-image-link{
	display: block;
	position: relative;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--white-color);
	padding: 8px;
}

.genz-image-link::before{
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--accent-color), rgba(255, 165, 0, 0.5), var(--accent-color));
	border-radius: 30px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.genz-image-link:hover::before{
	opacity: 1;
	animation: gradientRotate 3s linear infinite;
}

@keyframes gradientRotate {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.genz-image-link:hover{
	transform: translateY(-15px) rotate(2deg) scale(1.03);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.genz-image-wrapper{
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 25px;
}

.genz-image-wrapper::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 165, 0, 0.1) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.genz-image-link:hover .genz-image-wrapper::after{
	opacity: 1;
	animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

.genz-image-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.genz-image-link:hover .genz-image-wrapper img{
	transform: scale(1.15);
}

.genz-image-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.genz-image-overlay i{
	font-size: 40px;
	color: var(--white-color);
	background: var(--accent-color);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
	transition: all 0.3s ease;
}

.genz-image-link:hover .genz-image-overlay{
	opacity: 1;
}

.genz-image-link:hover .genz-image-overlay i{
	transform: scale(1.15) rotate(5deg);
}

/* Stickers */
.genz-sticker{
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--white-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--handwritten-font);
	color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transform: rotate(5deg);
	z-index: 2;
	border: 3px solid var(--accent-color);
	letter-spacing: 1px;
	animation: floatSticker 3s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

@keyframes floatSticker {
	0%, 100% { transform: rotate(5deg) translateY(0px); }
	50% { transform: rotate(6deg) translateY(-5px); }
}

.genz-image-link:hover .genz-sticker{
	animation: bounceSticker 0.6s ease;
	transform: rotate(-2deg) scale(1.1);
}

@keyframes bounceSticker {
	0%, 100% { transform: rotate(-2deg) scale(1.1); }
	50% { transform: rotate(-4deg) scale(1.15); }
}

.genz-sticker-1{
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 165, 0, 0.1));
	transform: rotate(-3deg);
	top: 15px;
	right: 15px;
	animation-delay: 0s;
}

.genz-sticker-2{
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.2), rgba(61, 73, 58, 0.1));
	color: var(--primary-color);
	border-color: var(--primary-color);
	transform: rotate(4deg);
	top: 25px;
	right: 20px;
	animation-delay: 0.2s;
}

.genz-sticker-3{
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(255, 165, 0, 0.15));
	transform: rotate(-2deg);
	top: 20px;
	right: 25px;
	animation-delay: 0.4s;
}

.genz-sticker-4{
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.15), rgba(61, 73, 58, 0.08));
	color: var(--primary-color);
	border-color: var(--primary-color);
	transform: rotate(3deg);
	top: 18px;
	right: 18px;
	animation-delay: 0.6s;
}

.genz-sticker-5{
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.22), rgba(255, 165, 0, 0.12));
	transform: rotate(-4deg);
	top: 22px;
	right: 22px;
	animation-delay: 0.8s;
}

.genz-text-box{
	flex: 0 0 50%;
	padding: 0 40px;
	position: relative;
}

.genz-text-box::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color), rgba(255, 165, 0, 0.5));
	border-radius: 2px;
	opacity: 0.6;
}

.genz-item-2 .genz-text-box::before,
.genz-item-4 .genz-text-box::before{
	left: auto;
	right: 0;
}

.genz-text-content{
	max-width: 100%;
}

.genz-tag{
	font-family: var(--handwritten-font);
	font-size: 14px;
	font-weight: 600;
	text-transform: lowercase;
	letter-spacing: 1px;
	color: var(--accent-color);
	background: rgba(255, 165, 0, 0.15);
	padding: 8px 18px;
	border-radius: 25px;
	display: inline-block;
	margin-bottom: 20px;
	border: 2px solid rgba(255, 165, 0, 0.4);
	transform: rotate(-1deg);
	box-shadow: 0 3px 10px rgba(255, 165, 0, 0.2);
}

.genz-headline{
	font-family: var(--handwritten-bold-font);
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 25px;
	line-height: 1.2em;
	text-transform: lowercase;
	letter-spacing: -1px;
	position: relative;
}

.genz-copy{
	font-family: var(--handwritten-bold-font);
	font-size: 18px;
	line-height: 1.9em;
	color: var(--text-color);
	margin-bottom: 30px;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.genz-notes{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 25px;
}

.genz-note{
	font-family: var(--handwritten-font);
	font-size: 15px;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 165, 0, 0.08);
	padding: 10px 18px;
	border-radius: 25px;
	border: 1.5px solid rgba(255, 165, 0, 0.3);
	transform: rotate(0.5deg);
	transition: all 0.3s ease;
}

.genz-note:hover{
	transform: rotate(-0.5deg) scale(1.05);
	background: rgba(255, 165, 0, 0.12);
}

.genz-note i{
	color: var(--accent-color);
	font-size: 16px;
}

/* Gen Z Video Gallery */
.genz-video-gallery{
	padding: 120px 0;
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.04), rgba(255, 165, 0, 0.06));
	position: relative;
	overflow: hidden;
}

.genz-video-gallery::before{
	content: '';
	position: absolute;
	top: 10%;
	right: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 165, 0, 0.08), transparent);
	border-radius: 50%;
	animation: floatCircle 12s ease-in-out infinite;
}

.genz-video-gallery::after{
	content: '';
	position: absolute;
	bottom: 15%;
	left: -3%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(61, 73, 58, 0.06), transparent);
	border-radius: 50%;
	animation: floatCircle 15s ease-in-out infinite reverse;
}

.genz-video-item{
	display: flex;
	align-items: center;
	min-height: 400px;
	margin-bottom: 100px;
	gap: 60px;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.genz-video-item:nth-child(1) { animation-delay: 0.2s; }
.genz-video-item:nth-child(2) { animation-delay: 0.4s; }
.genz-video-item:nth-child(3) { animation-delay: 0.6s; }
.genz-video-item:nth-child(4) { animation-delay: 0.8s; }

.genz-video-reverse{
	flex-direction: row-reverse;
}

.genz-video-box{
	flex: 0 0 50%;
	position: relative;
}

.genz-video-link{
	display: block;
	position: relative;
	text-decoration: none;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--white-color);
	padding: 8px;
}

.genz-video-link::before{
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--accent-color), rgba(255, 165, 0, 0.5), var(--accent-color));
	border-radius: 30px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	background-size: 200% 200%;
}

.genz-video-link:hover::before{
	opacity: 1;
	animation: gradientRotate 3s linear infinite;
}

.genz-video-link:hover{
	transform: translateY(-15px) rotate(-2deg) scale(1.03);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.genz-video-thumbnail{
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(61, 73, 58, 0.1));
	border-radius: 25px;
}

.genz-video-thumbnail::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 165, 0, 0.1) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.genz-video-link:hover .genz-video-thumbnail::after{
	opacity: 1;
	animation: shimmer 2s ease-in-out infinite;
}

.genz-video-thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.genz-video-link:hover .genz-video-thumbnail img{
	transform: scale(1.12);
}

.genz-video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.genz-video-link:hover .genz-video-overlay{
	opacity: 1;
}

.genz-play-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 40px rgba(255, 165, 0, 0.4);
	animation: pulsePlay 2s ease-in-out infinite;
}

@keyframes pulsePlay {
	0%, 100% {
		box-shadow: 0 10px 40px rgba(255, 165, 0, 0.4);
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		box-shadow: 0 15px 50px rgba(255, 165, 0, 0.6);
		transform: translate(-50%, -50%) scale(1.05);
	}
}

.genz-play-btn i{
	font-size: 38px;
	color: var(--white-color);
	margin-left: 4px;
	transition: all 0.3s ease;
}

.genz-video-link:hover .genz-play-btn{
	width: 115px;
	height: 115px;
	box-shadow: 0 15px 50px rgba(255, 165, 0, 0.6);
	transform: translate(-50%, -50%) scale(1.1);
}

.genz-video-link:hover .genz-play-btn i{
	font-size: 42px;
	transform: scale(1.1);
}

.genz-video-sticker{
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--white-color);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--handwritten-font);
	color: var(--accent-color);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transform: rotate(-3deg);
	z-index: 2;
	border: 3px solid var(--accent-color);
	letter-spacing: 1px;
	animation: floatSticker 3s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

.genz-video-link:hover .genz-video-sticker{
	animation: bounceSticker 0.6s ease;
	transform: rotate(2deg) scale(1.1);
}

.genz-video-text{
	flex: 0 0 50%;
	padding: 0 40px;
	position: relative;
}

.genz-video-text::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color), rgba(255, 165, 0, 0.5));
	border-radius: 2px;
	opacity: 0.6;
}

.genz-video-reverse .genz-video-text::before{
	left: auto;
	right: 0;
}

.genz-video-text .genz-headline{
	font-size: 34px;
}

.genz-video-text .genz-copy{
	font-size: 17px;
	font-family: var(--handwritten-bold-font);
}

.genz-video-text .genz-tag{
	font-family: var(--handwritten-font);
}

/* Editorial Gallery Section */
.editorial-gallery-section{
	padding: 0;
	overflow: hidden;
	background: var(--section-bg-color);
}

/* Editorial Photo Gallery */
.editorial-photo-gallery{
	padding: 100px 0;
}

.editorial-item{
	display: flex;
	align-items: center;
	min-height: 500px;
	margin-bottom: 80px;
	position: relative;
}

.editorial-item:last-child{
	margin-bottom: 0;
}

.editorial-item-left{
	flex-direction: row;
}

.editorial-item-right{
	flex-direction: row-reverse;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.02), rgba(61, 73, 58, 0.03));
	padding: 60px 0;
	margin-left: -50px;
	margin-right: -50px;
	padding-left: 50px;
	padding-right: 50px;
}

.editorial-image-wrapper{
	flex: 0 0 55%;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.editorial-image-link{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.editorial-image-link figure{
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.editorial-image-link img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-image-link:hover img{
	transform: scale(1.1);
}

.editorial-image-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.editorial-image-overlay i{
	font-size: 36px;
	color: var(--white-color);
	background: rgba(255, 255, 255, 0.2);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.editorial-image-link:hover .editorial-image-overlay{
	opacity: 1;
}

.editorial-image-link:hover .editorial-image-overlay i{
	background: var(--accent-color);
	transform: scale(1.1);
}

.editorial-content-wrapper{
	flex: 0 0 45%;
	padding: 0 60px;
	z-index: 2;
}

.editorial-content{
	max-width: 550px;
}

.editorial-category{
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 15px;
	display: block;
}

.editorial-title{
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	line-height: 1.3em;
	font-family: var(--heading-font);
}

.editorial-description{
	font-size: 17px;
	line-height: 1.9em;
	color: var(--text-color);
	margin-bottom: 25px;
	font-style: italic;
}

.editorial-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 165, 0, 0.2);
}

.editorial-meta span{
	font-size: 14px;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 8px;
}

.editorial-meta i{
	color: var(--accent-color);
	font-size: 16px;
}

/* Editorial Video Gallery */
.editorial-video-gallery{
	padding: 100px 0;
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.03), rgba(255, 165, 0, 0.05));
}

.editorial-video-item{
	display: flex;
	align-items: center;
	min-height: 400px;
	margin-bottom: 60px;
	gap: 50px;
}

.editorial-video-item:nth-child(even){
	flex-direction: row-reverse;
}

.editorial-video-wrapper{
	flex: 0 0 50%;
	position: relative;
}

.editorial-video-link{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-video-link:hover{
	transform: translateY(-10px);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.editorial-video-thumbnail{
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(61, 73, 58, 0.1));
}

.editorial-video-thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-video-link:hover .editorial-video-thumbnail img{
	transform: scale(1.1);
}

.editorial-video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.editorial-video-link:hover .editorial-video-overlay{
	opacity: 1;
}

.editorial-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.editorial-play-button i{
	font-size: 36px;
	color: var(--accent-color);
	margin-left: 4px;
	transition: all 0.3s ease;
}

.editorial-video-link:hover .editorial-play-button{
	width: 110px;
	height: 110px;
	background: var(--accent-color);
	box-shadow: 0 15px 45px rgba(255, 165, 0, 0.5);
}

.editorial-video-link:hover .editorial-play-button i{
	color: var(--white-color);
	font-size: 40px;
	transform: scale(1.1);
}

.editorial-video-content{
	flex: 0 0 50%;
	padding: 0 40px;
}

.editorial-video-content .editorial-category{
	margin-bottom: 12px;
}

.editorial-video-content .editorial-title{
	font-size: 32px;
	margin-bottom: 18px;
}

.editorial-video-content .editorial-description{
	font-size: 16px;
	margin-bottom: 20px;
}

.editorial-video-content .editorial-meta{
	margin-top: 20px;
	padding-top: 20px;
}

/* Story Gallery Section */
.story-gallery-section{
	padding: 0;
	overflow: hidden;
}

/* Hero Story Section */
.story-hero-section{
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.05), rgba(255, 165, 0, 0.03));
	padding: 100px 0;
}

.story-hero-content{
	position: relative;
	z-index: 2;
	padding: 0 50px;
	max-width: 600px;
}

.story-hero-text .story-label{
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 20px;
	display: block;
}

.story-hero-text h2{
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 25px;
	line-height: 1.2em;
}

.story-hero-text h2 span{
	color: var(--accent-color);
}

.story-hero-text p{
	font-size: 18px;
	line-height: 1.8em;
	color: var(--text-color);
}

.story-hero-image{
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.story-hero-image figure{
	width: 100%;
	height: 100%;
	margin: 0;
}

.story-hero-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	transition: transform 0.8s ease;
}

.story-hero-image:hover img{
	transform: scale(1);
}

/* Story Blocks */
.story-block{
	display: flex;
	align-items: center;
	min-height: 600px;
	padding: 100px 0;
	position: relative;
}

.story-block-left{
	flex-direction: row;
}

.story-block-right{
	flex-direction: row-reverse;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.02), rgba(61, 73, 58, 0.05));
}

.story-block-content{
	flex: 0 0 40%;
	padding: 0 60px;
	z-index: 2;
}

.story-text-wrapper{
	max-width: 500px;
}

.story-number{
	font-size: 120px;
	font-weight: 700;
	color: rgba(255, 165, 0, 0.1);
	line-height: 1;
	display: block;
	margin-bottom: -30px;
	font-family: var(--heading-font);
}

.story-title{
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.story-description{
	font-size: 17px;
	line-height: 1.9em;
	color: var(--text-color);
}

.story-images-grid{
	flex: 0 0 60%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
	padding: 0 30px;
	height: 600px;
}

.story-image-item{
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	cursor: pointer;
}

.story-image-large{
	grid-column: span 2;
	grid-row: span 2;
}

.story-image-medium{
	grid-column: span 1;
	grid-row: span 1;
}

.story-image-small{
	grid-column: span 1;
	grid-row: span 1;
}

.story-image-link{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.story-image-link figure{
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.story-image-link img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-link:hover img{
	transform: scale(1.15);
}

.story-image-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.story-image-overlay i{
	font-size: 32px;
	color: var(--white-color);
	background: rgba(255, 255, 255, 0.2);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.story-image-link:hover .story-image-overlay{
	opacity: 1;
}

/* Story Video Section */
.story-video-section{
	padding: 120px 0;
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.03), rgba(255, 165, 0, 0.05));
}

.story-video-header{
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.story-video-header .story-label{
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 20px;
	display: block;
}

.story-video-header h2{
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.story-video-header h2 span{
	color: var(--accent-color);
}

.story-video-header p{
	font-size: 17px;
	line-height: 1.8em;
	color: var(--text-color);
}

.story-video-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.story-video-item{
	position: relative;
}

.story-video-featured{
	grid-column: span 2;
	grid-row: span 2;
}

.story-video-card{
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-video-card:hover{
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.story-video-link{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.story-video-image{
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(61, 73, 58, 0.1));
}

.story-video-featured .story-video-image{
	aspect-ratio: 16 / 9;
}

.story-video-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-video-card:hover .story-video-image img{
	transform: scale(1.1);
}

.story-video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.story-video-card:hover .story-video-overlay{
	opacity: 1;
}

.story-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.story-video-featured .story-play-button{
	width: 120px;
	height: 120px;
}

.story-play-button i{
	font-size: 32px;
	color: var(--accent-color);
	margin-left: 4px;
	transition: all 0.3s ease;
}

.story-video-featured .story-play-button i{
	font-size: 42px;
}

.story-video-card:hover .story-play-button{
	width: 100px;
	height: 100px;
	background: var(--accent-color);
	box-shadow: 0 15px 40px rgba(255, 165, 0, 0.5);
}

.story-video-featured .story-video-card:hover .story-play-button{
	width: 130px;
	height: 130px;
}

.story-video-card:hover .story-play-button i{
	color: var(--white-color);
	font-size: 36px;
	transform: scale(1.1);
}

.story-video-featured .story-video-card:hover .story-play-button i{
	font-size: 46px;
}

.story-video-label{
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: rgba(255, 255, 255, 0.9);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-color);
	z-index: 2;
	backdrop-filter: blur(10px);
}

/* Final Story Section */
.story-final-section{
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(61, 73, 58, 0.05), rgba(255, 165, 0, 0.03));
	padding: 100px 0;
}

.story-final-content{
	position: relative;
	z-index: 2;
	padding: 0 50px;
	max-width: 600px;
	margin-left: auto;
	text-align: right;
}

.story-final-text .story-label{
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 20px;
	display: block;
}

.story-final-text h2{
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 25px;
	line-height: 1.2em;
}

.story-final-text h2 span{
	color: var(--accent-color);
}

.story-final-text p{
	font-size: 18px;
	line-height: 1.8em;
	color: var(--text-color);
	margin-bottom: 35px;
}

.story-final-image{
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.story-final-image figure{
	width: 100%;
	height: 100%;
	margin: 0;
}

.story-final-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	transition: transform 0.8s ease;
}

.story-final-image:hover img{
	transform: scale(1);
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

/* Modern Portrait Video Gallery */
.modern-video-gallery{
	margin-top: 60px;
}

.video-gallery-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	grid-auto-rows: auto;
}

.video-gallery-item{
	position: relative;
}

.video-card{
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 24px;
	overflow: hidden;
	background: var(--white-color);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.video-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-thumbnail{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
	overflow: hidden;
}

.video-image-wrapper{
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(61, 73, 58, 0.1));
}

.video-image-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-image-wrapper img{
	transform: scale(1.1);
}

.video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.video-card:hover .video-overlay{
	opacity: 1;
}

.play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.play-button i{
	font-size: 28px;
	color: var(--accent-color);
	margin-left: 4px;
	transition: all 0.3s ease;
}

.video-card:hover .play-button{
	width: 90px;
	height: 90px;
	background: var(--accent-color);
	box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
}

.video-card:hover .play-button i{
	color: var(--white-color);
	font-size: 32px;
	transform: scale(1.1);
}

/* Staggered grid effect for visual interest */
.video-gallery-item:nth-child(3n+1){
	grid-row: span 1;
}

.video-gallery-item:nth-child(3n+2){
	grid-row: span 1;
}

.video-gallery-item:nth-child(3n+3){
	grid-row: span 1;
}

/* Optional: Add subtle border accent */
.video-card::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 24px;
	padding: 2px;
	background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(255, 165, 0, 0));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}

.video-card:hover::before{
	opacity: 1;
}

/************************************/
/*** 	  30. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	position: relative;
	padding: 100px 0;
}

.page-faqs::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-faqs::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.page-faqs-catagery .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-content{
	margin-right: 30px;
}

.contact-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.contact-info-item{
	width: calc(100% - 15px);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
}

.contact-info-item .icon-box{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-info-item .icon-box img{
	width: 100%;
	max-width: 25px;
}

.contact-item-content{
	width: calc(100% - 70px);
}

.contact-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p{
	margin: 0;
}

.contact-item-content p a{
	color: inherit;
	transition: all  0.3s ease-in-out;
}

.contact-item-content p a:hover{
	color: var(--primary-color);
}

.contact-social-list{
	display: flex;
	align-items: center;
	gap: 15px 20px;
}

.contact-social-list h3{
	font-size: 20px;
	text-transform: capitalize;
}

.contact-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-social-list ul li a{
	width: 38px;
	height: 38px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.contact-social-list ul li a:hover{
	background: var(--primary-color);
}

.contact-social-list ul li a i{
	color: inherit;
	font-size: 18px;
}

.contact-us-form{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 50px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

/* Contact Form Message Styles */
#msgSubmit{
	margin: 20px 0 0 0;
	padding: 18px 28px 18px 60px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	animation: slideDown 0.4s ease-out;
	transition: all 0.3s ease;
	display: block;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

#msgSubmit.hidden{
	display: none !important;
}

.contact-success-message{
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0.06) 100%);
	border: 2px solid rgba(76, 175, 80, 0.4);
	color: #2e7d32;
}

.contact-success-message::before{
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: #4caf50;
}

.contact-error-message{
	background: linear-gradient(135deg, rgba(244, 67, 54, 0.12) 0%, rgba(244, 67, 54, 0.06) 100%);
	border: 2px solid rgba(244, 67, 54, 0.4);
	color: #c62828;
}

.contact-error-message::before{
	content: '\f06a';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: #f44336;
}

/* Contact Form Button Loading State */
#contactForm .btn-default:disabled{
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

#contactForm .btn-default .fa-spinner{
	margin-right: 8px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 600px;
}

/************************************/
/*** 	32. Book Appointment css  ***/
/************************************/

.page-book-appointment{
	position: relative;
	padding: 24px 0 24px;
}

.page-book-appointment::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

/* Contact Form Button Container */
.contact-form-btn{
    margin-top: 10px;
}

.contact-form-btn .btn-default{
    margin-bottom: 0;
}

/* Booking Message Styles */
.booking-message{
    margin: 25px 0 0 0;
    padding: 20px 28px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
    animation: slideDown 0.4s ease-out;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.booking-message.hidden{
    display: none;
}

.booking-success-message{
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0.06) 100%);
    border: 2px solid rgba(76, 175, 80, 0.4);
    color: #2e7d32;
    position: relative;
    padding: 20px 28px 20px 60px;
    margin: 25px 0 0 0;
}

.booking-success-message::before{
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #4caf50;
}

.booking-error-message{
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.12) 0%, rgba(244, 67, 54, 0.06) 100%);
    border: 2px solid rgba(244, 67, 54, 0.4);
    color: #c62828;
    position: relative;
    padding: 20px 28px 20px 60px;
    margin: 25px 0 0 0;
}

.booking-error-message::before{
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #f44336;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Loading State */
.btn-default:disabled{
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-default .fa-spinner{
    margin-right: 8px;
}

/* Enrollment Form Heading */
.enrollment-form-heading{
    text-align: center;
    margin-bottom: 35px;
    padding: 30px 0;
}

.enrollment-form-heading .heading-icon{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(174, 161, 126, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 6px 25px rgba(174, 161, 126, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.enrollment-form-heading .heading-icon i{
    font-size: 36px;
    color: #fff;
}

.enrollment-form-heading h2{
    font-size: 32px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.enrollment-form-heading p{
    font-size: 16px;
    color: #6a6a6a;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(174, 161, 126, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(174, 161, 126, 0.5);
    }
}

/* Enrollment Page Form Styling */
.page-book-appointment .appointment-form{
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(174, 161, 126, 0.15);
    width: 100%;
    margin-bottom: 30px;
}

/* Enrollment Info Box */
.enrollment-info-box{
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(174, 161, 126, 0.15);
}

.info-box-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.info-box-item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon{
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(174, 161, 126, 0.15) 0%, rgba(61, 73, 58, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-box-item:hover .info-icon{
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(174, 161, 126, 0.9) 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(174, 161, 126, 0.3);
}

.info-icon i{
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.info-box-item:hover .info-icon i{
    color: #fff;
}

.info-content{
    flex: 1;
    padding-top: 5px;
}

.info-content h4{
    font-size: 18px;
    color: #2a2a2a;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p{
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.7;
    margin: 0;
}

/* Enrollment Process Box */
.enrollment-process-box{
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(174, 161, 126, 0.15);
    position: sticky;
    top: 100px;
}

.enrollment-process-box .section-title{
    margin-bottom: 30px;
}

.enrollment-process-box .section-title h3{
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enrollment-process-box .section-title h2{
    font-size: 26px;
    margin-bottom: 0;
    line-height: 1.3;
}

.enrollment-process-steps{
    margin-bottom: 30px;
}

.process-step{
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-step:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number{
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(174, 161, 126, 0.9) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(174, 161, 126, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .step-number{
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(174, 161, 126, 0.5);
}

.step-content{
    flex: 1;
    padding-top: 5px;
}

.step-content h4{
    font-size: 18px;
    color: #2a2a2a;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p{
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.6;
    margin: 0;
}

.step-content p strong{
    color: var(--accent-color);
    font-weight: 600;
}

.step-content a{
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.step-content a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}

.enrollment-contact-info{
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.contact-info-item{
    display: flex;
    align-items: center;
}

.contact-info-item .icon-box{
    width: 50px;
    height: 50px;
    background: rgba(174, 161, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-item .icon-box i{
    font-size: 20px;
    color: var(--accent-color);
}

.contact-info-content h4{
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-content p{
    margin: 0;
    font-size: 14px;
    color: #6a6a6a;
}

.contact-info-content a{
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-content a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mobile Styles for Enrollment Process */
@media only screen and (max-width: 991px){
    .enrollment-form-heading{
        margin-bottom: 30px;
        padding: 25px 0;
    }

    .enrollment-form-heading .heading-icon{
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .enrollment-form-heading .heading-icon i{
        font-size: 30px;
    }

    .enrollment-form-heading h2{
        font-size: 26px;
    }

    .enrollment-form-heading p{
        font-size: 15px;
    }

    .enrollment-process-box{
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .process-step{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .step-number{
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }

    .step-content h4{
        font-size: 16px;
    }

    .enrollment-info-box{
        margin-top: 30px;
        padding: 30px 25px;
    }

    .info-box-item{
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .info-icon{
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .info-icon i{
        font-size: 20px;
    }

    .info-content h4{
        font-size: 16px;
    }

    .info-content p{
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px){
    .enrollment-form-heading h2{
        font-size: 22px;
    }

    .enrollment-form-heading p{
        font-size: 14px;
    }
}

/* Payment Details Section */
.payment-details-section{
    padding: 80px 0;
    background: #fafafa;
}

.payment-details-section .section-title{
    margin-bottom: 50px;
}

.payment-option-box{
    background: #fff;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.payment-option-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(174, 161, 126, 0.3);
}

.payment-option-icon{
    text-align: center;
    margin-bottom: 25px;
}

.payment-option-icon i{
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.payment-option-content h3{
    font-size: 24px;
    color: #2a2a2a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.payment-option-content > p{
    color: #6a6a6a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.payment-details{
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.payment-details p{
    margin-bottom: 12px;
    font-size: 14px;
    color: #4a4a4a;
}

.payment-details p strong{
    color: #2a2a2a;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.payment-info{
    color: #5a5a5a;
    padding-left: 15px;
    position: relative;
}

.payment-info::before{
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.payment-info a{
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-info a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}

.payment-note{
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    color: #6a6a6a;
    font-style: italic;
}

.payment-note-box{
    margin-top: 40px;
    padding: 20px 25px;
    background: rgba(174, 161, 126, 0.08);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.payment-note-box{
    background: linear-gradient(135deg, rgba(174, 161, 126, 0.1) 0%, rgba(61, 73, 58, 0.08) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 25px 30px;
}

.payment-note-box p{
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
}

.payment-note-box p:last-child{
    margin-bottom: 0;
}

.payment-note-box i{
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 16px;
}

.payment-arrival-note{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(174, 161, 126, 0.3);
    color: #3d493a !important;
    font-weight: 500;
}

.payment-arrival-note i{
    color: #4caf50;
}

/* Policy Section */
.policy-section{
    padding: 80px 0;
    background: #fff;
}

.policy-section .section-title{
    margin-bottom: 50px;
}

.policy-content-box{
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 12px;
    padding: 45px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-content{
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.policy-content:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-content h3{
    font-size: 22px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-content h3 i{
    color: var(--accent-color);
    font-size: 20px;
}

.policy-content p{
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.policy-content p:last-child{
    margin-bottom: 0;
}

.policy-content p strong{
    color: #2a2a2a;
    font-weight: 600;
}


.policy-strict h3{
    color: #c62828;
}

.policy-strict h3 i{
    color: #f44336;
}

.policy-strict p strong{
    color: #c62828;
}

/* Mobile Styles for Policy Section */
@media only screen and (max-width: 991px){
    .policy-section{
        padding: 60px 0;
    }

    .policy-content-box{
        padding: 35px 30px;
    }

    .policy-content h3{
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px){
    .policy-section{
        padding: 40px 0;
    }

    .policy-content-box{
        padding: 25px 20px;
    }

    .policy-content h3{
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .policy-content p{
        font-size: 14px;
    }

    .payment-note-box{
        padding: 20px 25px;
    }

    .payment-note-box p{
        font-size: 14px;
    }
}

/* Mobile Styles for Payment Section */
@media only screen and (max-width: 991px){
    .payment-details-section{
        padding: 60px 0;
    }

    .payment-option-box{
        margin-bottom: 30px;
        padding: 30px 25px;
    }
}

@media only screen and (max-width: 767px){
    .payment-details-section{
        padding: 40px 0;
    }

    .payment-option-box{
        padding: 25px 20px;
    }

    .payment-option-icon i{
        font-size: 40px;
    }

    .payment-option-content h3{
        font-size: 20px;
    }
}

/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 60%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1300px){
	.our-pricing::before{
        top: -25px;
        height: 197px;
        width: 240px;
    }
}


@media only screen and (max-width: 1024px){

	.header-contact-now{
		display: none;
	}
}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 15px 40px 15px 15px;
	}

	.btn-default::before{
		width: 12px;
		height: 12px;
	}

	.navbar{
		padding: 5px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 45px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 190px 0 100px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 190px 0 100px;
		min-height: auto;
	}
	
	.hero.hero-slider-layout .hero-pagination{
		bottom: 30px;
		padding-left: 15px;
	}

	.hero-content .section-title p{
		margin-top: 20px;
		padding-top: 20px;
	}

	.hero-content .section-title h3{
		margin-bottom: 20px;
	}

	.down-arrow-circle{
		bottom: 10px;
	}

	.down-arrow-circle a img{
		max-width: 100px;
	}

	.down-arrow-circle a i{
		font-size: 30px;
	}

	.about-us{
		padding: 50px 0 25px;
	}

	.about-us::before{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

	.about-images{
		max-width: 80%;
		margin: 20px auto 50px;
	}

	.about-image-title h2{
		font-size: 88px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-content-body{
		margin-bottom: 30px;
	}

	.about-benefit-item{
		margin-bottom: 20px;
	}

	.about-benefit-item .icon-box{
		margin-right: 10px;
	}

	.about-benefit-item .icon-box img{
		max-width: 50px;
	}

	.about-benefit-item-content{
		width: calc(100% - 60px);
	}

	/* About Page Redesign Responsive */
	.about-intro-section{
		padding: 40px 0;
	}

	.about-intro-content{
		margin-left: 0;
		margin-top: 30px;
	}

	.school-history-section{
		padding: 40px 0;
	}

	.history-timeline{
		padding-left: 30px;
	}

	.history-item{
		padding-left: 30px;
		margin-bottom: 40px;
	}

	.history-image{
		margin-top: 40px;
	}

	.vision-mission-section{
		padding: 40px 0;
	}

	.vision-mission-box{
		padding: 30px 25px;
		margin-bottom: 30px;
	}

	.values-box{
		padding: 30px 25px;
		margin-top: 30px;
	}

	.values-list{
		gap: 20px;
	}

	.value-item{
		min-width: 100px;
	}

	.google-reviews-section{
		padding: 40px 0;
	}

	.rating-summary-box{
		padding: 30px 20px;
		margin-bottom: 30px;
	}

	.review-item{
		padding: 20px;
	}

	.our-services{
		padding: 25px 0;
	}

	.service-item{
		border-radius: 20px;
		padding: 20px;
	}

	.service-header{
		margin-bottom: 50px;
	}

	.service-header .icon-box img{
		max-width: 60px;
	}

	.service-btn a{
		width: 40px;
		height: 40px;
	}

	.service-btn a img{
		max-width: 12px;
	}

	.service-content h3{
		margin-bottom: 10px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p span{
		font-size: 14px;
	}

	.what-we-do{
		padding: 25px 0;
	}

	.what-we-do::before{
        left: -50px;
        height: 260px;
        width: 180px;
    }

	.what-we-content,
	.what-we-body{
		margin-bottom: 30px;
	}

	.what-we-body ul{
		gap: 15px 40px;
	}

	.what-we-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.what-we-benefits-box{
		border-radius: 20px;
	}

	.what-we-benefits-list{
		width: 100%;
		gap: 30px;
		padding: 30px;
	}

	.what-we-item .icon-box{
		margin-right: 10px;
	}

	.what-we-item-content{
		width: calc(100% - 50px);
	}

	.what-we-item-content p{
		font-size: 14px;
	}

	.what-we-benefit-image{
		width: 100%;
		border: none;
	}

	.what-we-benefit-image figure{
		height: auto;
	}

	.what-we-benefit-image img{
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.why-choose-us{
		padding: 25px 0;
	}

	.why-choose-image{
		width: 100%;
	}

	.why-choose-item{
		width: calc(50% - 15px);
		padding: 20px;
	}

	.why-choose-item .icon-box{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box img{
		max-width: 60px;
	}

	.why-choose-counter-box{
		gap: 30px;
		margin-top: 40px;
		padding-top: 40px;
	}

	.why-choose-counter-item{
		display: block;
		width: calc(25% - 22.5px);
	}

	.why-choose-counter-item::before{
		right: -15px;
	}

	.why-choose-counter-item .icon-box{
        margin: 0 0 10px 0;
    }

	.why-choose-counter-item .icon-box img{
		max-width: 40px;
	}

	.why-choose-counter-content h3{
		font-size: 26px;
	}

	.why-choose-counter-content p{
		font-size: 14px;
	}

	.why-choose-counter-item .icon-box{
		margin-right: 10px;
	}

	.our-benefits{
		padding: 25px 0 50px;
	}

	.our-benefits::before{
        height: 260px;
        width: 268px;
    }

	.benefit-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.benefit-item .icon-box img{
		max-width: 60px;
	}

	.our-benefits-image{
		width: 100%;
		max-width: 70%;
		margin: 0 auto;
		margin-top: 30px;
	}

	.intro-video-box{
		height: 500px;
	}

	.intro-video-box .video-play-button a{
		width: 80px;
		height: 80px;
		font-size: 18px;
	}

	.cta-box{
		padding: 25px 0;
	}

	.cta-box .section-title,
	.cta-box .section-btn{
		text-align: center;
	}

	.how-it-work{
		padding: 50px 0 25px;
	}

	.how-work-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.how-work-stpes-box{
		padding-top: 30px;
	}

	.how-work-step{
		margin-bottom: 30px;
	}

	.how-work-step-no{
		margin-right: 15px;
	}

	.how-work-step-no h2{
		font-size: 34px;
	}

	.how-work-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.our-features{
		padding: 25px 0;
	}

	.our-features.about-our-features::before{
		top: -50px;
        right: -75px;
        height: 310px;
        width: 320px;
    }

	.features-item{
		border-radius: 20px;
		padding: 20px 0 0 20px;
		margin-bottom: 30px;
	}

	.features-item-image img{
		aspect-ratio: 1 / 0.5;
	}

	.features-box{
		border-radius: 20px;
	}

	.features-box .features-box-content{
		top: 20px;
		left: 20px;
	}

	.features-box-image img{
		border-radius: 20px;
	}

	.features-box.box-2 .features-box-content{
		left: 20px;
		bottom: 20px;
	}

	.features-box.box-2 .features-box-image img{
		aspect-ratio: 1 / 0.9;
	}

	.features-item.features-box{
		margin-bottom: 0;
	}

	.our-pricing{
		padding: 25px 0 0;
	}

	.our-pricing::after{
        height: 105px;
        width: 290px;
    }

	.pricing-item{
		border-radius: 20px;
	}

	.pricing-content{
		padding: 20px;
	}

	.pricing-title{
		margin-top: -38px;
		margin-bottom: 20px;
	}

	.pricing-content h3{
		padding: 8px 20px;
	}

	.pricing-content h2{
		font-size: 36px;
	}

	.pricing-content p{
		font-size: 14px;
	}

	.pricing-body{
		padding: 20px;
	}

	.pricing-list{
		margin-bottom: 30px;
	}

	.pricing-list ul li{
		margin-bottom: 10px;
	}

	.scrolling-ticker{
		padding: 25px 0;
	}

	.scrolling-ticker-box{
		--gap: 30px;
		padding: 60px 0;
		margin: 30px 0;
	}

	.scrolling-ticker-box .scrolling-content span{
		font-size: 45px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		margin-right: 30px;
	}

	.scrolling-ticker-image img{
		max-width: 60px;
	}

	.scrolling-ticker-image{
		transform: translateY(30px);
	}
	
	.scrolling-ticker-images .scrolling-ticker-image:nth-child(even){
		transform: translateY(-30px);
	}
	
	.our-testimonials{
		padding: 25px 0;
	}

	.testimonial-image-content{
		margin-bottom: 30px;
	}

	.testimonial-image figure{
		border-radius: 20px;
	}

	.testimonial-image img{
		aspect-ratio: 1 / 0.64;
		border-radius: 20px;
	}

	.testimonial-review-box{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-review-header{
		margin-bottom: 40px;
	}

	.testimonial-review-title h3{
		font-size: 26px;
	}

	.testimonial-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-author{
		margin-bottom: 20px;
	}

	.our-faqs{
		padding: 25px 0;
	}

	.our-faqs{
		padding: 60px 0;
	}

	.our-faqs-content{
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 18px;
		border-radius: 10px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 18px 45px 18px 20px;
		font-size: 17px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after{
		transform: translateY(-50%) rotate(180deg);
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 20px 45px 20px 20px;
	}

	.faqs-image{
		padding: 35px 35px 30px 45px;
		margin-left: 0;
	}

	.faqs-image::before{
		border-radius: 20px;
	}

	.faqs-image figure{
		border-radius: 20px;
	}

	.faqs-image img{
		aspect-ratio: 1 / 0.8;
		border-radius: 20px;
	}

	.faqs-contact-box{
		border-radius: 12px;
		padding: 15px;
	}

	.our-blog{
		padding: 25px 0 20px;
	}

	.our-blog::before{
        top: -65px;
        right: -40px;
        height: 180px;
        width: 220px;
    }

	.post-item{
		border-radius: 20px;
		padding: 20px;
	}

	.post-featured-image,
	.post-item-content{
		margin-bottom: 15px;
	}

	.post-featured-image a{
		border-radius: 20px;
	}

	.footer-main{
        padding: 40px 0 0 0;
    }

	.footer-main::before{
        left: -75px;
        height: 310px;
        width: 320px;
    }

    .footer-header{
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .footer-about{
        width: calc(70% - 10px);
    }

    .footer-logo{
        margin-right: 20px;
        padding-right: 20px;
    }

    .about-footer-content{
        width: calc(100% - 222px);
    }

    .footer-social-links{
        width: calc(30% - 10px);
    }

    .footer-social-links ul li{
        margin-right: 10px;
    }
    
    .footer-links{
        margin-bottom: 30px;
    }

    .footer-links h3{
        margin-bottom: 20px;
    }

    .footer-links ul li{
        margin-bottom: 10px;
    }

    .footer-contact-links{
        margin-right: 0;
    }

	.footer-newsletter-box{
		margin-bottom: 30px;
	}

	.footer-newsletter-box .section-title{
		margin-bottom: 20px;
	}

    .newsletter-form .form-group .form-control{
        width: calc(100% - 48px);
        padding: 11px 20px;
    }

    .newsletter-form .form-group .newsletter-btn{
        width: 48px;
        height: 48px;
    }

    .newsletter-form .form-group .newsletter-btn i{
        font-size: 20px;
    }

    .newsletter-message{
        font-size: 13px;
        padding: 10px 15px;
    }

    .footer-copyright{
        margin-top: 0px;
        padding: 30px 0;
    }

    .footer-privacy-policy ul li{
        margin-right: 3px;
        padding-right: 12px;
    }

	.page-header{
		padding: 117px 0 44px;
	}
	
	.page-header-box h1{
		font-size: 45px;
		margin-bottom: 5px;
	}

	.our-approach{
		padding: 25px 0;
	}

	.our-approach-content{
		margin-bottom: 30px;
	}

	.our-approach-body{
		padding: 30px;
	}

	.mission-vision-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.mission-vision-item h3{
		margin-bottom: 10px;
	}

	.our-approach-image{
		max-width: 80%;
		margin: 0 auto;
		padding-right: 180px;
	}

	.our-approach-img-1 img{
		aspect-ratio: 1 / 1.65;
	}

	.approach-explore-more-circle img{
		max-width: 140px;
	}

	.who-we-are{
		padding: 25px 0;
	}

	.who-we-are-image{
		max-width: 75%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.who-we-are-image:before{
		width: 330px;
		height: 330px;
	}

	.who-we-are-body{
		margin-bottom: 30px;
	}

	.we-are-item .icon-box{
		margin-right: 10px;
	}

	.we-are-item .icon-box img{
		max-width: 50px;
	}

	.we-are-item-content{
		width: calc(100% - 60px);
	}

	.our-expertise{
		padding: 25px 0;
	}

	.our-expertise-content{
		margin-bottom: 30px;
	}

	.our-expertise-body ul{
		margin-bottom: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.expertise-image{
		margin-left: 0;
	}

	.expertise-image-list{
		max-width: 190px;
	}

	.expertise-explore-more-circle{
		right: 90px;
	}

	.expertise-explore-more-circle img{
		max-width: 110px;
	}

	.team-image img{
		aspect-ratio: 1 / 0.95;
	}

	.team-body{
		padding: 30px;
	}

	.team-content{
		margin-bottom: 10px;
	}

	.team-body-content{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-testimonials.about-our-testimonials::before{
        right: -40px;
        height: 180px;
        width: 220px;
    }

	.our-appointment{
		padding: 25px 0;
	}

	.our-appointment-box{
        padding: 50px;
		gap: 30px;
    }

	.our-appointment-content,
	.appointment-form{
		width: 100%;
	}

	.appointment-form form .form-control{
		padding: 12px 15px;
	}

	.appointment-form form .form-group select{
		padding: 10px 30px 10px 15px;
	}

	.appointment-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.appointment-item .icon-box{
		margin-right: 10px;
	}

	.appointment-item .icon-box img{
		max-width: 50px;
	}

	.appointment-item-content{
		width: calc(100% - 60px);
	}

	.our-faqs.about-faqs{
		padding: 25px 0 50px;
	}

	.page-services{
		padding: 50px 0 25px;
	}

	.page-services::before{
        bottom: -15px;
        height: 260px;
        width: 180px;
    }

	.page-service-single{
        padding: 50px 0;
    }

	.page-service-single::before{
        height: 260px;
        width: 180px;
    }

    .page-service-single::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

    .page-single-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }
    
    .course-overview-card{
        padding: 25px 20px;
        max-width: 100%;
        height: auto;
        overflow: visible;
        min-height: auto;
    }
    
    .course-overview-detail{
        margin-bottom: 15px;
        padding-bottom: 15px;
        gap: 10px;
    }
    
    .course-overview-detail-label,
    .course-overview-detail-value{
        font-size: 13px;
    }
    
    .course-overview-pricing{
        flex: 0 0 auto;
        margin-top: 20px;
    }
    
    
    .course-pricing-option{
        padding: 15px 12px;
    }
    
    .course-pricing-amount{
        font-size: 24px;
    }
    
    .course-pricing-original{
        font-size: 15px;
    }

    .page-catagery-list{
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .page-catagery-list h3,
    .page-catagery-list ul{
        padding: 20px;
    }

    .page-catagery-list ul li a{
        border-radius: 10px;
        padding: 13px 35px 13px 15px;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

    .page-catagery-list ul li a::before{
        right: 15px;
        width: 12px;
        height: 12px;
    }

    .sidebar-cta-box{
        border-radius: 20px;
        padding: 20px;
    }

    .sidebar-cta-image figure{
        border-radius: 20px;
    }
    
    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.5;
        border-radius: 20px;
    }

    .sidebar-cta-content h3{
        margin-bottom: 15px;
    }

    .service-featured-image{
        margin-bottom: 30px;
    }

    .service-featured-image figure{
        border-radius: 20px;
    }

    .service-featured-image img{
        aspect-ratio: 1 / 0.51;
        border-radius: 20px;
    }

    .service-entry{
        margin-bottom: 40px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-entry h2{
        font-size: 28px !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
        padding: 15px 20px !important;
    }

    .service-entry h2:first-child{
        margin-top: 0 !important;
    }

    .service-entry h3{
        font-size: 26px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .service-entry h3:first-child{
        margin-top: 0;
    }

    .service-entry ul{
        margin-bottom: 15px;
    }

    .service-entry ul{
        gap: 15px 40px;
    }

    .service-entry ul li{
        font-size: 14px;
        width: calc(50% - 15px);
    }

    .daily-schedule-table{
        margin: 25px 0 30px;
    }

    .daily-schedule-table table thead th{
        padding: 14px 15px;
        font-size: 13px;
    }

    .daily-schedule-table table tbody td{
        padding: 12px 15px;
        font-size: 14px;
    }

    .daily-schedule-table table tbody td:first-child{
        width: 120px;
    }

    .daily-schedule-table table tbody td:nth-child(2){
        width: 160px;
    }

    .yogic-food-section{
        margin-top: 40px;
        padding-top: 30px;
    }

    .yogic-food-section h2{
        font-size: 28px !important;
        margin-bottom: 20px !important;
        padding: 15px 20px !important;
    }

    .food-intro{
        font-size: 16px;
        margin-bottom: 25px;
    }

    .food-text-content{
        padding: 20px 25px;
    }

    .food-text-content p{
        font-size: 15px;
    }

    .discover-peace-box,
    .service-benefits-box,
    .service-process-box{
        margin-top: 40px;
    }

    .discover-peace-item-list{
        gap: 20px;
        margin-top: 30px;
    }

    .discover-peace-item{
        width: calc(50% - 10px);
        padding: 20px 15px;
    }

    .discover-peace-item .icon-box{
        margin-right: 10px;
    }

    .discover-peace-item .icon-box img{
        max-width: 50px;
    }

    .discover-peace-item-content{
        width: calc(100% - 60px);
    }

    .discover-peace-info-box{
        margin: 20px 0 30px;
    }

    .discover-peace-info-box .icon-box{
        margin-right: 20px;
        padding-right: 20px;
    }

    .discover-peace-info-box .icon-box img{
        max-width: 60px;
    }

    .discover-peace-info-content{
        width: calc(100% - 100px);
    }

    .service-benefits-image{
        margin-top: 30px;
    }

    .service-benefits-image figure,
    .service-benefits-image img{
        border-radius: 20px;
    }

    .service-process-steps{
        margin-top: 30px;
    }

    .service-process-steps .how-work-step .how-work-step-no h2{
        font-size: 34px;
    }

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.page-single-post::before{
        left: -80px;
        height: 260px;
        width: 180px;
    }

    .page-single-post::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}
	
	.post-image{
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
		
	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6{
		margin: 0 0 0.417em;
	}

	.post-entry h2{
		font-size: 36px;
	}

	.post-entry p{
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-tags .tag-links a{
		padding: 12px 15px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.team-item .team-image{
		margin-bottom: 15px;
	}

	.team-item .team-image img{
		aspect-ratio: 1 / 0.98;
	}

	.team-social-icon{
		left: 20px;
		right: 20px;
	}

	.team-item:hover .team-social-icon{
		bottom: 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.page-team-single::before{
        height: 260px;
        width: 180px;
    }

    .page-team-single::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

	.page-team-single-box{
		gap: 50px 0;
	}

	.team-member-image,
	.team-member-content{
		width: 100%;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.7;
	}

	.member-social-list{
		padding: 20px;
	}

	.member-info-list ul{
		gap: 40px 30px;
		margin-bottom: 30px;
	}

	.member-info-list ul li:before{
		bottom: -20px;
	}

	.member-about-list{
		padding: 20px;
	}

	.member-about-list ul{
		gap: 10px 40px;
	}

	.team-member-Skill-feature,
	.team-contact-form{
		width: 100%;
	}

	.member-feature-content{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.page-pricing{
		padding: 50px 0 0px;
	}

	.page-pricing::before{
        height: 260px;
        width: 180px;
    }

	.page-testimonials{
		padding: 50px 0 25px;
	}

	.page-testimonials::before{
        height: 260px;
        width: 180px;
    }

	.page-gallery{
		padding: 50px 0 20px;
	}

	/* Story Gallery Responsive */
	.story-hero-section{
		min-height: auto;
		flex-direction: column;
		padding: 60px 0;
	}

	.story-hero-content{
		padding: 0 20px;
		max-width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.story-hero-text h2{
		font-size: 32px;
	}

	.story-hero-image{
		position: relative;
		width: 100%;
		height: 400px;
	}

	.story-block{
		flex-direction: column !important;
		min-height: auto;
		padding: 60px 0;
	}

	.story-block-content{
		flex: 0 0 100%;
		padding: 0 20px;
		margin-bottom: 40px;
		text-align: center;
	}

	.story-text-wrapper{
		max-width: 100%;
	}

	.story-number{
		font-size: 80px;
	}

	.story-title{
		font-size: 28px;
	}

	.story-images-grid{
		flex: 0 0 100%;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		height: auto;
		padding: 0 20px;
		gap: 15px;
	}

	.story-image-item{
		height: 300px;
	}

	.story-image-large,
	.story-image-medium,
	.story-image-small{
		grid-column: span 1;
		grid-row: span 1;
	}

	.story-video-section{
		padding: 60px 0;
	}

	.story-video-header{
		margin-bottom: 40px;
		padding: 0 20px;
	}

	.story-video-header h2{
		font-size: 28px;
	}

	.story-video-grid{
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 20px;
	}

	.story-video-featured{
		grid-column: span 1;
		grid-row: span 1;
	}

	.story-video-image{
		aspect-ratio: 9 / 16;
	}

	.story-play-button{
		width: 70px;
		height: 70px;
	}

	.story-play-button i{
		font-size: 24px;
	}

	.story-video-card:hover .story-play-button{
		width: 80px;
		height: 80px;
	}

	.story-video-card:hover .story-play-button i{
		font-size: 28px;
	}

	.story-final-section{
		min-height: auto;
		flex-direction: column;
		padding: 60px 0;
	}

	.story-final-content{
		padding: 0 20px;
		max-width: 100%;
		margin: 0;
		text-align: center;
		margin-bottom: 40px;
	}

	.story-final-text h2{
		font-size: 32px;
	}

	.story-final-image{
		position: relative;
		width: 100%;
		height: 400px;
	}

	/* Editorial Gallery Responsive */
	.editorial-photo-gallery{
		padding: 60px 0;
	}

	.editorial-item{
		flex-direction: column !important;
		min-height: auto;
		margin-bottom: 50px;
	}

	.editorial-item-right{
		margin-left: 0;
		margin-right: 0;
		padding: 40px 0;
	}

	.editorial-image-wrapper{
		flex: 0 0 100%;
		width: 100%;
		margin-bottom: 30px;
	}

	.editorial-content-wrapper{
		flex: 0 0 100%;
		padding: 0 20px;
	}

	.editorial-title{
		font-size: 28px;
	}

	.editorial-description{
		font-size: 16px;
	}

	.editorial-video-gallery{
		padding: 60px 0;
	}

	.editorial-video-item{
		flex-direction: column !important;
		min-height: auto;
		margin-bottom: 40px;
		gap: 30px;
	}

	.editorial-video-wrapper{
		flex: 0 0 100%;
		width: 100%;
	}

	.editorial-video-content{
		flex: 0 0 100%;
		padding: 0 20px;
	}

	.editorial-video-content .editorial-title{
		font-size: 24px;
	}

	.editorial-play-button{
		width: 80px;
		height: 80px;
	}

	.editorial-play-button i{
		font-size: 28px;
	}

	.editorial-video-link:hover .editorial-play-button{
		width: 90px;
		height: 90px;
	}

	.editorial-video-link:hover .editorial-play-button i{
		font-size: 32px;
	}

	/* Dynamic Gallery Responsive */
	.dynamic-gallery-section{
		padding: 60px 0;
	}

	.dynamic-gallery-header{
		margin-bottom: 50px;
	}

	.dynamic-photo-grid,
	.dynamic-video-grid{
		grid-template-columns: repeat(6, 1fr);
		gap: 20px;
		padding: 0 20px;
	}

	.dynamic-item-large{
		grid-column: span 6;
		grid-row: span 2;
	}

	.dynamic-item-medium,
	.dynamic-item-small,
	.dynamic-item-text{
		grid-column: span 3;
		grid-row: span 1;
	}

	.dynamic-video-featured{
		grid-column: span 6;
		grid-row: span 2;
	}

	.dynamic-video-medium,
	.dynamic-video-small,
	.dynamic-video-text{
		grid-column: span 3;
		grid-row: span 1;
	}

	.dynamic-text-card{
		padding: 30px;
	}

	.dynamic-text-card .dynamic-title{
		font-size: 26px;
	}

	.dynamic-title{
		font-size: 24px;
	}

	.dynamic-item-large .dynamic-title{
		font-size: 30px;
	}

	.dynamic-play-btn{
		width: 80px;
		height: 80px;
	}

	.dynamic-video-featured .dynamic-play-btn{
		width: 100px;
		height: 100px;
	}

	.dynamic-play-btn i{
		font-size: 30px;
	}

	.dynamic-video-featured .dynamic-play-btn i{
		font-size: 38px;
	}

	.dynamic-video-wrapper:hover .dynamic-play-btn{
		width: 90px;
		height: 90px;
	}

	.dynamic-video-featured .dynamic-video-wrapper:hover .dynamic-play-btn{
		width: 110px;
		height: 110px;
	}

	/* Gen Z Gallery Responsive */
	.genz-photo-gallery{
		padding: 60px 0;
	}

	.genz-section-header{
		margin-bottom: 50px;
	}

	.genz-handwritten{
		font-size: 26px;
		font-family: var(--handwritten-font);
	}

	.genz-title{
		font-size: 32px;
	}

	.genz-item{
		flex-direction: column !important;
		min-height: auto;
		margin-bottom: 60px;
		gap: 30px;
	}

	.genz-item-2,
	.genz-item-4{
		margin-left: 0;
		margin-right: 0;
		padding: 40px 0;
	}

	.genz-image-box{
		flex: 0 0 100%;
		width: 100%;
	}

	.genz-text-box{
		flex: 0 0 100%;
		padding: 0 20px;
	}

	.genz-headline{
		font-size: 32px;
		font-family: var(--handwritten-bold-font);
	}

	.genz-copy{
		font-size: 16px;
	}

	.genz-sticker{
		font-size: 12px;
		padding: 6px 14px;
		top: 15px;
		right: 15px;
	}

	.genz-video-gallery{
		padding: 60px 0;
	}

	.genz-video-item{
		flex-direction: column !important;
		min-height: auto;
		margin-bottom: 50px;
		gap: 30px;
	}

	.genz-video-box{
		flex: 0 0 100%;
		width: 100%;
	}

	.genz-video-text{
		flex: 0 0 100%;
		padding: 0 20px;
	}

	.genz-video-text .genz-headline{
		font-size: 24px;
	}

	.genz-play-btn{
		width: 80px;
		height: 80px;
	}

	.genz-play-btn i{
		font-size: 30px;
	}

	.genz-video-link:hover .genz-play-btn{
		width: 90px;
		height: 90px;
	}

	.genz-video-link:hover .genz-play-btn i{
		font-size: 34px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.modern-video-gallery{
		margin-top: 40px;
	}

	.video-gallery-grid{
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 20px;
	}

	.play-button{
		width: 70px;
		height: 70px;
	}

	.play-button i{
		font-size: 24px;
	}

	.video-card:hover .play-button{
		width: 80px;
		height: 80px;
	}

	.video-card:hover .play-button i{
		font-size: 28px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs::before{
        height: 260px;
        width: 180px;
    }
    
    .page-faqs::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }
	
	.page-faqs-catagery .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-info-list{
		margin-bottom: 30px;
	}

	.contact-info-item .icon-box{
		margin-right: 10px;
	}

	.contact-item-content{
		width: calc(100% - 60px);
	}

	.contact-us-form{
		border-radius: 20px;
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	#msgSubmit{
		padding: 15px 20px 15px 50px;
		font-size: 14px;
	}

	#msgSubmit::before{
		left: 18px;
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.page-book-appointment{
		padding: 50px 0 25px;
	}

	.page-book-appointment::before{
        height: 260px;
        width: 180px;
    }

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p{
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px){

	body{
		font-size: 16px;
	}
	x
	.readmore-btn{
		padding: 2px 32px 2px 0;
	}

	.readmore-btn:after{
		width: 24px;
		height: 24px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
    }

	.hero-body{
		gap: 20px;
	}

	.video-play-button a{
		height: 45px;
		width: 45px;
	}

	.video-play-button a i{
		font-size: 16px;
	}

	.hero-body .video-play-button p{
		font-size: 14px;
	}

	.down-arrow-circle{
		right: 0;
		left: 0;
	}

	.down-arrow-circle a img{
        max-width: 80px;
    }

	.down-arrow-circle a i{
        font-size: 24px;
    }

	.about-us::before{
        height: 135px;
        width: 166px;
    }

	.about-images{
		max-width: 100%;
		margin: 0 0 50px 0;
	}

	/* About Page Redesign Mobile */
	.about-intro-section{
		padding: 30px 0;
	}

	.about-intro-content{
		margin-left: 0;
		margin-top: 25px;
	}

	.school-history-section{
		padding: 30px 0;
	}

	.history-timeline{
		padding-left: 25px;
	}

	.history-item{
		padding-left: 25px;
		margin-bottom: 30px;
	}

	.history-item::before{
		left: -15px;
		width: 15px;
		height: 15px;
	}

	.history-year{
		font-size: 20px;
	}

	.history-content-box h3{
		font-size: 20px;
	}

	/* Vision Mission Mobile Responsive */
	.yoga-alliance-badge-section{
		padding: 30px 15px;
		margin-bottom: 30px;
	}

	.badge-icon-box{
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}

	.badge-icon-box i{
		font-size: 36px;
	}

	.badge-content h2{
		font-size: 22px;
	}

	.badge-description{
		font-size: 14px;
	}

	.badge-feature-item span{
		font-size: 14px;
	}

	.certificate-border{
		padding: 25px 15px;
	}

	.certificate-header i{
		font-size: 40px;
	}

	.certificate-header h3{
		font-size: 20px;
	}

	.certificate-body h4{
		font-size: 18px;
	}

	.vision-mission-section{
		padding: 30px 0;
	}

	.vision-mission-content{
		margin-bottom: 30px;
	}

	.vision-mission-box{
		padding: 25px 20px;
		margin-bottom: 25px;
	}

	.vision-mission-header{
		flex-direction: column;
		text-align: center;
		gap: 15px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.vision-mission-icon{
		width: 60px;
		height: 60px;
	}

	.vision-mission-icon i{
		font-size: 28px;
	}

	.vision-mission-box h3{
		font-size: 22px;
	}

	.vision-mission-body p{
		font-size: 14px;
	}

	.vision-points,
	.mission-points{
		gap: 12px;
		margin-top: 20px;
		padding-top: 20px;
	}

	.vision-point span,
	.mission-point span{
		font-size: 14px;
	}

	/* Video Gallery Mobile Responsive */
	.modern-video-gallery{
		margin-top: 30px;
	}

	.video-gallery-grid{
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 15px;
	}

	.video-card{
		border-radius: 20px;
	}

	.play-button{
		width: 60px;
		height: 60px;
	}

	.play-button i{
		font-size: 20px;
	}

	.video-card:hover .play-button{
		width: 70px;
		height: 70px;
	}

	.video-card:hover .play-button i{
		font-size: 24px;
	}

	/* Food Accommodation Mobile Responsive */
	.food-accommodation-intro{
		padding: 30px 0;
	}

	.intro-content{
		margin-left: 0;
		margin-top: 25px;
	}

	.accommodation-section,
	.food-section{
		padding: 30px 0;
	}

	.accommodation-content,
	.food-content{
		margin: 0 0 25px 0;
	}

	.accommodation-features,
	.food-features{
		gap: 18px;
	}

	.feature-item{
		gap: 15px;
	}

	.feature-icon{
		width: 45px;
		height: 45px;
	}

	.feature-icon i{
		font-size: 18px;
	}

	.feature-content h4{
		font-size: 16px;
		margin-bottom: 8px;
	}

	.feature-content p{
		font-size: 13px;
	}

	.accommodation-options{
		margin-top: 25px;
		padding-top: 25px;
	}

	.accommodation-options h4{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.room-option{
		padding: 12px;
	}

	.room-option i{
		font-size: 18px;
	}

	.room-option span{
		font-size: 13px;
	}

	.gallery-item{
		margin-bottom: 15px;
	}

	.gallery-item figure{
		height: 180px;
	}

	.whats-included-section{
		padding: 30px 0;
	}

	.included-box{
		padding: 25px 20px;
		margin-bottom: 20px;
	}

	.included-box h4{
		font-size: 18px;
		margin-bottom: 20px;
	}

	.included-box h4 i{
		font-size: 24px;
	}

	.included-box ul{
		gap: 12px;
	}

	.included-box ul li{
		font-size: 13px;
	}

	.included-box ul li i{
		font-size: 14px;
	}

	.school-surroundings-section{
		margin-bottom: 30px;
	}

	.surrounding-image-item{
		height: 250px;
		margin-bottom: 20px;
	}

	.surrounding-overlay{
		padding: 20px 15px 15px;
	}

	.surrounding-overlay h4{
		font-size: 18px;
	}

	.surrounding-overlay p{
		font-size: 12px;
	}

	.values-section{
		margin-top: 30px;
	}

	.values-box{
		padding: 30px 20px;
	}

	.values-box h3{
		font-size: 24px;
		margin-bottom: 15px;
	}

	.values-intro{
		font-size: 13px;
		margin-bottom: 25px;
	}

	.values-list{
		gap: 20px;
	}

	.value-item{
		min-width: 100px;
	}

	.value-icon{
		width: 60px;
		height: 60px;
	}

	.value-icon i{
		font-size: 28px;
	}

	.value-item span{
		font-size: 14px;
	}

	/* Food Accommodation Responsive */
	.food-accommodation-intro{
		padding: 40px 0;
	}

	.intro-content{
		margin-left: 0;
		margin-top: 30px;
	}

	.accommodation-section,
	.food-section{
		padding: 40px 0;
	}

	.accommodation-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.food-content{
		margin-left: 0;
		margin-top: 30px;
	}

	.accommodation-features,
	.food-features{
		gap: 20px;
	}

	.feature-icon{
		width: 50px;
		height: 50px;
	}

	.feature-icon i{
		font-size: 20px;
	}

	.feature-content h4{
		font-size: 18px;
	}

	.feature-content p{
		font-size: 14px;
	}

	.gallery-item figure{
		height: 200px;
	}

	.whats-included-section{
		padding: 40px 0;
	}

	.included-box{
		padding: 30px 25px;
		margin-bottom: 25px;
	}

	.included-box h4{
		font-size: 20px;
	}

	.included-box ul li{
		font-size: 14px;
	}

	.google-reviews-section{
		padding: 30px 0;
	}

	.rating-summary-box{
		padding: 25px 15px;
		margin-bottom: 25px;
	}

	.rating-number{
		font-size: 36px;
	}

	.stars{
		font-size: 20px;
	}

	.review-item{
		padding: 20px 15px;
	}

	.reviewer-avatar{
		width: 40px;
		height: 40px;
	}

	.reviewer-avatar i{
		font-size: 20px;
	}

	.reviewer-details h4{
		font-size: 16px;
	}

	.about-images::after{
		top: 0;
		background-size: contain;
		max-width: 60%;
	}

	.about-image img{
		max-width: 100%;
		aspect-ratio: 1 / 1.3;
		object-fit: contain;
	}

	.about-image-title{
		right: 20px;
	}

	.about-image-title h2{
        font-size: 58px;
    }

	.about-benefit-item-content h3{
		font-size: 18px;
	}

	.service-header{
        margin-bottom: 30px;
    }

	.service-content h3{
		font-size: 18px;
	}

	.what-we-do::before{
        left: -30px;
        height: 200px;
        width: 138px;
    }

	.what-we-body ul{
        gap: 10px;
    }

	.what-we-body ul li{
		width: 100%;
	}

	.what-we-image{
		background-size: 80% auto;
        max-width: 100%;
    }

	.what-we-benefits-list{
        padding: 30px 20px;
    }

	.what-we-item{
		width: 100%;
	}

	.what-we-item-content h3{
		font-size: 18px;
	}

	.what-we-benefit-image img{
        aspect-ratio: 1 / 0.682;
    }

	.why-choose-content{
		gap: 20px;
	}

	.why-choose-item{
        width: 100%;
    }

	.why-choose-item .icon-box img{
        max-width: 50px;
    }

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.why-choose-counter-item{
        width: calc(50% - 15px);
    }

	.why-choose-counter-item .icon-box img{
		max-width: 30px;
	}

	.why-choose-counter-content h3{
        font-size: 22px;
    }

	.our-benefits::before{
        height: 190px;
        width: 198px;
    }

	.benefit-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.benefit-item .icon-box img{
        max-width: 50px;
    }

	.benefit-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-benefits-image{
        max-width: 100%;
        margin: 30px 0;
    }

	.our-benefits-image::before{
		width: 100%;
		height: 350px;
	}

	.our-benefits-image figure{
		background-size: 90%;
	}

	.our-benefits-image img{
		max-width: 100%;
	}

	.intro-video-box{
		height: 350px;
	}

	.intro-video-box .video-play-button a{
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

	.how-work-step-no h2{
        font-size: 28px;
    }

	.how-work-step-content h3{
		font-size: 18px;
	}

	.how-work-image{
        max-width: 100%;
    }

	.how-work-image::after{
		top: 20px;
		bottom: 20px;
		left: 15px;
		height: calc(100% - 40px);
	}

	.how-work-image figure{
		background-size: 38% auto;
	}

	.features-item{
		margin-bottom: 20px;
	}

	.our-features-boxes{
		gap: 20px;
	}

	.features-box{
		width: 100%;
	}

	.features-box.box-2 .features-box-image img,
	.features-box-image img{
		aspect-ratio: 1 / 0.7;
	}

	.features-box.box-3 .features-item-image img{
		aspect-ratio: 1 / 1.1;
	}

	.features-box-content h3,
	.features-item-content h3{
		font-size: 18px;
	}

	.our-pricing::before{
        top: 0;
        left: -50px;
        height: 163px;
        width: 180px;
    }

    .our-pricing::after{
        right: -30px;
        height: 75px;
        width: 208px;
    }

	.pricing-content h2{
        font-size: 26px;
    }

	.scrolling-ticker-box{
		--gap: 20px;
		padding: 40px 0;
		margin: 25px 0;
	}

	.scrolling-ticker-box .scrolling-content span{
		font-size: 30px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		max-width: 18px;
		margin-right: 20px;
	}

	.scrolling-ticker-image img{
		max-width: 50px;
	}

	.scrolling-ticker-image{
		transform: translateY(25px);
	}
	
	.scrolling-ticker-images .scrolling-ticker-image:nth-child(even){
		transform: translateY(-25px);
	}

	.testimonial-review-box{
        padding: 20px;
    }

	.testimonial-review-header{
		margin-bottom: 30px;
	}

	.testimonial-review-counter p{
		max-width: 100%;
	}

	.testimonial-review-content{
		width: 100%;
	}

	.testimonial-review-btn a{
		width: 46px;
		height: 46px;
	}

	.testimonial-review-btn a img{
		max-width: 12px;
	}

	.testimonial-item{
        padding: 20px;
    }

	.testimonial-author .author-image{
		margin-right: 10px;
	}

	.testimonial-author .author-image img{
		max-width: 50px;
	}

	.testimonial-author .author-content h3{
		font-size: 18px;
	}

	.testimonial-author .author-content p{
		font-size: 14px;
	}

	.testimonial-item-content p{
		font-size: 14px;
	}

	.testimonial-author .author-content{
		width: calc(100% - 60px);
	}

	.our-faqs{
		padding: 40px 0;
	}

	.our-faqs .section-title h3{
		margin-bottom: 10px;
		font-size: 15px;
	}

	.our-faqs .section-title h3.text-anime-style-2{
		margin-bottom: 30px;
		font-size: 26px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 15px;
		border-radius: 12px !important;
		background: #f5f5f5 !important;
		border: 1px solid rgba(0, 0, 0, 0.08) !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
	}

	.faq-accordion-button{
		font-size: 16px;
		padding: 16px 40px 16px 18px;
		line-height: 1.4em;
		background: #f5f5f5 !important;
		border-radius: 12px !important;
	}

	.faq-accordion-button::after,
	.faq-accordion-button.collapsed::after{
		right: 18px;
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
        padding: 18px 40px 18px 18px;
		background: #f5f5f5 !important;
		border-radius: 0 0 12px 12px !important;
    }

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 15px;
		line-height: 1.6em;
	}

	.faqs-image{
        padding: 15px 15px 30px 25px;
		margin-top: 30px;
    }

	.faqs-image::before{
		width: 210px;
		height: 210px;
	}

	.faqs-contact-box{
        padding: 12px 15px;
    }

	.faqs-contact-box .icon-box{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.faqs-contact-box-content{
		width: calc(100% - 50px);
	}

	.faqs-contact-box-content h3{
		font-size: 17px;
	}

	.our-blog::before{
        height: 135px;
        width: 166px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-main::before{
        height: 210px;
        width: 219px;
    }

	.footer-header{
        gap: 15px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-about,
    .footer-social-links,
    .footer-logo,
    .about-footer-content{
        width: 100%;
    }

    .footer-logo{
        margin: 0 0 15px 0;
		padding-right: 0;
        border-right: none;
    }

    .footer-social-links{
        text-align: left;
    }

    .footer-links h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-links ul li{
        margin-bottom: 8px;
    }

    .footer-copyright{
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

	.page-header-box h1{
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 14px;
	}

	.our-approach-body{
        padding: 20px;
    }

	.mission-vision-item h3{
		font-size: 18px;
	}

	.our-approach-image{
		max-width: 100%;
		padding-right: 120px;
	}

	.our-approach-img-2{
		max-width: 190px;
		border-width: 5px;
	}

	.approach-explore-more-circle{
		position: absolute;
		top: 15px;
		right: 10px;
	}

	.approach-explore-more-circle img{
        max-width: 100px;
    }

	.who-we-are-image{
		max-width: 100%;
	}

	.who-we-are-image:before{
		width: 220px;
		height: 220px;
	}

	.who-we-are-body{
		gap: 20px;
	}

	.we-are-item{
		width: 100%;
	}

	.we-are-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-expertise-body ul{
		gap: 10px 40px;
	}

	.our-expertise-body ul li{
		width: 100%;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.expertise-image{
		padding: 0 0 40px 40px;
	}

	.expertise-img figure,
	.expertise-img img{
		border-radius: 20px;
	}

    .expertise-image-list{
        max-width: 120px;
    }

	.expertise-list-img{
		border-width: 3px;
		border-radius: 12px;
	}

	.expertise-explore-more-circle{
		right: 40px;
		border-width: 3px;
	}

	.expertise-explore-more-circle img{
        max-width: 80px;
    }

	.our-features.about-our-features::before{
		right: -40px;
        height: 190px;
        width: 198px;
    }

	.team-member-item .team-image,
	.team-member-item .team-body{
		width: 100%;
	}
	
	.team-image a,
	.team-image figure,
	.team-image img{
		height: auto;
	}

	.team-body{
        padding: 20px;
    }

	.team-content h2{
		font-size: 18px;
	}

	.our-testimonials.about-our-testimonials::before{
        height: 135px;
        width: 166px;
    }

	.our-appointment-box{
		border-radius: 20px;
        padding: 20px;
    }

	.appointment-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.appointment-item-content h3{
		font-size: 18px;
	}

	.page-services::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }    
    
	.page-service-single::before{
        left: -50px;
        height: 250px;
        width: 180px;
        opacity: 0.1;
    }
    
    .page-service-single::after{
        top: 50%;
        height: 220px;
        width: 160px;
        opacity: 0.1;
    }

    /* Page Header Palm Trees - Mobile */
    .page-header::after{
        height: 300px;
        width: 200px;
        left: -30px;
        opacity: 0.15;
    }

    .page-header .container::before{
        height: 280px;
        width: 200px;
        right: -50px;
        opacity: 0.15;
    }

    /* Footer Palm Trees - Mobile */
    .footer-main::before{
        height: 300px;
        width: 220px;
        left: -60px;
        opacity: 0.12;
    }

    .footer-main::after{
        height: 280px;
        width: 200px;
        right: -50px;
        opacity: 0.12;
    }

	.page-catagery-list h3{
        font-size: 18px;
        padding: 15px 20px;
    }

    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.64;
    }

    .sidebar-cta-content h3{
        font-size: 18px;
    }

    .service-featured-image{
        margin-bottom: 20px;
    }

    .service-featured-image img{
        aspect-ratio: 1 / 0.65;
    }

    .service-entry h2{
        font-size: 24px !important;
        margin-top: 35px !important;
        margin-bottom: 18px !important;
        padding: 12px 18px !important;
    }

    .service-entry h2:first-child{
        margin-top: 0 !important;
    }

    .service-entry h3{
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .service-entry h3:first-child{
        margin-top: 0;
    }

    .service-entry ul{
        margin-bottom: 15px;
    }

    .service-entry ul{
        gap: 10px;
    }

    .service-entry ul li{
        width: 100%;
        font-size: 14px;
    }

    .daily-schedule-table{
        margin: 20px 0 25px;
    }

    .daily-schedule-table table{
        font-size: 13px;
    }

    .daily-schedule-table table thead th{
        padding: 12px 10px;
        font-size: 12px;
    }

    .daily-schedule-table table tbody td{
        padding: 10px;
        font-size: 13px;
        display: block;
        border-right: none;
        border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    }

    .daily-schedule-table table tbody td:first-child{
        width: 100%;
        font-weight: 700;
        background: rgba(61, 73, 58, 0.05);
        padding: 10px 12px;
    }

    .daily-schedule-table table tbody td:nth-child(2){
        width: 100%;
        font-weight: 600;
        padding-top: 12px;
    }

    .daily-schedule-table table tbody td:last-child{
        border-bottom: none;
        padding-bottom: 15px;
    }

    .daily-schedule-table table tbody tr{
        display: block;
        margin-bottom: 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .daily-schedule-table table thead{
        display: none;
    }

    .course-overview-card{
        height: auto;
        overflow: visible;
        min-height: auto;
    }

    .course-overview-pricing{
        flex: 0 0 auto;
    }

	.discover-peace-box,
	.service-benefits-box,
	.service-process-box{
        margin-top: 30px;
    }

    .discover-peace-item{
        width: 100%;
    }

    .discover-peace-item-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .discover-peace-item-content p{
        font-size: 14px;
    }

    .discover-peace-info-box{
		display: block;
        margin: 20px 0;
    }

    .discover-peace-info-box .icon-box{
		border-right: none;
        margin-right: 0px;
        padding-right: 0px;
		margin-bottom: 10px;
    }

    .discover-peace-info-content{
        width: 100%;
    }

    .discover-peace-info-content h3{
        font-size: 18px;
    }

    .service-benefits-image img{
        aspect-ratio: 1 / 0.58;
    }

    .service-process-steps .how-work-step{
        margin-bottom: 20px;
    }

    .service-process-steps .how-work-step .how-work-step-no h2{
        font-size: 28px;
    }

	.page-single-post::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-single-post::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.page-team-single::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-team-single::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.team-member-image img{
        aspect-ratio: 1 / 0.9;
    }

	.member-social-list h3{
		font-size: 18px;
	}

	.member-info-list ul{
		gap: 30px;
	}

	.member-info-list ul li{
		width: 100%;
		font-size: 18px;
	}

	.member-info-list ul li:before{
        bottom: -15px;
    }

	.member-info-list ul li:nth-last-child(-n + 2):before{
		display: block;
	}

	.member-info-list ul li:last-child::before{
		display: none;
	}

	.member-info-list ul li span{
		width: 65%;
	}

	.member-about-list ul li{
		width: 100%;
	}

	.page-pricing::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-testimonials::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }

	.page-testimonials .our-testimonial-box .testimonial-item{
		width: 100%;
	}

	.page-faqs::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-faqs::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.contact-info-list{
		gap: 20px;
	}
	
	.contact-info-item{
		width: 100%;
	}

	.contact-item-content h3{
		font-size: 18px;
	}

	.contact-social-list{
		display: block;
	}

    .food-images-grid{
        max-width: 100% !important;
        width: 100% !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 20px !important;
        display: flex !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .food-image-item{
        width: calc(50% - 4px) !important;
        height: 110px !important;
        max-width: calc(50% - 4px) !important;
        max-height: 110px !important;
        flex: 0 0 calc(50% - 4px) !important;
        min-width: 0 !important;
        margin: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
        border: 3px solid rgba(255, 255, 255, 0.9) !important;
        background: var(--white-color) !important;
        padding: 2px !important;
        display: block !important;
    }

    .food-image-item:nth-child(1),
    .food-image-item:nth-child(2),
    .food-image-item:nth-child(3),
    .food-image-item:nth-child(4),
    .food-image-item:nth-child(5),
    .food-image-item:nth-child(6),
    .food-image-item:nth-child(7),
    .food-image-item:nth-child(8){
        width: calc(50% - 4px) !important;
        height: 110px !important;
        max-width: calc(50% - 4px) !important;
        max-height: 110px !important;
        flex: 0 0 calc(50% - 4px) !important;
        min-width: 0 !important;
        margin: 0 !important;
        position: relative !important;
    }

	.contact-social-list h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.contact-social-list ul li a i{
		font-size: 16px;
	}

	.contact-us-form{
		padding: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}

	.page-book-appointment::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
}

/* Yogic Food Section - Base Styles (Desktop) */
.yogic-food-section{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important;
}

.yogic-food-section h2{
    margin-top: 0;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.1) 0%, rgba(174, 161, 126, 0.08) 100%);
    border-left: 6px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.yogic-food-section h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 8px 0 0 8px;
}

.food-intro{
    font-size: 18px;
    line-height: 1.8em;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 500;
}

.food-content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 35px;
    overflow: visible !important;
    position: relative;
}

.service-entry{
    overflow: visible !important;
}

.food-text-content{
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.03) 0%, rgba(174, 161, 126, 0.03) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    border-radius: 12px;
}

.food-text-content p{
    font-size: 16px;
    line-height: 1.8em;
    color: #4a4a4a;
    margin: 0;
}

@media only screen and (min-width: 768px){
    .food-images-grid{
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        width: auto !important;
        max-width: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        background: transparent !important;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap !important;
    }
}

@media only screen and (min-width: 992px){
    .food-images-grid{
        display: flex !important;
        flex-direction: row !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        width: auto !important;
        max-width: none !important;
        gap: 15px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media only screen and (min-width: 768px){
    .food-image-item{
        position: relative !important;
        overflow: hidden !important;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border: 3px solid rgba(255, 255, 255, 0.9);
        background: var(--white-color);
        padding: 2px;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
        margin: 0 !important;
        flex: 0 0 180px !important;
        width: 180px !important;
        height: 140px !important;
        max-width: 180px !important;
        max-height: 140px !important;
        min-width: 180px !important;
    }
}

@media only screen and (min-width: 992px){
    .food-image-item{
        position: relative !important;
        width: 180px !important;
        height: 140px !important;
        max-width: 180px !important;
        max-height: 140px !important;
        min-width: 180px !important;
        flex: 0 0 180px !important;
        display: block !important;
    }
}

.food-image-item figure,
.food-image-item figure.image-anime{
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

.food-image-item figure img,
.food-image-item figure.image-anime img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    transform-origin: center !important;
    -webkit-transform-origin: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media only screen and (min-width: 768px){
    .food-image-item:nth-child(1),
    .food-image-item:nth-child(2),
    .food-image-item:nth-child(3),
    .food-image-item:nth-child(4){
        width: 180px !important;
        height: 140px !important;
        max-width: 180px !important;
        max-height: 140px !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        z-index: auto;
        display: block !important;
        flex: 0 0 180px !important;
    }
}

@media only screen and (min-width: 992px){
    .food-image-item:nth-child(1),
    .food-image-item:nth-child(2),
    .food-image-item:nth-child(3),
    .food-image-item:nth-child(4){
        width: 180px !important;
        height: 140px !important;
        max-width: 180px !important;
        max-height: 140px !important;
        min-width: 180px !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: block !important;
        flex: 0 0 180px !important;
    }
}

.food-image-item:hover{
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(61, 73, 58, 0.2);
    z-index: 10;
}

.food-image-item:hover img{
    transform: scale(1.08) !important;
}

.food-image-item::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.1) 0%, rgba(174, 161, 126, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 7px;
    z-index: 1;
}

.food-image-item:hover::after{
    opacity: 1;
}

/* Accommodation Section Styles */
.accommodation-section{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important;
}

.accommodation-section h2{
    margin-top: 0;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.accommodation-section h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 8px 0 0 8px;
}

.accommodation-intro{
    font-size: 18px;
    line-height: 1.8em;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 500;
}

.accommodation-content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 35px;
    overflow: visible !important;
    position: relative;
}

.accommodation-text-content p{
    font-size: 16px;
    line-height: 1.8em;
    color: #4a4a4a;
    margin: 0 0 20px 0;
}

.accommodation-text-content p:last-of-type{
    margin-bottom: 0;
}


.accommodation-features li{
    font-size: 15px;
    line-height: 1.5em;
    color: #4a4a4a;
    position: relative;
    padding-left: 25px;
}

.accommodation-features li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.accommodation-images-grid{
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    background: transparent !important;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap !important;
}

@media only screen and (min-width: 992px){
    .accommodation-images-grid{
        display: flex !important;
        flex-direction: row !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.accommodation-image-item{
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: var(--white-color);
    padding: 2px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    margin: 0 !important;
    flex: 0 0 180px !important;
    width: 180px !important;
    height: 140px !important;
    max-width: 180px !important;
    max-height: 140px !important;
    min-width: 180px !important;
}

@media only screen and (min-width: 992px){
    .accommodation-image-item{
        position: relative !important;
        width: 180px !important;
        height: 140px !important;
        max-width: 180px !important;
        max-height: 140px !important;
        min-width: 180px !important;
        flex: 0 0 180px !important;
        display: block !important;
    }
}

.accommodation-image-item figure,
.accommodation-image-item figure.image-anime{
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

.accommodation-image-item figure img,
.accommodation-image-item figure.image-anime img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    transform-origin: center !important;
    -webkit-transform-origin: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.accommodation-image-item:nth-child(1),
.accommodation-image-item:nth-child(2),
.accommodation-image-item:nth-child(3),
.accommodation-image-item:nth-child(4),
.accommodation-image-item:nth-child(5),
.accommodation-image-item:nth-child(6),
.accommodation-image-item:nth-child(7){
    width: 180px !important;
    height: 140px !important;
    max-width: 180px !important;
    max-height: 140px !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto;
    display: block !important;
    flex: 0 0 180px !important;
}

@media only screen and (min-width: 992px){
    .accommodation-image-item:nth-child(1),
    .accommodation-image-item:nth-child(2),
    .accommodation-image-item:nth-child(3),
    .accommodation-image-item:nth-child(4),
    .accommodation-image-item:nth-child(5),
    .accommodation-image-item:nth-child(6),
    .accommodation-image-item:nth-child(7){
        width: 180px !important;
        height: 140px !important;
        max-width: 180px !important;
        max-height: 140px !important;
        min-width: 180px !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: block !important;
        flex: 0 0 180px !important;
    }
}

.accommodation-image-item:hover{
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(61, 73, 58, 0.2);
    z-index: 10;
}

.accommodation-image-item:hover img{
    transform: scale(1.08) !important;
}

.accommodation-image-item::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.1) 0%, rgba(174, 161, 126, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 7px;
    z-index: 1;
}

.accommodation-image-item:hover::after{
    opacity: 1;
}

/* Mobile Styles for Accommodation */
@media only screen and (max-width: 767px){
    .accommodation-section h2{
        font-size: 28px !important;
        margin-bottom: 20px !important;
        padding: 15px 20px !important;
    }

    .accommodation-intro{
        font-size: 16px;
        margin-bottom: 25px;
    }

    .accommodation-text-content{
        padding: 20px 25px;
    }

    .accommodation-text-content p{
        font-size: 15px;
    }

    .accommodation-features{
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }

    .accommodation-features li{
        font-size: 14px;
    }

    .accommodation-images-grid{
        max-width: 100%;
        gap: 10px !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
    }

    .accommodation-image-item{
        width: calc(50% - 5px) !important;
        height: 120px !important;
        max-width: calc(50% - 5px) !important;
        max-height: 120px !important;
        flex: 0 0 calc(50% - 5px) !important;
        min-width: calc(50% - 5px) !important;
    }

    .accommodation-image-item:nth-child(1),
    .accommodation-image-item:nth-child(2),
    .accommodation-image-item:nth-child(3),
    .accommodation-image-item:nth-child(4),
    .accommodation-image-item:nth-child(5),
    .accommodation-image-item:nth-child(6),
    .accommodation-image-item:nth-child(7){
        width: calc(50% - 5px) !important;
        height: 120px !important;
        max-width: calc(50% - 5px) !important;
        max-height: 120px !important;
        flex: 0 0 calc(50% - 5px) !important;
        min-width: calc(50% - 5px) !important;
    }
}

/* Course Fees Section Styles */
.course-fees-section{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important;
}

.course-fees-section h2{
    margin-top: 0;
    margin-bottom: 40px;
    color: #2a2a2a;
}

.fees-inclusions-wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fees-included-box{
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.fees-included-box h3,
.service-entry .fees-included-box h3{
    font-size: 22px !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    padding: 2px 3px !important;
    border-radius: 6px !important;
    position: relative !important;
    line-height: 1.4em !important;
    display: block !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
}

.fees-included-box h3::before,
.service-entry .fees-included-box h3::before{
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 5px !important;
    border-radius: 6px 0 0 6px !important;
    display: block !important;
}

.fees-not-included-title,
.service-entry .fees-not-included-title,
.fees-included-box h3.fees-not-included-title{
    font-size: 22px !important;
    margin-top: 40px !important;
    margin-bottom: 25px !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    position: relative !important;
    line-height: 1.4em !important;
    display: block !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
}

.fees-not-included-title::before,
.service-entry .fees-not-included-title::before,
.fees-included-box h3.fees-not-included-title::before{
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 5px !important;
    border-radius: 6px 0 0 6px !important;
    display: block !important;
}


.fees-included-list,
.fees-not-included-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.fees-included-list li,
.fees-not-included-list li{
    font-size: 16px;
    line-height: 1.7em;
    color: #4a4a4a;
    position: relative;
    padding-left: 30px;
    width: 100% !important;
    display: block !important;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.fees-included-list li:last-child,
.fees-not-included-list li:last-child{
    margin-bottom: 0;
}

.fees-included-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}


.fees-not-included-list li::before{
    content: "✗" !important;
    position: absolute !important;
    left: 0 !important;
    color: #999 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    display: block !important;
}

/* Override service-entry styles for fees lists */
.service-entry .fees-not-included-list li::before{
    content: "✗" !important;
    color: #999 !important;
}

.fees-included-list li::before{
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--accent-color) !important;
    font-weight: bold !important;
    font-size: 18px !important;
    display: block !important;
}

/* Override service-entry styles for fees lists */
.service-entry .fees-not-included-list li::before{
    content: "✗" !important;
    color: red !important;
}

.service-entry .fees-included-list li::before{
    content: "✓" !important;
    color: var(--accent-color) !important;
}

/* Mobile Styles for Course Fees Section */
@media only screen and (max-width: 991px){
    .fees-inclusions-wrapper{
        gap: 30px;
    }

    .fees-included-box{
        padding: 25px 20px;
    }

    .fees-included-box h3,
    .fees-not-included-title{
        font-size: 20px !important;
        margin-bottom: 20px !important;
        padding: 12px 18px !important;
    }

    .fees-included-list li,
    .fees-not-included-list li{
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px){
    .course-fees-section h2{
        font-size: 36px;
        margin-bottom: 30px;
    }

    .fees-inclusions-wrapper{
        gap: 25px;
        margin-top: 20px;
    }

    .fees-included-box{
        padding: 20px 18px;
    }

    .fees-included-box h3,
    .fees-not-included-title{
        font-size: 19px !important;
        margin-bottom: 20px !important;
        padding: 12px 16px !important;
    }

    .fees-included-list,
    .fees-not-included-list{
        width: 100% !important;
        display: block !important;
    }

    .fees-included-list li,
    .fees-not-included-list li{
        font-size: 14px;
        line-height: 1.6em;
        padding-left: 25px;
        width: 100% !important;
        display: block !important;
        margin-bottom: 12px;
        box-sizing: border-box;
    }


    .fees-included-list li:last-child,
    .fees-not-included-list li:last-child{
        margin-bottom: 0;
    }
}

/* Property & Surroundings Section Styles */
.property-surroundings-section{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important;
}

.property-surroundings-section h2{
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.1) 0%, rgba(174, 161, 126, 0.08) 100%);
    border-left: 6px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.property-surroundings-section h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 8px 0 0 8px;
}

.property-intro{
    font-size: 18px;
    line-height: 1.8em;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 500;
}

.property-images-grid{
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    background: transparent !important;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap !important;
}

@media only screen and (min-width: 992px){
    .property-images-grid{
        display: flex !important;
        flex-direction: row !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media only screen and (min-width: 768px){
    .property-image-item{
        position: relative !important;
        overflow: hidden !important;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border: 3px solid rgba(255, 255, 255, 0.9);
        background: var(--white-color);
        padding: 2px;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
        margin: 0 !important;
        flex: 0 0 calc(33.333% - 10px) !important;
        width: calc(33.333% - 10px) !important;
        height: 200px !important;
        max-width: calc(33.333% - 10px) !important;
        max-height: 200px !important;
        min-width: 0 !important;
    }
}

.property-image-item{
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: var(--white-color);
    padding: 2px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    margin: 0 !important;
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    height: 180px !important;
    max-width: calc(50% - 8px) !important;
    max-height: 180px !important;
    min-width: 0 !important;
}

.property-image-item figure,
.property-image-item figure.image-anime{
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

.property-image-item figure img,
.property-image-item figure.image-anime img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    transform-origin: center !important;
    -webkit-transform-origin: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.property-image-item:hover{
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(61, 73, 58, 0.2);
    z-index: 10;
}

.property-image-item:hover img{
    transform: scale(1.05) !important;
}

/* Final Thoughts Section Styles */
.final-thoughts-section{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important;
}

.final-thoughts-section h2{
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(61, 73, 58, 0.1) 0%, rgba(174, 161, 126, 0.08) 100%);
    border-left: 6px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.final-thoughts-section h2::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 8px 0 0 8px;
}

.final-thoughts-content{
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.final-thoughts-content p{
    font-size: 16px;
    line-height: 1.8em;
    color: #4a4a4a;
    margin: 0 0 20px 0;
}

.final-thoughts-content p:last-child{
    margin-bottom: 0;
}

/* Upcoming Dates Section Styles */
.upcoming-dates-section{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: visible !important;
}

.upcoming-dates-section .section-title{
    margin-bottom: 35px;
}

.upcoming-dates-section .section-title h2{
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2d3a2b;
    font-weight: 500;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.upcoming-dates-section .section-title p{
    font-size: 15px;
    color: #6b6b6b;
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.6;
}

/* Upcoming dates table uses daily-schedule-table styling */
.upcoming-dates-section .daily-schedule-table{
    margin: 30px 0 40px;
}

.upcoming-dates-section .daily-schedule-table table tbody td:first-child{
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
}

.upcoming-dates-section .daily-schedule-table table tbody td:nth-child(2){
    font-weight: 600;
    color: #2a2a2a;
}

.upcoming-dates-section .daily-schedule-table table tbody td:nth-child(3){
    color: #5a5a5a;
    font-weight: 500;
}

.upcoming-dates-section .daily-schedule-table table tbody td:last-child{
    border-right: none;
    color: #6a6a6a;
}

.upcoming-dates-section .daily-schedule-table table tbody td .date-main{
    display: block;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
}

.upcoming-dates-section .daily-schedule-table table tbody td .date-short{
    display: none;
}

.upcoming-dates-section .daily-schedule-table .btn-book-seat{
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 12px 24px;
    transition: all 0.3s ease;
    overflow: visible;
    text-decoration: none;
    white-space: nowrap;
    z-index: 0;
}

.upcoming-dates-section .daily-schedule-table .btn-book-seat:hover{
    background: rgba(61, 73, 58, 0.9);
    transform: none;
    box-shadow: 0 2px 8px rgba(61, 73, 58, 0.15);
    color: var(--white-color);
}

.upcoming-dates-section .daily-schedule-table .btn-book-seat::before,
.upcoming-dates-section .daily-schedule-table .btn-book-seat::after{
    display: none;
}

.upcoming-dates-note{
    margin-top: 30px;
    padding: 18px 22px;
    background: rgba(174, 161, 126, 0.08);
    border-left: 3px solid rgba(174, 161, 126, 0.4);
    border-radius: 6px;
}

.upcoming-dates-note p{
    margin: 0;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
    font-weight: 300;
}

.upcoming-dates-note i{
    color: rgba(174, 161, 126, 0.8);
    margin-right: 10px;
}

/* Mobile Styles for Upcoming Dates Section */
@media only screen and (max-width: 767px){
    .upcoming-dates-section .section-title h2{
        font-size: 22px !important;
    }

    .upcoming-dates-section .section-title p{
        font-size: 14px;
    }

    .upcoming-dates-section .daily-schedule-table table tbody td .date-main{
        display: none;
    }

    .upcoming-dates-section .daily-schedule-table table tbody td .date-short{
        display: block;
    }

    .upcoming-dates-note{
        padding: 15px 18px;
    }

    .upcoming-dates-note p{
        font-size: 13px;
    }
}

/* Mobile Styles for Property & Final Thoughts Sections */
@media only screen and (max-width: 991px){
    .property-surroundings-section h2,
    .final-thoughts-section h2{
        font-size: 28px !important;
        padding: 15px 20px !important;
    }

    .property-intro{
        font-size: 16px;
        margin-bottom: 25px;
    }

    .final-thoughts-content{
        padding: 25px 20px;
    }

    .final-thoughts-content p{
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px){
    .property-surroundings-section h2,
    .final-thoughts-section h2{
        font-size: 24px !important;
        padding: 12px 18px !important;
    }

    .property-intro{
        font-size: 16px;
        margin-bottom: 20px;
    }

    .property-images-grid{
        gap: 8px !important;
    }

    .property-image-item{
        flex: 0 0 calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
        height: 150px !important;
        max-width: calc(50% - 4px) !important;
        max-height: 150px !important;
    }

    .final-thoughts-content{
        padding: 20px 18px;
    }

    .final-thoughts-content p{
        font-size: 14px;
        line-height: 1.7em;
    }

	/* Gallery Video Mobile - Full Width */
	.dynamic-video-grid{
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		padding: 0 15px !important;
	}

	.dynamic-video-item{
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		width: 100% !important;
	}

	.dynamic-video-featured,
	.dynamic-video-medium,
	.dynamic-video-small,
	.dynamic-video-text{
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		width: 100% !important;
	}

	.dynamic-video-wrapper{
		width: 100% !important;
	}

	.dynamic-video-featured .dynamic-video-wrapper,
	.dynamic-video-medium .dynamic-video-wrapper,
	.dynamic-video-small .dynamic-video-wrapper{
		aspect-ratio: 16 / 9 !important;
	}

	/* Photo Grid Mobile - Full Width */
	.dynamic-photo-grid{
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		padding: 0 15px !important;
	}

	.dynamic-item{
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		width: 100% !important;
	}

	.dynamic-item-large,
	.dynamic-item-medium,
	.dynamic-item-small,
	.dynamic-item-text{
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		width: 100% !important;
	}

	.dynamic-item-large .dynamic-image-wrapper,
	.dynamic-item-medium .dynamic-image-wrapper,
	.dynamic-item-small .dynamic-image-wrapper{
		aspect-ratio: 16 / 9 !important;
	}

	/* Book Now Button Mobile Styles */
	.course-overview-book-now{
		margin-top: 18px;
		padding-top: 18px;
	}

	.btn-book-now-bali{
		padding: 16px 24px;
		font-size: 16px;
		letter-spacing: 0.4px;
		border-width: 2px;
	}

	.btn-book-now-bali:hover{
		transform: translateY(-3px) scale(1.01);
	}

	.btn-book-now-bali i{
		font-size: 15px;
	}

	.btn-book-now-bali:hover i{
		transform: translateX(4px) scale(1.05);
	}
}

/* Scroll to Top Button with Progress Circle */
.scroll-to-top-btn{
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: var(--white-color);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(61, 73, 58, 0.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 999;
	padding: 0;
	overflow: visible;
}

.scroll-to-top-btn.show{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top-btn:hover{
	box-shadow: 0 6px 20px rgba(61, 73, 58, 0.35);
	transform: translateY(-3px);
}

.scroll-to-top-btn:active{
	transform: translateY(-1px);
}

.scroll-to-top-btn .scroll-progress-circle{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.scroll-to-top-btn .progress-ring{
	transition: stroke 0.3s ease;
}

.scroll-to-top-btn .progress-ring-fill{
	stroke-dasharray: 175.93;
	stroke-dashoffset: 175.93;
	transition: stroke-dashoffset 0.1s ease;
}

.scroll-to-top-btn i{
	font-size: 18px;
	color: var(--accent-color);
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i{
	transform: translateY(-2px);
}

/* Mobile Styles for Scroll to Top Button */
@media only screen and (max-width: 767px){
	.scroll-to-top-btn{
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
	}

	.scroll-to-top-btn .scroll-progress-circle{
		width: 50px;
		height: 50px;
	}

	.scroll-to-top-btn .progress-ring,
	.scroll-to-top-btn .progress-ring-fill{
		cx: 25;
		cy: 25;
		r: 22;
		stroke-width: 2.5;
	}

	.scroll-to-top-btn .progress-ring-fill{
		stroke-dasharray: 138.23;
		stroke-dashoffset: 138.23;
	}

	.scroll-to-top-btn i{
		font-size: 16px;
	}
}