body{
    font-family: 'Darker Grotesque', sans-serif;
}
a {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size:18px;
    text-decoration: none!important;
  }
  .lavish {
    font-family: 'Lavishly Yours', cursive;
  }

  .customSubMenuHolder:hover > .customSubMenu{
    display:block
  }
  .customSubMenu {
    display:none;
    box-shadow: 2px 8px 12px rgba(0,0,0,0.5);
    position:absolute;
    width:100%;
    left:0;
    background:#00354b;
  }
.section-heading {
  display: flex;
  align-items: flex-end; /* 🔥 align line to bottom */
  width: 100%;
  margin: 40px 0;
}

/* Rectangle */
.heading-box {
  position: relative;
  background: #2e3192;
  color: #fff;
  padding: 10px 25px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

/* Stepped joint */
.heading-box::after {
  content: "";
  position: absolute;
  right: -71px;
  top: 0;
  width: 72px;
  height: 100%;
  background: #2e3192;
  clip-path: polygon(0 0, 0% 0, 100% 100%, 0 100%);
}

/* Bottom line */
.heading-line {
  flex: 1;
  height: 8px;
  background: #2e3192;
}

  .navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}

.top-nav {
  background: #031c32; /* Deep blue */
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-item i {
  font-size: 14px;
}
/* Reset */
.top-list,
.top-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

/* Left list */
.top-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  position: relative;
}

/* Vertical divider */
.top-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: rgb(255, 255, 255);
}

/* Social list */
.top-social-list li {
  padding: 0 10px;
  position: relative;
}

/* Divider for social icons */
.top-social-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgb(255, 255, 255);
}

/* Icon styling */
.top-social-list a {
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.top-social-list a:hover {
  color: #f6b23c;
}

@media (max-width: 576px) {
  .top-list {
    align-items: flex-start;
  }

  .top-list li::after {
    display: none;
  }
}


.top-social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.top-social a:hover {
  opacity: 0.8;
}

/* From Uiverse.io by SujitAdroja */ 
.btn {
  color: #031c32;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #031c32;
  padding: 10px 20px;
  font-size: 17px;
  border-radius: 0;
  cursor: pointer;
  line-height: 1.4;
  font-weight: bold;
  background: transparent;
  position: relative;
  z-index: 1; /* 🔥 KEY FIX */
  transition: color 0.4s ease;
  overflow: hidden;
}

.btn:hover {
  color: white;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 0%;
  height: 100%;
  transform: skewX(45deg);
  background-color: #031c32;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn:hover::before {
  width: 160%;
}


/* BREADCRUMB CSS */

.breadcrumb-nav ol li a{
  font-size: 16px;
  color: #000000;
}
.breadcrumb-nav ol li a:hover{
  color: #f6b23c;
}

/* NEWS SILDER CSS */

.news-ticker {
  background: #031c32;
  color: #fff;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  align-items: center;
}

.ticker-label {
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  padding: 10px 15px;
  margin-right: 15px;
  white-space: nowrap;
}

.ticker {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-content {
  display: inline-flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

.ticker-content span {
  font-size: 15px;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* ABOUT US CSS */
.about-section {
  background-color: #f8f9fa;
}

.about-img img {
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #031c32;
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* COUNTER CSS */

.counter-section {
  background: #fff;
}

.counter-box {
  background: linear-gradient(135deg, #031c32, #042b4f);
  color: #fff;
  padding: 35px 20px;
  border-radius: 6px;
  height: 100%;
}

.counter-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.counter-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-box h2::after {
  content: "+";
}

.counter-box p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 0;
}


/* RECORD SECTION CSS */

.record-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.record-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.record-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.record-content {
  padding: 18px;
}

.record-category {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aa0a6;
  margin-bottom: 8px;
  font-weight: 600;
}

.record-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  margin-bottom: 14px;
}

.record-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.record-meta i {
  margin-right: 6px;
  color: #1a237e;
}


/* RECORD NEWS SECTION CSS */

.record-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  cursor: pointer;
}

.news-item.large {
  height: 100%;
  min-height: 450px;
}

.news-item:not(.large) {
  height: 215px;
}
.record-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 0;
}

.record-tabs .nav-link {
  color: #031c32;
  font-weight: 600;
  border: none;
  margin-right: 15px;
}

.record-tabs .nav-link.active {
  border-bottom: 3px solid #031c32;
  color: #031c32;
  background: transparent;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item.large img {
  height: 100%;
  min-height: 400px;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.news-item:hover .news-overlay {
  opacity: 1;
}

.news-overlay h3,
.news-overlay h4 {
  font-size: 18px;
  margin: 0;
}

/* Overlay hidden by default */
.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 1;
  transition: all 0.4s ease;
}

.news-overlay h3,
.news-overlay h4 {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}


/* Zoom effect */
.news-item img {
  transition: transform 0.5s ease;
}

.news-item:hover img {
  transform: scale(1.08);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .news-item.large {
    min-height: 300px;
  }
  .news-item {
    height: 240px;
  }
}


.record-feature {
  background: #ffffff;
}

.record-feature .record-image img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
}

.record-feature .record-content {
  padding-left: 10px;
}

.record-feature .record-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.record-feature .record-title {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.3;
}

.record-feature .record-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.record-feature .record-author {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}



/* Responsive */
@media (max-width: 768px) {
  .record-feature .record-title {
    font-size: 22px;
  }
  .record-feature .record-content {
    padding-left: 0;
  }
}

.achiever-card {
  background: linear-gradient(180deg, #0b1d3a, #0a1630);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 30px 15px;
  transition: 0.3s;
}
.achiever-card .achiever-heading{
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.achiever-img img {
  width: 100%;
  height:350px;
  border-radius: 18px;
  object-fit: cover;
}

.achiever-logo {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  border: 5px solid #0a1630;
  left: 50%;
  transform: translateX(-50%);
  top: 63%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.achiever-logo img {
  width: 35px;
}

.achiever-content {
  margin-top: 35px;
  padding: 0 20px;
}

.achiever-content h5 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.achiever-content p {
  color: #cfd8ff;
  margin-bottom: 20px;
  font-size: 15px;
}

.achiever-btn {
  background: #fff;
  color: #0b1d3a;
}

/* RECORD DETAILS SECTION CSS */

.detailsImg {
    width: 100%;
    /*height: 380px;*/
    object-fit: cover;
    border-radius: 10px;
}
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}
.badge-custom {
    background: #0d6efd;
}
.related-card img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 8px;
}


/* FOOTER SECTION CSS */

.footer-section {
  background: #000;
  color: #fff;
  padding: 60px 0;
  font-size: 15px;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #f6b23c;
  margin-bottom: 20px;
}

.footer-text {
  color: #d9d9d9;
  line-height: 1.7;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #003366;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  font-size: 16px;
}

.footer-social a:hover {
  background: #f6b23c;
  color: #fff;
}

.footer-list {
  list-style: disc;
  padding-left: 18px;
}

.footer-list li {
  margin-bottom: 10px;
}
.footer-list li a{
  color: #d9d9d9;
  font-size: 15px;
  transition: all 0.3s ease-in;
}
.footer-list li a:hover{
 color: #f6b23c;
}
.recent-post-box img {
  border-radius: 6px;
}

.footer-contact p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact i {
  color: #f6b23c;
  margin-right: 8px;
}
.copyrights{
  text-align: center;
  padding: 15px 0;
  background-color: #031c32;
}
.copyrights p{
  color: #fff;
  margin-bottom: 0;
}



/* TESTIMONIAL CSS */

.testimonial-area {
	background-image: url('../images/section-bg-10.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  object-fit: fill;
	position: relative;
	padding: 50px 0;
}
.testimonial-area .owl-carousel {
	overflow: hidden;
	padding: 0 20px;
	margin: 0px -40px;
}
.testimonial-area .owl-stage-outer {
	padding: 30px 50px;
	margin-left: -34px;
	width: calc(100% + 100px);
}
.testimonial-area img {
	filter: invert(1);
}
.single-testimonial {
	border: 7px solid #031c32;
	text-align: center;
	border-radius: 45px;
	position: relative;
	z-index: 2;
}
.single-testimonial p {
	color: #031c32;
	font-size: 15px;
	line-height: 24px;
	padding: 50px;
	padding-bottom: 30px;
	position: relative;
	z-index: 3;
}
.single-testimonial::before {
	content: "";
	position: absolute;
	left: -20px;
	top: -35px;
	background: url(https://cdn-icons-png.flaticon.com/512/4338/4338294.png)
		no-repeat #f5f5f5;
	background-size: 60%;
	width: 126px;
	height: 100px;
	transform: rotate(180deg);
	background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -20px;
	bottom: -34px;
	background: url(https://cdn-icons-png.flaticon.com/512/4338/4338294.png)
		no-repeat #f5f5f5;
	background-size: 60%;
	width: 126px;
	height: 100px;
	background-position: 34px 19px;
}
.round {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
.round-1::before {
	content: "";
	position: absolute;
	left: 88px;
	top: -7px;
	width: 50px;
	height: 7px;
	background: #031c32;
	border-radius: 30px;
}
.round-1::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 62px;
	width: 7px;
	height: 50px;
	background: #031c32;
	border-radius: 30px;
}
.round-2::before {
	content: "";
	position: absolute;
	right: 87px;
	bottom: -7px;
	width: 50px;
	height: 7px;
	background: #031c32;
	border-radius: 30px;
	z-index: 1;
}
.round-2::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 62px;
	width: 7px;
	height: 50px;
	background: #031c32;
	border-radius: 30px;
	z-index: 1;
}
.client-video {
	padding-right: 15px;
}
.client-info {
	position: relative;
	z-index: 3;
}
.client-info a {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
	font-size: 22px;
}
.client-info {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	padding-bottom: 50px;
}
.client-info h6 {
	color: #000;
	font-weight: 700;
	font-size: 18px;
	color: #031c32;
}
.client-info span {
	display: inline-block;
	color: #031c32;
	font-size: 12px;
}
.sec-title.white-title h2 {
	color: #fff;
}
.owl-dots button {
	background: #031c32 !important;
	width: 10px;
	height: 10px;
	border-radius: 26px;
	margin: 0 5px;
	transition: 0.3s;
}
.owl-dots {
	text-align: center;
	margin-top: 50px;
}
.owl-dots button.active {
	width: 30px;
}
/* FIX Owl Carousel mobile issue */
@media (max-width: 767px) {

  .testimonial-area .owl-carousel {
    margin: 0;
    padding: 0;
  }

  .testimonial-area .owl-stage-outer {
    margin-left: 0;
    width: 100%;
    padding: 0;
  }

  .single-testimonial {
    margin: 0 auto;
  }
}


/* WELCOME SECTION CSS */

.welcome-section {
  background: #2b455c;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.welcome-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

.welcome-text {
  color: #cfd8dc;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 35px;
}

.welcome-btn {
  background: #55b59a;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.welcome-btn:hover {
  background: #48a388;
  color: #fff;
}

/* Side Decorative Bars */
.side-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 140px;
  background: #55b59a;
  border-radius: 6px;
}

.side-bar.left {
  left: 0;
}

.side-bar.right {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .side-bar {
    display: none;
  }
}


/* PROGRAMM SECTION CSS */

.program-section {
  background: #ffffff;
}

.section-subtitle {
  color: #5dbb9b;
  font-weight: 600;
  margin-bottom: 10px;
}

.sectionTitle {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-text {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}


.program-img {
  max-width: 90%;
}

.img-credit {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 8px;
}

/* Right Stats */
.stat-box h2 {
  color: #5dbb9b;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 17px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-box {
    text-align: center;
  }
}


.stepper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.step {
  width: 100%;
  text-align: center;
  padding: 10px 25px;
  border-radius: 30px;
  background: #e5e7eb;
  color: #6b7280;
  font-weight: 600;
  margin: 0 5px;
}

.step.active {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
}

.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-control {
  height: 48px;
}
.form-control:focus{
  border: solid 1px rgb(11, 11, 62);
  box-shadow:none;
}
.form-select:focus{
  border: solid 1px rgb(11, 11, 62);
  box-shadow:none;
}
.form-select {
  height: 48px;
}
.btn-next {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
}

.btn-prev {
  background: #e5e7eb;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

/* MISSION & VISSION CSS */

/* ===== Mission & Vision Section ===== */

.mission-vision-section {
  padding: 80px 0;
  background: #f7f9fc;
}

/* Card Styling */
.mv-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 40px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.vision-card {
  background: linear-gradient(135deg, #031c32, #031c32);
  color: #ffffff;
}

.vision-card p {
  color: #e8ecf3;
}

/* Icons */
.mv-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

/* Headings */
.mv-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0b2c5d;
}

.vision-card h3 {
  color: #ffffff;
}

/* List */
.mv-card ul {
  padding-left: 18px;
  margin: 0;
}

.mv-card ul li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #444;
}

.vision-card ul li {
  color: #e8ecf3;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-card {
    padding: 30px 25px;
  }
}


/* BOOK YOUR RECORD CSS */

.book-record-section {
  background: #f8fafc;
}

.book-record-section h2 span {
  color: #031c32;
}

/* APPLY FOR RECORD CSS */

.apply-record-section {
  background-color: #ffffff;
}

.record-category-box {
  background: #f8f9fa;
  border-left: 4px solid #031c32;
  padding: 12px 15px;
  border-radius: 6px;
  font-weight: 600;
  color: #031c32;
  height: 100%;
}

/* WHY SHOULD YOU APPLY CSS */

.why-apply-section {
  background: #f9fafc;
}

.why-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box h5 {
  font-weight: 700;
  color: #031c32;
  margin-bottom: 12px;
}

.why-box p,
.why-box ul {
  color: #555;
  margin-bottom: 0;
}

.why-box ul {
  padding-left: 18px;
  margin-top: 10px;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* GUIDANCE SECTION CSS */

.guidance-section {
  background: #ffffff;
}

.step-box {
  background: #f9fafc;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  border-left: 4px solid #031c32;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.step-box h5 {
  font-weight: 700;
  color: #031c32;
  margin-bottom: 10px;
}

.step-box ul {
  padding-left: 18px;
  margin-top: 10px;
}

.step-box.highlight {
  background: #031c32;
  color: #ffffff;
}

.step-box.highlight h5,
.step-box.highlight ul li {
  color: #ffffff;
}

.eligibility-box {
  background: #f3f6fa;
  padding: 30px;
  border-radius: 12px;
}

.eligibility-box ul li {
  margin: 5px 10px;
  font-weight: 600;
}

/* TEAM SECTION CSS */
/* 
.team-card {
  background: linear-gradient(180deg, #0a1b3d, #06142f);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.team-img {
  position: relative;
  overflow: hidden;
  padding: 15px;
}

.team-social {
  position: absolute;
  bottom: 15px;
  left: 59%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.70);
  padding: 10px 30px;
  display: flex;
  border-radius: 0 0 18px 0;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
/* ===== Judge / Ambassador Card ===== */

.team-card {
  background: #031c32;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Left Image Section */
.team-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
}

.team-image-bg {
  background: #ffffff;
  padding: 18px;
  border-radius: 24px;
}

.team-image-bg img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Right Content Section */
.team-content {
  padding: 35px 40px;
  color: #ffffff;
}

.team-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #f7b500;
  margin-bottom: 18px;
}

.team-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #e6ecf5;
  max-width: 95%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-content {
    padding: 30px;
  }

  .team-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .team-card {
    text-align: center;
  }

  .team-content {
    padding: 25px 20px;
  }

  .team-content p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .team-image-wrapper {
    padding: 25px 15px;
  }

  .team-content h3 {
    font-size: 22px;
  }

  .team-content h5 {
    font-size: 16px;
  }
}

/* Hover colors */
.team-social a:hover {
  background: #f6b23c;
  color: #000;
}

.team-img img {
  width: 100%;
  border-radius: 18px;
  background: #fff;
}

.team-logo {
  position: absolute;
  bottom: 8px;
  left: 9px;
  border: 8px solid #031c32;
  background: #ffffff;
  border-radius: 0 15px 0 0;
  padding: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.team-logo img {
  width: 40px;
}

.team-content {
  padding: 20px;
}

.team-content h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
}

.team-content .designation {
  color: #f6b23c;
  font-size: 16px;
  margin-bottom: 10px;
}

.team-content .company {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
} */


/* CONTACT FORM CSS */

.contact-modern {
  background: #faf0e2;
}

.contact-modern h2 {
  font-size: 2rem;
  color: #1d1d1f;
}

.input-group-text {
  border: none;
  background: #f6f6f6;
}

.contact-info .icon-box {
  width: 40px;
  height: 40px;
  background: #ffe0b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b7791f;
}

.contact-image img {
  object-fit: cover;
}

/* MAP SECTION CSS */

.map-section {
  background: #f9fafb;
}

.map-box iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* LOADING ANIMATION CSS */

/* ===== Page Loader ===== */

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b2c5d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Loader Content */
.loader-content {
  text-align: center;
  color: #ffffff;
  animation: fadeScale 1.2s ease;
}

/* Ring Animation */
.loader-ring {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #f5b942;
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: spin 1s linear infinite;
}

/* Text */
.loader-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.loader-content p {
  font-size: 14px;
  opacity: 0.85;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* PAGINATION CSS */
.page-link {
  color: #031c32;
}
.page-item.active .page-link {
  color: #fff;
  background-color: #031c32;
  border-color: #031c32;
}