
/* text */

.text-1 { color:#1e3a8a ; }
.text-2 { color:#7d287d ; }
.text-3 { color: #dc2626; }
.text-4 { color:#f4b400 ; }
.text-5 { color: ; }
.text-6 { color: ; }
.text-7 { color: ; }
.text-8 { color: ; }
.text-9 { color: ; }
.text-10 { color: ; }
.text-11 { color: ; }
.text-12 { color: ; }
.text-13 { color: ; }
.text-14 { color: ; }
.text-15 { color: ; }

/* bg */

.bg-1 { background:#111111 ; }
.bg-2 { background:#f8f8f8 ; }
.bg-3 { background:#7d287d ; }
.bg-4 { background:#f4b400 ; }
.bg-5 { background:#1e3a8a ; }
.bg-6 { background: #7d287d; }
.bg-7 { background: #dc2626; }
.bg-8 { background: ; }
.bg-9 { background: ; }
.bg-10 { background: ; }
.bg-11 { background: ; }
.bg-12 { background: ; }
.bg-13 { background: ; }
.bg-14 { background: ; }
.bg-15 { background: ; }



.gr-1{
 background: linear-gradient(  90deg,
        rgba(17, 40, 110, 0.92) 0%,
        rgba(45, 38, 120, 0.85) 50%,
        rgba(120, 30, 90, 0.82) 75%,
        rgba(200, 30, 30, 0.90) 100%);   
}





/* btn */
.btn-default{
	position: relative;
    display: inline-block;
    background: #7d287d;
    color: #fff;
	
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 20px 54px 20px 24px;
	border-radius: 100px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
    color: #fff;
}

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

.btn-default:hover::before{
	transform: translate(-21px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
	right: 0;
    width: 0;
    height: 100%;
    background: #020D19;
	border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    left: 0;
	right: auto;
}

.btn.btn-1 {
	background: #dc2626;
	border-color: #dc2626;
	color: #fff
}
.btn.btn-1:focus, .btn.btn-1:hover {
	background: #020D19;
	color: #fff;
		border-color: #020D19;
}
.btn-red {
    color: #fff;
    background-color: #dc2626;
    border-color: #dc2626;
    transition: all 0.3s ease;
}

.btn-red:hover {
    color: #fff;
    background-color: #020D19;
    border-color: #020D19;
}






.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-sub-heading.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    /*letter-spacing: 0.2em;*/
    text-transform: uppercase;
    color: #1e3a8a;
    padding-left: 34px;
    margin-bottom: 15px;
}




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

.main-footer{
    background: url(../images/footer-bg.png), #041254;
	background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 100px 0 0;
}

.main-footer-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 100px;
}

.footer-about{
	position: relative;
	width: calc(45% - 50px);
}

.footer-about::before{
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	background-color: #FFFFFF1A;
	height: 100%;
	width: 1px;
}

.footer-logo{
	margin-bottom: 50px;
}

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

.footer-contact-detail{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.footer-contact-item{
	width: calc(50% - 15px);
}

.footer-contact-item p{
	color: #fff;
	opacity: 80%;
	margin-bottom: 15px;
}

.footer-contact-item h3{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.footer-contact-item h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item h3 a:hover{
	color: #f4b400;
}



.footer-social-links h3{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 15px;
}

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

.footer-social-links ul li{
	display: inline-block;
	margin-right: 10px;
}

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

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

.footer-social-links ul li a:hover{
	color: #fff;
	background: #020D19;
}

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

.footer-links-box{
	width: calc(55% - 50px);
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.newsletter-form{
	width: 100%;
}

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

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

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

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

.newsletter-form .form-group .newsletter-btn:hover{
	background-color: #fff;
}

.newsletter-form .form-group .newsletter-btn i{
	font-size: 24px;
	padding: 0 2px 2px 0;
	transition: all 0.4s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover i{
	transform: rotate(25deg);
}

.footer-links{
	width: calc(30% - 33.33px);
}

.footer-links.footer-service-links{
	width: calc(40% - 33.33px);
}

.footer-links h3{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 30px;
}

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

.footer-links ul li{
	color: #fff;
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover{
	color: #f4b400;
}

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

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

.footer-copyright{
	background-color: #FFFFFF1A;
	padding: 10px 0;
	margin-top: 80px;
}

.copyright-text{
	text-align: center;
}

.copyright-text p{
	color: #fff;
	opacity: 80%;
	margin-bottom: 0;
}


/* end footer */


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


.our-approach{
	padding: 100px 0;
	background: url('../images/our-service-bg.svg'), #F8F8F8;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.our-approach-box-content{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 100px;
}

.our-approach-content{
	width: calc(50% - 15px);
	padding-bottom: 200px;
}

.our-approach-image{
	width: calc(50% - 15px);
}

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

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

.mission-vision-box{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 970px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	background-color: #fff;
	border: 1px solid #020D1914;
	border-radius: 30px;
	box-shadow: 0px -10px 40px 5px #00000005;
	padding: 50px;
	overflow: hidden;
	z-index: 2;
}

.mission-vision-item{
	position: relative;
    width: calc(33.33% - 53.33px);
}

.mission-vision-item:before{
	content: '';
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    bottom: 0;
    right: -40px;
    height: calc(100% - 30px);
    width: 1px;
    background: #020D1914;
}

.mission-vision-item:nth-child(3n + 3):before{
	display: none;
}

.mission-vision-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	
}

.mission-vision-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: #1e3a8a;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

/* 2nd child */
.mission-vision-item:nth-child(2) .icon-box::before{
	background-color: #7d287d;

}

/* 3rd child */
.mission-vision-item:nth-child(3) .icon-box::before{
	background-color: #dc2626;

}

.mission-vision-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.mission-vision-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

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

.how-we-help{
	position: relative;
	padding: 100px 0;
}

.how-we-help:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #020D19;
	border-radius: 0 30px 30px 0;
    height: 100%;
    width: 55%;
    z-index: -1;
}

.how-we-help-content .section-title h3,
.how-we-help-content .section-title h2,
.how-we-help-content .section-title p{
	color: #fff;
}

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

.how-we-help-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.how-we-help-body ul li{
	background: url('../images/icon-check.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: #fff;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

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

.how-we-help-btn .btn-default:after{
	background: #fff;
}

.how-we-help-btn .btn-default:hover:before{
	filter: brightness(0) invert(0);
}

.how-we-help-btn .btn-default:hover{
	color: #020D19;
}

.how-help-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-help-item{
	width: calc(50% - 15px);
	background-color: #fff;
	border: 1px solid #020D1914;
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	text-align: center;
}

.how-help-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.how-help-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: #FF6D00;
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.how-help-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-help-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-help-item-content p{
	margin: 0;
}

.our-fact{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

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

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

.our-fact-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fact-counter-list,
.fact-body-image{
	width: calc(50% - 15px);
}

.fact-counter-item{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #fff;
	border-radius: 20px;
	padding: 35px 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.fact-counter-item:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #FF6D00;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.fact-counter-item:hover:before{
	top: auto;
    height: 100%;
}

.fact-counter-item:last-child{
	margin-bottom: 0;
}

.fact-counter-item h2{
	position: relative;
	width: calc(58% - 5px);
	font-size: 60px;
	line-height: 1em;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.fact-counter-item:hover h2{
	color: #fff;
}

.fact-counter-item p{
	position: relative;
	width: calc(42% - 5px);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	margin: 0;
	z-index: 1;
}

.fact-counter-item:hover p{
	color: #fff;
}

.fact-body-image figure{
	display: block;
	height: 100%;
	border-radius: 30px;
}

.fact-body-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 30px;
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
	background-color: #fff;
	border: 1px solid #020D1914;
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.team-image{
	margin-bottom: 20px;
}

.team-image a,
.team-image a figure{
	display: block;
	border-radius: 20px;
	cursor: none;
}

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

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

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

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

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

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

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

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

.team-social-icon ul li a:hover{
	background: #020D19;
}

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

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

.faq-accordion .accordion-item{
	background: #fff;
    border: 1px solid #020D1914;
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background: #FF6D00;
	color: #fff;
	padding: 18px 40px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: #fff;
	color: #020D19;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f107';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 900;
    line-height: normal;
    color: #fff;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translateY(-50%) rotate(-90deg);
	color: #020D19;
}

.faq-accordion .accordion-item .accordion-body{
	padding: 18px 40px 18px 20px;
}

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

.faqs-image{
	position: relative;
	padding-right: 145px;
	margin-left: 30px;
}

.faqs-image:before{
	content: '';
	position: absolute;
	right: 80px;
	bottom: 40px;
	width: 30px;
	height: 185px;
	background-color: #FF6D00;
	border-radius: 100px;
}

.faqs-img-1,
.faqs-img-2{
	border-radius: 30px;
	overflow: hidden;
} 

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

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

.faqs-img-2{
	max-width: 302px;
	position: absolute;
	top: 140px;
	right: 0;
	border: 8px solid #fff;
	border-radius: 30px;
	z-index: 1;
}

.faqs-img-1 img{
	aspect-ratio: 1 / 1.614;
}

.faqs-img-2 img{
	aspect-ratio: 1 / 1.1;
}

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

.page-services{
	padding: 100px 0 70px;
}

.why-choose-us.service-why-choose-us{
	background-color: var(--secondary-color);
}





/* why choose us */

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

.why-choose-images{
	position: relative;
	padding: 0 65px 45px 0;
}

.why-choose-image-1 figure,
.why-choose-image-2 figure{
	display: block;
	overflow: hidden;
	border-radius: 50%;
}

.why-choose-image-1 img,
.why-choose-image-2 img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-image-2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 265px;
	border: 2px solid #fff;
	border-radius: 50%;
}



.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}

.why-choose-list ul li{
	/*width: calc(50% - 10px);*/
	background: url('../images/icon-check-dark.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: #020d19;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 35px;
}

.why-choose-counters{
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
	border-top: 1px solid #020D1914;
	margin-top: 40px;
	padding-top: 40px;
}

.why-choose-counter-item{
	position: relative;
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: #020D1914;
	width: 1px;
	height: 100%;
}

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

.why-choose-counter-item h2{
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.why-choose-counter-item p{
	margin-bottom: 0;
}

/* end why choose us */



/* whatsapp and call */


.mail {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 2%;
   
    z-index: 4;
    background-color: #7d287d;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    transition: 0.3s;
    animation: shadow-pulse2 1s infinite;
	  color: #FFF;
    border-style: solid;
    border-width: 2px;
}

.call {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 5px;
    left: 2%;
    
    z-index: 4;
    background-color: #7d287d;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    transition: 0.3s;
    animation: shadow-pulse2 1s infinite;
}

.whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 85px;
    left: 2%;
    z-index: 4;
    background-color: #020D19;
    color: #f4b400;
    
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
}


.pulse {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0044a2;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
 
}
.pulse:hover {
  animation: none;
}



.whatsapp {
    position:fixed;
	width:50px;
	height:50px;
	bottom:85px;
	left:2%;
    z-index: 4;
	background-color:#00cc2f;
	color:#FFF;
    border-style: solid;
    border-width: 2px;
	border-radius:50px;
	text-align:center;
    font-size: 30px;

	
}
.pulse1 {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00cc2f;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  color: #FFF;
    border-style: solid;
    border-width: 2px;
  
}
.pulse1:hover {
  animation: none;
}








/* team section */



.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid #eee;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(125,40,125,0.15);
  border-color: #7d287d;
}

/* ===== IMAGE ===== */
.team-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

/* gradient overlay */
.team-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

/* ===== CONTENT ===== */
.team-content {
  padding: 20px;
}

.team-name {
  font-weight: 700;
  color: #1e3a8a;
  font-size:18px;
}

.team-designation {
  font-size: 16px;
  color: #7d287d;
  font-weight: 600;
  margin: 5px 0;
}

.team-role {
  font-size: 15px;
  color: #6c757d;
}

/* ===== HEADER ===== */
.team-header h2 {
  color: #212529;
}

.team-header p {
  color: #6c757d;
}

/* end team section */





/* video */
.video-box {
  transition: 0.3s;
}

.video-box:hover {
  transform: translateY(-5px);
}

/* responsive iframe */
.video-frame iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

/* title */
.video-title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #212529;
}




/* newslatter design */

/* HEADER */
.newsletter-header{
    text-align: center;
    margin-bottom: 45px;
}

.newsletter-header h2{
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.newsletter-header p{
    color: #64748b;
}

/* CARD (OLD RELIABLE STYLE) */
.newsletter-card{
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;

    padding: 28px 22px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

    transition: .35s ease;

    height: 100%;
}

.newsletter-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* ICON */
.newsletter-icon{
    font-size: 38px;
    color: #7d287d;
    margin-bottom: 12px;
}

/* TITLE */
.newsletter-card h3{
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 6px;
    line-height:30px;
}

/* DATE (UNDER TITLE) */
.newsletter-date{
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 16px;
}

/* BUTTON */
.download-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #0f172a;

    text-decoration: none;
}

.download-btn i{
    
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    
    color: #000;

    transition: .3s ease;
}



/*  End newslatter design */







/* award Section */
.gallery-card {
    display: block;
    border-radius: 16px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.gallery-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}
/* end award section */





.gallery_box ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

.gallery_box li {
    list-style: none;
}

/* image */
.gallery_box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.3s ease;
}

.gallery_box img:hover {
    transform: scale(1.03);
}

/* restore title */
.gallery_detail_box {
    display: block;
    text-align: center;
    padding-top: 10px;
}

/* title styling */
.gllr_detail_title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

/* hide excerpt only (optional) */
.gllr_detail_excerpt {
    display: none;
}



/* sponor child*/


.sponsor-img img{
  width: 100%;
 
  object-fit: cover;
  border-radius: 20px;
}


/* sponor child*/



/* contact us page */
/* SECTION */
.contact-section {
    background: #f7f7f7;
}

/* CARD */
.contact-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* HOVER EFFECT */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ICON STYLE */
.contact-icon {
    font-size: 34px;
    color: #7d287d;
    margin-bottom: 10px;
    transition: 0.3s;
    font-weight:600;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
    color: #dc2626;
}

/* TITLE */
.contact-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e3a8a;
}

/* TEXT */
.contact-text {
    font-weight: 500;
    font-size: 15px;
    color: #000;
}

/* LINKS */
.contact-card a {
    color: #111;
    font-weight: 500;
    text-decoration: none;
}

.contact-card a:hover {
    color: #dc2626;
}

/* MAP */
.contact-map {
    border-top: 1px solid #eee;
    filter: grayscale(0.2);
    transition: 0.3s;
}

.contact-card:hover .contact-map {
    filter: grayscale(0);
}
/* end contact us page */





/* heading */
.custom-heading h5{
   font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.3;
    margin-bottom:0px;
}
.custom-heading{
    padding-bottom: 12px;

}

.custom-heading::after{
    content: "";
    position: absolute;
    left: 0;          /* line left se start hogi */
    bottom: 0;

    width: 40%;
    height: 3px;

    background: #7d287d;
    border-radius: 50px;
}

.main-heading{
      font-size: 36px;
  font-weight: 700;
  color: #1e3a8a; /* blue */
  line-height: 1.3;
}
/* end heading */











/* responsive */

/* ============================= */
/*      Footer Responsive        */
/* ============================= */

/* Tablet */
@media (max-width: 991px){

    .main-footer-box{
        flex-direction: column;
        gap: 40px;
    }

    .footer-about{
        width: 100%;
    }

    .footer-about::before{
        display: none;
    }

    .footer-links-box{
        width: 100%;
        gap: 30px;
    }

    .footer-links{
        width: calc(50% - 15px);
    }

    .footer-links.footer-service-links{
        width: calc(50% - 15px);
    }

    .footer-contact-item{
        width: 100%;
    }
	
	  .our-approach-box-content{
        flex-direction: column;
        padding-bottom: 0;
    }

    .our-approach-content{
        width: 100%;
        padding-bottom: 0;
    }

    .our-approach-image{
        width: 100%;
    }

    .mission-vision-box{
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 30px;
        padding: 30px;
        gap: 20px;
    }

    .mission-vision-item{
        width: calc(50% - 10px);
    }

    .mission-vision-item:before{
        display: none;
    }
	

}


/* Mobile */
@media (max-width: 767px){

    .main-footer{
        padding: 60px 0 0;
    }

    .footer-logo{
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-contact-detail{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-social-links{
        text-align: center;
        margin-top: 20px;
    }

    .footer-social-links ul li{
        margin: 0 5px;
    }

    .footer-links-box{
        flex-direction: column;
        gap: 25px;
    }

    .footer-links{
        width: 100%;
        text-align: center;
    }

    .footer-links.footer-service-links{
        width: 100%;
    }

    .footer-links h3{
        margin-bottom: 15px;
    }

    .footer-links ul li{
        margin-bottom: 10px;
    }

    .footer-copyright{
        margin-top: 40px;
    }

    .copyright-text p{
        font-size: 14px;
    }
	
	 .our-approach{
        padding: 60px 0;
    }


 
    .our-approach-btn{
        text-align: center;
    }

    .our-approach-image img{
        border-radius: 20px;
    }

    .mission-vision-box{
        padding: 20px;
        border-radius: 20px;
    }

    .mission-vision-item{
        width: 100%;
        text-align: center;
    }

    .mission-vision-content h3{
        font-size: 18px;
    }

    .mission-vision-content p{
        font-size: 14px;
    }
	
	  .rev_slider .tp-caption{
        width: 90% !important;
        margin: 0 auto;
    }

  
}


/* Small Mobile */
@media (max-width: 480px){

    .footer-contact-item h3{
        font-size: 16px;
    }

    .footer-social-links ul li a{
        width: 32px;
        height: 32px;
    }

    .footer-social-links ul li a i{
        font-size: 14px;
    }
	
	   .section-title h2{
        font-size: 20px;
    }

    .mission-vision-item .icon-box img{
        max-width: 40px;
    }

    .mission-vision-item .icon-box:before{
        width: 25px;
        height: 25px;
    }
}


/*
.slabo-27px-regular {
  font-family: "Slabo 27px", serif;

}*/