/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #ff9a33;
    --white: #fff;
    --dark: #000;
	--secondary: #128807;
    --blue: #010180;
	--transition:0.4s ease;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Outfit', sans-serif;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
      width: 100%;
      background: transparent !important;
	padding: 10px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #ffffff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
    z-index: 3;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
    list-style: none;
    margin: 0;
    background: var(--secondary);
    padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo img{
	max-height: 50px;
}
.site-header .nav > li > a {
    color: #fff;
    text-decoration: none;
    padding: 8px 30px;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    display: inline-block;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  background: var(--primary);
    color: #fff;
}
.site-header .nav li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--primary);
    padding: 10px 0;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
    padding: 8px 15px;
    color: #ffffff;
    display: block;
    font-weight: 400;
    text-decoration: none;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--secondary);
  color: #fff;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 20px 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
#menu-primary-1 li {
    padding: 5px 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: #333;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
/* Topbar */
.topbar {
    background: var(--blue);
    padding: 8px 0;
    color: #fff;
}
.topbar a {
    text-decoration: none;
    color: #fff;
}
.topbar-left {
    display: flex !important;
    justify-content: space-between;
}
.topbar-left i {
    padding-right: 5px;
}
.topbar-right{
	display: flex;
    justify-content: flex-end;	
}
.topbar a.btn-primary {
    padding: 5px 20px;
}
/* Btn Primary */
.btn-primary {
  display:inline-block;  
  padding: 10px 30px;
  background: var(--primary);
  border-radius: 5px;
  color: var(--white);
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  border: none;
  cursor:pointer;
 	text-decoration: none;
}
.btn-primary::before,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  background-color: var(--secondary);
  z-index: -1;
  transition: var(--transition);
  border-radius: 5px 0 0 5px;
  transform: scale(4) rotate(0deg);
}
.btn-primary::after {
  left: unset;
  right:0;
  border-radius: 0 5px 5px 0;
}
.btn-primary:hover {
  color: #fff;
}
.btn-primary:hover::before,
.btn-primary:hover::after {
  width: 0;
  transform: scale(4) rotate(-45deg);
}
.brouser-form .btn-primary{
  display:inline-block;
  position:relative;
  overflow:hidden;
  border-radius:5px;
}
.brouser-form .btn-primary .wpcf7-spinner{
	display: none;
}
.brouser-form .btn-primary input{
  background:transparent;
  border:none;
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  position:relative;
  z-index:2;
}
.brouser-form .btn-primary::before,
.brouser-form .btn-primary::after{
  content:"";
  position:absolute;
  inset:0;
  width:50%;
  background:#128807;
  transition:0.4s;
  z-index:1;
}
.brouser-form .btn-primary::after{
  left:auto;
  right:0;
}
.brouser-form .btn-primary:hover::before,
.brouser-form .btn-primary:hover::after{
  width:0;
}
.brouser-form .btn-primary p{
	margin: 0;
}
/* FOOTER SECTION CSS */
footer {
    color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
.footer-left img{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.footer-right img{
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.footer-round img{
	position: absolute;
	right: 2%;
	top: 2%;
	z-index: -1;
	animation: moveCorner 4s ease-in-out infinite alternate;
}
@keyframes moveCorner{
    from{
        top: 2%;
        right: 2%;
    }
    to{
        top: 10%;
        right: 10%;
    }
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;
}
footer a.footer-logo img {
    width: 120px;
    display: block;  
}
.footer_menu {
    padding: 40px 0 0 0;
}
ul.footer-details i {
    height: 30px;
    width: 30px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--blue);
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    gap: 15px;
    position: relative;
    align-items: center;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    line-height: 40px;
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
footer h3 {
    margin-bottom: 25px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    font-weight: 700;
    display: inline-block; 
}
footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 3px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
p.ftrabout {
    font-size: 15px;
    font-weight: 400;
    color: #010180e0;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: #010180e0 !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	  transition: transform 0.3s ease
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}
footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: #fff !important;
    background-color: var(--secondary);
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 6px;
    justify-content: center;
}
footer .social-icons a i{
	font-size: 16px;
}
footer ul li, footer ul li a, footer p, footer p a,footer span {
    font-weight: 400;
    position: relative;
	font-size: 15px;
    text-decoration: none;
	color: #010180e0;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #1288078f;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #010180e0;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--secondary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--secondary);
  stroke-width: 4;
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
.logo{
    padding: 5px 0;
    border-radius: 10px;
}
.hm-title-bgbox h2 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-btom-img{
	position: relative;
}
.overlay1{
    background-color: #c6d5ee;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-btom-img img{
	height: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}
/*=====================
     Hero Section 
========================*/
#mainCarousel .carousel-item img{
   	width: 100%;
	height: auto;
    object-fit: contain;
	border-radius: 40px;
}
#mainCarousel .carousel-inner {
    border-radius: 40px;
}
div#mainCarousel {
    margin:0 20px;
    border-radius: 40px;
}
.carousel-control-next {
   right: 50px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
   filter: invert(1);
}
.carousel-control-prev,
.carousel-control-next {
   bottom: 10%;
   top: auto;
   width: 50px;
   height: 50px;
   background: #fff;
}
.carousel-control-prev {
  right: 100px;
  left: auto;
}
/*===========================
     Marquree Section 
===============================*/
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 30px 0 0 0;
}
.marquee__content {
    display: inline-block;
    animation: scroll-left 120s linear infinite;
}
@keyframes scroll-left{
	0% {
    transform: translateX(0%);
}
100% {
    transform: translateX(-1000%);
}
}
.marquee__content li {
    display: inline-flex;
    align-items: center;
    margin-right: 60px;
    list-style: none;
}
.marquee__content h2 {
    font-size: 65px;
    font-weight: bold;
    color: transparent !important;
    margin: 0;
    -webkit-text-stroke: 1px #000;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}
.marquee__content img {
    width: 100px;
    height: 100px;
    margin-right: 45px;
}
/*===========================
    About Us Section 
=============================*/
.heading-icon{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
	color: var(--primary); 
}
.heading-icon i{
    color: var(--primary); 
    font-size: 20px;
}
.about-experience {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--blue);
    padding: 20px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    border-radius: 10px;
    color: #fff;
}
.about-image {
    position: relative;
}
section.about {
    position: relative;
}
.about-side-img img {
    animation: floatXY 8s ease-in-out infinite;
}
.about-side-img {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.18;
}
.mission-vision {
    background: #fff;
    border: 1px dashed var(--secondary);
    border-radius: 6px;
    padding: 10px 20px;
    margin-bottom: 1rem;
}
.mission-vision h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}
.mission-vision p {
    margin: 0;
}
/*===============================
  Happy Student Section
 ============================= */
section{
  padding: 50px 0;
}
section.stats-section {
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/students-scaled.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.stat-box {
    background: #ffffffe0;
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--secondary);
}
.stat-box i {
  font-size: 45px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: transform 0.5s ease, color 0.5s ease;
}
.stat-box:hover i {
  transform: rotate(360deg); 
}
@keyframes star-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.stat-box:hover i.spin {
  animation: star-spin 1s linear infinite;
}
.stat-box h3{
  font-size:34px;
  font-weight:700;
  color:#1f2a78;
  margin-bottom:8px;
}
.stat-box p{
  margin:0;
  font-size:16px;
  color:#555;
  font-weight:500;
}
.stat-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
/* ==========================
     Service Section 
===========================*/
section.service-section {
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/servicebg.webp) #1288071c;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.service-section .heading-icon {
    justify-content: center;
}
.service-section .heading{
	text-align: center;
	margin-bottom: 2rem;
}
.service-card {
    background: #ffffffe3;
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border: 1px dashed #12880761;
    transition: .3s ease;
    height: 100%;
}
.service-card:hover{
    transform:translateY(-6px);
}
.service-icon{
    transition:.3s;
}
.service-icon img{
	height: 70px;
	width: 70px;
}
.service-card:hover .service-icon{
    transform:rotate(10deg) scale(1.05);
}
.service-content h3{
    font-size:21px;
    margin-bottom:8px;
    color:#222;
}
.service-content p{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin-bottom:0;
}
/*===========================
     Brouser Section 
=============================*/
.brouser-inner {
    width: 70%;
    margin: auto;
}
section.brouser {
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/liner-bg.webp) var(--blue);
    color: #fff;
    text-align: center;
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.brouser-form {
    padding-top: 2rem;
}
.brouser .heading-icon {
    justify-content: center;
	margin-bottom: 1rem;	
}
/* ===================
   Courses Section
=======================*/
section.courses {
    position: relative;
    background: #1288070d;
}
.courses-sticky {
    position: sticky;
    top: 100px;
}
.course-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
    border: 1px dashed var(--secondary);
}
.course-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
	animation: floatX 8s ease-in-out infinite;
}
@keyframes floatX{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
100% {
    transform: translate(10px, -15px) rotate(0deg);
}
}
@keyframes floatXY{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
25% {
    transform: translate(10px, -15px) rotate(0deg);
}
50% {
    transform: translate(0px, -25px) rotate(2deg);
}
75% {
    transform: translate(-10px, -15px) rotate(0deg);
}
100% {
    transform: translate(0px, 0px) rotate(-2deg);
}
}
.couses-bg {
    position: absolute;
    bottom: 0;
    opacity: 0.18;
    animation: floatXY 8s ease-in-out infinite;
}
.course-logo{
    width: 100%;
    height: 130px;
    margin:0 auto 15px;
}
.course-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.course-title{
    font-size:20px;
    font-weight:600;
    color:#222;
}
.heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--blue);
}
/* Selection Section */
.gallery-img{
    border-radius:12px;
    transition:.3s ease;
}
.gallery-img:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}
.selection .heading-icon {
    justify-content: center;
}
.selection .heading{
	text-align: center;
	margin-bottom: 2rem;
}
.selection-button {
    padding-top: 40px;
    text-align: center;
    width: 80%;
    margin: auto;
}
/* Best Couching */
section.best{
    position: relative;
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/student-ground-scaled.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
	background-attachment: fixed;
	padding: 70px 0;
}
section.best::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: -1;
}
.best-content {
    text-align: center;
    color: #fff;
    width: 70%;
    margin: auto;
}
.best .heading-icon{
	justify-content: center;
}
.best .heading{
	color: var(--secondary);
}
/* Team Section */
.creative-team--block .inner-box{
    position:relative;
}
.inner-box .image-box figure{
    overflow:hidden;
    border-radius:10px;
    margin:0;
}
.inner-box .image-box img{
    width:100%;
    transition:.4s ease;
}
.inner-box .info-box {
    position: relative;
    padding: 20px;
    max-width: 90%;
    margin: -50px auto 0;
    background: #fff;
    box-shadow: 0 10px 60px rgba(0,0,0,.07);
    border-radius: 10px;
    z-index: 2;
}
.info-box .name{
    font-size:22px;
    font-weight:700;
    margin:0 0 5px;
	color: var(--secondary);
}
.info-box .designation{
    color:#67687a;
}
.info-box .share-icon{
    position:absolute;
    top:40px;
    right:30px;
    height:50px;
    width:50px;
    line-height:50px;
    text-align:center;
    background:#134cb3;
    color:#fff;
    border-radius:10px;
}
.info-box .social-links{
    position:absolute;
    right:30px;
    bottom:100%;
    margin-bottom:-30px;
    display:flex;
    flex-direction:column;
    opacity:0;
    visibility:hidden;
    transform:scaleY(0);
    transform-origin:bottom;
    transition:.4s ease;
}
.info-box .social-links a{
    height:50px;
    width:50px;
    line-height:50px;
    text-align:center;
    background:#134cb3;
    color:#fff;
    border-radius:10px;
    margin-top:10px;
}
.creative-team--block .inner-box:hover .social-links{
    opacity:1;
    visibility:visible;
    transform:scaleY(1);
}
.team-section .heading-icon{
	justify-content: center;
}
.team-section .heading{
	text-align: center;
	margin-bottom: 2rem;
}
/* Blog */
.home-blog-section .heading-icon{
	justify-content: center;
}
.home-blog-section .heading{
	text-align: center;
	margin-bottom: 2rem;
}
.single-blog img {
    height: 250px;
    width: 100%;
    object-fit: contain;
}
h3.blog-title a {
    text-decoration: none;
    color: var(--blue);
    font-size: 25px;
    font-weight: 600;
    padding: 14px 0;
}
.blog-excerpt {
    margin-bottom: 1rem;
}
.single-blog a.btn-primary {
    display: flex;
    justify-content: center;
	margin-top: 1rem;
}
.single-blog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
span.blog-category a {
    text-decoration: none;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 6px 0;
    display: inline-block;
}
.blog-meta {
    display: flex;
    justify-content: space-around;
    color: var(--blue);
    font-size: 14px;
}
.blog-meta i {
    font-size: 16px;
    padding-right: 10px;
}
.img-box{
    position:relative;
    overflow:hidden;
}
.img-box img{
    width:100%;
    display:block;
    transition:transform .4s ease;
}
.img-box::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-80%;
    width:45%;
    height:200%;
    background:rgba(180,180,180,0.15);
    transform:rotate(25deg);
    transition:0.7s ease;
    z-index:2;
}
.img-box::after{
    content:"";
    position:absolute;
    top:-50%;
    right:-80%;
    width:45%;
    height:200%;
    background:rgba(180,180,180,0.15);
    transform:rotate(-25deg);
    transition:0.7s ease;
    z-index:2;
}
.img-box:hover::before{
    left:130%;
}
.img-box:hover::after{
    right:130%;
}
.img-box:hover img{
    transform:scale(1.05);
}
/* Why choose us */
.choose-content h3 {
    font-size: 25px;
    color: var(--blue);
}
.custom-list {
    list-style: none;
    padding-left: 0;
}
.custom-list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
	line-height: 35px;
}
.custom-list li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 18px;
}

/* Contact Section */
section.contact-cta {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}
.contact-content h2 {
    font-size: 35px;
    font-weight: 800;
    padding-bottom: 1.5rem;
}
section.contact-cta {
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/contact-bg-scaled-1.webp) var(--blue);
    color: #fff;
    text-align: center;
    padding: 70px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.contact-content {
    width: 60%;
    margin: auto;
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.phone-box {
    display: flex;
}
.phone-icon i {
    font-size: 30px;
    color: var(--primary);
}
.phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.phone-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.phone-text small {
    font-size: 16px;
}
.phone-text a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
/*====================
    Faq Section
===================*/
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.custom-accordion .accordion-button {
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
    background: #fff;
    position: relative;
    transition: 0.3s;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--blue);
    color: #fff;
}
.custom-accordion .accordion-body {
    padding: 20px;
    background: #f8f9fa;
    font-size: 15px;
}
.accordion-button::after {
    display: none;
}
.accordion-button i {
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: 0.3s;
}
.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}
.faq-image {
    position: sticky;
    top: 100px;
}
section.faq {
    position: relative;
    background: #ff9a331a;
}
section.faq .heading-icon{
	justify-content: center;
}
section.faq .heading{
	text-align: center;
	margin-bottom: 3rem;
}
/*======================
     Preloader 
===========================*/
#preloader {
    position: fixed;
	top: 0;
    width: 100%;
    height: 100%;
    background: #0a140a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: transform 0.8s ease-in-out;
}
.radar {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #4b5320;
    box-shadow: 0 0 20px #4b5320 inset;
    overflow: hidden;
}
.radar::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-radial-gradient(circle,
        rgba(75,83,32,0.3) 0px,
        rgba(75,83,32,0.3) 2px,
        transparent 2px,
        transparent 20px
    );
}
.scan {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 50%, rgba(75,83,32,0.8) 100%);
    transform-origin: center;
    animation: rotate 2s linear infinite;
}
.loading-text {
    margin-top: 25px;
    color: #c5a000;
    font-family: Arial, sans-serif;
    letter-spacing: 3px;
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}
#preloader.slide-up {
    transform: translateY(-150%);
}
/* =========================
       Curser
===================================*/
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}
.cursor-outline {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
}
a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: #c5a000;
    box-shadow: 0 0 25px #c5a000;
}
/*====================
  Motivation Section 
======================*/
section.motivation-section {
    background: #1288070f;
}
.motivation-list{
    list-style:none;
    padding:0;
}
.motivation-list li{
    font-size:16px;
    position:relative;
	line-height: 35px;
    padding-left:35px;
    transition:0.6s ease;
}
.motivation-list li::before{
    content:"\f005";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
}
.highlight-box{
    margin: 1rem 0;
    padding:20px;
    border-left:4px solid var(--primary);
    background: var(--blue);
    border-radius:10px;
    color:#ddd;
}
/*=====================
    Breadcrumb Section 
=======================*/
section.breadcrumb-section {
    position: relative;
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/students-scaled.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 20px;
	border-radius: 20px;
}
.breadcrumb-section::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);  
    z-index: 1;
	border-radius: 20px;
}
.breadcrumb-section .container{
    position: relative;
    z-index: 2;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary);
}
.breadcrumb-item.active {
    color: var(--primary);
}
li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
/*=============================
      About Page Css 
=============================*/
.about-inner-img {
    position: relative;
}
.about-card {
    position: absolute;
    top: 35%;
    width: 35%;
    right: 0;
    background: #fff;
	border-radius: 12px;
	animation: floatXY 8s ease-in-out infinite;
}
.about-card img {
    border-radius: 12px;
    padding: 5px;
}
.about-card-contain span {
    text-align: center;
    display: block;
    font-size: 14px;
    margin-bottom: 1rem;
}
.about-card-contain h4 {
    color: var(--blue);
    text-align: center;
    font-weight: 600;
}
.about-card-contain {
    padding: 10px;
}
.about-in-img {
    width: 90%;
    border-radius: 10px;
}
.trust-box {
    width: 80%;
    margin: auto;
    text-align: center;
    background: var(--blue);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
}
.trust-box h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}
section.massage {
    text-align: center;
    background: #12880717;
}
.dirtector-img-box{
	display: flex;
    justify-content: center;
}
.hexagon-wrapper {
    position: relative;
    width: 370px;
    margin: 0px auto 5rem;
}
.hexagon{
    width:100%;
    aspect-ratio:1/1.2;
    background:linear-gradient(135deg,#f9a825,#2ecc71);
    clip-path:polygon(
        50% 0%,     
        100% 25%,    
        100% 75%,    
        50% 100%,   
        0% 75%,      
        0% 25%      
    );
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hexagon img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.badge-wrapper{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    width:160px;
    height:160px;
}
.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 12s linear infinite;
    background: #010180;
    color: #fff;
    border: 5px solid #fff;
}
.rotating-text span{
    position:absolute;
    left:50%;
    top:50%;
    transform-origin:0 0;
    font-size:13px;
    font-weight:600;
    color:#ffffff;
}
.center-badge {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #ff9a33;
    color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-badge i {
    font-size: 50px;
}
@keyframes rotate{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}
.director-message h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 25px;
}
.commite-bg {
    position: absolute;
    top: 0;
    opacity: 0.3;
}
.commite-bg img{
	animation: floatXY 8s ease-in-out infinite;
}
.commite-content {
    position: relative;
}
.training-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #1288071c;
    margin: 20px;
    border-radius: 20px;
}
.image-wrapper{
    position:relative;
}
.main-img {
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    justify-content: flex-end;
}
.main-img img {
    width: 90%;
    border-radius: 20px;
}
.small-img {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    border-top: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
}
.small-img img{
    width:100%;
    border-radius:20px;
} 
.rating-card {
    position: absolute;
    top: 35px;
    left: 0;
    background: var(--blue);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: center;
    width: 170px;
	animation: floatXY 8s ease-in-out infinite;
}
.rating-card h3{
    font-size:28px;
    margin:10px 0;
	color: #fff
}
.rating-card h3 i{
	color: var(--primary);
}
.rating-card span{
    font-size:14px;
    color: var(--primary);
}
.section-tag{
    color:#ff3b3b;
    font-size:14px;
    margin-bottom:10px;
}
.step {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
    background: #ffffff8f;
    margin-bottom: 1rem;
    padding: 15px;
    border-radius: 10px;
}
.step-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 16px;
}
.step h5{
    font-weight:600;
}
.step p{
    color:#5f5f5f;
    font-size:14px;
    margin-top:5px;
}
.training-section .heading {
    margin-bottom: 1rem;
}
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px 0 #8080805e;
    background: #ffffff;
    height: 200px; 
}
.image-overlay h3 {
    font-weight: 700;
}
.image-overlay i {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 2rem;
}
.image-card img{
    position: absolute;
    inset: 0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.1);
    transition:0.6s ease;
    z-index:1;
}
.image-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    transition:0.5s ease;
    z-index:2;
}
.image-overlay{
    position:absolute;
    bottom:20px;
    left:20px;
    color:#000;
    z-index:3;
    transition:0.4s ease;
}
.image-card:hover img{
    opacity:1;
    transform:scale(1);
}
.image-card:hover::before{
    opacity:1;
}
.image-card:hover .image-overlay{
    color:#fff;
}
/*==================================
     Team Page CSS
==================================*/
.team-inner-section .heading-icon {
    justify-content: center;
    margin-bottom: 3rem;
}
.team-inner-section .heading {
    text-align: center;
}
.team-inner-section .team-inner-card {
    position: relative;
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.team-inner-section .team-inner-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.1);
}
.team-inner-section .team-inner-card::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:90px;
    height:90px;
    background:#ff9a3326;
    border-bottom-left-radius:100%;
    transition:0.4s;
}
.team-inner-section .team-inner-card:hover::before{
    transform:scale(1.1) rotate(10deg);
}
.team-inner-section .team-inner-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0%;
    height:4px;
    background: var(--blue);
    transition:0.4s ease;
}
.team-inner-section .team-inner-card:hover::after{
    width:100%;
}
.team-inner-section .team-inner-img{
    overflow:hidden;
}
.team-inner-section .team-inner-img img{
    width: 200px;
    height: 200px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    transition:0.4s;
}
.team-inner-section .team-inner-card:hover img{
    transform:scale(1.08);
}
.team-inner-section .team-inner-card h5 {
    font-weight: 700;
    color: var(--blue);
    font-size: 25px;
}
.team-inner-section .team-designation{
    color: #000;
    font-size:14px;
    margin-bottom:15px;
}
.team-inner-section .team-inner-card p{
    font-size:14px;
    color:#6c757d;
}
.team-inner-section .social-icons{
    opacity:0;
    transform:scale(0.8);
    transition:0.4s;
}
.team-inner-section .team-inner-card:hover .social-icons{
    opacity:1;
    transform:scale(1);
}
.team-inner-section .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #f1f1f1;
    color: var(--secondary);
    margin: 4px;
    transition: 0.3s;
}
.team-inner-section .social-icons a:hover{
    background: var(--primary);
    color:#fff;
}
.team-details-contennt h5 {
    background: #12880729;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--blue);
    font-style: italic;
    font-size: 18px;
}
/*==============================
     Contact Page CSS
===============================*/
.contact-details {
    text-align: center;
}
.contact-details .heading-icon{
    justify-content: center;
}
.contact-box {
    background: #fff;
    box-shadow: 0 0 10px 0 #808080a1;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    border-radius: 10px;
}
.contact-box-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-box-inner i {
    height: 50px;
    width: 50px;
    background: #01018024;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    font-size: 25px;
}
.contact-box-inner a{
	color: #000;
	text-decoration: none;
}
.contact-box-inner .heading {
    font-size: 25px;
}
section.map-section iframe {
    width: 100%;
	border-radius: 20px;
}
.phonepay img {
    border-radius: 10px;
}
section.map-section {
    padding-top: 0;
}
/*====================
  Courses Page Css
============================*/
section.courses-inner-section .heading-icon {
    justify-content: center;
}
section.courses-inner-section .heading{
	text-align: center;
	margin-bottom: 2rem;
}
.content-box .heading {
    margin-bottom: 2rem;
}
.course-inner-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}
.content-box h3 {
    color: var(--secondary);
    font-weight: 600;
}
.course-inner-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}
.course-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:#fff;
    transition:0.5s;
}
.course-inner-logo{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}
.course-overlay h5{
    font-weight:600;
}
.course-link{
    color:#f9a825;
    text-decoration:none;
    font-weight:500;
    margin-top:10px;
    display:inline-block;
    transition:0.3s;
}
.course-link:hover{
    letter-spacing:1px;
}
.course-inner-card:hover img{
    transform:scale(1.1);
}
.course-inner-card:hover .course-overlay{
    background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}
section.choose-inner-card {
    position: relative;
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/02/student-ground-scaled.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
section.choose-inner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 0;
}
section.choose-inner-card > * {
    position: relative;
    z-index: 1;
}
.choose-card1 {
    position: relative;
    background: #ffffff12;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
    height: 100%;
    border: 1px solid gray;
    color: #fff;
}
.choose-card1::before,
.choose-card1::after{
    content:"";
    position:absolute;
    width:0%;
    height:4px;
    background: var(--primary);
    transition:0.5s;
}
.choose-card1::before{
    top:0;
    left:0;
}
.choose-card1::after{
    bottom:0;
    right:0;
}
.choose-card1:hover{
	border: none;
}
.choose-card1:hover::before,
.choose-card1:hover::after{
    width:100%;
}
.choose-card1 span.border-anim::before,
.choose-card1 span.border-anim::after{
    content:"";
    position:absolute;
    width:4px;
    height:0%;
    background: var(--primary);
    transition:0.5s;
}
.choose-card1 span.border-anim::before{
    top:0;
    left:0;
}
.choose-card1 span.border-anim::after{
    bottom:0;
    right:0;
}
.choose-card1:hover span.border-anim::before,
.choose-card1:hover span.border-anim::after{
    height:100%;
}
.choose-card1 .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e9f2ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    transition: 0.4s;
}
.choose-card1:hover .icon{
    background: var(--primary);
    color:#fff;
}
.choose-card1 h5{
    font-weight:600;
    font-size:18px;
}
.choose-inner-card .heading-icon {
    justify-content: center;
    margin-bottom: 3rem;
}
section.choose-inner-card .heading {
    color: #fff;
    text-align: center;
}
.approach-box{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}
.small-box{
    flex:1 1 45%;
    background:#fff;
    padding:15px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 19%);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}
.small-box i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}
.small-box span{
    font-weight:500;
    font-size:14px;
}
.small-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}
section.learning-approach .heading {
    font-size: 30px;
}
.approach-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}
a{
	text-decoration: none;
}
.gallery-overlay span {
    text-align: center;
    display: block;
    color: var(--primary);
    font-weight: 700;
}
.gallery-overlay h5 {
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
}
@media(max-width:768px){
    .small-box{
        flex:1 1 100%;
    }
}
/* Courses Details Page */
.militry-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.militry-img img{
    opacity: 0;
    transform: translateX(-120px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.militry-img img.show{
    opacity: 1;
    transform: translateX(0) scale(1);
}
section.best-foundation {
    background: #12880714;
}
.best-foundation-content ul li {
    border: 1px solid #808080a3;
    padding: 10px 10px 10px 35px;
    margin-bottom: 10px;
    background: #ffffff7a;
    color: #000000;
    font-weight: 700;
    position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.best-foundation-content ul li:hover{
	transform: translateY(-3px) rotate(-1deg);
  	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.foundation-list{
    list-style: none;
    padding-left: 0;
}
.foundation-list li::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 10px;
    color: var(--primary);
    font-size: 16px;
}
.career-card {
    background: #fff;
    border-radius: 0px;
    padding: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
	height: 100%;
}
.career-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:5px;
    background: var(--blue);
    left:0;
    top:0;
    transition:0.4s;
}
.career-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.career-card:hover::before{
    height:100%;
    opacity:0.05;
}
.career-icon{
    font-size:50px;
    color: var(--blue);
}
.career-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}
.career-desc{
    font-size:15px;
    color:#666;
}
.respect-text{
    margin-top:60px;
    font-size:22px;
    font-weight:600;
    color:#0b3d91;
}
section.career-section {
    background: url(https://hinddefenceacademy.com/wp-content/uploads/2026/03/gray-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.split-table {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 #8080807a;
}
.split-row{
    display:flex;
    flex-wrap:wrap;
    border-bottom:1px solid #eee;
    transition:0.3s ease;
}
.split-row:last-child{
    border-bottom:none;
}
.split-row:hover{
    background:#f1f5ff;
    transform:scale(1.01);
}
.subject-panel {
    flex: 0 0 30%;
    background: var(--blue);
    color: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}
.subject-panel i{
    font-size:20px;
    margin-right:15px;
}
.topic-panel{
    flex:0 0 70%;
    padding:25px;
    color:#444;
    font-size:15px;
    line-height:1.8;
}
span.section-badge {
    color: var(--primary);
    font-weight: 700;
}
.topic-heading {
    width: 70%;
    margin: 0 auto 2rem;
}
section.join {
    background: var(--blue);
    text-align: center;
    color: #fff;
}
section.join .heading {
    color: var(--primary);
    margin-bottom: 1rem;
}
section.join .container {
    width: 70%;
    margin: auto;
}
/* Policy Page CSS */
.policy-content h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}
.policy-content h2 {
    color: var(--secondary);
    font-weight: 700;
    margin: 2rem 0;
}
.policy-content h4 {
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 1rem;
}
.policy-content a {
    color: var(--blue);
}
.latest-blogs-wrapper{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
/*=======================
    Responsive 
========================*/
@media(max-width: 1024px){
	div#mainCarousel{
		margin: 0 10px;
	}
	.topbar{
		display: none;
	}
}
@media(max-width: 991px){
	.training-section{
		padding: 50px 0;
		margin: 15px;
	}
}
@media(max-width: 767px){
	#mainCarousel .carousel-inner {
		border-radius: 15px;
	}
	#mainCarousel .carousel-item img{
		border-radius: 15px;
	}
	.contact-content {
		width: 95%;
		margin: auto;
	}
	.single-blog img{
		height: auto;
	}
	.marquee__content h2{
		font-size: 40px;
	}
	.marquee__content img {
		width: 70px;
		height: 70px;
	}
	section.about {
		padding: 30px 0 50px;
	}
	.phonepay {
		display: flex;
		justify-content: center;
	}
	.brouser-inner{
		width: 100%;
	}
	.latest-blogs-wrapper{
		flex-direction: column;
	}
	section.join .container {
		width: 100%;
	}
	.subject-panel,
	.topic-panel{
		flex: 100%;
	}
	.topic-heading{
		width: 100%;
	}
}
@media(max-width: 667px){
	.heading{
		font-size: 28px;
	}
	section.breadcrumb-section{
		height: 30vh;
	}
	.selection-button{
		width: 100%;
	}
	.best-content{
		width: 100%
	}
}
@media(max-width: 568px){
	.selection-button{
		width: 100%;
	}
	.best-content{
		width: 100%;
	}
	.best-content{
		text-align: left;
	}
	.best .heading-icon {
		justify-content: left;
	}
}
@media(max-width: 479px){
	.contact-content h2{
		font-size: 26px;
	}
	.contact-row {
		gap: 20px;
		flex-direction: column;
	}
	.logo img {
		max-height: 40px;
	}
	section.breadcrumb-section{
		margin: 0 8px;
	}
}