/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #01b1d7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #555555;  /* The default color of the main navmenu links */
  --nav-hover-color: #01b1d7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #01b1d7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

a {
  color: #d53638;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #d53638, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Top Header
--------------------------------------------------------------*/
.header .topbar {
    background-color: #d43637;
    height: 54px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}
.header .topbar .contact-info i {
    font-style: normal;
    color: #ffffff;
}
.header .topbar .contact-info i a, .header .topbar .contact-info i span {
    padding-left: 5px;
    color: #ffffff;
}
.header .topbar .social-links a {
    color: #fff;
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}
.header .topbar .connect-links a {
    color: #000000;
    transition: 0.3s;
    margin-left: 12px;
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 700;
}
.connect-links a img {
    width: 34px;
	height: 34px;
	margin-right: 5px;
}
.position-relative{
	position:relative;
}
.curriculum-shape {
    position: absolute;
    top: 50%;
    right: 0;
    text-align: right;
}
.shri-educator-bg-new{
	background:url('https://brandhype.co.in/tsey/wp-content/uploads/2026/03/shri-educator-bg-new.webp');
	background-size:cover;
	background-position:center;
}
.curriculum-left-shape{
	position: absolute;
    top: 30%;
    left: 0;
    text-align: left;
}
.our-founder-shape img{
	width: 30% !important;
}
.curriculum-left-shape img{
	width: 40%;
}
.curriculum-shape img{
	width: 40%;
}
.leadership-shape img{
	width: 70%;
} 
.shri-educators-shape img{
	width: 10%;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  padding: 10px 0;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.about-page-content{
	    height: 350px;
    overflow-y: scroll;
}
.about-page-content::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.about-page-content::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}

.about-page-content::-webkit-scrollbar-thumb
{
	background-color: #d53638;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #e62e39;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }
.mobile-ctickybtn {
    display: none;
}
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #000;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #e62e39;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #d53638, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #d53638;
    color: #fff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #e62e39;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #d53638;
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* Hover effect */
.wa-btn:hover {
  transform: scale(1.1);
}

/* Pulse animation */
.pulse {
  fill: #25D366;
  opacity: 0.5;
  transform-origin: center;
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% {
    r: 38;
    opacity: 0.6;
  }
  70% {
    r: 48;
    opacity: 0;
  }
  100% {
    r: 38;
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Call to section
--------------------------------------------------------------*/
.call-to-action {
    padding: 90px 0 !important;
    position: relative;
    clip-path: inset(0);
}
.call-to-action .container {
    position: relative;
    z-index: 3;
}
.call-to-action:before {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    inset: 0;
    z-index: 2;
}
.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.call-to-action h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.call-to-action p {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
}
.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 4px solid #ffffff;
    color: #000000;
    background: #fecd23;
}
.Walkthrough .partners_list:first-of-type {
    display: none;
}
/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.single-blog-item {
    margin-bottom: 30px;
}
.single-blog-item .blog-image {
    overflow: hidden;
}
.single-blog-item .blog-image img {
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
	width: 100%;
}
.single-blog-item .blog-content {
    background-color: #fdeee9;
    padding: 30px;
	height: 450px;
    border-radius: 0 0 10px 10px;
}
.single-blog-item .blog-content h3 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 15px;
}
.single-blog-item .blog-content h3 a{
	color: #000;
}
.single-blog-item .blog-content p {
    margin-bottom: 0;
	    font-size: 14px;
}
.single-blog-item .blog-content .blog-btn {
    margin-top: 20px;
}
.single-blog-item .blog-content .blog-btn .default-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #db3332;
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #000;
  background-color: #f4eee5;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #d53638;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #d53638;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #000;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #d53638;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 12px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    background: #ffffff;
    color: #000;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #d53638 transparent #d53638 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #d53638;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #d53638, transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.float {
    position: fixed;
    bottom: 10px;
    /* right: 40px; */
    left: 40px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    animation: bot-to-top 2s 
ease-out;
}
@media screen and (max-width: 1600px){
	.curriculum-left-shape img {
    width: 20%;
}
	.curriculum-shape img {
    width: 20%;
}
	.page-template-programmes_tpl .toy-box-shape img{
		width: 30%;
	}
	   .page-template-educators_tpl .curriculum-shape img {
                width: 8%;
        margin-top: 50px;
    }
}
@media screen and (max-width: 1366px){
.header .topbar .connect-links a{
  font-size: 12px;
}
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
	.shri-educators-shape{
		bottom:0px;
		top:inherit;
	}
	.our-founder-shape{
		bottom:0px;
		top:inherit;
	}
	.leadership-shape {
   bottom:0px;
		top:inherit;
}
	.contact-right-shape{
		bottom:0px;
		top:inherit;
	}
	.adminssion-ul li{
		display:block !important;
	}
	.admission-left-shape, .admission-right-shape{
		bottom:0px;
		top:inherit;
}
	.addmission-form-responsive .col-md-6{
		margin-bottom:15px;
	}
	.addmission-form-responsive .col-md-12{
		margin-bottom:15px;
	}
	.addmission-form-responsive .row.mb-3 {
		margin-bottom:0px !important;
}

  .float{
    left: 15px;
  }
	.curriculum-shape img {
    width: 15%;
}
	.curriculum-left-shape img {
    width: 15%;
}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 0px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding: 0px 0 30px;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: #d53638;
}

.section-title span {
  /* position: absolute; */
  /* top: -23px; */
  /* color: color-mix(in srgb, var(--heading-color), transparent 95%); */
  /* left: 0; */
  /* right: 0; */
  /* z-index: 1; */
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  text-align: justify;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 18px;
  }
  .section-title h3 {
		font-size: 20px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 85vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* .hero .carousel-item:before { */
    /* content: ""; */
	/* z-index: 2; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-image: linear-gradient(90deg, rgb(0 0 0 / 51%) 19.25%, #fff0 73.86%); */
/* } */

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: #fff;
  background: #db3332;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: #000;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
    line-height: 1.3;
    background: #000;
    border-radius: 5px;
}

.hero .carousel-indicators {
  list-style: none;
  display: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    overflow: visible;
    z-index: 0;
    position: relative;
	background-image: url(../img/about-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.about ul {
  list-style: none;
  padding: 0;
  text-align: justify;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
      font-size: 16px;
    color: #000;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #d53638;
}

.about .read-more {
  background: #d53638;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, #d53638, transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

.button-box .left-btn, .button-box .right-btn {
    position: relative;
    font-size: 14px;
    padding: 0 30px;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    line-height: 60px;
    margin: 0 4px;
}
.button-box{
    text-align: left;
	padding-left: 15px;
}
.button-box a.left-btn:before {
    position: absolute;
    content: '';
    background: #e38b00;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transform: skew(-30deg, 0deg);
}
.button-box a.left-btn:after {
    position: absolute;
    content: '';
    background: #e38b00;
    width: 40px;
    height: 100%;
    top: 0;
    left: -17px;
    z-index: -1;
}
.button-box a.right-btn:before {
    position: absolute;
    content: '';
    background: #e38b00;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transform: skew(-30deg, 0deg);
}
.button-box a.right-btn:after {
    position: absolute;
    content: '';
    background: #e38b00;
    width: 40px;
    height: 100%;
    top: 0;
    right: -17px;
    z-index: -1;
}

.who-we-are-image {
    text-align: center;
    position: relative;
    z-index: 1;
}
.who-we-are-image img {
    border-radius: 50%;
    padding: 20px;
    width: 100%;
    height: 596px;
    object-fit: cover;
}
.who-we-are-image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #ea512e;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    transition: 0.5s;
    animation: border-transform-default 10s linear infinite alternate forwards;
}
.who-we-are-image::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #f5890d;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    transition: 0.5s;
    animation: border-transform-default 50s linear infinite alternate forwards;
}
@keyframes border-transform-default {
    0%, to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}
.our-programms{
  position: relative;
}
.our-programms::after{
      position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #f89d1f78;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    transition: 0.5s;
    animation: border-transform-default 50s linear infinite alternate forwards;
}
.our-programms-1::after{
  background-color:#17a29c87;
}
.our-programms-3::after{
  background-color:#bb51878f;
}
.our-programms-4::after{
  background-color:#46a2c57a;
}
#tem{
  position: relative;
}
.our-programme .toy-box-shape {
    position: absolute;
    top: 0%;
    left: 16px;
    /* animation: rounded 5s linear infinite; */
}
.our-programme .zebra-shape {
    position: absolute;
    bottom: 8px;
    right: 0;
}
@keyframes border-transform-default {
  0%, to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}
.about-wrapper {
    padding: 0;
    margin: 0;
    margin-top: 0px;
}
.about-wrapper .wrapper-list-style-2 {
    list-style: none;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    margin-top: 0;
}
.about-wrapper .wrapper-list-style-2 .list-inner {
    display: flex;
    gap: 30px;
    align-items: center;
}
.about-wrapper .wrapper-list-style-2 .icon {
    flex-basis: 18%;
    height: max-content;
}
.about-wrapper .wrapper-list-style-2 .icon img {
    width: 100%;
}
.about-wrapper .wrapper-list-style-2 .content {
    flex-basis: 82%;
}

/*--------------------------------------------------------------
# Vision Mission Section
--------------------------------------------------------------*/
.mission-vission-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    
}
.mt-none-30 {
    margin-top: -30px;
}
.mission-vission-item {
    background-color: #781921;
    padding: 40px 70px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
	height: 260px;
}
.mission-vission-item .xb-item--title {
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
	font-weight: 600;
    font-family: "Playfair Display", serif;
}
.mission-vission-item .xb-item--content {
    color: #FAD3D7;
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 26px;
}
.mission-vission-item .xb-item--shape .shape {
    position: absolute;
    z-index: -1;
}
.mission-vission-item .xb-item--shape .shape--1 {
    bottom: 0;
    left: 0;
}
.mission-vission-item .xb-item--shape .shape--2 {
    top: 0;
    right: 0;
}
.services {
    background: #eff5f6;
	position: relative;
}
.class-shape .shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.class-shape .shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.class-shape .shape-3 {
    position: absolute;
    left: 0;
    top: 0;
}

.services .mask-shape {
    position: absolute;
    top: 3%;
    right: 5%;
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes float-bob-x {
	0% {
	  -webkit-transform: translateX(30px);
	  transform: translateX(30px);
	}
	50% {
	  -webkit-transform: translateX(10px);
	  transform: translateX(10px);
	}
	100% {
	  -webkit-transform: translateX(30px);
	  transform: translateX(30px);
	}
}
/*--------------------------------------------------------------
# curriculum page css start
--------------------------------------------------------------*/
.service-wrapper-style-2 {
    padding: 0;
    margin: 0;
}
.service-wrapper-style-2 .wrapper-list {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 0;
}
.service-wrapper-style-2 .wrapper-list .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    display: block;
}
.service-wrapper-style-2 .wrapper-list .icon img{
  filter: brightness(0) invert(1);
}
.service-wrapper-style-2 .wrapper-list .text {
    flex-basis: 75%;
}
.service-wrapper-style-2 .wrapper-list h4{
  font-size: 20px;
}
.bg-two {
    background: #ff6d1c;
}
.bg-two + .text h4{
  color: #ff6d1c;
}
.rts-service-area.v-2 .section-inner .service-image-area {
    position: absolute;
    max-width: max-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.rts-service-area.v-2 .section-inner {
    position: relative;
    z-index: 1;
}
.bg-four {
    background: #09a24f;
}
.bg-four + .text h4{
    color: #09a24f;
}
.bg-three {
    background: #b54cca;
}
.bg-three + .text h4{
    color: #b54cca;
}
.bg-five {
    background: #cf251d;
}
.bg-five + .text h4{
    color: #cf251d;
}
.bg-six {
    background: #159fc9;
}
.bg-six + .text h4{
    color: #159fc9;
}
/*--------------------------------------------------------------
# curriculum page css end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# career page css start
--------------------------------------------------------------*/
.career-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}
.career-card:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.apply-box {
  background: #f4f7fb;
  border-radius: 20px;
}
.current-card{
  background: #fff;
}
.why-work-card{
  border: none;
    border-radius: 16px;
    box-shadow: inherit;
    transition: .3s;
    background: #f7f7f7;
}
.career-left img{
  border-radius: 10px;
}
.career-form .form-control{
      width: 100%;
/*     height: 58px; */
    line-height: 58px;
    padding: 0px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    font-size: 18px;
}
.career-form textarea{
    width: 100%;
    height: 200px;
    resize: none;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 15px;
    line-height: 1.2;
	font-size: 18px;
}
.career-form .btn {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #ff9b24;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 36px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    text-transform: capitalize;
}
.apply-now{
      font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #ff9b24;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 36px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    text-transform: capitalize;
    border: none;
}
.apply-now:hover{
  color: white;
}
 
/*--------------------------------------------------------------
# career page css end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    background-image: url(../img/why-choose.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	position: relative;
}

.features h3 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    color: #d53638;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: #d53638;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, #d53638, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

.features .icon-box:hover i {
  background: #d53638;
  border-color: #d53638;
  color: #fff;
}

.features .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box .title a:hover {
  color: #d53638;
}

.features .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features .video-box {
  min-height: 400px;
}

.features .video-box img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 60px;
}

.features .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}

.value-shape .shape-1 {
    position: absolute;
    top: 30px;
    left: 20px;
}

.value-shape .shape-2 {
    position: absolute;
    left: 20px;
    bottom: 30px;
}

.value-shape .shape-3 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: #d53638;
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}


  .vertical-tabs .nav-link {
      text-align: left;
      padding: 16px 20px;
      margin-bottom: 8px;
      border-radius: 10px;
      background: #fff;
      color: #333;
          border-left: 4px solid #f39f5f;
      transition: all 0.3s ease;
      font-weight: 600;
    }
     /* .vertical-tabs .nav-link {
    text-align: left;
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #fecd23;
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    background: linear-gradient(135deg, #f39f5f 0%, #d43637 100%);
} */

    .vertical-tabs .nav-link:hover {
      background: #e2e6ea;
      transform: translateY(-3px);
      background: #d43637;
      /* background: linear-gradient(135deg, #f39f5f 0%, #d43637 100%); */
      border-left: 4px solid #f39f5f !important;
      color: #fff;
    }

    .vertical-tabs .nav-link.active {
        border-color: #d43637;
    background-color: #ffdede;
    color: #fff;
    background: linear-gradient(135deg, #f39f5f 0%, #d43637 100%);
    }

    .tab-main-img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
    .shri-new .icon-box{
         height: inherit !important;
    width: inherit !important;
    padding: 0px !important;
    border: none !important;
        margin-top: 25px !important;
    }
    .shri-new .icon-box img {
    width: 100% !important;
    overflow: hidden;
        border-radius: 8px !important;
    }
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.category-block {
    position: relative;
    margin-bottom: 30px;
	margin-top: 0;
}

.services .service-item {
    background-color: var(--surface-color);
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    padding: 20px 40px 50px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
        /* background: #e7a915; */
         /* background: #e7a915 url("../img/border.png") no-repeat center center / cover; */
}
.tab-right-1{
  background: url('../img/wonderfull-time.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-2{
  background: url('../img/circle-time-1.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-3{
  background: url('../img/planetp-plas.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-4{
  background: url('../img/share-and-tell 1.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-5{
  background: url('../img/safeandsecure-envirnment.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-6{
  background: url('../img/freeplay-.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-7{
  background: url('../img/music-and-movenemt.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right-8{
  background: url('../img/steam-tab.webp'); 
  /* background-size: cover;  */
  /* background-position: center; */
  position: relative;
}
.tab-right-9{
  background: url('../img/planet-pal.webp'); 
  background-size: cover; 
  background-position: center;
  position: relative;
}
.tab-right{
  position: relative;
}
.tab-right::after{
  content: "";
  position: absolute;
  inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 51%) 0%, rgb(0 0 0 / 0%) 40%, rgba(0, 0, 0, 0) 70%);
      border-radius: 10px;
}

.services .category-block .service-item:hover {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

.services .service-item:before{
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid #ffffff;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 8px;
    z-index: 99;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  color: #000;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
      position: relative;
    z-index: 111;
 
}
.services .icon-box img {
    width: 55px;
}
.services .service-item .title a {
  /* color: var(--heading-color); */
   color: #fff;
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
   color: #fff;
       position: relative;
    z-index: 11;
}

.services .service-item:hover {
  border-color: #d53638;
}

.services .service-item:hover .title a {
  color: #d53638;
}

.category-block .icon-box {
    position: relative;
    height: 80px;
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    font-size: 52px;
    /* background-color: #ffcc2a; */
    border-radius: 0 0 10px 10px;
    margin: 0 auto 25px;
    background: transparent;
    border: 1px solid #ffcc2a;
    /* border-top: 1px solid #fff; */
}

/*--------------------------------------------------------------
# Founder Section
--------------------------------------------------------------*/
.parent-speak .swiper {
  width: 100%;
}
.parent-speak {
  position: relative;
}
/* .parent-speak .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #eaeaea;
  border-radius: 8px;
} */
/* Arrow Buttons */
.parent-speak .swiper-button-next,
.parent-speak .swiper-button-prev {
  width: 35px;
  height: 35px;
  background: #d43637;        /* change color here */
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 9999;
   pointer-events: all;
}
.parent-speak .swiper-slide {
  pointer-events: auto;
}
/* Hover Effect */
.parent-speak .swiper-button-next:hover,
.parent-speak .swiper-button-prev:hover {
  background: #ff9800;      /* hover color */
  /* transform: scale(1.1);   */
}

/* Remove default blue arrow SVG */
.parent-speak .swiper-button-next::after,
.parent-speak .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
.parent-speak .swiper-pagination-bullet-active {
  background: #d43637;  /* active dot color */
}
.parent-speak .swiper-button-next{
  right: 0px;
}
.parent-speak .swiper-button-prev{
  left: 0px;
}

/*--------------------------------------------------------------
# Founder Section
--------------------------------------------------------------*/
.partner-with-us li{
  align-items: start !important;
}
.admission-content h2 {
  color: #d43637;
}

.admission-content .card {
    border: none;
    border-radius: 16px;
    box-shadow: inherit;
    transition: .3s;
    background: #f7f7f7;
        padding: 20px 10px;
}

.admission-content ul li {
  margin-bottom: 8px;
  color: #555;
}
.adminssion-ul{
      list-style: none;
    padding: 0;
}
.adminssion-ul li {
    padding-bottom: 0px;
    display: flex;
    align-items: start;
}

    .image-sync-grid {
      background-color: #ffffff;
      border-radius: 12px;
          height: 378px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .image-card {
      cursor: pointer;
      padding: 18px 20px;
      border: 1px solid transparent;
      border-radius: 10px;
      margin-bottom: 10px;
      background-color: #f8f9fa;
      transition: all 0.3s ease-in-out;
    }

    .image-card:hover {
      background-color: #e2e6ea;
      transform: translateY(-4px);
    }

    .image-card.active {
        border-color: #d43637;
    background-color: #ffdede;
    }

    .image-card .small-img {
      display: none;
    }

    .image-card h5 {
      margin: 0;
      font-weight: 600;
      color: #212529;
      font-size: 16px;
    }

    .main-image {
      width: 100%;
      ;
    }

    .main-image img {
      max-width: 100%;
      width: 100%;
      border-radius: 10px;
      transition: opacity 0.4s ease-in-out;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    @media (max-width: 768px) {
      .main-image img {
        margin-top: 30px;
      }
		    .mobile-ctickybtn {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 99;
    }
		    .mobile-ctickybtn a {
        width: 100%;
        text-align: center;
        padding: 10px;
        background: #25d366;
        color: #fff;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
		.footer .copyright{
			    margin-bottom: 40px;
}
      .parent-speak .swiper-button-next,
.parent-speak .swiper-button-prev{
  display: none;
}
    }



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
    background: #FFEFE5;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.gallery-view-btn .default-btn, .read-btn .default-btn{
    display: inline-block;
    padding: 12px 35px;
    background-color: #db3332;
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/* .kida{
  width: 50%;
} */
.shape-2{
  text-align: right;
}
.shape-2 img{
      width: 70%;
}
.pencil-shape img{
  width: 85%;
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #d53638;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 10px;
  margin: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: #d53638;
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 14px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: #d53638;
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    width: 100%;
}
.swiper-slide .member-content{
  height:250px;
  overflow-y: scroll;
}
/* Scrollbar width */
.swiper-slide .member-content::-webkit-scrollbar {
  width: 3px;   /* patla */
}

/* Track */
.swiper-slide .member-content::-webkit-scrollbar-track {
  background: transparent;
}

/* Thumb */
.swiper-slide .member-content::-webkit-scrollbar-thumb {
  background: #f5890d;     /* brand color */
  border-radius: 10px;
}

/* Hover effect */
.swiper-slide .member-content::-webkit-scrollbar-thumb:hover {
  background: #d96f00;
}
.team .member img {
  margin: -1px -1px 0px -1px;
}

.team .member .member-content {
  padding: 0 20px 0px 20px;
  text-align: left;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: #222222;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: normal;
  color: #222222;
  margin-bottom: 8px;
  text-align: justify;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #d53638;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}




.my-custom-swiper-section {
  width: 100%;
  position: relative;
}

.myCustomSwiper {
  width: 100%;
}

.custom-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.myCustom-next,
.myCustom-prev {
  color: #000;
}

.myCustom-pagination .swiper-pagination-bullet {
  background: #000;
}
/* ===============================
   CUSTOM SWIPER PAGINATION
================================ */
.my-custom-swiper-section .myCustom-pagination {
  bottom: 10px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-custom-swiper-section .myCustom-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  background: #bfbfbf;        /* inactive bullet color */
  opacity: 1;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.my-custom-swiper-section .myCustom-pagination .swiper-pagination-bullet-active {
  width: 30px;                /* long pill shape */
  background: #d43637;        /* active color */
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;

}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    background-color: #fee9ca;
    padding: 30px;
    border-radius: 50%;
    height: 400px;
    width: 400px;
	display: flex;
    flex-direction: column;
    justify-content: center;
	
	position: relative;
    width: 400px;
    height: 360px;
    margin: 2em auto 10px;
    color: #000;
    -webkit-border-top-left-radius: 400px 350px;
    -webkit-border-top-right-radius: 400px 350px;
    -webkit-border-bottom-right-radius: 400px 350px;
    -webkit-border-bottom-left-radius: 400px 350px;
    border-radius: 400px / 350px;
}

.testimonials .testimonial-item:before{
	content: "";
    position: absolute;
    z-index: -1;
    bottom: -30px;
    right: 55%;
    width: 180px;
    height: 60px;
    background: #fff;
    border-bottom-right-radius: 40px 50px;
    transform: translate(-30px, -2px);
}
.testimonials .testimonial-item:after{
	content: "";
    position: absolute;
    z-index: -2;
    bottom: -30px;
    right: 25%;
    height: 80px;
    border-right: 200px solid #fee9ca;
    background: #fee9ca;
    border-bottom-right-radius: 200px 100px;
    transform: translate(0, -2px);
    display: block;
    width: 0;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
        width: 80%;
        height: 200px;
        overflow-y: scroll;
        overflow-x: hidden;
}
.testimonials .testimonial-item p::-webkit-scrollbar-track
{
/* 	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	background-color: transparent;
}

.testimonials .testimonial-item p::-webkit-scrollbar
{
	width: 1px;
	background-color: #fee9ca;
}

.testimonials .testimonial-item p::-webkit-scrollbar-thumb
{
	background-color: #d53638;
}
.testimonials .testimonial-item h3{
	    width: 60%;
    margin: auto;
	font-size:15px;
}
.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

.testimonials-image {
    text-align: center;
    margin-top: 50px;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Activity Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
    position: relative;
}
.faq::before {
content: "";
    position: absolute;
    /* inset: 0; */
    background-image: url(../img/faq-bg-new.webp);
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
  background: #f3f3f3 !important;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0pxsx;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: #d53638;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #d53638;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: #d53638;
  display: none;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #d53638;
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: #000000;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

.faq .pencil-shape {
    position: absolute;
    top: 0%;
    left: 16px;
    animation: rounded 5s linear infinite;
}

@keyframes rounded {
    50%{
        transform: rotate(20deg);
    }
}

.faq .zebra-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes float-bob-y {
	0% {
	  -webkit-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
	50% {
	  -webkit-transform: translateY(-10px);
	  transform: translateY(-10px);
	}
	100% {
	  -webkit-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.calender-activity {
    position: relative;
    z-index: 1;
    background: #eff5f6;
}
.calender-activity .top-shape {
    position: absolute;
    top: 0;
    left: 0;
}
.calender-activity .section-title h2 {
    padding-top: 20px;
    margin-bottom: 0;
}
.calender-activity .bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: #fff;
  background: #d53638;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #d53638;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: #fff;
  background: #d53638;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #d53638, transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d53638;
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: #d53638;
}

.service-details .services-list a:hover {
  border-color: #d53638;
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 20px;
  font-weight: 600;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: #d53638;
}


.modal-dialog {
    width: 60% !important;
    max-width: 650px;
}
.modal-header {
    position: absolute;
    right: 0;
    z-index: +999;
    border: 0;
    background: #fff;
    border-radius: 0;
}
.modal-header .close {
    margin-top: -2px;
    position: absolute;
    right: 0px;
    background: none;
    border: none;
    font-size: 32px;
}
.modal-content {
    padding: 0;
	max-width: 100%;
	width: 100%;
}
#calendar {
        max-width: 1100px;
        margin: auto;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
    background-color: #d53638;
    border-color: #d53638;
    color: var(--fc-button-text-color);
}

/*--------------------------------------------------------------
# About Inner Page
--------------------------------------------------------------*/
.about-inner-img {
    max-width: 580px;
    position: relative;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 508 485"><path fill-rule="evenodd" clip-rule="evenodd" d="M273.307 22.3171C313.958 21.7364 354.018 -9.9391 392.233 3.1801C429.93 16.1214 448.114 56.8471 468.691 89.3925C487.204 118.672 501.176 150.33 506.594 184.055C511.646 215.497 501.66 246.444 499.018 278.149C496.315 310.595 504.839 344.713 490.737 374.404C476.393 404.605 448.022 426.759 419.387 445.812C390.95 464.733 359.473 482.18 324.811 484.809C290.921 487.38 261.165 463.161 227.293 460.384C188.086 457.169 146.979 481.781 110.746 467.257C75.3239 453.059 46.6799 419.717 37.6358 384.361C28.4117 348.301 68.3117 313.334 62.0057 276.717C55.164 236.989 -9.04387 211.189 1.08003 172.094C10.8117 134.513 77.5118 141.105 104.627 112.126C132.07 82.7954 119.879 25.7702 155.969 6.55486C190.772 -11.9748 233.369 22.8875 273.307 22.3171Z" /></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
}

.about-inner-img img{
	width: 100%;
    height: 554px;
}

.about-img-mt{
	position: relative;
}

.about-img-mt .radius-shape {
    position: absolute;
    top: 43%;
    left: 51%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.about-inner-con p {
    margin-bottom: 8px;
}

/*--------------------------------------------------------------
# Contact Inner Page
--------------------------------------------------------------*/
.pb-60 {
    padding-bottom: 60px;
}

.pt-40 {
    padding-top: 40px;
}
.mb-30 {
    margin-bottom: 30px;
}
.bd-contact-info {
    min-height: 270px;
    width: 100%;
    background: #fff6eb;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    filter: drop-shadow(4px 4px 0px #FFE1BD);
}
.bd-contact-info:hover {
    filter: drop-shadow(4px 4px 0px #ff9b24);
}
.bd-contact-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bd-contact-info-icon.cat-1 {
    border-radius: 44% 56% 44% 56% / 58% 47% 53% 42%;
}

.bd-contact-info-icon {
    font-weight: 600;
    padding: 0px;
    margin-bottom: 25px;
    background-color: #00bbae;
}
.bd-contact-info-icon a {
    font-size: 45px;
    height: 120px;
    width: 120px;
    display: inline-block;
    line-height: 120px;
    text-align: center;
    color: #ffffff;
}
.bd-contact-info-content h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}
.bd-contact-info-content h6 a{
	Color: #000;
}
.bd-contact-info-icon.cat-2 {
    background-color: #ff9b24;
    border-radius: 81% 19% 23% 77% / 58% 52% 48% 42%;
}
.bd-contact-info-icon.cat-3 {
    background-color: #ff577b;
    border-radius: 37% 63% 61% 39% / 52% 49% 51% 48%;
}
.bd-contact-form {
    padding: 50px 30px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    background-color: #fbfbfb;
}
.mb-25 {
    margin-bottom: 25px;
}
.bd-contact-input label {
    display: block;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
}
.bd-contact-input label i {
    font-size: 8px;
    color: red;
}
.bd-contact-input input {
    width: 100%;
    height: 58px;
    line-height: 58px;
    padding: 0px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    font-size: 18px;
}
.bd-contact-input textarea {
    width: 100%;
    height: 200px;
    resize: none;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 15px;
    line-height: 1.2;
}
.bd-contact-agree-btn .bd-btn {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #ff9b24;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 36px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    text-transform: capitalize;
}
.bd-contact-map{
    height: 100%;
    width: 100%;
    border-radius: 24px;
    border: 2px solid #dddddd;
    min-height: 400px;
}
.bd-contact-map iframe {
    height: 100%;
    width: 100%;
    border-radius: 24px;
}

/*--------------------------------------------------------------
# blog detail Inner Page
--------------------------------------------------------------*/
.content-side .lower-content {
    position: relative;
    padding: 50px 50px;
    background-color: #f9f5f0;
}
.inner-box .services-img {
    margin-bottom: 0;
	border-radius: 20px 20px 0px 0px;
}
.sidebar .search-box {
    position: relative;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    margin-bottom: 2px;
}
.sidebar-widget {
    position: relative;
    padding: 45px 50px;
    background-color: #f9f5f0;
    margin-bottom: 2px;
}
.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}
.sidebar .search-box .form-group input[type="text"] {
    position: relative;
    line-height: 30px;
    padding: 20px 20px;
	margin-bottom: 10px;
    border: 1px solid transparent;
    background: #ffffff;
    display: block;
    font-size: 16px;
    width: 100%;
    height: 50px;
    color: #858687;
    border-radius: 20px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.posts-widget {
    position: relative;
}
.sidebar-title {
    position: relative;
    margin-bottom: 25px;
}
.sidebar-title h5 {
    position: relative;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    line-height: 30px;
}
.posts-widget .post {
    position: relative;
    margin-bottom: 25px;
}
.posts-widget .post .post-inner {
    position: relative;
}
.posts-widget .post .image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #393d72;
    border-radius: 20px;
    margin-bottom: 5px;
}
.posts-widget .post .post-inner:hover .image img {
    opacity: .70;
}

.posts-widget .post .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.posts-widget .post .date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #858687;
    font-weight: 400;
}
.posts-widget .post .date span {
    color: #ff4880;
    margin-right: 5px;
}
.posts-widget .post h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #393d72;
    font-weight: 600;
}
.posts-widget .post h5 a {
    color: #000;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.sidebar .popular-tags {
    position: relative;
}
.sidebar .tags-list li {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}
.sidebar .tags-list a {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: #858687;
    font-weight: 400;
    padding: 10px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.sidebar .tags-list a:hover {
    background-color: #ffae00;
    color: #ffffff;
}
.form-btn {
    text-align: center;
}
.form-btn .btn-submit {
    color: #fff;
    background: #db3332;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
}

/* Programe CSS Start */
.event-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden; 
    transition: transform 0.3s ease;
    height: 100%;
}
.event-card:hover {
    transform: translateY(-5px);
}
.card-img-wrapper {
    position: relative;
    height: 250px; 
    overflow: hidden;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cloud-divider {
    position: absolute;
    bottom: 0px; 
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* transform: rotate(180deg);  */
}
.cloud-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}
.cloud-divider .shape-fill {
    fill: #FFFFFF;
}
.card-body {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    background: #fff;
}
.location-meta {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.location-meta i {
    color: #ff9f43; 
}
.card-title {
    color: #2d3436;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0px;
}
.card-title span {
    font-size: 1rem;
    font-weight: 500;
}
.dashed-separator {
    border-top: 2px dashed #ffeaa7; 
    width: 100%;
    margin-top: auto;
	margin-bottom: 15px;
}
/* Programe CSS End */

/*--------------------------------------------------------------
# Gallery Inner Page
--------------------------------------------------------------*/
.gallery-inner{
    background: #fff;
}
.gallery-inner .portfolio-content img {
    background: #FFEFE5;
}
.about p, .features p{
		color: #000;
	}
	
	
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0px;
  margin-top: 20px;
}

.pagination li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid #d53638;
  color: black;  
  margin: 0 4px;
  border-radius: 5px;
}

.pagination li a.active {
  background-color: #d53638;
  color: white;
}

::placeholder {
  color: #585c5f;
}

.day-care h2 {
    text-align: center;
}


/* Custom Card Styling */
        .curicullum-card .program-card {
            border: none;
            border-radius: 24px; /* Large rounded corners */
            padding: 20px;
            height: 100%; /* Ensures cards are equal height */
            transition: transform 0.3s ease;
        }

        .curicullum-card .program-card:hover {
            transform: translateY(-5px);
        }

        .curicullum-card .program-card img {
            border-radius: 16px; /* Rounded corners for images */
            width: 100%;
            height: 260px;
            object-fit: cover; /* Ensures images don't stretch */
            margin-bottom: 20px;
        }

        .curicullum-card .card-title {
            font-weight: 600;
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .curicullum-card .card-text {
            color: #4a4a4a;
            font-size: 0.95rem;
            line-height: 1.6;
        }
		
.curicullum-card .card-body {
    background: inherit;
}

/* Specific Background Colors */
        .bg-settling {
            background-color: #E6FBFD; /* Light Cyan */
        }

        .bg-playgroup {
            background-color: #FFF6E7; /* Light Peach/Cream */
        }

        .bg-nursery {
            background-color: #FDEBF2; /* Light Pink */
        }

.bg-nur2 {
    background-color: #EBFAFF;
}
.bg-nursery3 {
    background-color: #EBEBFF;
}

/* --- About program css --- */
.programm .program-card {
    border: none;
    padding: 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    border-radius: 40px 30px 50px 30px; 
}

.programm .program-card:hover {
    transform: translateY(-10px);
}

        .programm .program-card::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            pointer-events: none;
        }

        .programm .program-card::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: rgba(0, 0, 0, 0.03); /* Subtle shadow effect */
            border-radius: 50%;
            pointer-events: none;
        }

        /* --- Typography & Elements --- */
        .programm .icon-wrapper {
/*             width: 80px;
            height: 80px; */
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .programm .icon-wrapper img {
            width: 100%;
            height: auto;
            object-fit: contain;
			    border-radius: 12px;
        }

        .programm .card-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: #000;
            margin-bottom: 5px;
        }

        .programm .age-range {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
            display: block;
        }

        .programm .card-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        
        .programm .bg-toddler {
            background-color: #F9FADC; 
        }

        .programm .bg-preschool {
            background-color: #FEECEC;
        }

        .programm .bg-kindergarten {
            background-color: #E8EBFD;
        }

        .programm .bg-prek {
            background-color: #E0FBF6;
        }

@media (max-width: 767px) {
	html, body {
		overflow-x: hidden;
	}
  .custom-slide img{
    width: 100%;
  }
	.contact-info {
		flex-wrap: wrap;
		justify-content: center;
	}
	.header .logo img {
		max-height: 40px;
	}
	.hero .carousel {
		min-height: 26vh;
	}
	.hero .carousel-container{
		inset: 90px 64px 64px 55px;
	}
  .gudda img{
    width: 50px !important;
  }
	.hero h2 {
        font-size: 18px;
        margin-bottom: 10px;
        width: 64%;
    }
	.hero .btn-get-started{
		font-size: 12px;
		padding: 7px 10px;
		margin: 0;
	}

  .our-programme .toy-box-shape img{
    width: 22%;
  }
  .our-programme{
    padding-bottom: 50px !important;
  }
  .float{
    display: none;
  }
  #faq{
        background-image: url('../img/faq-bg-new-mobile.webp');
    background-size: cover;
    background-position: center;
  }
  .services .service-item:before{
    border: 1px solid #ffcc2a;
  }
  .services .service-item .title a{
    color: #000 !important;
  }
  .services .service-item .description{
    color: #000 !important;
  }
	.about {
		padding-top: 20px;
	}
	.team .member{
		display: block;
		padding: 20px 20px;
	}
	.team .member img {
		width: 100%;
	}
	.team .member .member-content {
		padding: 15px 0px 0px 0px;
		text-align: left;
	}
	.who-we-are-image img{
		height: auto;
	}
	.class-shape img {
		width: 80px;
	}
	.call-to-action h3 {
		font-size: 29px;
	}
	.call-to-action p {
		font-size: 14px;
	}
	.call-to-action .cta-btn{
		font-size: 12px;
		padding: 12px 25px;
	}
	.call-to-action {
		padding: 40px 0 !important;
	}
	section, .section{
		padding: 30px 0;
	}
	.section-title
	{
		padding: 0px 0 10px;
	}
    .testimonials .testimonial-item{
	    height: 300px;
		width: 340px;
	}
	.testimonials .testimonial-item h3{
		font-size:12px;
	}
	.testimonials .testimonial-item p{
		font-size: 12px;
	}
	.zebra-shape img {
		width: 60px;
	}
	.pencil-shape img {
		width: 100px;
	}
	.faq .pencil-shape {
		top: 3%;
		left: 20px;
	}
	.value-shape img {
		width: 60px;
	}
  section#hero {
    padding: 0px !important;
}
  .pencil-shape{
    display: none;
  }
	.shape-2 img {
		width: 60px;
	}
	.faq .faq-container .faq-item h3 {
		font-size: 14px;
	}
	.faq .faq-container .faq-item .faq-content p {
		font-size: 12px;
	}
	.modal-dialog {
		width: auto !important;
	}
	.fc .fc-toolbar {
		align-items: center;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
  #testimonials .container{
    margin-left: 6px;
  }
  .section-title p, p{
	font-size: 14px !important;
	}
  .content h4.title {
		font-size: 18px;
	}
	.button-box .left-btn, .button-box .right-btn{
		padding: 0 20px;
	}
	.page-title .heading img {
		height: 100px;
	}
	.page-title nav ol{
		padding-left: 10px;
		font-size: 13px;
	}
	.curicullum-card .card-title {
		font-size: 15px;
	}
	
}


/* Only apply to screens smaller than 768px (Mobile) */
@media only screen and (max-width: 768px) {
    
    /* Target common animation libraries (AOS, WOW, Animate.css) */
    [data-aos], .wow, .animate__animated {
        /* Force element to be visible immediately */
        opacity: 1 !important;
        visibility: visible !important;
        
        /* Stop movement and fading */
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}