* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	
}

html {
	scroll-behavior: smooth;

	/* Variables For Storing Colors */
	--primary-clr: #CDF5FD;
	--primary-medium-clr: #d8e9df;
	--bg-clr-1: #ffffff;
	--dark-heading-clr: #232d39;
	--dark-text-clr: #6c757d;
	--light-heading-clr: #2c2255;
	--light-text-clr: #cecece;
}

/*   === Global Styling Starts ===   */
button.btn {
	padding: 10px 18px;
	background-color: var(--light-heading-clr);
	color: #fff;
	font-size: 15px;
	border: 1px solid transparent;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s;
}

button.btn:hover {
	background-color: white;
	color: #2c2255;
	border: 1px solid var(--primary-clr);
}

.section-header h1 {
	position: relative;
	font-size: 32px;
	letter-spacing: 1px;
	color: #2c2255;
	margin-bottom: 20px;
}

.section-header h1::before {
	position: absolute;
	content: '';
	width: 100px;
	height: 1px;
	left: 0;
	top: calc(100% + 5px);
	background-color: var(--dark-text-clr);
}

.section-header h1::after {
	position: absolute;
	content: '';
	width: 50px;
	height: 3px;
	left: 0;
	top: calc(100% + 4px);
	background-color: #2c2255;
}

.section-header p {
	color: var(--dark-text-clr);
	margin-bottom: 40px;
	max-width: 700px;
}

/*   === Global Styling Ends ===   */
body {
	width: 100%;
	min-height: 100vh;
	max-width: 3000px;
	margin: 0;
	padding: 0;
}

.website-container {
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

/*   === Home Section Styling Starts ===   */
.header-poster{
	width: 100%;
	height: auto;
	margin-bottom: 0;
}
.header-poster img{
	width: 100%;
	
}

@media screen and (max-width: 1024px) {
	body .main-navbar .menu-btn {
		display: flex;
		margin-left: auto;
		z-index: 101;
	}

	body .main-navbar .nav-list {
		position: fixed;
		top: 0;
		right: -100%;
		width: min(70%, 360px);
		height: 60vh;
		min-height: 400px;
		margin-top: 20vh;
		margin-left: 0;
		padding: 30px 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 18px;
		background-color: rgb(188, 214, 234);
		transition: right 0.3s cubic-bezier(.15, .61, .94, .25);
		z-index: 100;
	}

	body .main-navbar .nav-list.active {
		right: 0;
	}

	body .main-navbar .nav-list li a {
		font-size: 16px;
	}
}

/*   === Shared School Header Styling Starts ===   */
.home-header-section {
	background: linear-gradient(135deg, #2c2255 0%, #1a1f3a 100%);
	padding: clamp(4px, 0.8vw, 12px) clamp(10px, 4vw, 8%);
	display: grid;
	grid-template-columns: clamp(58px, 9vw, 112px) minmax(0, 1fr) clamp(58px, 9vw, 112px);
	align-items: center;
	gap: clamp(8px, 3vw, 40px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 200;
}

.home-header-section .header-logo,
.home-header-section .header-right {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}

.home-header-section .header-logo img,
.home-header-section .header-right img {
	width: clamp(54px, 8vw, 104px);
	height: clamp(54px, 8vw, 104px);
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
	display: block;
	margin: 0 auto;
}

.home-header-section .header-center {
	text-align: center;
	min-width: 0;
	overflow: hidden;
}

.home-header-section .header-message {
	margin: 0 0 clamp(1px, 0.3vw, 4px);
	color: #FFD700;
	font-size: clamp(7px, 1.1vw, 14px);
	font-weight: 400;
	line-height: 1.2;
	white-space: normal;
}

.home-header-section .header-center h1 {
	font-size: clamp(12px, 3.2vw, 40px);
	color: white;
	margin: 0;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	white-space: nowrap;
}

.home-header-section .header-center .location {
	font-size: clamp(7px, 1.3vw, 16px);
	color: #FFD700;
	margin-top: clamp(2px, 0.5vw, 8px);
	font-weight: 600;
	letter-spacing: 0;
	white-space: nowrap;
}

@media screen and (max-width: 1024px) {
	.home-header-section {
		grid-template-columns: clamp(52px, 9vw, 92px) minmax(0, 1fr) clamp(52px, 9vw, 92px);
	}
}

@media screen and (max-width: 768px) {
	.home-header-section {
		grid-template-columns: clamp(48px, 13vw, 68px) minmax(0, 1fr) clamp(48px, 13vw, 68px);
		gap: 6px;
	}
}
/*   === Shared School Header Styling Ends ===   */

/*   === Main Page Banner Section Styling Starts ===   */
.main-page-banner {
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: transparent;
	overflow: hidden;
}

.main-page-bg {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
}

.main-page-bg .gate-bg {
	display: none;
}

.children-center {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	z-index: 10;
	pointer-events: none;
}

.children-center .children-photo {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
	border: none;
	box-shadow: none;
	transition: transform 0.3s ease;
	margin: 0;
	padding: 0;
}

.children-center .children-photo:hover {
	transform: scale(1.02);
}

@media screen and (max-width: 1100px) {
	.children-center .children-photo {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.children-center .children-photo {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.children-center .children-photo {
		width: 100%;
	}
}
/*   === Main Page Banner Section Styling Ends ===   */


section.home {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-color: var(--primary-light-clr);
	margin: 0;
	padding: 0;
}

.home .main-navbar {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 12vh;
	min-height: 60px;
	max-height: 80px;
	background-color: whitesmoke;
	padding: 0px 8%;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.home.active .main-navbar {
	position: fixed;
	top: 0;
	margin: 0px auto;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
	animation: showMenu 0.6s ease-in;
	width: 100%;
	max-width: 100%;
	padding: 0px 8%;
}

@keyframes showMenu {
	from {
		transform: translateY(-100px);
	}

	to {
		transform: translateY(0px);
	}
}

.main-navbar .logo {
	text-decoration: none;
}

.main-navbar a h1{
	font-size: 50px;
	color: #2c2255;
}

.main-navbar .nav-list {
	list-style: none;
}

.main-navbar .nav-list li {
	display: inline-block;
	margin: 0px 10px;
}

.main-navbar .nav-list li a {
	position: relative;
	color: #000;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}

.main-navbar .nav-list li a::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--light-heading-clr);
	left: 0;
	top: calc(100% + 2px);
	transition: all 0.3s;
	transform: scaleX(0);
}

.main-navbar .nav-list li a:hover::after {
	transform: scaleX(1);
}

.main-navbar .get-started-btn {
	background-color: var(--light-heading-clr);
	color: #fff;
}

.main-navbar .get-started-btn:hover {
	background-color: var(--primary-clr);
	color: var(--light-heading-clr);
	border: 1px solid var(--light-heading-clr);
}

.main-navbar .menu-btn {
	min-width: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	display: none;
}

.main-navbar .menu-btn span {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--light-heading-clr);
	border-radius: 5px;
	transition: all 0.4s;
}

.main-navbar .menu-btn span::before,
.main-navbar .menu-btn span::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background-color: var(--light-heading-clr);
	transition: all 0.4s;
}

.main-navbar .menu-btn span::before {
	transform: translateY(-9px);
}

.main-navbar .menu-btn span::after {
	transform: translateY(9px);
}

body .main-navbar,
.home .main-navbar {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 70px;
	min-height: 58px;
	max-height: 76px;
	background-color: whitesmoke;
	padding: 0 6%;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	z-index: 150;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

body .main-navbar.active,
.home.active .main-navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 6%;
}

body .main-navbar a h1 {
	font-size: 48px;
}

body .main-navbar .nav-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(12px, 1.8vw, 24px);
	margin-left: auto;
	padding: 0;
	list-style: none;
}

body .main-navbar .nav-list li {
	display: block;
	margin: 0;
}

body .main-navbar .nav-list li a {
	font-size: 15.5px;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.home .banner {
	width: 100%;
	min-height: 100vh;
	padding: 50px 8% 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #CDF5FD;
}

.home .banner .banner-desc {
	position: relative;
	flex-basis: 50%;
	max-width: 700px;
	z-index: 2;
}

.banner .banner-desc h2 {
	font-size: 48px;
	color: var(--dark-heading-clr);
	letter-spacing: 1px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.banner .banner-desc p {
	color: var(--dark-text-clr);
	line-height: 1.4;
	margin-bottom: 30px;
}

.banner .banner-desc .search-bar {
	position: relative;
	width: 400px;
	height: 50px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.home .banner .banner-img {
	position: relative;
	flex-basis: 50%;
	display: flex;
	justify-content: flex-end;
	z-index: 1;
}

.banner-img .banner-img-container {
	position: relative;
	width: 400px;
	z-index: 2;
}

.banner-img .banner-img-container img {
	width: 100%;
	height: auto;
}

.btn a{
	color: white;
	text-decoration: none;
}
.btn:hover {
	background-color: #f7f7f7;
	color: #2e1c76;
}
.btn a:hover {
	background-color: #f7f7f7;
	color: #2e1c76;
}
@media (max-width:1100px) {
	.main-navbar a h1{
		font-size: 50px;
		font-weight:700 ;
		color:  #2c2255;
	}
	.home .main-navbar {
		
		height: 7vh;
		min-height: 50px;
	}
	
}
@media (max-width:850px) {
	.main-navbar a h1{
		font-size: 50px;
		font-weight:700 ;
		color: #2c2255;
	}
	
	.home .main-navbar {
		
		height: 7vh;
		min-height: 50px;
		
	}
	
}
@media (max-width:550px) {
	.main-navbar a h1{
		font-size: 30px;
		font-weight:700 ;
		color:  #2c2255;
	}
	h1{
		font-weight: 700;
	}
	.home .main-navbar {
		
		height: 5vh;
		min-height: 40px;
		
	}
	
}
/*   === Home Section Styling Ends ===   */
.teacher-btn a{
	color: white;
	text-decoration: none;
}
.teacher-btn:hover {
	background-color: #f7f7f7;
	color: #2e1c76;
}
.teacher-btn a:hover {
	background-color: #f7f7f7;
	color: #2e1c76;
}


/*   === Services Section Styling Starts ===   */
section.services {
	width: 100%;
	margin: 0;
	padding: 50px 8% 20px;
}

.services .services-contents {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.services-contents .service-box {
	flex-basis: calc(calc(100% / 3) - 2%);
	padding: 25px 20px;
	cursor: pointer;
	transition: all 0.3s;
	background: rgb(240, 251, 255);
}

.services-contents .service-box:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.service-box .service-icon {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--primary-clr);
	outline: 1px solid var(--primary-medium-clr);
	outline-offset: 10px;
}

.service-box .service-icon i {
	font-size: 24px;
	color: var(--light-heading-clr);
}

.service-box .service-desc {
	margin-top: 25px;
}

.service-box .service-desc h2 {
	margin-bottom: 10px;
	color: var(--dark-heading-clr);
	font-size: 22px;
}

.service-box .service-desc p {
	line-height: 1.4;
	color: var(--dark-text-clr);
}

.service-box:nth-child(1) .service-icon {
	background-color: #fef0ef;
	outline-color: #fef0ef;
}

.service-box:nth-child(1) .service-icon i {
	color: #f76250;
}

.service-box:nth-child(2) .service-icon {
	background-color: #e8f9ef;
	outline-color: #e8f9ef;
}

.service-box:nth-child(2) .service-icon i {
	color: #2f9355;
}

.service-box:nth-child(3) .service-icon {
	background-color: #f1f0fe;
	outline-color: #f1f0fe;
}

.service-box:nth-child(3) .service-icon i {
	color: #5a49f3;
}

/*   === Services Section Styling Ends ===   */


/* image slider style starts */


.slider {
	width: 84%;
	max-width: 100vw;
	height: 450px;
	margin: auto;
	position: relative;
	overflow: hidden;
}

.slider .list {
	position: absolute;
	width: max-content;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	transition: 1s;
}

.slider .list img {
	width: 1300px;
	max-width: 100vw;
	height: 100%;
	object-fit: cover;
}

.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 148, 148, 0.333);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider .dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	color: #fff;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.slider .dots li {
	list-style: none;
	width: 10px;
	height: 10px;
	background-color: #fff;
	margin: 10px;
	border-radius: 20px;
	transition: 0.5s;
}

.slider .dots li.active {
	width: 30px;
}



@media screen and (max-width: 768px) {
	.slider {
		height: 250px;
		width: 84%;
	}
	.slider .list img {
		width: 100%;
		max-width: 100vw;
		height: 100%;
		object-fit: cover;
	}
	
}


/* image slider style ends */


/*   === Teacher Section Styling Starts ===   */
section.instructor {
	width: 100%;
	margin: 0;
	padding: 20px 8% 20px;
}

.instructor .instructor-container {
	width: 100%;
	padding: 70px 8%;
	background: #CDF5FD;
	border-radius: 0px 100px 0px 100px;
}

.instructor-container h2 {
	font-size: 24px;
	color: #2c2255;
}

.instructor-container p {
	margin: 20px 0px 35px;
	color: #000;
}

/*   === Teacher Section Styling Ends ===   */


/* management section starts */





.team-column {
	float: left;
	width: 50%;
	margin-bottom: 16px;
	padding: 10px 8px;
}

@media screen and (max-width: 650px) {
	.team-column {
		width: 100%;
		display: block;
		
	}
	@media screen and (max-width: 1000px){
	h1{
		font-weight: 100;
	}
}
}



.team-card {
	box-shadow: 0 10px 20px 3px #00968814;
	border-radius: 10px;
	border:2px solid white;
	border-bottom-color: #2c2255;
}
.team-card img{
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.team-container {
	padding: 10px 16px;
}

.team-container::after,
.team-row::after {
	content: "";
	clear: both;
	display: table;
}

.team-container h2 {
	color: #2c2255;
}
.team-container p{
	margin-top: 5px;
}
.card-title {
	color: grey;
}

.team-button {
    border: none;
	outline: none;
	display: inline-block;
	padding: 8px;
	color: white;
	background-color: #2c2255;
	text-align: center;
	cursor: pointer;
	width: 30%;
	border-radius: 5px;
	margin-left: 70%;  
}
.team-button a{
	color: white;
}

.team-button:hover {
	background-color: #f7f7f7;
	color: #2e1c76;
}
.team-button a:hover {
	background-color: #f7f7f7;
	color: #2e1c76;
}

/* management section ends */

/*  Our Team */

.team-box {
	display: flex;
	padding: 0 35px;
	align-items: center;
	justify-content: center;
	height: 50vh;
	min-height: 300px;
	/* background-color: white; */
  }
.wrapper {
	max-width: 1100px;
	width: 100%;
	position: relative;
  }
  .wrapper i {
	top: 50%;
	height: 50px;
	width: 50px;
	cursor: pointer;
	font-size: 1.25rem;
	position: absolute;
	text-align: center;
	line-height: 50px;
	background: #ece8e8;
	border-radius: 50%;
	box-shadow: 0 3px 6px rgba(0,0,0,0.23);
	transform: translateY(-50%);
	transition: transform 0.1s linear;
  }
  .wrapper i:active{
	transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
	left: -22px;
  }
  .wrapper i:last-child{
	right: -22px;
  }
  .wrapper .carousel{
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% / 3) - 12px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 16px;
	border-radius: 8px;
	scroll-behavior: smooth;
	scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
	display: none;
  }
  .carousel.no-transition {
	scroll-behavior: auto;
  }
  .carousel.dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
  }
  .carousel.dragging .card {
	cursor: grab;
	user-select: none;
  }
  .carousel :where(.card, .img) {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  .carousel .card {
	scroll-snap-align: start;
	height: 342px;
	list-style: none;
	background: #ddf9fe;
	cursor: pointer;
	padding-bottom: 15px;
	flex-direction: column;
	border-radius: 8px;
	border: 1.5px solid white;
	border-bottom-color: #2c2255;
  }
  .carousel .card .img {
	background: #8B53FF;
	height: 148px;
	width: 148px;
	border-radius: 50%;
  }
  
  .card .img img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
  }
  .wrapper h3{
	margin-top: 15px;
	color:#2c2255;
  }
  .wrapper span{
	color: #0000ff;
	font-size: 15px;
	margin-top: 4px;
	
  }
  .carousel .card h2 {
	font-weight: 500;
	font-size: 1.56rem;
	margin: 30px 0 5px;
  }
  .carousel .card span {
	color: #6A6D78;
	font-size: 1.31rem;
  }
  
  @media screen and (max-width: 900px) {
	.wrapper .carousel {
	  grid-auto-columns: calc((100% / 2) - 9px);
	}
  }
  
  @media screen and (max-width: 600px) {
	.wrapper .carousel {
	  grid-auto-columns: 100%;
	}
    
	.wrapper h3{
		color: #2c2255;
		margin-top: 15px;
	  }
	  .team-box {
		display: flex;
		padding: 0 35px;
		align-items: center;
		justify-content: center;
		height: 35vh;
		/* background-color: white; */
	  }
  }


/* gallary section starts */


div.scroll-container {
	background-color: #fff;
	overflow: auto;
	white-space: nowrap;
	padding: 10px;
  }
  
  div.scroll-container img {
	padding: 5px;
  }

  @media screen and (max-width:600px){
    div.scroll-container img {
		width: 550px;
		height: 250px;
	  }
  }

  /* gallary section ends */

/*   === Testimonials Section Styling Starts ===   */
section.testimonials {
	width: 100%;
	margin: 0;
	padding: 10px 8%;
}

.testimonials .section-header {
	width: 70%;
	max-width: 700px;
}
.testimonial-row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .testimonial-col{
    flex-basis: 28%;
    padding-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px #00968814;
    cursor: pointer;
    transition: transform .5s;
  }
  .testimonial-col p{
    font-size: 14px;
    padding: 0 10px 10px 10px;
  }
  .user{
    display: flex;
    align-items: center;
    margin: 20px 10px;
  }
  .user img{
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
  }
  .user-info .fa{
    margin-left: 10px;
    color: #27c0ff;
    font-size: 20px;
  }
  .user-info small{
    color: #27c0ff;
  }
  .testimonial-col:hover{
    transform: translateY(-7px);
  }
  @media screen and (max-width:770px){
    .testimonial-col{
      flex-basis: 100%;
    }
  }

/*   === Testimonials Section Styling Ends ===   */

/* location container style starts */

.loc-container {
	align-items: center;
	text-align: center;
    padding: 10px 20%; 
	margin-bottom: 10px;
}

.loc-container h1 {
	color: #273dff;
	margin-bottom: 20px;
	font-size: 32px;
}

.loc-img {
	align-items: center;
	margin-bottom: 20px;
	
}
.loc-img iframe{
	width: 100%;
}
@media (max-width:450px) {
	.loc-img{
		width: 100%;
	}
	
}

/* location container style ends */


.mobile-app-section{
    width: 100%;
    background-color: rgb(150, 200, 255);
	box-shadow: #2c2255;
	padding-top: 20px;
	padding-bottom: 20px;
    
	

}

.app-colms{
	margin-left: 6%;
	margin-right: 6%;
	display: flex;
	justify-content: center;
	align-items: center;
	

}

.app-colm-right{
	width: 39%;
	
	align-items: center;
	display: flex;
	justify-content: center;
	margin-left: 6%;
	
}
.app-colm-left{
	width: 55%;
	padding: 20px;
}


.app-cont{
	/* padding: 10px; */
    text-align: center;
}

.app-colm-left h2{
	font-size: 40px;
}


 span{
	color: #0000ff;
	font-weight: 900;
}

.app-colm-left p{
	font-size: 20px;
	color: rgb(92, 0, 0);
}


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

.app-slider {
	width: 80%;
	max-width: 100%;
	height: 50vh;
	min-height: 400px;
	margin: auto;
	position: relative;
	overflow: hidden;
}

.app-slider .last {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform .55s ease;
}

.app-slider .last img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 25px;
}

.app-slider .last .itam{
	flex: 0 0 100%;
	min-width: 100%;
	height: 100%;
}

.app-slider-buttons {
	position: absolute;
	inset: 50% 12px auto;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}

.app-slider-buttons button {
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: rgba(44, 34, 85, .88);
	color: #ffffff;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.app-slider-buttons button:hover,
.app-slider-buttons button:focus-visible {
	background: #0000ff;
	outline: 3px solid rgba(255, 255, 255, .8);
}



.app-slider .dots1 li.active1 {
	width: 30px;
}
@media(max-width: 1600px) {
	.app-colms{
		display: flex;
		
		justify-content: center;
		align-items: center;
		
	
	}
	.app-slider {
		width: 100%;
		max-width: 100%;
		height: 50vh;
		margin: auto;
		position: relative;
		overflow: hidden;
	}
}



@media(max-width: 1250px) {
	.app-colms{
		display: block;
		
		justify-content: center;
		align-items: center;
		
	
	}
	.app-colm-right{
		width: 60%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 20%;
		margin-right: 20%;
		
		
	}
	.app-slider {
		width: 100%;
		max-width: 100%;
		height: 40vh;
		min-height: 400px;
		margin: auto;
		position: relative;
		overflow: hidden;
		padding-left: 0;
	}
	.app-slider .last img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		object-fit: contain;
		border-radius: 25px;
		padding-left: 0;
		padding-right: 0;
		
	}
}
@media(max-width: 750px) {
	.app-colms{
		display: block;
		
		justify-content: center;
		align-items: center;
		
	
	}
	.app-colm-right{
		width: 80%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 10%;
		margin-right: 10%;
		
		


	}
	.app-slider .last img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		object-fit: contain;
		border-radius: 25px;
		padding-left: 0;
		padding-right: 0;
		
	}
	.app-slider {
		width: 100%;
		max-width: 100%;
		height: 40vh;
		min-height: 300px;
		margin: auto;
		position: relative;
		overflow: hidden;
	
	}
	.app-colm-left h2{
		font-size: 30px;
	}
	
	
	 span{
		color: #0000ff;
		font-weight: 800;
	}
	.app-colm-left p{
		font-size: 16px;
		color: rgb(92, 0, 0);
	}
	.loc-container h1 {
		color: #273dff;
		margin-bottom: 20px;
		font-size: 25px;
	}

}
@media(max-width: 500px) {
	.app-colms{
		display: block;
		
		justify-content: center;
		align-items: center;
		
	
	}
	.app-slider .last img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		object-fit: contain;
		border-radius: 25px;
		padding-left: 0;
		padding-right: 0;
		
	}
	.app-colm-right{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 0;
		margin-right: 0;
		
		
	}
	.app-slider {
		width: 100%;
		max-width: 100%;
		height: 40vh;
		min-height: 200px;
		margin: auto;
		position: relative;
		overflow: hidden;
		padding-left: 0;
	}
	.app-colm-left h2{
		font-size: 30px;
	}
	
	
	 span{
		color: #0000ff;
		font-weight: 800;
	}
	.app-colm-left p{
		font-size: 16px;
		color: rgb(92, 0, 0);
	}
	.loc-container h1 {
		color: #273dff;
		margin-bottom: 20px;
		font-size: 25px;
	}

}

/*   === Motto Section Styling Starts ===   */
.motto-section {
	background: linear-gradient(135deg, #2c2255 0%, #1a1f3a 100%);
	padding: 60px 8%;
	text-align: center;
	margin: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.motto-section:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.motto-container {
	max-width: 1000px;
	margin: 0 auto;
}

.motto-title {
	font-size: 32px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 30px;
	line-height: 1.4;
	animation: fadeInDown 0.8s ease-in-out;
}

.sanskrit-mottos {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.sanskrit-text {
	font-family: 'Devanagari Sans', 'Segoe UI', sans-serif;
	font-size: 20px;
	color: #FFD700;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	border-left: 3px solid #FFD700;
	transition: all 0.4s ease;
}

.sanskrit-text:hover {
	background: rgba(255, 215, 0, 0.15);
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 12px 25px rgba(255, 215, 0, 0.35);
	border-left: 3px solid #FFF;
}

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

/* Responsive Design for Motto Section */
@media (max-width: 768px) {
	.motto-section {
		padding: 40px 5%;
	}

	.motto-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.sanskrit-mottos {
		gap: 15px;
	}

	.sanskrit-text {
		font-size: 16px;
		padding: 12px 15px;
	}
}

@media (max-width: 480px) {
	.motto-section {
		padding: 30px 4%;
	}

	.motto-title {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.sanskrit-mottos {
		flex-direction: column;
		gap: 10px;
	}

	.sanskrit-text {
		font-size: 14px;
		padding: 10px 12px;
	}
}

/*   === Motto Section Styling Ends ===   */


/*   === Footer Section Styling Starts ===   */
.footer {
	background-image: url('../images/backgrounds/back4.jpg');
	width: 100%;
	margin: 0;
	padding: 70px 8% 30px;
	object-fit: cover;

	
	
}


.footer .footer-contents {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;
	
}

.footer-contents .footer-col {
	flex-basis: calc(calc(100% / 4) - 20px);
}

.footer-contents .footer-col .col-title {
	min-height: 60px;
	display: flex;
	align-items: flex-end;
	margin-bottom: 30px;
}

.footer-col .col-title h3 {
	font-size: 24px;
	color: var(--light-heading-clr);
}

.footer-col .col-contents {
	display: flex;
	flex-direction: column;
}

.footer-col-1 .col-title img {
	width: 120px;
	border-radius: 50%;
}

.footer-col-1 .col-contents span {
	color: #ffffff;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 15px;
}

.footer-col-2 .col-contents .contact-row {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.footer-col-2 .col-contents .contact-row span {
	color: #ffffff;
	font-size: 16px;
}

.footer-col-2 .col-contents .contact-row span:nth-child(1) {
	color: var(--light-heading-clr);
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 2px;
}

.footer-col-3 .col-contents a {
	text-decoration: none;
	color: #ffffff;
	margin-bottom: 20px;
	align-self: flex-start;
	transition: all 0.3s;
}

.footer-col-3 .col-contents a:hover {
	letter-spacing: 2px;
}

.footer-col-4 .col-contents input {
	width: 100%;
	padding: 15px;
	color: var(--dark-text-clr);
	border: none;
	border-radius: 5px;
	
}

.footer-col-4 .col-contents .newsletter-btn {
	background-color: rgb(92, 93, 94);
	color: rgb(255, 255, 255);
	margin-top: 20px;
	
}

.footer-col-4 .col-contents .newsletter-btn:hover {
	background-color: white;
	color: #0000ff;
	border: 1px solid var(--light-heading-clr);
	
}

.footer .copy-rights {
	padding: 30px 0px 0px;
	border-top: 1px solid var(--light-text-clr);
	text-align: center;
	background-color: #191b40;
	height: 10vh;
	width: 100%;
	justify-content: center;
}

.footer .copy-rights p {
	color: #ffffff;
	
	align-items: center;
}

.footer .copy-rights p b {
	color: #ff3131;
}

/*   === Footer Section Styling Ends ===   */





/*   === Media Query Starts ===   */
@media(max-width: 1024px) {

	/* Home Section */
	.main-navbar .menu-btn {
		display: flex;
		margin-left: 40px;
		z-index: 101;
	}

	.main-navbar .menu-btn.active span,
	.main-navbar .menu-btn.active span::before,
	.main-navbar .menu-btn.active span::after {
		width: 100%;
	}

	.main-navbar .menu-btn.active span::before {
		transform: rotate(45deg) translateY(0px);
	}

	.main-navbar .menu-btn.active span::after {
		transform: rotate(-45deg) translateY(0px);
	}

	.main-navbar .menu-btn.active span {
		background-color: transparent;
	}

	.main-navbar .nav-list {
		position: fixed;
		margin-top: 20vh;
		width: 70%;
		height: 60vh;
		top: 0;
		min-height: 400px;
		margin-right: 15%;
		/*right: 0;*/
		right: -100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color:rgb(188, 214, 234);
		transition: right 0.3s cubic-bezier(.15, .61, .94, .25);
		z-index: 100;
	}

	.main-navbar .nav-list.active {
		right: 0;
	}

	.main-navbar .nav-list li {
		margin: 25px 0px 0px;
	}

	.main-navbar .nav-list li:nth-child(1) {
		margin-top: 40px;
	}

	.main-navbar .nav-list li a {
		font-size: 16px;
		letter-spacing: 1px;
	}

	.main-navbar .get-started-btn-container {
		margin-left: auto;
	}

	.home .banner {
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.home .banner .banner-desc,
	.home .banner .banner-img {
		flex-basis: 100%;
	}

	.home .banner .banner-img {
		align-self: center;
		margin-bottom: 10px;
	}

	/* Services Section */
	.services-contents .service-box {
		flex-basis: calc(calc(100% / 2) - 2%);
	}

	.services-contents .service-box:not(:last-child) {
		margin-bottom: 20px;
	}

	/* Courses Section */
	.courses .course-contents .course-card {
		flex-basis: calc(calc(100% / 2) - 1.2%);
	}

	.courses .section-header {
		flex-direction: column;
	}

	.courses .section-header .courses-btn {
		position: relative;
		align-self: flex-start;
		margin-top: 20px;
	}

	/* Courses Categories Section */
	.categories-contents .category-item {
		flex-basis: calc(calc(100% / 2) - 1%);
		margin-bottom: 15px;
	}

	/* Footer Section */
	.footer-contents .footer-col {
		flex-basis: calc(calc(100% / 2) - 20px);
		
		
	}
}

@media(max-width: 768px) {

	/* Home Section */
	.banner-img-container .states .total-courses {
		left: 5px;
		bottom: 10%;
	}

	.banner .banner-desc h2 {
		font-size: 42px;
	}
	

	/* Testimonials Section */
	.testimonials .section-header {
		width: 100%;
		margin-bottom: 40px;
	}
}

@media(max-width: 668px) {

	/* Partners Section */
	.partners h3 {
		margin-right: 150px;
	}

	/* Services Section */
	.services-contents .service-box {
		flex-basis: 100%;
	}

	/* Courses Section */
	.courses .course-contents .course-card {
		flex-basis: 100%;
	}
}

@media(max-width: 568px) {

	/* Courses Categories Section */
	.categories-contents .category-item {
		flex-basis: 100%;
	}

	/* Footer Section */
	.footer-contents .footer-col {
		flex-basis: 100%;
	}
}

@media(max-width: 468px) {
	.banner-img .banner-img-container {
		width: 100%;
	}

	.banner .banner-desc .search-bar {
		width: 100%;
	}

	.banner-img-container .states .courses-ratings {
		top: 30px;
		right: -10px;
	}

	.banner .banner-desc h2 {
		font-size: 32px;
	}

	.main-navbar .get-started-btn-container {
		display: none;
	}

	/* Partners Section */
	.partners h3 {
		margin-right: 0px;
		margin-bottom: 80px;
	}

	.loc-container {
		padding: 10px 10px;
		
	}
}

/*   === Media Query Ends ===   */



   .social-ul{
	display: flex;
	margin-top: 10px;
  } 
  .social-ul li{
	position: relative;
	display: block;
	color: hsl(0, 54%, 95%);
	font-size: 25px;
  height: 35px;
  width: 35px;
	/* background: #4e4f4f; */
	line-height: 30px;
	border-radius: 50%;
	margin-right: 10px;
	cursor: pointer;
	transition: .5s;
  }

  .social-ul li i{
	margin-left: 5px;
	margin-top: 5px;
     

  }
  .social-ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
  }
  .social-ul li:nth-child(1){ color: #1877f2; }
  .social-ul li:nth-child(2){ color: #e1306c; }
  .social-ul li:nth-child(3){ color: #ff0000; }
  .social-ul li:before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: inherit;
	width: inherit;
	/* background: #d35400; */
	border-radius: 5px;
	transform: scale(.9);
	z-index: -1;
	transition: .5s;
  }
  
  .social-ul li:nth-child(1):before{
	background: #1DA1F2;
  }
  .social-ul li:nth-child(2):before{
	background: #E1306C;
  }
  .social-ul li:nth-child(3):before{
	background: #ff0000;
  }
  .social-ul li:nth-child(4):before{
	background: #2c2255;
  }
  .social-ul li:hover:before{
	filter: blur(3px);
	transform: scale(1.2);
	/* box-shadow: 0 0 15px #d35400; */
  }
 
  .social-ul li:nth-child(1):hover:before{
	box-shadow: 0 0 15px #1DA1F2;
  }
  .social-ul li:nth-child(2):hover:before{
	box-shadow: 0 0 15px #E1306C;
  }
  .social-ul li:nth-child(3):hover:before{
	box-shadow: 0 0 15px #2867B2;
  }
  .social-ul li:nth-child(4):hover:before{
	box-shadow: 0 0 15px #2c2255;
  }

  .social-ul li:nth-child(1):hover{
	color: #26a4f2;
	box-shadow: 0 0 15px #1DA1F2;
	text-shadow: 0 0 15px #1DA1F2;
  }
  .social-ul li:nth-child(2):hover{
	color: #e23670;
	box-shadow: 0 0 15px #E1306C;
	text-shadow: 0 0 15px #E1306C;
  }
  .social-ul li:nth-child(3):hover{
	color: #2a6cbb;
	box-shadow: 0 0 15px #2867B2;
	text-shadow: 0 0 15px #2867B2;
  }
  .social-ul li:nth-child(4):hover{
	color: #2c2255;
	box-shadow: 0 0 15px #2c2255;
	text-shadow: 0 0 15px #2c2255;
  } 

@media screen and (max-width: 1024px) {
	body .main-navbar .menu-btn {
		display: flex;
		margin-left: auto;
		z-index: 101;
	}

	body .main-navbar .nav-list {
		position: fixed;
		top: 0;
		right: -100%;
		width: min(70%, 360px);
		height: 60vh;
		min-height: 400px;
		margin-top: 20vh;
		margin-left: 0;
		padding: 30px 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 18px;
		background-color: rgb(188, 214, 234);
		transition: right 0.3s cubic-bezier(.15, .61, .94, .25);
		z-index: 100;
	}

	body .main-navbar .nav-list.active {
		right: 0;
	}

	body .main-navbar .nav-list li a {
		font-size: 16px;
	}
}

/* ========== ADMISSION PAGE STYLES START ========== */

/* Admission Header Section */
.admission-header {
	background: linear-gradient(135deg, #2c2255 0%, #1a1f3a 100%);
	color: white;
	padding: clamp(30px, 5vw, 42px) 8%;
	text-align: center;
	margin-bottom: clamp(20px, 4vw, 32px);
	border-bottom: none;
}

.admission-header h1 {
	font-size: clamp(24px, 3.2vw, 40px);
	margin-bottom: 8px;
	font-weight: 800;
	color: white;
	line-height: 1.2;
	letter-spacing: 0;
}

.admission-header .hindi-title {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	font-size: clamp(18px, 2.8vw, 30px);
	color: #FFD700;
	margin-bottom: 14px;
	font-weight: 600;
}

.admission-header p {
	font-size: clamp(12px, 1.4vw, 16px);
	line-height: 1.6;
	font-weight: 400;
	max-width: 920px;
	margin: 15px auto 0;
}

.admission-header .admission-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	padding: 12px 24px;
	background: #FFD700;
	color: #2c2255;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
	transition: background 0.2s ease, box-shadow 0.2s ease;
	border: none;
	cursor: pointer;
}

.admission-header .admission-hero-btn:hover {
	background: #ffc700;
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
}

/* Admission Content Section */
.admission-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(15px, 4vw, 8%);
}

/* Section Box Styling */
.section-box {
	background: #ffffff;
	padding: clamp(20px, 3vw, 34px);
	margin-bottom: clamp(20px, 3vw, 30px);
	border-radius: 6px;
	border: 1px solid #e1e5ee;
	border-left: 4px solid #2c2255;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-box h2 {
	color: #2c2255;
	font-size: clamp(18px, 2.5vw, 25px);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.section-box h2 i {
	margin-right: 12px;
	color: #2c2255;
	font-size: clamp(18px, 2vw, 24px);
}

.section-box .hindi-heading {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	font-size: clamp(14px, 2vw, 18px);
	color: #2c2255;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Classes Grid */
.classes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(15px, 2vw, 25px);
	margin-top: clamp(15px, 2vw, 30px);
}

.class-card {
	background: white;
	padding: clamp(16px, 2vw, 24px);
	border-radius: 6px;
	border: 1px solid #e1e5ee;
	border-top: 3px solid #2c2255;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.class-card:hover {
	border-color: #c7ccda;
	box-shadow: 0 4px 12px rgba(44, 34, 85, 0.08);
}

.class-card h3 {
	color: #2c2255;
	font-size: clamp(16px, 2.2vw, 22px);
	margin-bottom: 10px;
	font-weight: 700;
}

.class-card .medium {
	color: #0000ff;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 10px;
}

.class-card .hindi-medium {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	color: #2c2255;
	font-size: 13px;
}

/* Standard List */
.standard-list {
	margin-top: 15px;
	list-style: none;
	padding: 0;
}

.standard-list li {
	color: #333;
	font-size: clamp(12px, 1.5vw, 14px);
	line-height: 1.7;
	display: flex;
	align-items: center;
	gap: 8px;
}

.standard-list li i {
	color: #2c2255;
	font-size: 12px;
	flex-shrink: 0;
}

/* Age Criteria Table */
.age-criteria-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 25px;
	background: white;
	font-size: clamp(12px, 1.5vw, 14px);
}

.age-criteria-table th {
	background: #2c2255;
	color: white;
	padding: clamp(10px, 1.5vw, 15px);
	text-align: left;
	font-weight: 600;
}

.age-criteria-table td {
	padding: clamp(10px, 1.5vw, 12px) clamp(8px, 1.2vw, 15px);
	border-bottom: 1px solid #ddd;
}

.age-criteria-table tr:hover {
	background: #f0f0f0;
}

.age-criteria-table .class-name {
	font-weight: 600;
	color: #2c2255;
}

.age-criteria-table .hindi {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	color: #2c2255;
	font-size: clamp(11px, 1.4vw, 14px);
}

/* Documents List */
.documents-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(15px, 2vw, 20px);
	margin-top: 25px;
}

.document-item {
	background: white;
	padding: clamp(16px, 2vw, 20px);
	border-radius: 6px;
	border: 1px solid #e1e5ee;
	border-left: 3px solid #2c2255;
	box-shadow: none;
}

.document-item h4 {
	color: #2c2255;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: clamp(14px, 1.8vw, 16px);
}

.document-item .hindi {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	color: #2c2255;
	font-size: clamp(11px, 1.3vw, 13px);
	margin-top: 5px;
}

/* Contact Section */
.contact-section {
	background: #2c2255;
	color: white;
	padding: clamp(30px, 5vw, 42px) 8%;
	border-radius: 6px;
	margin: clamp(25px, 4vw, 40px) 0;
}

.contact-section h2 {
	color: #FFD700;
	font-size: clamp(24px, 3.5vw, 32px);
	margin-bottom: clamp(20px, 3vw, 30px);
	text-align: center;
}

.contact-boxes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(20px, 2vw, 30px);
}

.contact-box {
	text-align: center;
	padding: clamp(18px, 2.5vw, 25px);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	border: 1px solid rgba(255, 215, 0, 0.55);
}

.contact-box i {
	font-size: clamp(28px, 4vw, 40px);
	color: #FFD700;
	margin-bottom: 15px;
}

.contact-box h3 {
	color: white;
	font-size: clamp(14px, 1.8vw, 18px);
	margin-bottom: 10px;
}

.contact-box p {
	font-size: clamp(14px, 2vw, 20px);
	color: #FFD700;
	font-weight: 700;
}

/* ========== SERVICES/PILLARS HORIZONTAL SLIDER ========== */

.services {
	padding: 40px 0;
	background: #f9fafb;
}

.pillar-intro {
	animation: fadeInDown 0.8s ease-in-out;
}

.pillar-main-title {
	font-size: clamp(22px, 3vw, 32px);
	color: #2c2255;
	font-weight: 700;
	margin-bottom: 10px;
}

.services-slider-wrapper {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(15px, 4vw, 40px);
}

.services-slider {
	position: relative;
	overflow: hidden;
	background: white;
	border-radius: 12px;
	padding: 20px 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-slider-list {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 10px 0;
	
	/* Hide scrollbar */
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.services-slider-list::-webkit-scrollbar {
	display: none;
}

.service-slide {
	flex: 0 0 calc(33.333% - 14px);
	scroll-snap-align: start;
	scroll-snap-stop: always;
	transition: all 0.3s ease;
}

.slider-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: clamp(20px, 2vw, 28px);
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

.slider-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(44, 34, 85, 0.12);
	border-color: #FFD700;
}

.service-box .service-icon {
	width: clamp(56px, 8vw, 70px);
	height: clamp(56px, 8vw, 70px);
	border-radius: 50%;
	background: #eef1ff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.slider-card:hover .service-icon {
	background: #FFD700;
	transform: scale(1.1);
}

.service-box .service-icon i {
	font-size: clamp(24px, 3vw, 32px);
	color: #2c2255;
}

.slider-card:hover .service-icon i {
	color: white;
}

.service-desc h2 {
	font-size: clamp(16px, 2vw, 22px);
	color: #2c2255;
	margin-bottom: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.service-desc p {
	font-size: clamp(13px, 1.5vw, 15px);
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Slider Navigation Buttons */
.slider-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #2c2255;
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn:hover {
	background: #FFD700;
	color: #2c2255;
	transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
	left: 10px;
}

.slider-nav-next {
	right: 10px;
}

/* Slider Dots/Indicators */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.slider-dot.active {
	background: #FFD700;
	width: 24px;
	border-radius: 4px;
	border-color: #2c2255;
}

.slider-dot:hover {
	background: #FFD700;
}

/* Responsive Design for Slider */

/* Tablets - 1024px and below */
@media (max-width: 1024px) {
	.service-slide {
		flex: 0 0 calc(50% - 10px);
	}

	.services-slider {
		padding: 20px 40px;
	}

	.slider-nav-btn {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.slider-nav-prev {
		left: 8px;
	}

	.slider-nav-next {
		right: 8px;
	}
}

/* Tablets - 768px and below */
@media (max-width: 768px) {
	.service-slide {
		flex: 0 0 calc(100% - 0px);
	}

	.services-slider {
		padding: 15px 45px;
	}

	.slider-nav-btn {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.slider-nav-prev {
		left: 5px;
	}

	.slider-nav-next {
		right: 5px;
	}

	.pillar-main-title {
		font-size: 24px;
	}

	.slider-card {
		padding: 20px;
	}

	.service-desc p {
		font-size: 13px;
	}
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
	.services {
		padding: 25px 0;
	}

	.services-slider-wrapper {
		padding: 0 10px;
	}

	.services-slider {
		padding: 12px 38px;
		border-radius: 8px;
	}

	.service-slide {
		flex: 0 0 calc(100% - 0px);
	}

	.slider-card {
		padding: 16px;
	}

	.service-box .service-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 12px;
	}

	.service-box .service-icon i {
		font-size: 24px;
	}

	.service-desc h2 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.service-desc p {
		font-size: 12px;
	}

	.slider-nav-btn {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.slider-nav-prev {
		left: 2px;
	}

	.slider-nav-next {
		right: 2px;
	}

	.slider-dots {
		margin-top: 15px;
		gap: 6px;
	}

	.slider-dot {
		width: 6px;
		height: 6px;
	}

	.slider-dot.active {
		width: 20px;
	}

	.pillar-intro {
		padding: 10px;
		margin: 20px 0;
	}

	.pillar-main-title {
		font-size: 18px;
		margin-bottom: 8px;
	}
}

/* Large Screens - 1400px and above */
@media (min-width: 1400px) {
	.services-slider-wrapper {
		padding: 0 60px;
	}

	.services-slider {
		padding: 25px 60px;
	}

	.service-slide {
		flex: 0 0 calc(33.333% - 14px);
	}
}

/* Animation for fade-in effect */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========== END SERVICES/PILLARS HORIZONTAL SLIDER ========== 

/* Vehicle Facilities Section */
.vehicle-facilities {
	background: #e8f4f8;
	padding: clamp(20px, 3vw, 30px);
	border-radius: 8px;
	margin-top: 25px;
}

.vehicle-facilities h4 {
	color: #2c2255;
	font-size: clamp(16px, 2.2vw, 20px);
	margin-bottom: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.vehicle-facilities h4 i {
	margin-right: 10px;
	color: #0000ff;
}

.vehicle-facilities .hindi {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	color: #2c2255;
	font-weight: 600;
	font-size: clamp(14px, 1.8vw, 16px);
	margin-bottom: 15px;
}

.vehicle-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 15px;
}

.vehicle-feature {
	background: white;
	padding: clamp(12px, 1.5vw, 15px);
	border-radius: 6px;
	border-left: 3px solid #0000ff;
	font-size: clamp(12px, 1.5vw, 14px);
}

.vehicle-feature i {
	color: #0000ff;
	margin-right: 8px;
	font-weight: 700;
}

.vehicle-feature span {
	color: #2c2255;
	font-weight: 600;
}

/* Admission Form Section */
.admission-form-section {
	background: #f7f8fb;
	padding: clamp(30px, 5vw, 42px) 8%;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #e1e5ee;
	margin: clamp(25px, 4vw, 40px) 0;
}

.admission-form-section h2 {
	color: #2c2255;
	font-size: clamp(24px, 3.5vw, 36px);
	margin-bottom: 20px;
}

.admission-form-section .hindi {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	color: #2c2255;
	font-size: clamp(18px, 2.8vw, 24px);
	margin-bottom: 30px;
}

/* Form Buttons */
.form-buttons {
	display: flex;
	gap: clamp(12px, 2vw, 20px);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.form-btn {
	padding: clamp(12px, 1.5vw, 15px) clamp(24px, 4vw, 40px);
	font-size: clamp(13px, 1.5vw, 16px);
	font-weight: 700;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
}

.form-btn-primary {
	background: #2c2255;
	color: white;
}

.form-btn-primary:hover {
	background: #1a1a3a;
	box-shadow: 0 5px 14px rgba(44, 34, 85, 0.18);
}

.form-btn-secondary {
	background: #FFD700;
	color: #2c2255;
}

.form-btn-secondary:hover {
	background: #ffc700;
	box-shadow: 0 5px 14px rgba(255, 215, 0, 0.22);
}

/* Motto Highlight */
.motto-highlight {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	padding: clamp(18px, 3vw, 25px);
	border-radius: 8px;
	text-align: center;
	margin: 30px 0;
	color: #2c2255;
}

.motto-highlight h3 {
	font-family: 'Mukta', 'Devanagari Sans', 'Segoe UI', sans-serif;
	font-size: clamp(16px, 2.5vw, 22px);
	font-weight: 700;
	margin-bottom: 10px;
}

.motto-highlight p {
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 600;
}

/* Support Card */
.support-card {
	border: 1px solid #e1e5ee !important;
	border-top: 3px solid #2c2255 !important;
	box-shadow: none !important;
}

.support-card:hover {
	transform: none !important;
	box-shadow: 0 4px 12px rgba(44, 34, 85, 0.08) !important;
}

/* ========== RESPONSIVE DESIGN FOR ADMISSION PAGE ========== */

/* Tablets - 768px and below */
@media (max-width: 768px) {
	.admission-header h1 {
		font-size: 28px;
	}

	.admission-header .hindi-title {
		font-size: 20px;
	}

	.admission-header p {
		font-size: 14px;
	}

	.section-box {
		padding: 20px;
	}

	.section-box h2 {
		font-size: 18px;
	}

	.classes-grid {
		grid-template-columns: 1fr;
	}

	.documents-list {
		grid-template-columns: 1fr;
	}

	.contact-boxes {
		grid-template-columns: 1fr;
	}

	.vehicle-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.form-buttons {
		flex-direction: column;
	}

	.form-btn {
		width: 100%;
	}

	.age-criteria-table {
		font-size: 12px;
	}

	.age-criteria-table th,
	.age-criteria-table td {
		padding: 10px 8px;
	}
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
	.admission-header {
		padding: 20px 5%;
		margin-bottom: 20px;
	}

	.admission-header h1 {
		font-size: 22px;
		margin-bottom: 6px;
	}

	.admission-header .hindi-title {
		font-size: 16px;
	}

	.admission-header p {
		font-size: 12px;
		margin-top: 10px;
	}

	.admission-header .admission-hero-btn {
		font-size: 13px;
		padding: 10px 20px;
		margin-top: 15px;
	}

	.admission-content {
		padding: 0 5%;
	}

	.section-box {
		padding: 15px;
		border-radius: 4px;
		margin-bottom: 15px;
	}

	.section-box h2 {
		font-size: 16px;
	}

	.section-box h2 i {
		font-size: 18px;
	}

	.section-box .hindi-heading {
		font-size: 14px;
	}

	.classes-grid {
		gap: 12px;
	}

	.class-card {
		padding: 14px;
	}

	.class-card h3 {
		font-size: 16px;
	}

	.contact-section {
		padding: 20px 5%;
	}

	.contact-section h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.contact-boxes {
		gap: 12px;
	}

	.contact-box {
		padding: 15px;
	}

	.vehicle-features {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.vehicle-feature {
		padding: 10px;
		font-size: 12px;
	}

	.admission-form-section {
		padding: 20px 5%;
		margin: 20px 0;
	}

	.admission-form-section h2 {
		font-size: 20px;
	}

	.admission-form-section .hindi {
		font-size: 16px;
	}

	.form-buttons {
		gap: 10px;
	}

	.form-btn {
		padding: 10px 18px;
		font-size: 12px;
	}

	.motto-highlight {
		padding: 15px;
		margin: 20px 0;
	}

	.motto-highlight h3 {
		font-size: 14px;
	}

	.motto-highlight p {
		font-size: 12px;
	}

	.age-criteria-table {
		font-size: 11px;
	}

	.age-criteria-table th,
	.age-criteria-table td {
		padding: 8px 6px;
	}
}

/* Large Screens - 1024px and above */
@media (min-width: 1024px) {
	.admission-content {
		padding: 0 8%;
	}

	.classes-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.documents-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-boxes {
		grid-template-columns: repeat(3, 1fr);
	}

	.vehicle-features {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ========== ADMISSION PAGE STYLES END ========== */

/* Featured homepage video */
.featured-video-section {
	padding: 72px 7%;
	background: linear-gradient(145deg, #f5f7ff 0%, #ffffff 55%, #fff9df 100%);
	text-align: center;
}

.featured-video-heading {
	max-width: 820px;
	margin: 0 auto 32px;
}

.featured-video-heading span {
	display: inline-block;
	margin-bottom: 10px;
	color: #b07d00;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.featured-video-heading h2 {
	margin: 0 0 12px;
	color: #20194a;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.2;
}

.featured-video-heading p {
	margin: 0;
	color: #555b70;
	font-size: 1.05rem;
	line-height: 1.65;
}

.featured-video-frame {
	width: min(1120px, 100%);
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #080d24;
	border: 6px solid #ffffff;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(20, 27, 68, 0.22);
}

.featured-video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 600px) {
	.featured-video-section {
		padding: 48px 5%;
	}

	.featured-video-heading {
		margin-bottom: 22px;
	}

	.featured-video-frame {
		border-width: 3px;
		border-radius: 12px;
	}
}
