/*Fonts*/
@font-face {
	font-family: 'Facon';
	src: url('../assets/fonts/Facon.ttf') format('truetype');
	 font-display: swap;
}

@font-face {
	font-family: 'Monsterrat';
	src: url('../assets/fonts/Montserrat.ttf') format('truetype');
	 font-display: swap;
}

@font-face {
	font-family: 'Quicksand';
	src: url('../assets/fonts/Quicksand.ttf') format('truetype');
	 font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../assets/fonts/Poppins.ttf') format('truetype');
	 font-display: swap;
}

@font-face {
	font-family: 'Sancreek';
	src: url('../assets/fonts/Sancreek.ttf') format('truetype');
	 font-display: swap;
}
@font-face {
	font-family: 'OpenSans';
	src: url('../assets/fonts/OpenSans.ttf') format('truetype');
    font-display: swap;
}

@font-face {
	font-family: 'CardGlitch';
	src: url('../assets/fonts/CardGlitch.otf') format('opentype');
    font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('../assets/fonts/Ubuntu-Regular.ttf') format('truetype');
	font-display: swap;
}


@font-face {
	font-family: 'Montez';
	src: url('../assets/fonts/Montez.ttf') format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'Caveat';
	src: url('../assets/fonts/Caveat.ttf') format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'SquarePeg';
	src: url('../assets/fonts/SquarePeg.ttf') format('truetype');
	font-display: swap;
}


:root {
	--panel-width: 340px;
	--transition-duration: 1s;
	--primary-color: #c1cfac;
	--secondary-color: #000;
	--border-color: rgba(138, 154, 168, 0.7);
	--light-color: #6c7a57;
	--dark-color: #29333D;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;		
}

html {
	height: 100%;	
	scroll-behavior: smooth !important;
	scroll-padding-top: 60px;
}

body {
	display: flex;
	flex-direction: column;
	height: 100%;
	line-height: 1.5;
	font-family: "system-ui", sans-serif;	
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {	
	overflow-wrap: break-word;
}

/**/

._9vd5{
    text-align: center !important;
}

.custom-wavy-underline {
    position: relative;
    display: inline-block;
	font-size: 24px; /* Adjust as needed */
    padding-bottom: 10px;
}

.custom-wavy-underline::after {
    content: "~~~~~~~~~~~~";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem; 
    height: 0;    
    background-size: 100px 6px;    
}

.main {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	height: 100%;
}

p{
    line-height: 1.5;
}

/*blog posts*/

.blog-container{
    max-width: 1340px;
    margin:0 auto;
}
.blog-container h1{
    font-family: 'SquarePeg', sans-serif;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    margin-bottom: 20px;
    color: #954609;
    text-align: center;
    padding: 1.5rem 0 0 0;
}

.blog-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

.blog-card .btn {
    width: 60%;
    margin: 0.6rem auto;
    background-color: #4b1ab3;
    color: #fff;
    border: none;
    padding: 0.7rem;
    border-radius: 3rem;
}

.blog-card img{
   height: 16rem;
  object-fit: cover;
}

.blog-card {
    flex: 1 1 calc(33.333% - 2rem); /* 3-column layout minus gap */
    max-width: calc(33.333% - 2rem);
    display: flex;
    flex-direction: column;
}

@media (max-width: 960px) {
    .blog-card {
        flex: 1 1 calc(50% - 2rem); /* 2 columns */
        max-width: calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .blog-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

/* Main Navigation*/

.header-logo {
	flex: 0 0 50%;
}

.site-logo img {
	background-color: #fff;
	padding: 0.5rem;
	border-radius: 50px;
	display: block;
	max-width: 20rem;
	transition: all 0.3s ease-in;
	filter: drop-shadow(1px 8px 15px rgba(82, 80, 80, 0.337));
}

.s-header {
    width: 100%;
    height: 6.5rem;
    padding: 0 20px;
	background: linear-gradient(to top, #f1d4a7 9.21%, rgb(241 149 11 / 85%) 74.89%);
    position: fixed;
    top: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.underline {
	position: relative;
	height: 2px;
	width: 0;
	left: 50%;
	bottom: -4px;
	transition: all .3s;
	display: block;
}

.main__list a:hover {
	color: #993333;
	/* Set underline color on hover */
}

/* Hover state for links */
.main__list a:hover .underline {
	width: 100%;
	left: 0;
	background-color: #993333;
	/* Set underline color on hover */
}

/* Active state */
.main__list li.active a .underline {
	width: 100%;
	left: 0;
	background-color: #993333;
	/* Underline color for active state */
}

/* Change text color for active item */
.main__list li.active a,
.main__list a:active {
	color: #630303;
	/* Text color for active state */
}

/* Specific style for the header in white state */
.s-header.white .main__list li a .underline {
	background-color: #993333;
}

.main__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.main__list li {
	display: inline-block;
	margin: 0 0 0 2rem;
}

.main__list li a {
	text-decoration: none;
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.82rem;
	transition: all 200ms ease-in;
}

.donate {
	font-size: 1rem;
	background: fef7ed;
	background: linear-gradient(215deg, rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%);
	background-position: 0 0;
	background-size: 200% 100%;
	border-radius: 4px;
	color: #fff;
	text-decoration: none;
	margin: 0 0 0 2rem;
	padding: 0.5rem 1rem;
	-webkit-transition: all 800ms;
	transition: all 800ms;
}

.donate:hover {
	background-position: -100% 0;
}

.custom-button {
	display: flex;
	align-items: center;
	padding: 0.625rem 1.25rem;
	border: none;
	border-radius: 3.125rem;
	background: linear-gradient(to bottom, #f5dbb3 35%, rgb(240, 192, 121) 60.89%);
	color: #000;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	filter: drop-shadow(1px 8px 15px rgba(82, 80, 80, 0.337));
}

.custom-button .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.875rem;
	height: 1.875rem;
	background-color: #fff;
	color: #333;
	border-radius: 50%;
	margin-right: 0.625rem;
	font-size: 1rem;
}

.custom-button:hover {
	background-color: #fef7ed;
	transition: all 0.3s ease-in-out;
}

/*Side Navigation*/

.header-nav {
	position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(245 244 233);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
    z-index: 999;
}

.header-nav.menu-is-open {
    top: 0;
    -webkit-transition: top 0.5s ease-in-out;
    transition: top 0.5s ease-in-out;
}

.header-nav__close {
	display: block;
	height: 30px;
	width: 30px;
	border-radius: 3px;
	background-color: #fdc001;
	position: absolute;
	top: 36px;
	right: 30px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	z-index: 800;
}

.header-nav__close span::before,
.header-nav__close span::after {
	content: "";
	display: block;
	height: 2px;
	width: 12px;
	background-color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 9px;
	margin-top: -1px;
}

.header-nav__close span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header-nav__close span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* menu is open  */
.menu-is-open .header-nav {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
	-webkit-box-shadow: 0px 0px 10px #cfd8dc;
	box-shadow: 0px 0px 10px #cfd8dc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-is-open .header-nav .header-nav__content {
	opacity: 1;
	visibility: visible;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	left: 0;
}

.header-nav__list {
	font-family: "";
	font-size: 1.1rem;
	margin: 3.6rem 0 3rem 0;
	padding: 0 0 1.2rem 0;
	list-style: none;
}

.header-nav__list a {
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	font-family: 'poppins', sans-serif;
	font-size: 1.2rem;
}

.header-nav__list li {
	padding-left: 0;
	/*line-height: 3.6rem;*/
}

.header-nav__social li{
	list-style: none;
}

/* mobile menu toggle */
.header-menu-toggle {
	position: fixed;
	right: 38px;	
	height: 42px;
	width: 42px;
	line-height: 42px;
	font-family: "syatem-ui", sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .3rem;
	color: #fff;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	display: none;
}

.header-menu-toggle.opaque {
	background-color: #0047ab;
}

.header-menu-toggle.opaque .header-menu-text {
	background-color: #0047AB;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
	color: #f37878;
}

.header-menu-text {
	font-family: 'system-ui', sans-serif;
	display: block;
	position: absolute;
	top: 0;
	width: 8rem;
	left: -4.375rem;
	font-size: 1rem;
	padding: 0 0 0 0.6rem;
	background-color: #fff;
	color: #7f1010;
	border-radius: 2px;
}

.header-menu-icon {
	display: block;
	width: 22px;
	height: 2px;
	margin-top: -1px;
	position: absolute;
	left: 1.5rem;
	top: 50%;
	right: auto;
	bottom: auto;
	background-color: #7f1010;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.header-menu-icon::before,
.header-menu-icon::after {
	content: '';
	width: 22px;
	/* Same as the width of the main bar */
	height: 2px;
	background-color: #7f1010;
	position: absolute;
	left: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.header-menu-icon::before {
	top: -6px;
	/* Position above the main bar */
}

.header-menu-icon::after {
	top: 6px;
	/* Position below the main bar */
}
/* Mobile social icons*/
.ts_button {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 1.5rem;
	font-size: 24px;
	color: #fff;
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.ts_button.facebook,
.ts_button.facebook:hover {
	background-color: #fff;
	color: #1877F2;
}

.ts_button.twitter,
.ts_button.twitter:hover {
	background-color: #fff;
	color: #1DA1F2;
}

.ts_button.instagram,
.ts_button.instagram:hover {
	background-color: #fff;
	color: rgb(228, 64, 95);
}

.ts_button.linkedin,
.ts_button.linkedin:hover {
	background-color: #fff;
	color: rgb(10, 102, 194);
}
/*Main Slider*/

.icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;	
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	z-index: 9;
}

.slider-content.active .icon-wrapper {
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .butterfly-icon {
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.butterfly-icon {
    position: absolute;
    top: 10%;
    right: 50%;    
    height: auto;	
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.peacock-icon {
    position: absolute;
    bottom: 10%;
    left: 20%;    
    height: auto;	
}

.wings-icon {
    position: absolute;
    bottom: 0;
    left: 0;    
    height: auto;	
	z-index: 9;
}

.tortoise-icon {
    position: absolute;
    top: 13px;
    right: 9.375rem;
    width: 200px;
    height: auto;	
}

.pcock-shape{
	position: absolute;
	right: 20%;
	bottom: 10%;	
}

.swan-icon {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 177px;
    height: auto;	
}

.swan-1-icon{
	position: absolute;
    top: 35%;
    left: 30%;
    width: 231px;
    height: auto;	
}

.swan-2-icon{
	position: absolute;
    top: 25%;
    left: 25%;
    width: 82px;
    height: auto;	
}

.rb-icon{
	position: absolute;
    right: 40%;
}

.ve39-icon {
    position: absolute;
    top: 10%;
    right: 50%;    
    height: auto;	
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

#slider{
	padding: 5rem 0 0 0;
}

.slider {
	position: relative;
	height: 700px;
	max-width: 1340px;
	margin: 0 auto;
	overflow: hidden;
}

.slider-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	opacity: 0;
	overflow-x: hidden; 
	
}

.slider-content.active {
	transition-delay: 500ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	opacity: 1;
}

.slider-content.active .text-content {
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .image-content {
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .slider-title{
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .slider-heading{
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .slider-description{
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .slider-caption{
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-content.active .theme-btn{
	transition-delay: 800ms;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.text-short {
	display: none;
}

.slider-text{
	width: 50%;
	padding: 20px;
	margin-left: 20px;	
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-title {
	font-weight: 600;
	font-family: 'SquarePeg';
	letter-spacing: 2px;
	font-size: clamp(1.25rem, 0.0625rem + 3vw, 1.8rem);
	margin-bottom: 10px;
	color: #630303;
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-caption{
	text-align: right;
	font-family: 'system-ui';
	font-size: 0.9rem;
	font-weight: bold;
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-description{
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0.6rem;
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	max-width: 520px;
}

.theme-btn{
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-heading{
	font-family: 'ubuntu', sans-serif;
	font-size: clamp(1rem, 0.0625rem + 3vw, 1.2rem);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0.5rem;
    border-left: 2px solid #630303;
    border-radius: 8px;
    text-align: left;
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-heading span{
    font-size: 0.6rem;
}

.slider-text h1 span {
	color: #8b6be3;
}

.slider-text p {
	font-family: "system-ui";
	margin-top: 20px;
	font-size: 1rem;
	color: #666;
}

.image-content {
	width: 50%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s cubic-bezier(0.5, 0.5, 0, 1);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-heading img {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.slider-heading cite {
    font-style: normal;
    font-weight: bold;
    margin-left: 5px; /* Adds spacing between the quote and citation */
    color: #666;
    display: inline; /* Ensures citation remains on the same line */
}

.slider-image {
	width: 550px;
    height: 500px;
	background-color: #eae8fe;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-dots {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 9;
}

.slider-dot {
	width: 12px;
	height: 12px;
	margin: 5px 0;
	background-color: #d0cbf5;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.slider-dot.active {
	background-color: #8b6be3;
}

.slider-heading img{    
	max-width: 3rem;
    margin: 0 1rem 0 0;
}

.slider-heading{
    display: flex;
    align-items: center;
}

.slider-one {
    position: relative;
    background-image: url(../images/client/slbg.webp);
	background-position: center center;
	background-size: cover;
	padding: 7rem 0 0 0;
}

.slider-one_down{
	position:absolute;
	left:45px;
	bottom:150px;
}

.auto-container {
    position: static;
    max-width: 1330px;
    padding: 0px 15px;
    margin: 0 auto;
}
.slider-one_heading{
    line-height: 1.5;
    font-size: 3.5rem;
    font-weight: 600;
	font-family: "system-ui", sans-serif;
}

.btn-style-one, .btn-style-two {
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
	width: 12rem;
    overflow: hidden;
    text-align: center;
    border-radius: 50px 100px / 100px 50px;
    padding: 1rem;
    display: flex;
    color: #fff;
    text-transform: capitalize;
    background-color: #5d6c47;
    font-family: "system-ui", sans-serif;
	text-decoration: none;
	justify-content: center;
}

.btn-style-one{
    width: 22rem;
}

.btn-style-two {
	width: 12rem;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}


/* Overlay */
.background-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(to left, rgba(245, 210, 116, 0.8),
	 rgb(245 210 116 / 27%) 0%, /* Blending transition */
	 rgba(245, 210, 116, 0.2) 80%, 
	 rgba(245, 210, 116, 0) 100%);
	z-index: 1;
	pointer-events: none;
}

.text-container {
	position: relative;
	max-width: 50rem;
	min-height: 37.5rem;	
	color: #5a2c2a;
	padding: 20px;
	left: 38%;	
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.slider-grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	column-gap: 3.25rem;
	row-gap: 1.5rem;	
}

.slider-grid img{
	object-fit: cover;
}



/*success-story*/
.cta-button {
	display: block;
	width: 100%;
	padding: 15px 20px;
	margin-top: 20px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	font-size: 1.1em;
	transition: background-color 0.3s;
}

#story-cards{
	padding: 2rem 0 2rem 0;
    scroll-margin-top: 60px;
    background-color: rgba(147, 194, 196, 0.21);
}

.story-header{
	font-family: 'SquarePeg';
	font-size: clamp(2rem, 3vw + 1rem, 3rem);
	margin: 0 0 0 1rem;
	color: #630303;
}

.success-container, .success-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1340px;
    margin: 1rem auto;
	padding: 0 0.4rem;
}

.success-card {
	background-color: #fff;
	border-radius: 1.8rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 1rem;
	width: calc(50% - 10px);
	align-self: stretch;
	box-sizing: border-box;
	color: #000;
}

.card-content {
    overflow: hidden; /* Clearfix */
}

.card-content .image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    shape-outside: circle(50%);
}

.card-content h1 {
    color: #05022c;
    margin-top: 0;
    font-size: 1.2rem;
    margin: 1.5rem;
}

.success-container h2{
	padding: 0 1rem;
}

.card-content p{
     margin: 1.5rem;
}

.text-content {
    margin: 0;
}

.slider:first-child .text-content {
    width: 550px;
}

.card-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0;
}

.card-visible {
    max-height: 1320px;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;       
}

.readmore, .read-less {
    color: #05022c;
    cursor: pointer;
    font-weight: 700;		
}

.quote {
	font-style: italic;
	color: #05022c;
	font-weight: 500;
	border-left: 3px solid #05022c;
	padding-left: 10px;
	margin: 20px 0;
}

dialog {
	padding: 2rem 3rem;
	background: url(../images/partners/yc.webp) center center no-repeat;
    background-size: cover;
	max-width: 700px;
	width: 90%;
	border-radius: 20px;
	border: 0;
	box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.63);
	animation: fadeIn 1s ease-in-out;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	color: #000;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		}
		to {
			opacity: 1;
	}
}

dialog::backdrop {
	animation: fadeIn 1s ease both;
	background: rgba(47, 47, 47, 0.4);
	backdrop-filter: blur(20px);
}

dialog .x {
	filter: grayscale(1);
	border: none;
	background: none;
	position: absolute;
	top: 15px;
	right: 10px;
	transition: ease filter, transform 0.3s;
	cursor: pointer;
	transform-origin: center;
	font-size: 1.2rem;
}

dialog .x:hover {
	filter: grayscale(0);
	transform: scale(1.1);
}

dialog h2 {
	font-weight: 600;
	font-size: calc(1.3rem + .6vw);
	padding-bottom: 1rem;
	margin-top: 0;
}

dialog p {
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0.5rem 0;
}

dialog p a:visited {
	color: rgb(var(--vs-primary));
}

.button-container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px; 
}

button.primary__1 {
	font-size: 1rem;
	color: #000;
	background: #ffea7d;
	padding: 0.8125rem 1.5625rem;
	transition: all 0.25s ease;
	border: 0;
	cursor: pointer;
	border-radius: 3.2rem;
	width: 18.75rem;		
}

button.primary__2 {
	font-size: 1rem;
	color: #2e2100;
	background: #fff;
	padding: 13px 25px;
	transition: all 0.25s ease;
	border: 0;
	cursor: pointer;
	box-shadow: 0 10px 20px -10px rgba(245, 137, 32, 0.5);; 
}

button.primary:hover {
	box-shadow: 0 20px 20px -10px rgba(var(--vs-primary), 0.5);
	transform: translateY(-5px);
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/*video-gallery*/
#video-gallery {
    padding: 2rem 0;
}

.video-gallery__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0.5rem;
    text-align: center;
}

.video-gallery__container h1 {
    font-family: 'SquarePeg', sans-serif;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    margin-bottom: 20px;
    color: #954609;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-video {
    max-width: calc(33.33% - 20px); 
    min-width: 20rem; 
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
}

.video-container img,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50px;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #5d6c47;
}

.video-caption {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
}


.site-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #330202;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/**/
.about-one.style-four {
	padding: 100px 0 100px;
}
.value-inner {
	position: relative;
	padding: 0;  
	border-radius: 8px;   
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
   
}
.content-text h2{
   font-family: 'SquarePeg', sans-serif;
   font-size: clamp(2rem, 3vw + 1rem, 3rem);
   color: #954609;
   font-weight: 600;
}

.m-5{
    margin: 5rem 0 !important;
}

.flex-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 15px;
}

 .talk-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-title {
    flex: 1;
    display: flex;
    flex-direction: column;
}

 .sect-title::before, .sect-title-1::before , .sect-title-2::before  {
    content: "0"; 
    position: relative;
    float: left;
    margin: 0 1.5rem 0.75rem 0;
    font: bold 2.25rem/1 'Montserrat', sans-serif;
    width: 3.5rem;
    height: 3.5rem;
    color: #fdfdfd;
    background: rgb(241, 149, 1);
    text-shadow: 0 0 2px #ed4264;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    shape-outside: ellipse(50% 50% at 50% 50%);
    z-index: 1;
}

.sect-title::before{
    content: "1";
}

.sect-title-1::before{
    content: "2";
}
 
.sect-title-2::before{
    content: "3";
}
 
.sect-title::after, .sect-title-1::after , .sect-title-2::after  { 
    width: 1.75rem; 
    height: 1.75rem; 
    position: absolute; 
    top: 0; 
    left: 0; 
    content: ""; 
    background: rgb(241, 149, 1); 
    z-index: -1; 
    border-top-left-radius: 3px; 
    
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.flex-col-half {
    flex: 1 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.value-content{
	position: relative;
    padding: 0;	
}

.value-content__text h3{
    margin: 0;
	color: #630303;
	font-family: 'SquarePeg';
	font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

.value-content p, .value-content__text p{
	line-height: 2;
	font-size: clamp(1rem, 0rem + 0.5714vw, 1.1rem);
}

.section-title h5{
    font-size: clamp(0.5rem, 3vw + 1rem, 1.1rem);
}

.value-content__text p{
	text-align: left;	
	margin: 0 0 2rem 0;
}

.key-text{
	display: flex;
	flex-wrap: wrap;		
	gap: 1.5rem;
}

.key-text__item {
    border: 1px dashed #393636;
    color: #000;   
    padding: 20px;   
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
	flex: 1 1 calc(50% - 0.75rem);	
}

.key-text__item:nth-child(3),
.key-text__item:nth-child(4) {
	flex-basis: 100%;
}

.key-text__item p{
	font-family: "poppins", sans-serif;
	line-height: 1.5;
	margin: 0;
}

.value-image img{
    display: inline-block;
    max-width: 100%;
    height: auto;	
}

.sec-title_title{
	text-align: center;
}

.sec-title_title h2{
	text-align: center;
	margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
    .key-text__item {
		flex-basis: 100%;
	}
}


/*program*/
#program{
	padding: 3.5rem 0 3.5rem 0;
	position: relative;	
	scroll-margin-top: 3.75rem;
}

.section-title .sub-title {
    margin-bottom: 14px;
    font-size: 19px;
    line-height: 24px;
    font-family: "Ubuntu", sans-serif;
    display: block;
}

.program-item {
    border-radius: 10px;
    padding: 40px 40px 40px 0;
    display: flex;
    align-items: center;
    background: #fff;
    margin-left: 40px;
    gap: 30px;
    border: 1px solid #777474;
}

.program-item .icons {
    min-width: 3.5rem;
    min-height: 3.5rem;
    margin-left: -1.875rem;
    background: #393636;
    transition: all 0.6s;
	border-radius: 3.125rem;
}

.icons img{
	width: 2rem;
	margin: 0 auto;
}

.mb-60{
	margin-bottom: 2.5rem;
}

.d-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-item .icons img {
    transition: all 0.6s;
}

.program-item h4, .program-item p{
	padding: 0 1rem;
}

.m-title{
	font-family: 'SquarePeg';
	font-size: clamp(2rem, 1.5rem + 0.5714vw, 3rem);
	color: #954609;
	font-weight: 600;
}

@media (max-width: 991px) {
    .program-item {
        padding: 0;
        gap: 14px;
        display: grid;
        margin-left: 0;
    }

	.program-item h4{
		font-size: 1.2rem;
	}

	.program-item .content p {
        margin-bottom: 12px;
    }

	.program-item .icons {
        width: 3.5rem;
        margin-left: 0;
    }

	.program-item p{
		padding: 0;
	}

	.program-item {
        padding: 20px 20px 20px 1rem;
        gap: 14px;
    }
}
/**/

.talk-counter .row {
    display: flex;
    flex-wrap: wrap;
}

.talk-counter .col-lg-6,
.program-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.talk-counter .talk-content,
.program-section .program-item {
    flex: 1;   
}


.talk-counter{
	position: relative;
	padding: 3.5rem 0 3.5rem 0;
	scroll-margin-top: 3.75rem;
	display: flex;
	flex-direction: column;
    background: #f4f4f4;	
}

.fa-chalkboard-teacher, 
.fa-person-chalkboard, 
.fa-users-gear, 
.fa-user-gear, 
.fa-user,
.fa-arrow-trend-up, 
.fa-people-roof,
.fa-user-graduate{
	width: 40px;
    height: 40px;
    line-height: 40px !important;
    background: #954609;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}

.fa-book-reader {
	width: 40px;
    height: 40px;
    line-height: 40px !important;
    background: #954609;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}

.feature-section .sec-title {
    margin-bottom: 41px;
}

.talk-content .section-title{
	background-color: #fff;	
	padding: 2.5rem;
	margin: 1rem;
	border-radius: 1rem;
	box-shadow: rgba(99, 99, 99, 0) 0px 2px 8px 0px;
}

/*approach*/
.approach-cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.approach-card {
	flex: 1;
	min-width: 200px;
	background-color: #393636;
	padding: 0.5rem;
	border-radius: 2px;
	color: #fff;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*Timeline*/
#timeline {
    position: relative;
    scroll-margin-top: 3.75rem;
    padding: 3.5rem 0;
}

.timeline {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 25rem;
}

.timeline .panel-container .slide-panel .panel-content {
    padding: 12px 64px 18px 24px;
}
  
.timeline-title {
	margin: 0;
	padding: 24px;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
	color: #8A9AA8;
}
  
.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	height: 31.25rem;
	width: 1340px;	
	transition: left var(--transition-duration) ease;
}
  
.panel-container {
	margin-top: 36px;
	height: 100%;
	width: 100%;
	position: relative;
}
  
.slide-panel {
	width: var(--panel-width);
	position: absolute;
	transition: all var(--transition-duration) ease;
}
  
.time-label p {
    font-size: clamp(1.1rem, 3vw + 1rem, 2rem);
    font-family: 'SquarePeg';
    padding: 0 0 0 24px;
    color: var(--light-color);
    display: inline-block;
}
  
.panel-title, .panel-content {
	padding: 0 0 12px 24px;
	margin: 0;
	color: var(--dark-color);
}

.panel-title{
	font-size: clamp(1.1rem, 3vw + 1rem, 1.8rem);
}
  
.panel-content {
	font-family: 'system-ui';
	padding-top: 12px;
	font-size: 1rem;
}
  
.slide-nav {
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
}
  
.slide-nav a {
	cursor: pointer;
	display: inline-block;
	padding: 10px 16px;
	border-top: 4px solid var(--primary-color);
	color: var(--primary-color);
	transition: all 0.5s ease;
	text-decoration: none;
}
  
.slide-nav a:first-child {
	border-left: 4px solid var(--primary-color);
	border-top-left-radius: 4px;
}
  
.slide-nav a:last-child {
	border-right: 4px solid var(--primary-color);
	border-top-right-radius: 4px;
}
  
.slide-nav a:hover, .nav-selected {
	background: var(--primary-color);
	color: var(--secondary-color) !important;
} 

.label-selected p {
    color: #000;
    font-weight: 800;
    background-color: #c1cfac;
    padding: 0.2rem 0.9rem; 
    border-radius: 5px; 
}

.character-style {
    font-size: 1.2rem;
    color: red;
    margin: 0 10px 0 0;
}

.study-button a i {
	transition: 0.5s;
}

.study-button a:hover i {
	color: #d0a37c;
}

/*Tabs-horizontal-vertical*/

#hv-tabs{
	padding: 3.5rem 0 3.5rem 0;
	position: relative;	
	scroll-margin-top: 3.75rem;
}

.vertical-tabcontent {
    position: relative;
}
 
.work-in-progress-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.work-in-progress-message {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    max-width: 80%;
}
     
.accordion-item {
    margin-bottom: 10px;
}

.accordion-item input {
    display: none;
}

.accordion-item label {
     display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item input:checked ~ label .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item label:hover {
    background-color: #fff;
}


.accordion-item label h3 {
    margin: 0;
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.accordion-item input:checked ~ .accordion-content {
    max-height: 1200px; /* Adjust based on content */
    transition: max-height 0.5s ease-in;
}

.accordion-content-inner {
    padding: 15px;
}
        
.tab-container {
    font-family: "system-ui", sans-serif;
    max-width: 1320px;
    margin: 5rem auto auto auto;
    background-color: #f9f9f9;   
    overflow: hidden;
}

.horizontal-tabs {
    display: flex;
    background-color: #fff;
    width: 100%;
    gap: 0.6rem;
    /* padding: 10px 10px 0; */
}

.nested-tabcontent {
    border-radius: 50px 50px / 500px 50px;
}

.horizontal-tabs-nested .tablinks-nested.active {
    background-color: #FFA07A;
    color: black;
    border-bottom: 3px solid #000;
}

.nested-tabcontent {
    padding: 1.25rem;
    background-color: #CD5C5C;
    color: black;
    display: none;
}

.benefits {
    border-left: 5px solid #630303;
    padding: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.benefit-item:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #630303;
}

.unique-selling-points {
    border: 2px dashed #630303;
    border-radius: 8px;
    padding: 20px;
}

.usp-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.usp-item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}
/* Enhanced Horizontal tabs styles */
.horizontal-tabs button {
	flex: 1;
    padding: 1.5rem 4rem;
    font-size: 16px;
    background-color: #F4EEE5;
	border-top-color: 4px solid #f39f5f9f;
    color: black;      
    cursor: pointer;
    transition: all 0.3s ease;
    /*margin-right: 5px;*/
	border: none;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.horizontal-tabs button:hover {
    background-color: #fff;
	border-top: 4px solid #F39F5F;
}

.horizontal-tabs button.active {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-top: 4px solid #F39F5F;
	border-left: 1px solid #ddd;
}

/* Enhanced Vertical tabs styles */
.vertical-tabs {
    float: left;
    width: 220px;
    background-color: #fff;
    height: 100%;
    min-height: 400px;
	border-right: 1px solid #ddd;
}

.vertical-tabcontent h3, .vertical-tabcontent h5 {
    font-family: 'SquarePeg';
    font-weight: 600;
    color: #630303;
    font-size: clamp(1rem, 1.5rem + 0.5714vw, 2.5rem);
    margin: 0 0 1rem 0;
}

.vertical-tabs button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #fff;
    color: #000;
    border: none;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vertical-tabs button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.vertical-tabs button.active {
	background-color: #fff;
    border-left-color: #e74c3c;
    font-weight: 500;
    color: #000;
    /*border-top: 1px dashed #ddd;*/
    /*border-right: 1px dotted #2f2c2c;*/
}

/* Enhanced Tab content styles */
.tabcontent {
    display: none;
	margin: 0 auto;  
	padding: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.vertical-tabcontent {
    display: none;
    margin-left: 15.625rem;
    padding: 1.8rem;
    min-height: 25rem;	
}

/* Enhanced Nested horizontal tabs styles */
.horizontal-tabs-nested {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.horizontal-tabs-nested button {
    padding: 0.8rem 2rem;
	margin: 0.1rem;
    font-size: 14px;
    background-color: #f0f0f0;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
	border-radius: 50px 100px / 100px 50px;
}

.horizontal-tabs-nested button:hover {
    background-color: #e8e8e8;
}

.horizontal-tabs-nested button.active {
    background-color: #F39F5F;
    border-bottom-color: rgb(26, 1, 1);
    color: #fff;
    font-weight: 500;
	border-radius: 50px 100px / 100px 50px;
}

/* Enhanced Nested tab content styles */
    .nested-tabcontent {
        display: none;
        padding: 2.5rem;
        background-color: #ffffff;  
    }
    
    #Lowering h4{
    	font-size: clamp(1rem, 0.8714rem + 0.5714vw, 1.3rem);
    	margin: 1rem 0;
    }

    .vt-number{
    	background-color: #f0c674; 
        padding: 2px 5px;
        border-radius: 50px; 
        font-weight: bold;
        color: #000;
    	display: inline-flex;
        width: 30px;
        height: 30px;
        justify-content: center;
    }
    
    .quote-box {
    	font-family: 'system-ui';
    	font-size: 1.1em;
    	color: #333;
    	padding: 20px;
    	margin: 20px;
    	background-color: #f9f9f9;
    	border-left: 5px solid #008080;
    	border-radius: 5px;
    }
    
    .author {
    	font-size: 1rem;
    	color: #555;
    	text-align: right;
    	margin-top: 10px;
    	font-style: italic;
    }

/* Responsive adjustments */
#why{
	padding: 2rem 0 2rem 0;
    scroll-margin-top: 60px;	
	position: relative;
	background-color: #f4f4f4;
}

.service-title-1{
	font-family: 'SquarePeg';
	font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
	margin: 0 0 2rem 0;
	color: #630303;
	font-weight: 500;
}

.services-header {
	margin: 0 0 2rem 0;
}

.services-title {
	font-family: 'SquarePeg';
	font-weight: 600;
	font-size: clamp(2rem, 0.0625rem + 3vw, 2.5rem);
	margin: 0 0 1.5rem 1rem;
	color: #630303;	
}

.services-description {
	max-width: 960px;
	font-size: 1rem;
	line-height: 2;
}

.services-grid {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.service-card {
	flex: 1 1 300px;
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	color: #2c3e50;
	border: 1px dashed #000;
}

.service-icon {
	font-size: 2em;
	margin-bottom: 10px;
	color: #630303;
}

.service-title {
	font-family: 'SquarePeg';
	font-size: 2.1rem;
	margin-bottom: 10px;	
	color: #630303;
	font-weight:600;
}

.service-content {
	font-size: 1rem;
	color: #000;
}


/*joyful English*/
#joyful, #whatwedo {
	padding: 3rem 0 2rem 0;
	scroll-margin-top: 3.75rem;
	position: relative;
}

.joyful-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.title-line {
	font-family: 'SquarePeg';
	font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
    color: #954609;
    line-height: 2rem;
    position: relative;
    letter-spacing: -.7px;
    padding: 0 0 0 1.2rem;
    margin-bottom: 30px;
}

.value-one_image-outer_two{
    text-align: right;
}

.value-one_image-column{
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 2rem;
    background-color: #954609;
}

.fa-title{
	display: flex;
	align-items: center;
}

.fa-check, .fa-angle-right{
	width: 2rem;
	height: 2rem;
	border-radius: 50px;
	color: #fff;
	background-color: #954609;
	line-height: 2rem;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.content-box h2{
	font-family: 'SquarePeg';
	font-weight: 600;
	color: #630303;
	position: relative;
    display: inline-block;	
	font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

/*.content-box h2:before {
    position: absolute;
    content: '';
    background: #954609;
    width: 30px;
    height: 2px;
    left: 0px;
    bottom: 1rem;	
}*/

/*research Lab*/
#lrl{
	padding: 3.5rem 0 3.5rem 0;
	scroll-margin-top: 3.75rem;
	position: relative;
	background-color: #f4f4f4;		
}

.fa-hand-point-right{
	color: #954609;
}

.fa-title i {	
	margin-right: 0.5rem;
}


/*solutions*/
#solutions{
	padding: 2.5rem 0 2rem 0;
	scroll-margin-top: 3.75rem;
	position: relative;
}

.solution-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    transition: all 0.5s ease-in;
    max-width: 1340px;
    margin: 0 auto;
}

.solution-card {
    background-color: #e0e0e0;
    padding: 20px;
    transition: all 0.3s ease;
	border-radius: 50px 100px / 100px 50px;
}

.solution-card:hover {
	transform: translateY(-5px);
}

.solution-icon {
	font-size: 40px;
	margin-bottom: 10px;
}

.solution-title {
    font-family: 'SquarePeg';
	font-size: clamp(1.2rem, 3vw + 1rem, 1.8rem);
	font-weight: bold;
	margin: auto auto 1.5rem auto;
	flex: 1;
	color: #000;
}

.solution-age {
	font-size: 14px;
	margin-bottom: 15px;
}

.solution-description {
	font-size: 12px;
	margin-bottom: 20px;
}

.solution-description h5 {
	font-size: 1rem;
	margin-bottom: 20px;
	color: #000;
}

.solution-button {
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.solution-button:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.solution-button::after {
	content: '→';
	color: white;
}

.s-bg1 { background-color: #a1c6c7; }
.s-bg2 { background-color: #f3b5a0; }
.s-bg3 { background-color: #c1b6ff; }
.s-bg4 { background-color: #ffb3a6; }

/**/

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fa-title {
    flex: 1 1 45%; 
    min-width: 45%;
    margin-bottom: 1rem;
    font-size: 1rem;
	text-align: left;
	color: #000;
}

.flex-container p:nth-child(5),
.flex-container p:nth-child(6),
.flex-container p:nth-child(7) {
    flex: 1 1 30%; 
}
/**/


/*Language Learning center*/
#llc{
	padding: 3.5rem 0 2rem 0;
	scroll-margin-top: 3.75rem;
	position: relative;	
}

.talk-content{
	display: flex;
}

/* Faq New Style */

.faq-area .accordion li a {
	padding: 16px 20px 16px 30px;
	text-decoration: none;
	border-radius: 15px;
	background-color: rgba(255, 255, 255, 0.30196078431372547);
	border: 2px solid #ffffff;
}

.faq-area .accordion li a.active {
	border-radius: 15px 15px 0px 0px;
}

.faq-area .accordion li a span:after {
	display: none;
}

.faq-area .accordion li p {
	padding: 44px 20px 31px 25px;
	color: #646464;
	background: #fff;
	border-radius: 0 0 15px 15px;
	line-height: 28px;
	position: relative;
	z-index: 1;
}

.faq-area .accordion li p::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 92%;
	background: #ebebeb;
	left: 32px;
	top: 21px;
}

/* Testimonials*/
#testimonial{
	padding: 2rem 0 2rem 0;
	scroll-margin-top: 3.75rem;
}
.testimonials {
	position: relative;     
	padding: 1rem 0;
	font-family: "Poppins", sans-serif;
}

.testimonials::before {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	background: #f4f4f4;
}
.testimonial-container {
	margin: 1rem;
}
.testimonial-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	padding: 0.5rem 0;
	max-width: 600px;
	margin: 0 auto;
}
.testimonial-title h5 {
	color: #eb6d2f;
	line-height: 1.2em;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: -3px;
}
.testimonial-title h2 {
	font-family: 'SquarePeg';
	color: #630303;
	line-height: 1.2em;
	font-weight: 600;
	font-size: clamp(2rem, 3vw + 1rem, 3rem);
	letter-spacing: -1px;
	margin: 0;
}
.testimonial-title img {
	margin-top: -10px;
}
.testimonial-title p {
	margin: 0 0 10px;
	margin-bottom: 0;
	color: #5a3733;
}
.testimonial-item {
	background: #fff;
	padding: 50px 30px;
	border-radius: 15px;
	margin: 0 auto;
	max-width: 750px;
}
.testimonial-profile {
	display: flex;
	padding-left: 15px;
}
.testimonial-profile img {
	border-radius: 100%;
	width: 50px !important;
	height: 50px;
	object-fit: cover;
}

.testimonial-information {
	padding-left: 20px;
	margin-bottom: 15px;
}

.testimonial-stars i {
	color: #3b1602;
}

.testimonial-information p {
	font-size: 24px;
	margin: 0px auto 0px;
	color: #5a3733;
	font-weight: 900;
	line-height: 1;
}

.testimonial-information span {
	color: #02253b;
	font-weight: bold;
	margin-top: -4px;
	line-height: 1.6em;
	font-size: 14px;
}

.testimonial-item p span {
	color: #b43131;
}

.testimonial-item p {
	font-family: 'system-ui';
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.7;
	display: block;
	z-index: 2;     
	color: #000;
	text-align: left;
	letter-spacing: 1px;
}

.testimonial-icon {
	text-align: center;
}

.testimonial-icon i {
	font-size: 32px;
	color: #02253b;
}

/*About Page*/
.text p{
	color: #000;	
	line-height: 2;
}
.page-header {
	background-color: #F39F5F;
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	top: 6rem;
}

@media (min-width: 992px) {
	.page-header {
		padding-top: 151.5px;
		padding-bottom: 166.5px;
	}
}

.page-header__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.page-header__bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #F39F5F;
	opacity: 0.4;
}

.page-header__bg::after {
	content: "";
	position: absolute;
	bottom: 0px;
	top: 0;
	background-color: #fff;
}

@media (min-width: 768px) {
	.page-header__bg::after {
		bottom: -1px;
	}
}

.abt-container {
	position: relative;
	z-index: 10;
	text-align: center;
}

.page-header__title {
	margin: 0;
	font-size: 40px;
	color: #fff;
	font-weight: 700;
	line-height: 1.0638297872em;
	margin-bottom: -2px;
	margin-top: -10px;
}

@media (min-width: 768px) {
	.page-header__title {
		font-size: 50px;
	}
}

.abt-breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	margin-bottom: -10px;
}

.abt-breadcrumb li {
	font-size: 18px;
	color: #fff;
	text-transform: normal;
	display: flex;
	font-weight: 400;
	align-items: center;
}

@media (min-width: 768px) {
	.abt-breadcrumb li {
		font-size: 20px;
	}
}

.abt-breadcrumb li:not(:last-of-type)::after {
	content: "/";
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
	top: 1px;
}

.abt-breadcrumb li span,
.abt-breadcrumb li a {
	color: inherit;
	display: inline-flex;
	line-height: 2.5rem;
}

.abt-breadcrumb li a {
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	text-decoration: none;
}

.abt-breadcrumb li a:hover {
	background-size: 100% 1px;
}

/*partners*/
#partner-slider{
	padding: 0 0 1rem 0;
	scroll-margin-top: 3.75rem;
}

.version-1{
	padding: 1rem 0 0 0;
}


.partner-image{
	width: 15.625rem;
	margin: 0 auto;
}

.logo-slider-1{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
	text-align: center;
}

.owl-carousel .owl-item img {
	display: inline;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	width: 82% !important;
	margin: 0 auto;
	grid-auto-rows: 1fr; /* Make all rows equal height */
}

.grid-item1, .grid-item2, .grid-item3, .grid-item4 {
	background-color: white;  
	border-radius: 1rem;         
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	padding: 2rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;	
	height: 100%;
}

.grid-item1 {
	border-top-right-radius: 5rem;
	border-bottom-left-radius: 5rem;
}

.grid-item2 {
	border-top-left-radius: 5rem;
	border-bottom-right-radius: 5rem;
}

.grid-item3 {
	border-top-left-radius: 5rem;
	border-bottom-right-radius: 5rem;
	height: 320px;
}   

.grid-item4 {
	border-top-right-radius: 5rem;
	border-bottom-left-radius: 5rem;
}

.grid-container h4 {
	color: rgb(12, 12, 12);
	margin-top: 0;
}

.grid-container p {
	color: #333;
	line-height: 1.6;
	margin: 0;   
	font-size: 1rem;         
}

.highlight {
	color: #ff3c00;
	font-weight: bold;
}

.value-two{
    background: #f4f4f4;
}

@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: 1fr;
	}
}

.sec-title_heading{
	color: #954609;
}

.value-one_content-column{
    display: flex;
    align-items: center;
}


/*vision & Mission*/
.value-one, .value-two, .value-four, .value-five{
	position:relative;
	padding:3.5rem 0 3.5rem 0;
	scroll-margin-top: 3.75rem;	
}
  
.value-one_content-column{
	position:relative;
	margin-bottom:30px;
}

.value-one_content-outer{
	position:relative;
}

.value-one_icon{
	position:absolute;
	right:1%;
	bottom:30%;
	width:3.3125rem;
	height:3.0625rem;
}

.value-one_image img{
    display: inline-block;
    max-width: 100%;
    height: auto;
	border-radius: 1rem;
}

@media only screen and (max-width: 991px) {
    .value-one_image {
        text-align: center;
    }
    
    .sec-title_heading{
        margin: 2rem 0 0 0;
        
    }
}

.value-block_one{
	position:relative;
	margin-bottom:20px;
}

.value-block_one-inner{
	position:relative;
	padding:1.5625rem 1.5625rem;
	max-width:31.25rem;
	border-radius:8px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
    border: 1px solid rgba(244, 131, 31, 0.10);
}

div.value-block_one-inner:hover{
	border-color: #fff;	
	color: #fff; 
	background-color: #F39F5F;
}

.value-block_one-inner:hover .value-block_one-number,
.value-block_one-inner:hover .value-block_one-heading,
.value-block_one-inner:hover p {
    color: #fff; /* Ensures nested elements also change color */
}

.value-block_one-content{
	position:relative;
	padding-left:35px;
}

.value-block_one-number{
	position:absolute;
	left:0px;
	top:5px;
	font-size:20px;
	font-weight:700;
	color: #F39F5F;
}

.value-block_one-heading{
	position:relative;
	font-weight:600;
	font-size:20px;
	color: rgb(0,45,69);
}

.value-block_one-inner p{
	position:relative;
	margin-top:5px;
	font-size:16px;
	line-height:24px;
	margin-bottom:0px;
	color:rgba(7, 7, 7, 0.7);
}

.value-one_image-column{
	position:relative;
	margin-bottom:30px;
}

.value-one_image-outer{
	position:relative;
	text-align:right;
}

.sec-title {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.sec-title_title {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #F39F5F;
    text-transform: uppercase;
}

/*contact*/

.field-error {
    color: #f44336; 
    font-size: 0.875em; 
    padding: 0.5em;
    display: none; 
    margin: 0.1rem 0 0 0;
}

.field-error.hidden {
    display: none; 
}

input:valid,
textarea:valid {
    border-color: #4CAF50; 
}

/* Style for invalid input fields */
input:invalid,
textarea:invalid {
    border-color: #f44336; 
}



#ct-form{
	position: relative;
	padding: 7rem 0 5rem 0;
	top: 5rem;
}

.split-input input, .contact-text textarea, .contact-text input {
    font-family: 'system-ui';
    width: 100%;
    font-size: 1rem;
    padding: 1.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 1rem 0;
}

#cntact-from{
	display: grid;
    gap: 10px;
    width: 100%;
    max-width: 45%;
    margin: 0 auto;
    padding: 1rem;
}

.ct-btn {
    background-color: #330202;
    padding: 1.5rem;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 16rem;
    margin-left: auto;
    display: block;
    margin: -0.5rem 0 auto auto;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 540px) {
    .split-input {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 {
    padding: 40px;
    /*background-color: #F39F5F;*/
    border-radius: 16px 16px 0px 0px;
}

.contact-header{
   font-size: clamp(1rem, 0.0625rem + 3vw, 1.75rem);
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 20px;
    /*border-bottom: 1px solid #393636;*/
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
    border: none !important;
}

svg{
	vertical-align: middle;
}

.contact-form-items {
    margin-top: 30px;
}

.contact-content {
    margin-left: 40px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.contact-content h2 {
    margin-bottom: 10px;
}

.theme-btn fa{
	vertical-align: middle;
}

.theme-btn::before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.line-shape {
    position: absolute;
    left: 0;
    bottom: 20%;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
    color: #385469;
    font-weight: 600;
    text-transform: capitalize;
}

.form-clt span {
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.content h3 {
    font-size: 1.2rem;
    color: #393636;
}

.content h3 a {
    color: #393636;
	text-decoration: none;
}

.contact-section {
	background-color: #fff;
	width: 100%;
	padding: 0;
}

.contact-info-area {
    padding-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
	border-bottom: 2px dashed rgba(27, 27, 27, 0.2);
	background-color: #F4EEE5;
}

.contact-info-area .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-evenly;
    position: relative;
    padding-bottom: 40px;
}

.contact-info-items .icon {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;   
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.contact-info-items .contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
    border: 2px dotted #000;
    border-radius: 50%;
}

.contact-info-items .icon::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 100%;
	border: dotted 2px #393636 ;
    animation: circle 10s linear infinite;
}

@keyframes circle {
	100% {
	  transform: rotate(360deg);
	}
  }
/* General Message Styles */
.success-message, .error-message {
    display: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
   /* max-width: 500px;*/
    margin: 0 auto;
}

.hidden {
    display: none;
}

.error-message.visible {
    display: block;
    width: 100%; /* Ensure full width */
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    text-align: center;
    margin-top: 1rem;
}

.error-message {
    background-color: #f8d7da;
    color: #ff0b22;
    border: 1px solid #f5c6cb;
    padding: 0.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%; /* Ensure full width */
}

#form-success-message {
    color: #fff;
    background: #7EC826;
    padding: 2rem;
    width: 100%;
    margin: 1rem auto;
    display: block;
    font-size: 2rem;
    text-align: center;
}

#form-error-message {
    color: #fff;
    background: #f00;
    padding: 2rem;
    width: 100%;
    margin: 1rem auto;
    display: block;
    font-size: 2rem;
    text-align: center;
}

.google-map iframe{
	width: 100%;
	height: 31.25rem;
}

/*Footer*/
#footer {
	position: relative;
	width: 100%;
	/*padding: 7rem 0 0 0;*/
}

.footer-top-shape {
	position: absolute;
	top: 0;
	left: 0;
}

.footer__contact-section {
	background-color: #F4EEE5;
	width: 100%;
	padding: 0;
}

.widget-head {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(90deg, #F39F5F 4.85%, rgba(201, 203, 223, 0) 96.39%);
	border-bottom: 2px solid transparent;
	border-image-slice: 2;
	display: inline-block;
}

#footer-year {
	display: flex;
	justify-content: center;
	color: #330202;
	background: #fff;
	min-height: 5rem;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.18) -1px -1px 4px;
}

.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
	padding: 1.5rem;
	background: #F4EEE5;
	color: #000;
	/*height: 100%;*/
	align-items: start;
}

.footer-column {
	text-align: left;
}

.footer-column h3 {
	font-size: 1.2rem;
	color: #000;
	text-align: left;
}

.footer-column p {
	line-height: 1.8;
	letter-spacing: 1.2px;
	text-align: left;
}

.footer-column ul {
	list-style-type: none;
	padding: 0;
	line-height: 1.5;
	text-align: left;
}

.footer-column ul li {
	margin-bottom: 5px;
}

.footer-column ul li a {
	color: #000;
	text-decoration: none;
}

.footer-column form {
	display: flex;
	flex-direction: column;
}

.footer-column input[type="email"] {
	padding: 1rem;
	margin-bottom: 1rem;
	width: 100%;
}

.footer-column button {
	padding: 1rem;
	background-color: #330202;
	color: #fff;
	border: none;
	cursor: pointer;
	width: 100%;
	display: flex;
	justify-content: center;
	border-radius: 5px;
}

.footer-column button:hover {
	background-color: #330202;
}

.fsocial_buttons {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0 1rem;
	gap: 1rem;
}

.social_button {
	background: #393636;
	color: #fff;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*scroll-to-top*/
.scroll-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	background-color: #fff;
	z-index: 9;
	opacity: 0;
	padding: 0;
	cursor: pointer;
	visibility: hidden;
	box-shadow: inset 0 0 0 2px #0B2038;
	overflow: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.scroll-top--active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top__circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: none;
	z-index: 2;
}

.scroll-top::after {
	position: absolute;
	content: "\f062";
	font-family: "FontAwesome" !important;
	text-align: center;
	line-height: 50px;
	font-size: 17px;
	color: #0B2038;
	left: 0;
	top: 0;
	font-weight: 600;
	height: 100%;
	width: 100%;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.scroll-top__circle path {
	stroke: #740303;
	stroke-width: 14px;
	fill: none;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: none;
}

.sticky-whatsapp-icon{
	position: fixed;
	padding: 0;
	margin: 0;
	right: -6.6rem;
	bottom: 15%;
	width: 204px;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sticky li {
	display: flex;
	align-items: center;
    list-style-type: none;
    background-color: rgb(37, 211, 102);
    color: #efefef;
    height: 40px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    -webkit-transition: all 0.25s ease-in-out;   
    transition: all 0.25s ease-in-out;
    cursor: pointer;    
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
}

.sticky-whatsapp-icon a {
    display: block;
    text-align: left;
    transition: all 0.3s ease;
	text-decoration: none;
	color: #000;
	display: flex;
	align-items: center;
}

.sticky li p a {
    margin: 0px;
    line-height: 16px;
    font-size: 11px;
    font-weight: normal;
    float: left;
    width: 100px;
}
.sticky li p a {
    text-decoration: none;
    color: #2C3539;
}

.sticky li .fa-whatsapp {
    float: left;
    margin: 3px 8px;
    margin-right: 0px;
    background-color: #04040400;
	width: 2rem;
	height: 2rem;
}

.sticky li:hover {
    margin-left: -165px;
    background: rgba(60,65,150,.50);
}


/*Media Queries*/

@media (max-width: 1199px) {
    .contact-info-area {
        flex-wrap: wrap;
        gap: 40px;
        padding-top: 85px;
        justify-content: space-around;
    }

	.contact-info-area .contact-info-items {
        flex-wrap: wrap;
    }

	.button-container {
		display: flex;
		flex-wrap: wrap;		
	}

	.text-content{
		margin: 1rem;
	}
}

@media (max-width: 992px) {
	.contact-content{
		margin: 0;
		-webkit-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;
	}

	.button-container {
		display: flex;
		flex-wrap: wrap;				
	}

	.readmore{
		margin: 0 0 1rem 0;
	}
}

@media (max-width: 540px) {
    .contact-info-area {       
        justify-content: normal;
    }
}



@media (min-width: 1300px) and (max-width: 1399px) {
	.faq-shape {
		z-index: -1;
	}
}

@media only screen and (max-width: 1200px) {
	.header-logo {
		flex: 0 0 calc(40% - 20px);
		transition: all 0.3s ease;
	}

	.text-container {
		margin: 0 auto;
		left: 0;
		background-color: #f9f4de;
	}
}

@media only screen and (max-width: 1000px) {

	.s-header {
		justify-content: space-between;
	}

	.main-navigation,
	.custom-button {
		display: none;
		transition: all 0.5s ease-out;
	}

	.header-menu-toggle {
		display: block;
		transition: all 0.5s ease-in;
	}

	.header-nav__list {
		display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 0 0 1rem 0;
	}

	.header-nav__social {
		display: flex;
		justify-content: space-between;
	}

	.donate {
		display: none;
	}

	.mobile-donate {
		display: flex;
		position: relative;
		width: 12rem;
		bottom: 5px;
		justify-content: center;
		align-items: center;
		font-size: 1rem;
		background: rgb(255, 149, 0);
		background: linear-gradient(215deg, rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%);
		background-position: 0 0;
		background-size: 200% 100%;
		color: #fff;
		text-decoration: none;
		margin: 0 auto;
		padding: 1rem;
		-webkit-transition: all 800ms;
		transition: all 800ms;
	}

}

@media only screen and (max-width: 991px) {

	.value-one_image-outer {
		text-align: center;
	}

	.line-shape {
		bottom: 20%;
	}
	
	.grid-item3 {
	    height: 100%;
	}
	
	.auto-container{
	    max-width: 760px;
	}	
		
	.approach-card {
        flex: 1 1 calc(50% - .5rem);
	}

	.horizontal-tabs-nested button {
		padding: 0.8rem 0.9rem;
	}

	.text-container{
		background-color: #f9f4de;
	}

	.flex-container {
		flex-direction: column;
	}

	.background-section{
		height: 100%;
	}

	.slider{
		margin: 2rem;
	}

	.slider-caption {
		text-align: left;
		margin-top: 0.5rem;
	}

	.peacock-icon, 
	.wings-icon,  
	.pcock-shape, 
	.swan-icon, 
	.swan-1-icon, 
	.swan-2-icon, 
	.rb-icon, 
	.tortoise-icon,
	.butterfly-icon {
		display: none;
	}
		
	.flex-col-half {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media (max-width: 1024px) {
    .gallery-video {
        flex: 1 1 calc(33.3% - 20px); /* 2 videos per row */
    }
   
    .blog-card {
        flex: 1 1 calc(33.333% - 0px);
        max-width: calc(45% - 0px);
        display: flex;
        flex-direction: column;
    }
   
}

@media (max-width: 1120px) {
    .solution-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main__list li {
    	display: inline-block;
    	margin: 0 0 0 1.2rem;
    }
}


/* media queries for timeline*/
@media(max-width:1000px) {

	.success-container {
		margin: 1rem auto;
	}
	
}

@media (max-width: 768px) {
    .solution-container {
        grid-template-columns: 1fr;
    }
    
	.header-logo {
		flex: 0 0 auto;
	}

	.site-logo img {
		display: block;
		max-width: 15rem;
		transition: all 0.3s ease-in;
	}
	
	.slider-one_heading img{
	    display: none;
	}

	.value-one, .value-two, .value-four, .value-five{
		position:relative;
		padding:0 0 2rem 0;
		top: 0;
	}

	#program {
		padding: 3.5rem 0 3.5rem 0;		
	}

	.vertical-tabs {
        float: none;
        width: 100%;
        min-height: auto;
    }
    
    .vertical-tabcontent {
        margin-left: 0;
    }
    
    .horizontal-tabs,
    .horizontal-tabs-nested {
        flex-wrap: wrap;
    }
    
    .horizontal-tabs button,
    .horizontal-tabs-nested button {
        flex-grow: 1;
        text-align: center;
    }

	.horizontal-tabs-nested button {
		padding: 0.8rem 1rem;
	}

    .success-card {
        width: 100%;
		padding: 1rem;
    }

	.text-container {
		margin-left: 0;
		margin-right: 0;
		padding: 15px;
	}

	.slider-grid {
		grid-template-columns: 1fr;		
	}

	.slider {
		margin: 1rem;
	}

	.slider-content {
		flex-direction: column;
	}

	.slider-text,
	.image-content {
		width: 100%;
		order: -1;
		transition: all 0.3s ease-in-out;
	}

	.slider-text {
		margin-left: 10px;
		margin-right: 10px;
		text-align: left;
	}

	.slider-image {
        height: 300px;
		width: 100%;
		object-fit: contain;
    }

	.slider-dots {
		top: auto;
		bottom: 10px;
		right: 50%;
		transform: translateX(50%);
		flex-direction: row;
	}

	.slider-dot {
		margin: 0 5px;
	}

	.slider-text h1 {
		font-size: 1.2rem;
		margin: 0;
		line-height: 1.2;
	}

	.slider-grid{
		display: none;
	}

	.text-container{
		background: url('../images/client/slide.webp') center center no-repeat;		
		background-size: contain;		
		width: 100%;
		transition: all 0.3s ease-in;
	}

	.text-center{
		display: none;
	}

	.service-card {

		flex: 1 1 220px;
	}

	.services-description {
		margin: 1rem;
	}

	.fa-title i {
		flex-shrink: 0;
		margin-right: 0.5rem;		
		padding-top: 0.1rem;
	}	

	.gallery-video {
        flex: 1 1 calc(50% - 20px); 
    }

	.gallery-video {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/*Queries for small screens*/
@media (max-width: 640px) {
    dialog {
        padding: 1.5rem 2rem;  
        max-width: 90%;       
        font-size: 16px;      
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);  
        transform: translate(-50%, -50%); 
    }

	.content-box h2{		
		text-align: left;
		font-weight: 600;
	}

	.services-header > h5 {
		margin: 1rem;
		font-size: 1rem !important;
	}
	
    dialog {
        animation: none;
    }

	.value-content__text p, .value-content__text h3 {
		margin: 1rem;
		font-weight: 600;
	}
	
	.talk-content .section-title {    
		padding: 1.5rem;    
	}

	.slider-heading {
        text-align: left;
        margin: 1rem;
	}

	.slider-title{	
	    font-weight: 600;
		text-align: left;
        margin: 1rem;
	}
	.slider-description {
		width: auto;
		margin: 1rem;
	}

	.slider-caption {
		text-align: left;
		margin: 1rem;
	}

	.slider {
        margin: 0.8rem;
    }
	
	.services-header, 
	.service-title-1, 
	.services-grid, 
	.video-gallery__container{
		margin: 1rem auto 1rem;
	}

	.sec-title{
		margin: 0 0 1.2rem 0;
	}
	
	.card-content{
		padding: 0.8rem;
	}
	
	.services-grid {
		flex-direction: column;
	}

}

@media screen and (max-width: 648px) {
	.timeline {
	  height: auto;
	}
  
	.panel-container, .slide-panel {
	  position: static;
	}
  
	.slide-panel {
	  border-bottom: 1px solid var(--border-color);
	  margin: auto;
	  padding: 0.5rem;
	}
  
	.panel-title, .panel-content {
	  padding: 0 12px !important;
	}
  
	.panel-content {
	  padding: 18px 12px !important;
	}
  
	.time-label {
	  text-align: left;
	}
  
	.slide-bg {
	  background-position: center center !important;
	  width: 100% !important;
	  left: 0 !important;
	}
  
	.slide-nav {
	  display: none;
	}
	
	.joyful-list {
	    grid-template-columns: 1fr;
	}
	
}
  
@media screen and (min-width: 648px) {
	.panel-selected {
		transform: scale(1.15);
		transition: all var(--transition-duration) ease;
	}
}

@media (max-width: 600px) {
	.grid {
		grid-template-columns: 1fr;
	}

	.btn-style-one {
		width: 100%;
	}
	
	.card-content p, .card-content h1 {
	    padding: 0;
	    margin: 1rem;
	}

   
}

@media (max-width: 540px) {
	.footer {
		display: flex;
		flex-direction: column;
		height: auto;
	}

	.line-shape img{
		width: 120px;
	}

	.header-menu-text {
		display: none;
	}
	
	.sec-title_title h2{
    	text-align: center;
    	margin: 2rem;
    }
    
    .section-sub-title::before {
        top: 28px;
        display: none;
    }
    
    .section-sub-title::after {
        top: 28px;
        display: none;
    }
    
    .grid-item3 {
        height: 100%;
    }
    
    .auto-container{
        max-width: 540px;
    }

	.text-container{
		background: url('../images/client/sl1.webp') center center no-repeat;		
		background-size: contain;		
		width: 100%;
		transition: all 0.3s ease-in;
	}
	
	.nested-tabcontent {
	    padding: 0;
	}

}

@media (max-width:480px){
    .text-container {
        margin: 2rem 0 0 0;
    }
    
    .slider-content {
        justify-content: flex-start;
    }
    
   
	.slider {
		min-height: 45rem;
		height: auto;
	}
	
	.slider-image {
	    box-shadow: none;
	    background-color: transparent;
	}
	
	.slider-image img {
	    object-fit: cover;
	    border-radius: 10px;
	}

	/*.image-content {
		display: none;
	}*/
	
	.slider:first-child .text-content {
        width: 100%;
    }
    

	.slider-text {
		width: 100%;
	}

	.button-container {
        justify-content: space-around;
    }

	.slider-heading img{
		display: none;
	}
	
	.text-one:first-child {
		display: none;
	}
	
	.text-short {
	    display: inline-block;
	}

	.btn-style-one{
		max-width: 10rem;
		margin: 1.5rem auto auto auto;
	}
	
	.contact-info-items .icon {
	    width: 2.5rem;
	    height: 2.5rem;
	    -webkit-transition: all 0.3s ease;
	    transition: all 0.3s ease;
	}
	
	.content h3 {
        font-size: 1rem;
        -webkit-transition: all 0.3s ease;
	    transition: all 0.3s ease;
    }
	
	 .iocn-svg{
	     width: 20px;
	     height: 20px;
	     -webkit-transition: all 0.3s ease;
	    transition: all 0.3s ease;
	 }
	
	.contact-wrapper-2 .contact-left-items .contact-info-area-2 {
       padding: 1rem;
       -webkit-transition: all 0.3s ease;
	    transition: all 0.3s ease;
	}
	
	.gallery-video {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 420px){
	.success-container {
        margin: 1rem auto;
    }
    
    .content-para, .content h3 a {
        font-size: 0.9rem;
    }
}

