.header-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}

/* Brand Colors */
.facebook { background: #3b5998; }
.instagram { 
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.youtube { background: #ff0000; }

/* Hover Effect */
.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #75adff;
}

.cbse-section {
  display: flex;
  justify-content: center;
  box-shadow: 1px 1px 10px #c8c8c8;
  border-radius: 15px;
  height: 100%;
}

.cbse-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 310px;
}

.cbse-logo img {
  width: 120px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cbse-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.cbse-affiliation {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.cbse-affiliation span {
  font-weight: 600;
  color: #000;
}

.cbse-grades {
  font-size: 16px;
  color: #666;
}

/* Hover effect */
.cbse-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.news-section {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 20px 20px;
    width: 100%;
    box-shadow: 1px 1px 10px #c8c8c8;
    height: 310px;
}

.news-container {
	overflow: hidden;
	border-radius: 8px;
	margin-top: 0;
}

.news-container h4 {
	font-size: 18px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eee;
	background: rgb(176 26 21);
	color: var(--white-color);
	padding: 5px;
	z-index: 2;
	text-align: center;
}

.news-list {
	display: flex;
	flex-direction: column;
	animation: scroll-up 12s linear infinite;
}

.news-wrapper {
	padding: 0 10px;
}

.news-wrapper:hover .news-list {
	animation-play-state: paused;
}

@keyframes scroll-up {
	0% {
		transform: translateY(0%);
	}

	100% {
		transform: translateY(-50%);
	}
}

.news-item {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cccccc;
}

.news-title {
	font-size: 15px;
	color: var(--color-heading-1);
}

.news-date {
	font-size: 13px;
	color: var(--color-primary);
}

.about-section {
  background: #f8f9fa;
}

/* EXPERIENCE BOX */
.experience-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
}

.experience-box h2 {
  font-size: 40px;
  font-weight: 700;
}

.experience-box p {
  font-size: 14px;
  color: #666;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}

/* Button Hover */
.btn-warning {
  transition: 0.3s;
}

.btn-warning:hover {
  background: #e0a800;
}

.bg-badge {
  background: var(--color-primary);
  color: #ffffff !important;
  border-radius: 5px;
  font-size: 15px;
}

.text-justify {
  text-align: justify;
}

.about-section p,.mission p {
  font-size: 18px;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: var(--color-primary);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.btn:hover {
  background: #ffffff;
  border: 1px solid var(--color-primary);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 12px;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

/* Stagger Animation */
.feature-list li:nth-child(1){ animation-delay:0.1s;}
.feature-list li:nth-child(2){ animation-delay:0.2s;}
.feature-list li:nth-child(3){ animation-delay:0.3s;}
.feature-list li:nth-child(4){ animation-delay:0.4s;}
.feature-list li:nth-child(5){ animation-delay:0.5s;}
.feature-list li:nth-child(6){ animation-delay:0.6s;}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ICON CIRCLE */
.icon-box {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #085093, #0084ff);
  color: #ffffff;
  box-shadow: 0 5px 15px rgb(8 82 149 / 40%);
  transition: all 0.3s ease;
}

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

/* Hover Effects */
.feature-list li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-list li:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
}

.icon-area i {
  padding: 2px 0;
  font-size: 50px;
  color: var(--color-primary);
  background: linear-gradient(135deg, #ffffff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-three{
	position: relative;
	overflow:hidden;
	padding: 0px 0px 0px;
}

.service-three.style-two{
	padding-top:0px;
}

.service-three .outer-container{
	position: relative;
	max-width:100%;
	padding: 50px 0px 50px;
	background-color:#F5F5F5;
	background-position:left top;
	background-repeat:no-repeat;
}

.service-block_three{
	position:relative;
	margin-bottom:30px;
}

.service-block_three-inner{
	position:relative;
	padding:40px 35px;
	border-radius:15px;
	background-color:var(--white-color);
	border:1px solid rgba(0,0,0,0.10)
}

.service-block_three-icon{
	position:absolute;
	left:0px;
	top:0px;
	width:80px;
	height:80px;
	line-height:80px;
	border-radius:50px;
	text-align:center;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color:var(--color-primary);
}

.service-block_three-icon i {
  font-size: 35px;
  top: 8px;
  display: inline;
  position: relative;
  color: var(--color-white);
}

.service-block_three-inner:hover .service-block_three-icon{
	transform:rotateY(180deg);
}

.service-block_three-heading{
	position:relative;
}

.service-block_three-heading a{
	position:relative;
	color:var(--black-color);
}

.service-block_three-text{
	position:relative;
	font-size:15px;
	color:#666666;
	line-height:27px;
	margin-top:20px;
	margin-bottom:28px;
}

.service-block_three-more{
	position:relative;
	font-size:15px;
	margin-top:20px;
	font-weight:700;
	color:var(--color-primary);
}

.service-block_three-pattern{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	overflow:hidden;
	border-radius:15px;
	background-size:cover;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transform:scale(0.2,1);
}

.service-block_three-inner:hover .service-block_three-pattern{
	opacity:1;
	transform:scale(1,1);
}

.service-block_three-inner:hover .service-block_three-text,
.service-block_three-inner:hover .service-block_three-heading a{
	color: var(--color-secondary);
}

.service-block_three-upper{
	position:relative;
	padding-left:105px;
	min-height:80px;
}

.service-block_three_hover-image{
	position:absolute;
	right:-30px;
	bottom:-10px;
	z-index:1;
	opacity:0;
	width:288px;
	height:184px;
	border-radius:15px;
	transform:scale(1,0.2);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block_three-inner:hover .service-block_three_hover-image{
	opacity:1;
	transform:scale(1,1) rotate(-20deg);
}

.service-three_btn{
	position:relative;
	margin-top:30px;
}

.team-two{
	position: relative;
	overflow:hidden;
	padding: 30px 0px 50px;
}

.team-two .auto-container{
	position: relative;
}

.team-two_pattern{
	position:absolute;
	left:0px;
	bottom:0px;
	right:0px;
	height:266px;
	background-position: center bottom;
    background-repeat: repeat-x;
    animation: slideBackground 10s linear infinite;
}


.team-block_two{
	position:relative;
	margin-bottom:30px;
}

.team-block_two-inner{
	position:relative;
	padding: 15px 15px 5px;
	border-radius:30px;
	overflow:hidden;
	border:1px solid rgba(0,0,0,0.10);
}

.team-block_two-inner:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	right:0px;
	height:50px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	border-radius:0px 0px 25px 25px;
	border-bottom:10px solid transparent;
}

.team-block_two-inner:after{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	height:0px;
	z-index:-1;
	opacity:0;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-image: linear-gradient(to bottom, var(--color-primary), var(--color-white));
}

.team-block_two-inner:hover::after{
	height:250px;
	opacity:1;
}

.team-block_two-inner:hover::before{
	border-bottom-color: var(--color-primary);
}

.team-block_two-image{
	position:relative;
}

.team-block_two-image img{
	position:relative;
	width:100%;
	display:block;
	overflow:hidden;
	border-radius:25px 0px 25px 25px;
}

.team-block_two-content{
	position:relative;
	padding: 20px 10px 10px;
	text-align: center;
}

.team-block_two-title{
	position:relative;
	font-size: 20px;
	margin-bottom: 10px;
}

.team-block_two-title a{
	position:relative;
	color:var(--black-color);
}

.team-block_two-title a:hover{
	color:var(--main-color);
}

.team-block_two-designation{
	position:relative;
	font-size: 18px;
	margin-top:8px;
	color:#666666;
}

.team-block_two-shares{
	position:absolute;
	right:40px;
	bottom:-30px;
}

.team-block_two-inner:hover .team-block_two-share_icon{
	color:var(--white-color);
	background-color:var(--black-color);
}

.team-block_two-share_icon{
	position:relative;
	width:54px;
	height:54px;
	z-index:10;
	font-size:24px;
	line-height:54px;
	border-radius:50px;
	border-radius:50px;
	display:inline-block;
	color:var(--white-color);
	background-color:var(--main-color);
}

.team-block_two-inner:hover .team-block_two-socials{
	bottom:140%;
	opacity:1;
}

.team-block_two-socials{
	position:absolute;
	right:2px;
	bottom:-150%;
	width:50px;
	z-index:1;
	opacity:0;
	padding:10px 0px;
	text-align:center;
	border-radius:50px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color:var(--white-color);
}

.team-block_two-socials a{
	position:relative;
	font-size:16px;
	display:block;
	width:40px;
	height:40px;
	margin:1px 0px;
	margin:0 auto;
	line-height:40px;
	border-radius:50px;
	color:var(--black-color);
}

.team-block_two-socials a:hover{
	color:var(--white-color);
	background-color:var(--main-color);
}

.team-two .three-item_carousel-prev{
	position: absolute;
	top: 55%;
	z-index: 1;
	left: -80px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	font-size: 18px;
	line-height: 58px;
	text-align: center;
	display: inline-block;
	border-radius: 50px 50px;
	color: var(--main-color);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	border:1px solid var(--main-color);
}

.team-two .three-item_carousel-prev:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.team-two .three-item_carousel-prev.swiper-button-disabled{
	opacity: 0;
	visibility: hidden;
}

.team-two .three-item_carousel-next.swiper-button-disabled{
	opacity: 0;
	visibility: hidden;
}

.team-two .three-item_carousel-next:hover{
	color: var(--white-color);
	background-color: var(--main-color);
}

.team-two .three-item_carousel-next::after,
.team-two .three-item_carousel-next::after{
	display: none;
}

.team-two .three-item_carousel-next{
	position: absolute;
	right: -80px;
	top: 55%;
	z-index: 1;
	width: 60px;
	height: 60px;
	cursor: pointer;
	font-size: 18px;
	line-height: 58px;
	text-align: center;
	display: inline-block;
	border-radius: 50px 50px;
	color: var(--main-color);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	border:1px solid var(--main-color);
}

.team-two .lower-box{
	position:relative;
	margin-top:20px;
}

.team-two_text{
	position:relative;
	font-size:16px;
	color:#666666;
	line-height:28px;
}

.service-one{
	position: relative;
	overflow:hidden;
	z-index:1;
	padding: 20px 0px 40px;
}

.service-one_pattern-layer{
	position:absolute;
	left:0px;
	top:0px;
	bottom:0px;
	width:150%;
	overflow:hidden;
	border-radius:40px 40px;
	background-repeat:repeat;
}

.service-one_shadow{
	position:absolute;
	left:0px;
	top:0px;
	bottom:0px;
	width:100%;
	z-index:1;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.service-one .auto-container{
	max-width:1450px;
}

.service-one .inner-container{
	padding-top: 30px;
	padding-bottom: 30px;
}

.service-one .inner-container:before{
	position: absolute;
	content:'';
	left:0px;
	top:0px;
	bottom:0px;
	width:150%;
	border-radius:0px 0px 0px 0px;
	background-color: #062a4b;
}

.service-one_title{
	position: relative;
	margin-bottom: 10px;
}

.service-one_title .service-one_arrow{
	position: absolute;
	right:8px;
	top:9px;
	width: 50px;
	height: 50px;
	font-size: 20px;
	text-align:center;
	line-height: 50px;
	border-radius:50px;
	display:inline-block;
	color: var(--color-white);
	transform:rotate(-45deg);
	background-color: var(--color-primary);
}

.service-one_title:last-child{
	margin-bottom: 0px;
}

.service-one_heading{
	font-weight:600;
	color: var(--color-white);
	text-transform: capitalize;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	margin-bottom: 0;
}

.service-one_heading a{
	position:relative;
	display:block;
	border-radius:50px;
	color: var(--color-white);
	text-transform:capitalize;
	background-color: rgb(255 255 255 / 20%);
	padding: 15px 25px 15px 50px;
}

.service-one_title.active .service-one_arrow,
.service-one_title:hover .service-one_arrow{
	color: var(--color-heading-1);
	background-color: var(--color-white);
}

.service-one_title.active .service-one_heading a,
.service-one_title:hover .service-one_heading a{
	color: var(--color-white);
	background-color: var(--color-primary);
}

.service-one_image-column{
	position: relative;
	z-index:10;
}

.service-one_image-outer{
	position: relative;
	height: 100%;
}

.service-one_images_outer{
	position: relative;
	height: 100%;
}

.service-one_title.active .service-one_subtitle,
.service-one_title:hover .service-one_subtitle{
	background-color: var(--color-two);
}

.service-one_image{
	position: absolute;
	right: 15px;
	top: 0px;
	opacity: 0;
	display: block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-webkit-transform: rotate(-5deg) translateX(0px);
    transform: rotate(-5deg) translateX(0px);
}

.service-one_image > img{
	position: relative;
	width:100%;
	display:block;
	overflow:hidden;
	border-radius:30px;
}

.service-one_image.active{
	opacity: 1;
	-webkit-transform: rotate(0deg) translateX(0px);
    transform: rotate(0deg) translateX(0px);
}

.service-one_content-column{
	position:relative;
	z-index:10;
}

.service-one_content-outer{
	position:relative;
	padding-left:70px;
	padding-right:60px;
}

.service-one_content{
	position:relative;
	padding-top:35px;
}

.service-one_sub-title{
	position:relative;
	font-weight:600;
	color: var(--color-white);
	text-transform:capitalize;
}

.service-one_text{
	position:relative;
	font-weight:400;
	font-size:16px;
	line-height:28px;
	margin-top:12px;
	color: var(--color-white);
}

.service-one_button{
	position:absolute;
	right:5px;
	top:-90px;
	padding:10px 10px 0px;
	border-radius:50px 0px 50px 50px;
}

.btn-style-three{
	position: relative;
	font-weight:700;
	font-size: 14px;
	overflow: hidden;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	padding:8px 8px 8px 28px;
	color: var(--color-white);
	text-transform: uppercase;
	background-color: var(--color-primary);
}

.btn-style-three:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color:var(--black-color);
}

.btn-style-three:hover:before{
	top: 0%;
}

.btn-style-three:hover i{
	background-color:var(--main-color);
}

.btn-style-three i{
	position: relative;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	margin-left:15px;
	border-radius:50px;
	display:inline-block;
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	background-color: var(--color-heading-1);
}

.btn-style-three .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two{
	color:var(--white-color);
}

.btn-style-three:hover{
	
}

.btn-style-three:hover:before{
	top: -40%;
}

img.footer {
    width: 100px;
    margin-left: 5px;
    border-radius: 5px;
}

@media only screen and (max-width: 1240px){
  .service-one_content-outer{
		padding-left: 20px;
		padding-right: 0px;
	}
}
@media only screen and (max-width: 1140px){
  .service-one_heading{
		font-size:18px;
	}
	
	.service-one_heading a{
		padding:18px 25px 18px 30px;
	}
	
	.service-one_title .service-one_arrow{
		top: 10px;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
}
@media only screen and (max-width: 990px){
  .service-one .inner-container::before{
		left:-15px;
		border-radius:0px 0px;
	}
	
	.service-one_content-outer{
		padding-left:0px;
	}
	
	.service-one_image.active{
		position:relative;
	}
	
	.service-one_image{
		right:0px;
	}
	
	.service-one_image-outer{
		margin-top:30px;
	}
}
@media only screen and (max-width: 479px) {
  .project-block_one-text,
	.service-one_text{
		font-size:14px;
		line-height:26px;
	}
	
	.service-one_heading {
		font-size: 15px;
	}
}