* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Inter', sans-serif;
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

body {
  background-color: var(--light-bg);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1350px !important;
  margin: 0 auto;
  
}

.section-padding {
  padding: 80px 0;
}

/* Top Bar */
.top-bar {
  background: #000080;
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  /* border-bottom: 2px solid var(--highlight); */
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 25px;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--highlight);
}

.top-bar .social-links {
  display: flex;
  gap: 15px;
  margin-top: 0;
  align-items: center;
}

.social-links a {
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--highlight);
  transform: translateY(-2px);
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 120px;
}


.logo2 img {
  height: 90px;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-colour);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--secondary-colour);
  box-shadow: 0 0 15px rgba(8, 164, 245, 0.3);
}

.logo-icon i {
  font-size: 32px;
  color: var(--white);
}

.logo-text h1 {
  color: var(--primary-colour);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.logo-text p {
  color: var(--secondary-colour);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.btn-primary-colour {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(241, 90, 36, 0.2);
}

.btn-primary-colour:hover {
  background: var(--primary-colour);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation */
.header-nav-wrapper {
  background: var(--primary-colour);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menuzord-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menuzord-responsive {
  display: flex;
  justify-content: space-between;
}

.menuzord-menu > li {
  position: relative;
  height: 50px;
}

.menuzord-menu > li > a {
  color: var(--white);
  text-decoration: none;
  padding: 13px 15px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.menuzord-menu > li > a:hover,
.menuzord-menu > li.active > a {
  background: var(--secondary-colour);
  color: white;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 0px;
  left: 0;
  background: var(--primary-colour);
  width: 160px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1001;
}

.menuzord-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  padding-left: 0;
  transform: translateY(0);
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown li a:hover {
  background: var(--secondary-colour);
  color: var(--white);
  padding-left: 25px;
}

.indicator {
  margin-left: 25px;
}

/* Career Booklet Button */
.btn-r {
  display: flex;
  align-items: center;
}

.btn-colored {
  background: var(--accent) !important;
  color: var(--white) !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-colored:hover {
  background: var(--secondary-colour) !important;
  /* transform: translateY(-2px); */
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: var(--primary-colour);
  color: var(--white);
  border: none;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
}

.mobile-menu-btn i {
  margin-right: 10px;
}

.mobile-nav {
  display: none;
  background: var(--primary-colour);
}

.mobile-nav.show {
  display: block;
}

.mobile-nav .menuzord-menu {
  flex-direction: column;
}

.mobile-nav .menuzord-menu > li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.1);
  display: none;
}

.mobile-nav .dropdown.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .menuzord-menu > li > a {
    padding: 18px 15px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header-nav-wrapper .container > nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-r {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .logo-text h1 {
    font-size: 24px;
  }

  .logo-icon {
    width: 60px;
    height: 60px;
  }

  .logo-icon i {
    font-size: 26px;
  }
}

:root {
  --primary-colour: #134b9a !important;
  --secondary-colour: #08a4f5 !important;
  --accent: #00a54e !important;
  --highlight: #feed00 !important;
  --cta: #f15a24 !important;
  --white: #ffffff !important;
  --dark: #333333 !important;
}

/* Clean Banner Section */
.home-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

.home-banner-swiper {
  width: 100%;
  height: 100%;
}

.home-banner-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* Navigation Dots - Bottom Left */
.home-banner-pagination {
  position: absolute;
  bottom: 10px !important;
  left: 40px !important;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.home-banner-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-banner-bullet-active {
  background: var(--white);
  transform: scale(1.2);
}

.home-banner-bullet:hover {
  background: var(--white);
}

/* Counter - Bottom Right */
.home-banner-counter {
  position: absolute;
  bottom: 10px;
  right: 40px;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Arial", sans-serif;
}

/* Navigation Arrows */
.home-banner-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.home-banner-button:hover {
  background: var(--primary-colour);
  border-color: var(--white);
}

.home-banner-button-next {
  right: 40px;
}

.home-banner-button-prev {
  left: 40px;
}

.home-banner-button i {
  font-size: 20px;
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-banner {
    height: 80vh;
  }

  .home-banner-pagination {
    bottom: 20px !important;
    left: 20px !important;
  }

  .home-banner-counter {
    bottom: 20px;
    right: 20px;
    font-size: 14px;
  }

  .home-banner-button {
    width: 40px;
    height: 40px;
  }

  .home-banner-button-next {
    right: 20px;
  }

  .home-banner-button-prev {
    left: 20px;
  }

  .home-banner-button i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .home-banner {
    height: 70vh;
  }

  .home-banner-bullet {
    width: 10px;
    height: 10px;
  }

  .home-banner-counter {
    font-size: 12px;
    padding: 6px 12px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --dark: #333333;
}

.footer {
  position: relative;
  width: 100%;
  background-color: var(--dark);
  overflow: hidden;
  color: var(--white);
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/footer.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-colour);
  opacity: 0.85;
  z-index: 2;
}

.footer-content {
  position: relative;
  z-index: 3;
  padding: 0rem 0rem 2rem;
  max-width: 1350px;
  margin: 0 auto;
}

/* .footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
} */

.footer-column h3 {
  color: var(--highlight);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-colour);
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: var(--highlight);
}

.footer-column ul li a i {
  margin-right: 0.5rem;
  color: var(--secondary-colour);
}

.footer-column p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-colour);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  justify-content: space-between;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--highlight);
}
.footer-bottom a:hover {
  color: var(--secondary-colour);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--highlight);
}

@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 1.5rem 1.5rem;
  }

  /* .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  } */

  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 2rem 1rem 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.header-buttons .btn {
  background-color: var(--primary-colour);
  color: white;
  width: fit-content;
  padding: 10px 15px;
}

.header-buttons .btn:hover {
  background-color: var(--cta);
  color: white;
}

.btn-theme-colored2 {
  background-color: var(--accent) !important;
  color: white !important;
}

.btn-theme-colored2:hover {
  background-color: var(--secondary-colour) !important;
  color: white !important;
  transform: none;
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

 
.section-padding {
  padding: 80px 0;
}

.home-about {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.home-about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}



.home-about .section-subtitle {
  display: inline-block;
  color: var(--secondary-colour);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0px;
  position: relative;
}

.home-about .about-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-colour);
  margin-bottom: 20px;
}

.home-about .about-text {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.8;
}

.home-about .features-list ul {
  list-style: none;
  padding: 0;
}

.home-about .features-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 16px;
  color: var(--dark);
}

.home-about .features-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
}

.home-about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-about .stat-item {
  text-align: center;
  padding: 10px 5px 5px;
  /* background-color: var(--light-bg); */
  /* border-radius: 8px; */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  transition: transform 0.3s ease;
  margin-bottom: 0px;
  border-bottom: 3px dashed var(--accent);
}

.home-about .stat-item:hover {
  transform: translateY(-5px);
}

.home-about .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-colour);
  margin-bottom: 5px;
}

.home-about .stat-title {
  font-size: 14px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}




@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .home-about .about-heading {
    font-size: 22px;
  }

  .home-about .stat-number {
    font-size: 28px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.home-course {
  background-color: var(--primary-colour);
  padding: 80px 0;
  position: relative;
}

.home-course .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.home-course .title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.text-theme-colored2 {
  color: var(--highlight) !important;
}

.home-course .double-line-bottom-theme-colored-2 {
  height: 3px;
  width: 80px;
  background: var(--highlight);
  margin: 0 auto;
  position: relative;
}

.home-course .double-line-bottom-theme-colored-2::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  height: 3px;
  width: 80px;
  background: var(--highlight);
  opacity: 0.7;
}

.home-course .course-single-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-course .course-single-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.home-course .course-thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.home-course .course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-course .course-single-item:hover .course-thumb img {
  transform: scale(1.05);
}

.home-course .course-details {
  padding: 20px;
  min-height: 90px;
}

.home-course .course-top-part {
  width: 100%;
}

.home-course .course-top-part a {
  text-decoration: none;
}

.home-course .course-top-part h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-colour);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.home-course .course-top-part a:hover h4 {
  color: var(--secondary-colour);
}

/* Swiper Styles */
.home-course .swiper {
  width: 100%;
  padding: 20px 0 40px;
}

.home-course .swiper-slide {
  height: auto;
}

.home-course .swiper-button-prev,
.home-course .swiper-button-next {
  color: var(--white);
  background: var(--secondary-colour);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.home-course .swiper-button-prev:hover,
.home-course .swiper-button-next:hover {
  background: var(--highlight);
  color: var(--dark);
}

.home-course .swiper-button-prev::after,
.home-course .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.home-course .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
  opacity: 0.5;
}

.home-course .swiper-pagination-bullet-active {
  background: var(--highlight);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-course .title {
    font-size: 32px;
  }

  .home-course .course-top-part h4 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .home-course {
    padding: 60px 0;
  }

  .home-course .title {
    font-size: 28px;
  }

  .home-course .swiper-button-prev,
  .home-course .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .home-course .swiper-button-prev::after,
  .home-course .swiper-button-next::after {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .home-course {
    padding: 40px 0;
  }

  .home-course .title {
    font-size: 24px;
  }

  .home-course .course-top-part h4 {
    font-size: 16px;
  }

  .home-course .swiper-button-prev,
  .home-course .swiper-button-next {
    display: none;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.latest-faq-sec {
  /* padding: 80px 0; */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.latest-faq-sec .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.latest-faq-sec .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-colour);
  margin-bottom: 20px;
  position: relative;
}

.latest-faq-sec .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--secondary-colour),
    var(--highlight)
  );
  border-radius: 2px;
}

.latest-faq-sec .section-title .text-theme-colored2 {
  color: var(--secondary-colour);
}

/* Latest News Styles */
.latest-faq-sec .latest-news-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  /* height: 100%; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-faq-sec .latest-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.latest-faq-sec .latest-news-header {
  background: linear-gradient(
    135deg,
    var(--primary-colour) 0%,
    var(--secondary-colour) 100%
  );
  color: var(--white);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.latest-faq-sec .latest-news-header::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.latest-faq-sec .latest-news-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.latest-faq-sec .latest-news-header i {
  font-size: 28px;
  color: var(--highlight);
  position: relative;
  z-index: 1;
  animation: pulse 2s infinite;
}

/* .latest-faq-sec:nth-child(odd) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.latest-faq-sec:nth-child(even) {
    background: #ffffff;
} */

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.latest-faq-sec .news-scroll-container {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.latest-faq-sec .news-scroll {
  position: absolute;
  width: 100%;
  animation: scrollUp 40s linear infinite;
}

.latest-faq-sec .news-item {
  padding: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.latest-faq-sec .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: var(--secondary-colour);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.latest-faq-sec .news-item:hover {
  background-color: rgba(8, 164, 245, 0.05);
}

.latest-faq-sec .news-item:hover::before {
  opacity: 1;
}

.latest-faq-sec .news-icon {
  width: 50px;
  height: 50px;
  background: rgba(8, 164, 245, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.latest-faq-sec .news-icon i {
  color: var(--secondary-colour);
  font-size: 20px;
}

.latest-faq-sec .news-content {
  flex: 1;
}

.latest-faq-sec .news-date {
  font-size: 14px;
  color: var(--secondary-colour);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.latest-faq-sec .news-date i {
  margin-right: 5px;
}

.latest-faq-sec .news-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-colour);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.latest-faq-sec .news-excerpt {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}

.latest-faq-sec .news-item:hover .news-title {
  color: var(--secondary-colour);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.latest-faq-sec .news-scroll:hover {
  animation-play-state: paused;
}

/* FAQ Styles */
.latest-faq-sec .faq-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-faq-sec .faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.latest-faq-sec .faq-header {
  background: linear-gradient(
    135deg,
    var(--primary-colour) 0%,
    var(--secondary-colour) 100%
  );
  color: var(--white);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.latest-faq-sec .faq-header::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.latest-faq-sec .faq-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.latest-faq-sec .faq-header i {
  font-size: 28px;
  color: var(--highlight);
  position: relative;
  z-index: 1;
  animation: pulse 2s infinite;
}

.latest-faq-sec .accordion {
  padding: 0;
}

.latest-faq-sec .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: transparent;
}

.latest-faq-sec .accordion-button {
  background-color: transparent;
  color: var(--primary-colour);
  font-weight: 600;
  font-size: 17px;
  padding: 20px 25px;
  box-shadow: none;
  position: relative;
  transition: all 0.3s ease;
}

.latest-faq-sec .accordion-button:not(.collapsed) {
  background-color: rgba(8, 164, 245, 0.08);
  color: var(--primary-colour);
}

.latest-faq-sec .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.05);
}

.latest-faq-sec .accordion-button::after {
  content: "+";
  background-image: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-colour);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.latest-faq-sec .accordion-button:not(.collapsed)::after {
  content: "-";
  background: var(--cta);
  transform: rotate(0deg);
}

.latest-faq-sec .accordion-body {
  padding: 0 25px 25px;
  color: var(--dark);
  line-height: 1.7;
  font-size: 15px;
}

.latest-faq-sec .read-more-btn {
  display: block;
  width: 200px;
  padding: 14px;
  background: var(--cta);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 25px auto;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(241, 90, 36, 0.3);
}

.latest-faq-sec .read-more-btn:hover {
  background: var(--primary-colour);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(19, 75, 154, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .latest-faq-sec {
    padding: 60px 0;
  }

  .latest-faq-sec .section-title h2 {
    font-size: 36px;
  }

  .latest-faq-sec .news-scroll-container {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .latest-faq-sec {
    padding: 50px 0;
  }

  .latest-faq-sec .section-title h2 {
    font-size: 32px;
  }

  .latest-faq-sec .news-scroll-container {
    height: 350px;
  }

  .latest-faq-sec .latest-news-header h3,
  .latest-faq-sec .faq-header h3 {
    font-size: 22px;
  }

  .latest-faq-sec .news-item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .latest-faq-sec {
    padding: 40px 0;
  }

  .latest-faq-sec .section-title h2 {
    font-size: 28px;
  }

  .latest-faq-sec .news-scroll-container {
    height: 320px;
  }

  .latest-faq-sec .news-title {
    font-size: 16px;
  }

  .latest-faq-sec .accordion-button {
    font-size: 16px;
    padding: 18px 20px;
  }

  .latest-faq-sec .news-icon {
    width: 40px;
    height: 40px;
  }

  .latest-faq-sec .news-icon i {
    font-size: 16px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.our-clg-hstl {
  background: linear-gradient(135deg, #0a2a5a 0%, #134b9a 50%, #08a4f5 100%);
  position: relative;
}

.our-clg-hstl .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.our-clg-hstl .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.our-clg-hstl .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--highlight), var(--cta));
  border-radius: 2px;
}

.our-clg-hstl .section-title .text-theme-colored2 {
  color: var(--highlight);
}

.our-clg-hstl .colleges-container {
  position: relative;
  z-index: 1;
}

.our-clg-hstl .college-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  transition: all 0.6s ease;
}

.our-clg-hstl .college-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
  transform-origin: center;
  will-change: transform, flex;
  min-height: 400px;
}

.our-clg-hstl .college-card:hover {
  /* transform: translateY(-5px) scale(1.02); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  flex: 0 0 30%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
  height: 100%;
}

/* Smooth transition for non-hovered cards */
.our-clg-hstl .college-row:hover .college-card:not(:hover) {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 0.8;
}

.our-clg-hstl .college-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.our-clg-hstl .college-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.our-clg-hstl .college-card:hover .college-image img {
  transform: scale(1.08);
}

.our-clg-hstl .college-name {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 15px 10px;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.6s ease;
  /* min-height: 75px; */
}

.our-clg-hstl .college-card:hover .college-name {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 10px;
  font-size: 20px;
}

/* Tablet Styles */
@media (max-width: 1200px) {
  .our-clg-hstl .college-row {
    flex-wrap: wrap;
  }

  .our-clg-hstl .college-card {
    flex: 1 1 calc(33.333% - 15px) !important;
    min-width: calc(33.333% - 15px);
  }

  .our-clg-hstl .college-card:hover {
    flex: 1 1 calc(33.333% - 15px) !important;
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 992px) {
  .our-clg-hstl .college-row {
    flex-wrap: wrap;
  }

  .our-clg-hstl .college-card {
    flex: 1 1 calc(50% - 15px) !important;
    min-width: calc(50% - 15px);
  }

  .our-clg-hstl .college-card:hover {
    flex: 1 1 calc(50% - 15px) !important;
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .our-clg-hstl {
    padding: 60px 0;
  }

  .our-clg-hstl .section-title h2 {
    font-size: 36px;
  }

  .our-clg-hstl .college-card {
    flex: 1 1 calc(50% - 15px) !important;
    min-width: calc(50% - 15px);
  }

  .our-clg-hstl .college-card:hover {
    flex: 1 1 calc(50% - 15px) !important;
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 576px) {
  .our-clg-hstl {
    padding: 40px 0;
  }

  .our-clg-hstl .section-title h2 {
    font-size: 32px;
  }

  .our-clg-hstl .college-card {
    flex: 1 1 100% !important;
    min-width: 100%;
  }

  .our-clg-hstl .college-card:hover {
    flex: 1 1 100% !important;
    transform: translateY(-5px) scale(1.02);
  }

  .our-clg-hstl .college-name {
    font-size: 16px;
    padding: 12px 10px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.faci-offer-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

/* .faci-offer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
} */

.faci-offer-row {
  display: flex;
  flex-wrap: wrap;
  /* margin: 0 -15px; */
  align-items: center;
}

.faci-offer-col {
  padding: 0 15px;
}

.faci-offer-col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.faci-offer-col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.faci-offer-section-title {
  margin-bottom: 0px;
}

.faci-offer-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
}

.faci-offer-section-title .faci-offer-text-theme-colored2 {
  color: var(--primary-colour);
}

.faci-offer-double-line-bottom {
  height: 3px;
  width: 80px;
  background: linear-gradient(
    to right,
    var(--primary-colour),
    var(--secondary-colour)
  );
  margin-top: 10px;
}

.faci-offer-content {
  margin-bottom: 30px;
}

.faci-offer-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 25px;
}

.faci-offer-btn {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.faci-offer-btn:hover {
  background: var(--primary-colour);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faci-offer-cards-container {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.faci-offer-card-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* margin: 0 -15px; */
}

.faci-offer-card-col {
  padding: 7px;
  flex: 0 0 50%;
  max-width: 50%;
}

.faci-offer-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faci-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faci-offer-card-image {
  height: 200px;
  overflow: hidden;
}

.faci-offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faci-offer-card:hover .faci-offer-card-image img {
  transform: scale(1.05);
}

.faci-offer-card-content {
  padding: 7px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.faci-offer-card-title {
  margin-bottom: 0px;
  text-align: center;
}

.faci-offer-card-title {
  color: var(--primary-colour);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

a {
  text-decoration: none !important;
}
.faci-offer-card-title:hover {
  color: var(--secondary-colour);
}

.faci-offer-card-link {
  margin-top: auto;
  text-align: right;
}

.faci-offer-card-link a {
  color: var(--primary-colour);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.faci-offer-card-link a:hover {
  color: var(--cta);
  transform: translateX(3px);
}

.faci-offer-card-link a::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.faci-offer-card-link a:hover::after {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .faci-offer-col-lg-4,
  .faci-offer-col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faci-offer-col-lg-4 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .faci-offer-section {
    padding: 60px 0;
  }

  .faci-offer-section-title h2 {
    font-size: 32px;
  }

  .faci-offer-card-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .faci-offer-section {
    padding: 40px 0;
  }

  .faci-offer-section-title h2 {
    font-size: 28px;
  }

  .faci-offer-content p {
    font-size: 15px;
  }

  .faci-offer-card-content {
    padding: 15px;
  }

  .faci-offer-card-title a {
    font-size: 16px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.home-gallery-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.home-gallery-section-title {
  text-align: center;
  margin-bottom: 0px;
}

.light-bg h2 {
  color: var(--primary-colour) !important;
}

.home-gallery-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
}

.home-gallery-section-title .home-gallery-text-theme-colored2 {
  color: var(--primary-colour);
}

.home-gallery-double-line-bottom {
  height: 3px;
  width: 80px;
  background: linear-gradient(
    to right,
    var(--primary-colour),
    var(--secondary-colour)
  );
  margin: 0 auto;
  margin-top: 10px;
}

.home-gallery-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.home-gallery-col {
  padding: 10px;
  flex: 0 0 25%;
  max-width: 25%;
}

.home-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.home-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.home-gallery-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.home-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-gallery-item:hover .home-gallery-image img {
  transform: scale(1.05);
}

.home-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 75, 154, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.home-gallery-item:hover .home-gallery-overlay {
  opacity: 1;
}

.home-gallery-icon {
  color: var(--white);
  font-size: 30px;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.home-gallery-item:hover .home-gallery-icon {
  transform: scale(1);
}

/* Fancybox customization */
.fancybox-slide--image .fancybox-content {
  border-radius: 8px;
  overflow: hidden;
}

.fancybox-toolbar {
  background: rgba(0, 0, 0, 0.3);
}

.fancybox-button {
  background: rgba(255, 255, 255, 0.2);
}

.fancybox-button:hover {
  background: var(--primary-colour);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-gallery-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 768px) {
  .home-gallery-section {
    padding: 60px 0;
  }

  .home-gallery-section-title h2 {
    font-size: 32px;
  }

  .home-gallery-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .home-gallery-section {
    padding: 40px 0;
  }

  .home-gallery-section-title h2 {
    font-size: 28px;
  }

  .home-gallery-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home-gallery-image {
    height: 300px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.recent-job-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2a5a 0%, #134b9a 50%, #08a4f5 100%);
  position: relative;
}

.recent-job-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}

.recent-job-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.recent-job-col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.recent-job-col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}

.recent-job-section-title {
  margin-bottom: 30px;
}

.recent-job-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.recent-job-section-title .recent-job-text-theme-colored2 {
  color: var(--highlight);
}

.recent-job-double-line-bottom {
  height: 3px;
  width: 80px;
  background: linear-gradient(to right, var(--highlight), var(--cta));
  margin-top: 10px;
}

.recent-job-content {
  color: var(--white);
  margin-top: 0px;
}

.recent-job-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.recent-job-slider-container {
  position: relative;
  padding: 0 0px;
}

.recent-job-swiper {
  overflow: hidden;
  padding: 10px 0;
}

.recent-job-slide {
  height: auto;
}

.recent-job-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.recent-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.recent-job-card-header {
  padding: 20px 20px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-job-count {
  font-size: 48px;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 5px;
  margin-top: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.recent-job-count-label {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recent-job-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 125px;
}

.recent-job-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.recent-job-location {
  display: flex;
  align-items: center;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.recent-job-location-icon {
  margin-right: 8px;
  color: var(--highlight);
  font-size: 14px;
}

.recent-job-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--cta);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recent-job-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.recent-job-button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-colour);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  border: none;
  font-size: 14px;
  line-height: 25;
}

.recent-job-button:hover {
  background: var(--highlight);
  transform: scale(1.1);
}

.recent-job-button-prev {
  left: -25px;
}

.recent-job-button-next {
  right: -25px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .recent-job-col-lg-3,
  .recent-job-col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .recent-job-col-lg-3 {
    margin-bottom: 40px;
  }

  .recent-job-slider-container {
    padding: 0 20px;
  }

  .recent-job-button-prev {
    left: -15px;
  }

  .recent-job-button-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .recent-job-section {
    padding: 60px 0;
  }

  .recent-job-section-title h2 {
    font-size: 32px;
  }

  .recent-job-slider-container {
    padding: 0 10px;
  }

  .recent-job-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .recent-job-button-prev {
    left: -10px;
  }

  .recent-job-button-next {
    right: -10px;
  }
}

@media (max-width: 576px) {
  .recent-job-section {
    padding: 40px 0;
  }

  .recent-job-section-title h2 {
    font-size: 28px;
  }

  .recent-job-count {
    font-size: 36px;
  }

  .recent-job-title {
    font-size: 18px;
  }

  .recent-job-card-header {
    padding: 15px 15px 8px;
  }

  .recent-job-card-body {
    padding: 15px;
  }
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.home-social-media-section {
  padding: 80px 0;
  background: #e9e9e9;
}

.home-social-media-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}

.home-social-media-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.home-social-media-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.home-social-media-section-title .home-social-media-text-theme-colored2 {
  color: var(--highlight);
}

.home-social-media-double-line-bottom {
  height: 3px;
  width: 80px;
  background: linear-gradient(to right, var(--highlight), var(--cta));
  margin: 0 auto;
  margin-top: 10px;
}

.home-social-media-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.home-social-media-col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.home-social-media-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-social-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.home-social-media-header {
  padding: 15px;
  color: white;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.home-social-media-content {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.home-social-media-content iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.home-social-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
}

.home-social-media-placeholder-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--gray);
}

.home-social-media-placeholder-text {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 20px;
}

.home-social-media-btn {
  display: inline-block;
  background: var(--primary-colour);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.home-social-media-btn:hover {
  background: var(--cta);
  transform: translateY(-2px);
}

/* Platform specific styles */
.home-social-media-facebook-card .home-social-media-header {
  background-color: #3b5998;
}

.home-social-media-instagram-card .home-social-media-header {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.home-social-media-twitter-card .home-social-media-header {
  background-color: #ff0033;
}

.home-social-media-linkedin-card .home-social-media-header {
  background-color: #0077b5;
}

.home-social-media-youtube-card .home-social-media-header {
  background-color: #ff0000;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-social-media-col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .home-social-media-section {
    padding: 60px 0;
  }

  .home-social-media-section-title {
    font-size: 32px;
  }

  .home-social-media-col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home-social-media-card {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .home-social-media-section {
    padding: 40px 0;
  }

  .home-social-media-section-title {
    font-size: 28px;
  }

  .home-social-media-card {
    height: 350px;
  }

  .home-social-media-header {
    font-size: 14px;
    padding: 12px;
  }
}

.home-social-media-content img {
  object-fit: contain;
  width: 100%;
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.footer-above {
 background: linear-gradient(135deg, var(--primary-colour), var(--secondary-colour)); 
  padding: 30px 0px;
  overflow: hidden;
  position: relative;
  background-color: #08a4f5;
}

.scroll-text {
  white-space: nowrap;
  display: inline-block;
  animation: scroll-left 40s linear infinite;
}

.footer-above h1 {
  color: #feed00;
  font-size: 50px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* 🔁 Continuous scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 🔹 Responsive typography */
@media (max-width: 992px) {
  .footer-above h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .footer-above h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .footer-above h1 {
    font-size: 1.2rem;
  }
}

.footer-above h1 {
  font-family: "Noto Sans Telugu", sans-serif;
}

.gal-bal {
  display: flex !important;
  justify-content: center !important;
  margin-top: 30px;
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

#reservation {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("../images/footer.png");
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  /* color: var(--white); */
  position: relative;
}

  
.enq {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-center img {
  max-width: 700px;
  margin-bottom: 0rem;
}

.mt-30 {
  margin-top: 30px;
}

.sm-text-center {
  text-align: center;
}

.col-xs-12 {
  width: 100%;
}

.col-sm-4 {
  width: 33.333%;
}

.col-md-4 {
  width: 33.333%;
}

.mb-md-50 {
  margin-bottom: 50px;
}

.funfact {
  padding: 1.5rem 10px;
  transition: transform 0.3s ease;
}

.funfact:hover {
  transform: translateY(-5px);
}

.funfact i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: #134b9a;
}

.mb-20 {
  margin-bottom: 20px;
}

.text-white {
  color: var(--white);
}

.font-38 {
  font-size: 2.375rem;
}

.font-weight-400 {
  font-weight: 400;
}

.mt-0 {
  margin-top: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

.text-uppercase {
  text-transform: uppercase;
}

.p-30 {
  padding: 30px;
}

.mt-0 {
  margin-top: 0;
}

.bg-dark-transparent-2 {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.title-pattern {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.title-pattern:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.text-theme-colored2 {
  color: var(--accent);
}

.reservation-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.styled-select {
  position: relative;
}

.styled-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.date-picker {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .col-md-6 {
    width: 100%;
  }

  .enq {
    margin-bottom: 3rem;
  }

  .funfact i {
    font-size: 2.5rem;
  }

  .font-38 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #reservation {
    padding: 3rem 0;
  }

  .col-sm-4 {
    width: 100%;
  }

  .funfact {
    margin-bottom: 1.5rem;
  }

  .p-30 {
    padding: 20px;
  }

  .title-pattern {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  #reservation {
    padding: 2rem 0;
  }

 

  .text-center img {
    max-width: 150px;
  }

  .funfact i {
    font-size: 2rem;
  }

  .font-38 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Telugu:wght@400;600;700&display=swap");

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --white: #ffffff;
  --gray: #6c757d;
}

/* 🔹 Hide message bar by default */
.under-dev {
  display: none;
}

/* 🔹 Show main site by default */
.main-website {
  display: block;
}

:root {
  --primary-colour: #134b9a;
  --secondary-colour: #08a4f5;
  --accent: #00a54e;
  --highlight: #feed00;
  --cta: #f15a24;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

/* Achievements Heading Style */
.achievements-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  text-align: center;
  /* width: 100%; */
}

.text-theme-colored1 {
  color: var(--accent);
}

.achievements-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.achievements-heading .line-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-colour) 10%,
    var(--primary-colour) 90%,
    transparent 100%
  );
}

.achievements-heading .moving-circle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-colour);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: move-circle-very-slow 8s linear infinite;
  box-shadow: 0 0 0 4px rgba(36, 132, 241, 0.3);
}


/* Animation */
@keyframes move-circle-very-slow {
  0% {
    left: 0%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .achievements-heading {
    font-size: 2.2rem;
    padding-bottom: 35px;
  }
}

@media (max-width: 576px) {
  .achievements-heading {
    font-size: 1.8rem;
    padding-bottom: 30px;
  }

  .achievements-heading .moving-circle {
    width: 14px;
    height: 14px;
  }
}

.news-scroll-container:hover .news-scroll {
  animation: none; /* stop animation completely */
  transform: translateY(0); /* reset to top */
  overflow-y: auto; /* allow manual scroll */
}

.news-scroll-container:hover {
  overflow-y: auto;
}

.news-scroll-container:not(:hover) .news-scroll {
  animation: scrollUp 25s linear infinite;
}

.news-scroll-container {
  height: 400px; /* adjust as needed */
  overflow: hidden;
  position: relative;
}

.news-scroll {
  display: flex;
  flex-direction: column;
  animation: scrollUp 25s linear infinite;
}

.news-scroll-container:hover {
  overflow-y: auto; /* enable manual scroll on hover */
}

.news-scroll-container:hover .news-scroll {
  animation-play-state: paused; /* pause auto scroll when hovered */
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* adjust based on duplicate content height */
  }
}

/* Optional: smooth scrollbar styling */
.news-scroll-container::-webkit-scrollbar {
  width: 6px;
}
.news-scroll-container::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 3px;
}

/* Mobile Logo and Menu Button */


.mobile-logo-menu .logo img {
  height: 40px;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-colour);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--secondary-colour);
}

/* Off-Canvas Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1001;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .menuzord-menu {
  flex-direction: column;
  padding: 20px 0;
  list-style: none;
}

.mobile-nav .menuzord-menu li a {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav .menuzord-menu li a:hover {
  background-color: var(--light-bg);
  color: var(--primary-colour);
}

.mobile-nav .menuzord-menu li.active a {
  color: var(--primary-colour);
  font-weight: 600;
  background-color: rgba(19, 75, 154, 0.05);
}

.mobile-nav .dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.02);
  display: none;
}

.mobile-nav .dropdown.active {
  display: block;
}

.mobile-nav .btn-r {
  padding: 20px;
  margin-top: auto;
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.mobile-nav-close {
  position: absolute;
  top: 0px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  color: var(--cta);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .menuzord-menu {
    display: none;
  }

  .pull-right {
    display: none;
  }

  .mobile-logo-menu {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}





/* ALTERNATIVE GRID SOLUTION */
.mobile-nav .menuzord-menu {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.mobile-nav .menuzord-menu li {
    display: contents; /* This makes children participate in grid */
}

.mobile-nav .menuzord-menu > li > a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    grid-column: 1;
}

.mobile-nav .dropdown {
    grid-column: 1;
    display: none !important;
    width: 100% !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-nav .dropdown.active {
    display: block !important;
    max-height: 200px;
}

.mobile-nav .dropdown li a {
    padding: 12px 20px 12px 40px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex !important;
    align-items: center;
    width: 100%;
    color: var(--dark);
    text-decoration: none;
}



@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


.funfact h2{
  font-size: 32px;
}














/* Director Message Dark Theme */
.director-message-inn {
  padding: 100px 0;
  position: relative;
  overflow: visible !important;
  background: linear-gradient(135deg, #0a3a7a 0%, #134b9a 50%, #083a73 100%);
  color: var(--white);
}

/* Background decorative elements */
.director-message-inn__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

/* .director-message-inn__bg-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--secondary-colour) 0%, var(--cta) 100%);
  top: -150px;
  left: -150px;
  filter: blur(20px);
}

.director-message-inn__bg-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -100px;
  right: -100px;
  filter: blur(15px);
}

.director-message-inn__bg-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--highlight);
  top: 30%;
  right: 10%;
  opacity: 0.1;
  filter: blur(10px);
} */

.director-message-inn .container {
  position: relative;
  z-index: 2;
}

/* Director Info Card Styles */
.director-message-inn__director-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: sticky;
  z-index: 2;
  border: none;
  backdrop-filter: blur(10px);
}

.director-message-inn__director-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 1);
}

.director-message-inn__director-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 390px;
  border-radius: 10px 10px 0 0;
}

.director-message-inn__director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.director-message-inn__director-card:hover .director-message-inn__director-img {
  transform: scale(1.05);
}

.director-message-inn__director-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(19, 75, 154, 0.7), transparent);
}

.director-message-inn__director-info {
  padding: 30px;
  text-align: center;
  position: relative;
}

.director-message-inn__director-name {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(
    to right,
    var(--primary-colour),
    var(--secondary-colour)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.director-message-inn__director-designation {
  font-size: 1.15rem;
  color: var(--secondary-colour);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.director-message-inn__director-designation::before,
.director-message-inn__director-designation::after {
  content: "•";
  position: absolute;
  color: var(--primary-colour);
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.director-message-inn__director-designation::before {
  left: 0;
}

.director-message-inn__director-designation::after {
  right: 0;
}

/* Message Content Styles */
.director-message-inn__message-header {
  margin-bottom: 0px;
  position: relative;
}

.director-message-inn__message-title {
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  text-align: center;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.director-message-inn__message-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary-colour);
  border-radius: 2px;
}

.director-message-inn__message-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.director-message-inn__message-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.director-message-inn__message-text p {
  margin-bottom: 20px;
}

.director-message-inn__message-highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(8, 164, 245, 0.15) 100%
  );
  border-left: 5px solid var(--secondary-colour);
  padding: 25px;
  margin: 0px 0;
  border-radius: 0 12px 12px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.director-message-inn__message-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 0 100%;
}

.director-message-inn__message-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0;
}

.director-message-inn__stat-item {
  flex: 1;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.director-message-inn__stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-colour), var(--secondary-colour));
}

.director-message-inn__stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 1);
}

.director-message-inn__stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-colour), var(--secondary-colour));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.director-message-inn__stat-text {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
}

/* View More Button */
.director-message-inn__view-more-btn {
  background: linear-gradient(135deg, var(--secondary-colour) 0%, var(--primary-colour) 100%);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(19, 75, 154, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.director-message-inn__view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    
    var(--secondary-colour)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.director-message-inn__view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(19, 75, 154, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

.director-message-inn__view-more-btn:hover::before {
  opacity: 1;
}

.director-message-inn__view-more-btn i {
  transition: all 0.3s ease;
}

.director-message-inn__view-more-btn.expanded i {
  transform: rotate(180deg);
}

/* Hidden content */
.director-message-inn__hidden-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}

.director-message-inn__hidden-content.expanded {
  max-height: 2500px;
  opacity: 1;
  margin-top: 40px;
}

/* Decorative corner elements */
.director-message-inn__corner-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 1;
}

/* .director-message-inn__corner-decoration--tl {
  top: 20px;
  left: 20px;
  border-top: 3px solid rgba(255, 255, 255, 0.3);
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.director-message-inn__corner-decoration--br {
  bottom: 20px;
  right: 20px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  border-right: 3px solid rgba(255, 255, 255, 0.3);
} */

/* Sticky Image */
.dir-img-sti {
  position: sticky;
  top: 120px;
  z-index: 5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .director-message-inn__message-title-bg {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .director-message-inn__message-title {
    font-size: 2.4rem;
  }

  .director-message-inn__director-name {
    font-size: 1.7rem;
  }

  .director-message-inn__message-content {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .director-message-inn {
    padding: 70px 0;
    background: linear-gradient(135deg, #0a3a7a 0%, #134b9a 100%);
  }

  .director-message-inn__message-title {
    font-size: 2.1rem;
  }

  .director-message-inn__message-content {
    padding: 30px 25px;
  }

  .director-message-inn__director-img-wrapper {
    height: 280px;
  }

  .director-message-inn__stat-item {
    min-width: calc(50% - 12px);
  }

  .director-message-inn__bg-shape-1,
  .director-message-inn__bg-shape-2,
  .director-message-inn__bg-shape-3 {
    display: none;
  }
}

@media (max-width: 576px) {
  .director-message-inn__message-title {
    font-size: 1.9rem;
  }

  .director-message-inn__director-name {
    font-size: 1.6rem;
  }

  .director-message-inn__stat-item {
    min-width: 100%;
  }

  .director-message-inn__corner-decoration {
    width: 50px;
    height: 50px;
  }
  
  .director-message-inn__view-more-btn {
    width: 100%;
    justify-content: center;
  }
}










/* Dark background variations */
.dark-bg .achievements-heading .line-container {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--highlight) 10%,
    var(--highlight) 90%,
    transparent 100%
  );
}

.dark-bg .achievements-heading .moving-circle {
  background: var(--highlight);
  box-shadow: 0 0 0 4px rgba(254, 237, 0, 0.4);
}


 .hero-about-section {
            position: relative;
            width: 100%;
            min-height: 300px;
            background-image: url('../images/breadcrum-img.jpg');
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(19, 11, 54, 0.8); /* Using --primary-colour with opacity */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-heading {
            font-size: 35px;
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .hero-about-section {
                min-height: 350px;
            }
            
            .about-heading {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-about-section {
                min-height: 300px;
            }
            
            .about-heading {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero-about-section {
                min-height: 250px;
            }
            
            .about-heading {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }
            
            .hero-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 375px) {
            .about-heading {
                font-size: 1.8rem;
            }
        }

        /* Additional CSS for video gallery */
    .home-gallery-image {
      position: relative;
    }

    .video-play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      transition: all 0.3s ease;
      z-index: 2;
      border: 2px solid white;
    }

    .video-play-button i {
      margin-left: 5px;
    }

    .home-gallery-item:hover .video-play-button {
      background: var(--primary-colour, #134b9a);
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 0 20px rgba(19, 75, 154, 0.5);
    }

    .home-gallery-overlay .home-gallery-icon i {
      color: white;
      font-size: 2.5rem;
    }

    /* Fancybox video styling */
    .fancybox-slide--iframe .fancybox-content {
      max-width: 800px;
      max-height: 450px;
      width: 80vw;
      height: 45vw;
      border-radius: 8px;
      overflow: hidden;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .video-play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .fancybox-slide--iframe .fancybox-content {
        width: 95vw;
        height: 53.44vw;
        max-width: 95vw;
        max-height: 53.44vw;
      }
    }

    @media (max-width: 480px) {
      .video-play-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    /* Ensure the gallery items have proper cursor */
    .home-gallery-item {
      cursor: pointer;
    }


    section.faq-section .latest-faq-sec .accordion-button { 

        background: #f3f3f3;
        margin-bottom: 10px;
    }

     section.faq-section  .latest-faq-sec {

        background: transparent;
    }

    /* SECTION */

.course-section{
padding:80px 0;
}

/* CARD */

.course-card{
    background: #edf7ff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
    /* box-shadow: 0px 0px 3px #eee; */
    border: 1px solid #fafafa;
}

.course-card:hover{
transform:translateY(-8px);
}

/* TITLE */

.course-card h4{
font-size:22px;
font-weight:600;
margin-bottom:12px;
}

/* TEXT */

.course-card p{
color:#666;
font-size:15px;
line-height:1.6;
}

/* LINE */

.course-card hr{
margin:5px 0;
border-color:#d2d2d2;
}

/* BUTTON */

.view-btn{
text-decoration:none;
font-weight:500;
color:#17034e;
display:flex;
align-items:center;
gap:12px;
}

.view-btn span{
    width: 34px;
    height: 34px;
    background: #17034e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

/* IMAGE */

.course-img{
margin-top:25px;
}

.course-img img{
width:100%;
height:200px;
object-fit:cover;
border-radius:14px;
}


/* RESPONSIVE */

@media(max-width:992px){

.course-img img{
height:180px;
}

}

@media(max-width:768px){

.course-card{
padding:25px;
}

.course-card h4{
font-size:20px;
}

.course-img img{
height:170px;
}

}

@media(max-width:576px){

.course-img img{
height:160px;
}

}
.view-btn :hover i{
transform:rotate(
318deg);
transition:0.3s;
}

/* HERO */

.vda-hero-zone{
position:relative;
height:450px;
overflow:hidden;
}

.vda-hero-zone img{
width:100%;
height:100%;
object-fit:cover;
}

.vda-hero-mask{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.vda-hero-mask h1{
font-size:48px;
font-weight:700;
}

/* INFO STRIP */

.vda-stats-strip{
background:#0f172a;
color:#fff;
padding:40px 0;
margin-top:-60px;
position:relative;
z-index:2;
}

.vda-stat-card{
text-align:center;
}

.vda-stat-card h3{
color:#facc15;
}

/* SPLIT SECTION */

.vda-overview-area{
padding:80px 0;
}

.vda-overview-image img{
width:100%;
border-radius:12px;
}

.vda-overview-text{
padding-left:40px;
}

/* TIMELINE */

.vda-process-line{
border-left:3px solid #facc15;
padding-left:25px;
margin-top:20px;
}

.vda-process-step{
margin-bottom:20px;
}

/* TRAINING IMAGE */

.vda-training-gallery{
margin-top:40px;
}

.vda-training-gallery img{
width:100%;
border-radius:12px;
}

/* TABLE */

.vda-exam-layout{
width:100%;
margin-top:40px;
border-collapse:collapse;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.vda-exam-layout thead{
background:#facc15;
}

.vda-exam-layout th{
padding:14px;
text-align:left;
font-weight:600;
}

.vda-exam-layout td{
padding:14px;
border-bottom:1px solid #eee;
}

.vda-exam-layout tbody tr:hover{
background:#f9f9f9;
}
/* BUTTON */

.vda-action-btn{
background:#facc15;
border:none;
padding:12px 30px;
border-radius:30px;
font-weight:600;
margin-top:30px;
}

/* RESPONSIVE */

@media(max-width:768px){

.vda-overview-text{
padding-left:0;
margin-top:30px;
}

.vda-hero-mask h1{
font-size:32px;
}

}


 
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 75, 154, 0.7);
  /* Using --primary-colour with opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-heading {
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-about-section {
    min-height: 350px;
  }

  .about-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-about-section {
    min-height: 300px;
  }

  .about-heading {
    font-size: 2.8rem;
  }

  .facilities-wrapper .page-title {

      display: block !important;
  }

  .detail-item {

      display: block !important;
  }

  .detail-text {

    width: auto !important;
    margin-top: 10px !important;
  }

  .social-circle {

      margin-right: 0 !important;

      width: 40px !important;
      height: 40px !important;
  }
}

@media (max-width: 576px) {
  .hero-about-section {
    min-height: 250px;
  }

  .about-heading {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero-content {
    padding: 10px;
  }
}

@media (max-width: 375px) {
  .about-heading {
    font-size: 1.8rem;
  }
}

.my-mis-vis-val {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-colour) 0%, #0a2d5e 100%);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.my-mis-vis-val::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 30% 40%,
      rgba(8, 164, 245, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 165, 78, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(254, 237, 0, 0.05) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.my-mis-vis-val__container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.my-mis-vis-val__header {
  text-align: center;
  margin-bottom: 4rem;
}

.my-mis-vis-val__badge {
  display: inline-block;
  background: rgba(8, 164, 245, 0.2);
  color: var(--secondary-colour);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(8, 164, 245, 0.3);
  backdrop-filter: blur(5px);
}

.my-mis-vis-val__title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 7px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

}

.my-mis-vis-val__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.my-mis-vis-val__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.my-mis-vis-val__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  max-height: 450px;
}

/* .my-mis-vis-val__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-colour),
    var(--accent),
    var(--highlight)
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
} */

.my-mis-vis-val__card:hover::before {
  transform: translateX(0);
}

/* .my-mis-vis-val__card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(8, 164, 245, 0.3);
  box-shadow:
    0 30px 50px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(8, 164, 245, 0.1);
} */

.my-mis-vis-val__card-inner {
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
}

.my-mis-vis-val__icon-wrapper {
  margin-bottom: 2rem;
}

.my-mis-vis-val__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-colour),
    var(--primary-colour)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s ease;
  animation: morphIcon 8s ease-in-out infinite;
}

@keyframes morphIcon {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }

  75% {
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  }
}

.my-mis-vis-val__card:hover .my-mis-vis-val__icon {
  border-radius: 50%;
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--accent), var(--secondary-colour));
}

.my-mis-vis-val__icon svg {
  width: 40px;
  height: 40px;
}

.my-mis-vis-val__card-title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--secondary-colour));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.my-mis-vis-val__card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.my-mis-vis-val__values-wrapper {
  margin-bottom: 2rem;
}

.my-mis-vis-val__value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.my-mis-vis-val__value-item:last-child {
  border-bottom: none;
}

.my-mis-vis-val__value-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 15px var(--accent);
}

.my-mis-vis-val__card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.my-mis-vis-val__card-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  transition: all 0.3s ease;
}

.my-mis-vis-val__card:hover .my-mis-vis-val__card-number {
  color: rgba(8, 164, 245, 0.3);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .my-mis-vis-val__title {
    font-size: 2.8rem;
  }

  .my-mis-vis-val__grid {
    gap: 1.5rem;
  }

  .my-mis-vis-val__card-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .my-mis-vis-val {
    padding: 4rem 0;
  }

  .my-mis-vis-val__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .my-mis-vis-val__title {
    font-size: 2.4rem;
  }

  .my-mis-vis-val__badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }

  .my-mis-vis-val__card-inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .my-mis-vis-val {
    padding: 3rem 0;
  }

  .my-mis-vis-val__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .my-mis-vis-val__header {
    margin-bottom: 2.5rem;
  }

  .my-mis-vis-val__title {
    font-size: 2rem;
  }

  .my-mis-vis-val__subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .my-mis-vis-val__icon {
    width: 70px;
    height: 70px;
  }

  .my-mis-vis-val__icon svg {
    width: 35px;
    height: 35px;
  }

  .my-mis-vis-val__card-title {
    font-size: 1.6rem;
  }

  .my-mis-vis-val__value-item {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .my-mis-vis-val__title {
    font-size: 1.8rem;
  }

  .my-mis-vis-val__container {
    padding: 0 1rem;
  }

  .my-mis-vis-val__card-inner {
    padding: 1.5rem;
  }
}

/* Directors Message Section */
.directors-mesg-section {
  width: 100%;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.directors-mesg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-colour, #134b9a),
    var(--secondary-colour, #08a4f5),
    var(--accent, #00a54e)
  );
}

.directors-mesg-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(19, 75, 154, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header Styles */
.directors-mesg-section__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.directors-mesg-section__heading {
     font-size: 36px;
    font-weight: 700;
    color: var(--primary-colour, #134b9a);
    margin-bottom: 10px;
  
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-colour, #134b9a),
    var(--secondary-colour, #08a4f5)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.directors-mesg-section__subheading {
  font-size: 1.2rem;
  color: var(--gray, #6c757d);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.directors-mesg-section__header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.directors-mesg-section__decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-colour, #134b9a),
    transparent
  );
}

.directors-mesg-section__decoration-icon {
  font-size: 1.5rem;
  color: var(--primary-colour, #134b9a);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Container */
.directors-mesg-section__container {
  /* max-width: 1300px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Card Styles */
.directors-mesg-section__card {
  background-color: var(--white, #ffffff);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(19, 75, 154, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: fit-content;
  position: relative;
  border: 1px solid rgba(19, 75, 154, 0.1);
}

.directors-mesg-section__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(19, 75, 154, 0.02) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.directors-mesg-section__card::after {
  content: "“";
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 10rem;
  color: rgba(19, 75, 154, 0.05);
  font-family: serif;
  line-height: 1;
}

.directors-mesg-section__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(19, 75, 154, 0.15);
  border-color: transparent;
}

/* Profile Section */
.directors-mesg-section__profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-bottom: 1px solid rgba(19, 75, 154, 0.1);
  position: relative;
}

.directors-mesg-section__image-wrapper {
  width: 100px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--primary-colour, #134b9a);
  padding: 4px;
  background: white;
  box-shadow: 0 8px 20px rgba(19, 75, 154, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.directors-mesg-section__image-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 10px;
  background: linear-gradient(
    45deg,
    var(--primary-colour),
    var(--secondary-colour)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.directors-mesg-section__card:hover .directors-mesg-section__image-wrapper {
  transform: scale(1.05);
  border-color: var(--secondary-colour, #08a4f5);
}

.directors-mesg-section__card:hover
  .directors-mesg-section__image-wrapper::before {
  opacity: 1;
}

.directors-mesg-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50%; */
  transition: transform 0.6s ease;
}

.directors-mesg-section__card:hover .directors-mesg-section__image {
  transform: scale(1.1);
}

.directors-mesg-section__info {
  flex: 1;
}

.directors-mesg-section__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-colour, #134b9a);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.directors-mesg-section__designation {
  font-size: 1rem;
  color: var(--secondary-colour, #08a4f5);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.directors-mesg-section__experience {
  margin-top: 0.5rem;
}

.directors-mesg-section__experience-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(19, 75, 154, 0.1),
    rgba(8, 164, 245, 0.1)
  );
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-colour, #134b9a);
  font-weight: 500;
  border: 1px solid rgba(19, 75, 154, 0.2);
}

/* Content Section */
.directors-mesg-section__content {
  padding: 1.5rem 2rem 2rem;
  position: relative;
}

.directors-mesg-section__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--dark, #333333);
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid #134b9a;
}

/* Text Styles */
.directors-mesg-section__text-wrapper {
  position: relative;
}

.directors-mesg-section__text-preview {
  display: block;
  transition: opacity 0.4s ease;
}

.directors-mesg-section__text-preview.hidden {
  display: none;
}

.directors-mesg-section__text-full {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.directors-mesg-section__text-full.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.directors-mesg-section__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark, #333333);
  margin-bottom: 1.2rem;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.directors-mesg-section__text:last-child {
  margin-bottom: 0;
}

.directors-mesg-section__text-signature {
  font-style: italic;
  color: var(--primary-colour, #134b9a);
  font-weight: 500;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(19, 75, 154, 0.2);
  position: relative;
  font-size: 1.1rem;
}

.directors-mesg-section__text-signature::before {
  content: '"';
  font-size: 4rem;
  color: rgba(19, 75, 154, 0.1);
  position: absolute;
  left: -1rem;
  top: -1.5rem;
  font-family: serif;
}

/* Read More Button */
.directors-mesg-section__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(
    135deg,
    var(--primary-colour, #134b9a),
    var(--secondary-colour, #08a4f5)
  );
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(19, 75, 154, 0.3);
  position: relative;
  overflow: hidden;
}

.directors-mesg-section__read-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.directors-mesg-section__read-more:hover::before {
  width: 300px;
  height: 300px;
}

.directors-mesg-section__read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 75, 154, 0.4);
}

.directors-mesg-section__read-more.active {
  background: linear-gradient(
    135deg,
    var(--secondary-colour, #08a4f5),
    var(--primary-colour, #134b9a)
  );
}

.directors-mesg-section__read-more-text {
  position: relative;
  z-index: 1;
}

.directors-mesg-section__read-more-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.directors-mesg-section__read-more:hover
  .directors-mesg-section__read-more-icon {
  transform: translateY(3px);
}

.directors-mesg-section__read-more.active
  .directors-mesg-section__read-more-icon {
  transform: rotate(180deg);
}

/* Tablet Responsive */
@media screen and (max-width: 992px) {
  .directors-mesg-section {
    padding: 4rem 1.5rem;
  }

  .directors-mesg-section__heading {
    font-size: 2.3rem;
  }

  .directors-mesg-section__subheading {
    font-size: 1.1rem;
  }

  .directors-mesg-section__container {
    gap: 2rem;
  }

  .directors-mesg-section__profile {
    padding: 1.5rem 1.5rem 1rem;
    gap: 1.2rem;
  }

  .directors-mesg-section__image-wrapper {
    width: 85px;
    height: 85px;
  }

  .directors-mesg-section__name {
    font-size: 1.3rem;
  }

  .directors-mesg-section__designation {
    font-size: 0.9rem;
  }

  .directors-mesg-section__content {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .directors-mesg-section__title {
    font-size: 1.2rem;
  }

  .directors-mesg-section__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .directors-mesg-section {
    padding: 3rem 1rem;
  }

  .directors-mesg-section__heading {
    font-size: 2rem;
  }

  .directors-mesg-section__subheading {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .directors-mesg-section__decoration-line {
    width: 40px;
  }

  .directors-mesg-section__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .directors-mesg-section__profile {
    padding: 1.5rem;
  }

  .directors-mesg-section__image-wrapper {
    width: 90px;
    height: 90px;
  }

  .directors-mesg-section__name {
    font-size: 1.4rem;
  }

  .directors-mesg-section__designation {
    font-size: 0.95rem;
  }

  .directors-mesg-section__content {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .directors-mesg-section__title {
    font-size: 1.2rem;
  }

  .directors-mesg-section__text {
    font-size: 0.95rem;
    text-align: left;
  }

  .directors-mesg-section__read-more {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Small Mobile Responsive */
@media screen and (max-width: 480px) {
  .directors-mesg-section {
    padding: 2.5rem 0.75rem;
  }

  .directors-mesg-section__heading {
    font-size: 1.8rem;
  }

  .directors-mesg-section__subheading {
    font-size: 0.9rem;
  }

  .directors-mesg-section__profile {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .directors-mesg-section__image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .directors-mesg-section__info {
    text-align: center;
  }

  .directors-mesg-section__designation {
    display: block;
  }

  .directors-mesg-section__content {
    padding: 1rem 1.25rem 1.5rem;
  }

  .directors-mesg-section__title {
    font-size: 1.1rem;
    padding-left: 0.75rem;
  }

  .directors-mesg-section__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .directors-mesg-section__text-signature {
    font-size: 1rem;
  }

  .directors-mesg-section__text-signature::before {
    font-size: 3rem;
    left: -0.5rem;
    top: -1rem;
  }

  .directors-mesg-section__read-more {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
  }
}

/* Hover Effects for Desktop */
@media (min-width: 1024px) {
  .directors-mesg-section__text {
    transition: color 0.3s ease;
  }

  .directors-mesg-section__card:hover .directors-mesg-section__text {
    color: #2c3e50;
  }

  .directors-mesg-section__card:hover .directors-mesg-section__title {
    color: var(--primary-colour, #134b9a);
  }
}

/* Print Styles */
@media print {
  .directors-mesg-section {
    background: white;
    padding: 2rem 0;
  }

  .directors-mesg-section__card {
    box-shadow: none;
    break-inside: avoid;
    border: 1px solid #eee;
  }

  .directors-mesg-section__image-wrapper {
    border: 1px solid #ccc;
  }

  .directors-mesg-section__read-more {
    display: none;
  }

  .directors-mesg-section__text-full {
    display: block !important;
  }

  .directors-mesg-section__text-preview {
    display: none !important;
  }
}

/* Our Team Section */
.our-team-section {
  width: 100%;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.our-team-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(19, 75, 154, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.our-team-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(8, 164, 245, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Header Styles */
.our-team-section__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.our-team-section__heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-colour, #134b9a);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-colour, #134b9a),
    var(--secondary-colour, #08a4f5)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.our-team-section__subheading {
  font-size: 1.2rem;
  color: var(--gray, #6c757d);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.our-team-section__header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.our-team-section__decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-colour, #134b9a),
    transparent
  );
}

.our-team-section__decoration-icon {
  font-size: 1.8rem;
  color: var(--primary-colour, #134b9a);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Container */
.our-team-section__container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Card Styles */
.our-team-section__card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(19, 75, 154, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(19, 75, 154, 0.1);
}

.our-team-section__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(19, 75, 154, 0.15);
  border-color: transparent;
}

/* Image Wrapper */
.our-team-section__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.our-team-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.our-team-section__card:hover .our-team-section__image {
  transform: scale(1.1);
}

/* Social Links */
.our-team-section__social-links {
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(19, 75, 154, 0.95),
    rgba(8, 164, 245, 0.95)
  );
  backdrop-filter: blur(5px);
  transition: bottom 0.4s ease;
}

.our-team-section__card:hover .our-team-section__social-links {
  bottom: 0;
}

.our-team-section__social-link {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-colour, #134b9a);
  transition: all 0.3s ease;
  text-decoration: none;
}

.our-team-section__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.our-team-section__social-link:hover {
  background: var(--highlight, #feed00);
  color: var(--primary-colour, #134b9a);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Content */
.our-team-section__content {
  padding: 1.5rem 1rem 0rem;
  text-align: center;
  background: white;
  position: relative;
}

.our-team-section__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-colour, #134b9a);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.our-team-section__designation {
  font-size: 0.95rem;
  color: var(--secondary-colour, #08a4f5);
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  /* border-bottom: 2px dashed rgba(19, 75, 154, 0.1); */
}

/* Badge */
.our-team-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(
    135deg,
    rgba(19, 75, 154, 0.1),
    rgba(8, 164, 245, 0.1)
  );
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(19, 75, 154, 0.2);
}

.our-team-section__badge-icon {
  font-size: 1rem;
}

.our-team-section__badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-colour, #134b9a);
}

/* Description */
.our-team-section__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark, #333333);
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Expertise Tags */
.our-team-section__expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.our-team-section__expertise-tag {
  padding: 0.3rem 1rem;
  background: white;
  border: 1px solid var(--primary-colour, #134b9a);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-colour, #134b9a);
  transition: all 0.3s ease;
  cursor: default;
}

.our-team-section__expertise-tag:hover {
  background: var(--primary-colour, #134b9a);
  color: white;
  transform: scale(1.05);
}

/* Footer */
.our-team-section__footer {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.our-team-section__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-colour, #134b9a),
    var(--secondary-colour, #08a4f5)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(19, 75, 154, 0.3);
  position: relative;
  overflow: hidden;
}

.our-team-section__view-all::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.our-team-section__view-all:hover::before {
  width: 300px;
  height: 300px;
}

.our-team-section__view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(19, 75, 154, 0.4);
}

.our-team-section__view-all:active {
  transform: translateY(-1px);
}

.our-team-section__view-all-text {
  position: relative;
  z-index: 1;
}

.our-team-section__view-all-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.our-team-section__view-all:hover .our-team-section__view-all-icon {
  transform: translateX(5px);
}

/* Responsive Design */

/* Large Desktop */
@media screen and (max-width: 1200px) {
  .our-team-section__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }

  .our-team-section__heading {
    font-size: 2.5rem;
  }
}

/* Tablet Landscape */
@media screen and (max-width: 992px) {
  .our-team-section {
    padding: 4rem 1.5rem;
  }

  .our-team-section__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .our-team-section__heading {
    font-size: 2.2rem;
  }

  .our-team-section__subheading {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .our-team-section__name {
    font-size: 1.2rem;
  }

  .our-team-section__designation {
    font-size: 0.9rem;
  }

  .our-team-section__description {
    font-size: 0.9rem;
  }
}

/* Tablet Portrait */
@media screen and (max-width: 768px) {
  .our-team-section {
    padding: 3rem 1rem;
  }

  .our-team-section__container {
    gap: 1.5rem;
  }

  .our-team-section__heading {
    font-size: 2rem;
  }

  .our-team-section__subheading {
    font-size: 1rem;
  }

  .our-team-section__decoration-line {
    width: 40px;
  }

  .our-team-section__decoration-icon {
    font-size: 1.5rem;
  }

  .our-team-section__content {
    padding: 1.2rem 1rem 1.5rem;
  }

  .our-team-section__badge {
    padding: 0.3rem 0.8rem;
  }

  .our-team-section__badge-text {
    font-size: 0.75rem;
  }

  .our-team-section__expertise-tag {
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
  }

  .our-team-section__view-all {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .our-team-section {
    padding: 2.5rem 0.75rem;
  }

  .our-team-section__container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .our-team-section__heading {
    font-size: 1.8rem;
  }

  .our-team-section__subheading {
    font-size: 0.95rem;
  }

  .our-team-section__card {
    max-width: 350px;
    margin: 0 auto;
  }

  .our-team-section__social-link {
    width: 35px;
    height: 35px;
  }

  .our-team-section__social-link svg {
    width: 18px;
    height: 18px;
  }

  .our-team-section__name {
    font-size: 1.2rem;
  }

  .our-team-section__designation {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .our-team-section__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .our-team-section__footer {
    margin-top: 2.5rem;
  }

  .our-team-section__view-all {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 380px) {
  .our-team-section__heading {
    font-size: 1.5rem;
  }

  .our-team-section__subheading {
    font-size: 0.9rem;
  }

  .our-team-section__badge {
    padding: 0.25rem 0.7rem;
  }

  .our-team-section__badge-text {
    font-size: 0.7rem;
  }

  .our-team-section__expertise {
    gap: 0.3rem;
  }

  .our-team-section__expertise-tag {
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
  }
}

/* Print Styles */
@media print {
  .our-team-section {
    background: white;
    padding: 2rem 0;
  }

  .our-team-section__card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .our-team-section__social-links {
    display: none;
  }

  .our-team-section__view-all {
    display: none;
  }

  .our-team-section__decoration-icon {
    animation: none;
  }
}
 

        /* logo / header area – matches clogo.png exactly, no extra college tags */
        .logo-block {
            background: var(--white);
            border-radius: 3rem 3rem 2rem 2rem;
            padding: 2rem 1.5rem 1.5rem;
            box-shadow: 0 10px 25px -8px rgba(19,75,154,0.1);
            border: 1px solid rgba(8,164,245,0.1);
            margin-bottom: 2.5rem;
        }

        .logo-line1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary-colour);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .logo-line2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-colour);
            line-height: 1.2;
        }

        .logo-line3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.8px;
        }

        .badge-tagline {
            background: #eef4ff;
            padding: 0.5rem 1.8rem;
            border-radius: 40px;
            font-weight: 500;
            color: var(--gray);
            border: 1px dashed var(--secondary-colour);
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .badge-tagline i {
            color: var(--cta);
        }

        /* contact card / form styling */
        .contact-card {
            border-radius: 2rem;
            background: var(--white);
            box-shadow: 0 20px 40px -12px rgba(19,75,154,0.2);
            border: none;
            overflow: hidden;
        }

        .form-panel {
            padding: 2.5rem 2rem;
        }

        .info-panel {
            background: linear-gradient(160deg, #f6fbff, #ffffff);
            padding: 2.5rem 2rem;
            height: 100%;
            border-left: 1px solid rgba(8,164,245,0.2);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-colour);
            margin-bottom: 0.4rem;
        }

        .subhead-accent {
            color: var(--accent);
            font-weight: 600;
            border-left: 5px solid var(--secondary-colour);
            padding-left: 1rem;
            background: rgba(0,165,78,0.03);
            border-radius: 0 20px 20px 0;
        }

        /* form controls */
        .form-control, .form-select {
            border: 1.5px solid #e2e8f0;
            border-radius: 16px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.2s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-colour);
            box-shadow: 0 0 0 4px rgba(8,164,245,0.15);
        }

        label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        label i {
            color: var(--secondary-colour);
            width: 1.5rem;
        }

        .btn-cta {
    background-color: #f15a24 !important;
    border: none;
    color: white !important;
    font-weight: 700;
    padding: 0.9rem 2.2rem !important;
    border-radius: 40px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 16px -6px rgba(241, 90, 36, 0.35);
    transition: all 0.15s;
}

        .btn-cta:hover {
            background-color: #d94415;
            transform: scale(1.02);
            color: white;
        }

        .info-icon-box {
            background: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--secondary-colour);
            border: 1px solid rgba(8,164,245,0.3);
            box-shadow: 0 10px 12px -10px rgba(0,0,0,0.05);
        }

        .detail-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.8rem;
        }

        .detail-text h5 {
            font-weight: 700;
            color: var(--primary-colour);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .detail-text a, .detail-text p {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            margin: 0;
        }

        .detail-text a:hover {
            color: var(--cta);
            text-decoration: underline;
        }

        .social-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-colour);
            font-size: 1.3rem;
            border: 1px solid #ddd;
            transition: 0.15s;
            margin-right: 8px;
        }


       
        .social-circle:hover {
            background: var(--primary-colour);
            color: white;
            border-color: var(--primary-colour);
        }

        .map-container {
            border-radius: 24px;
            overflow: hidden;
            border: 3px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.03);
            margin-top: 1.2rem;
        }

        .map-container iframe {
            width: 100%;
            height: 210px;
            border: 0;
        }

        hr.divider-custom {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary-colour), transparent);
            opacity: 0.4;
            margin: 1.5rem 0;
        }

        /* responsive spacing */
        @media (max-width: 767.98px) {
            .info-panel {
                border-left: none;
                border-top: 2px solid var(--highlight);
            }
            .logo-line1 { font-size: 2rem; }
            .logo-line2 { font-size: 1.7rem; }
        }

        .form-panel input {

            height: 50px;
            border-radius: 12px;
        }

        
        .detail-text {
    width: 500px;
}

        .mock-image-card {
            
            width: 100%;
            background: white;
            border-radius: 32px;
            box-shadow: 0 30px 60px -15px rgba(19, 75, 154, 0.4);
            overflow: hidden;
            border: 2px solid rgba(8, 164, 245, 0.3);
            padding: 80px 0px;
        }
        .image-placeholder {
            display: block;
            width: 100%;
            height: auto;
            background: #0b2b4f;  /* dark navy background */
            background-image: linear-gradient(145deg, #134b9a 0%, #0a3570 100%);
            padding: 20px 20px 15px 20px;
        }
        .mock-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border: 3px solid #feed00;
        }
        .image-caption {
            background: #f8fafc;
            padding: 18px 25px;
            border-top: 3px solid #08a4f5;
            color: #1e293b;
            font-weight: 500;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .badge {
            background: #00a54e;
            color: white;
            padding: 6px 18px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .badge i {
            margin-right: 6px;
            font-style: normal;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #134b9a, #08a4f5, #00a54e);
            margin: 16px 0 8px;
        }
        .footer-note {
            text-align: center;
            color: #334155;
            background: white;
            padding: 12px 28px;
            border-radius: 60px;
            margin-top: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .footer-note code {
            background: #e9eef3;
            padding: 3px 10px;
            border-radius: 40px;
            color: #134b9a;
            font-weight: 600;
        }

         /* main container */
        .facilities-wrapper {
            padding: 80px 0px;
        }

        /* header / logo area (consistent with academy brand) */
        .academy-header {
            background: var(--white);
            border-radius: 2.5rem 2.5rem 1.5rem 1.5rem;
            padding: 1.8rem 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 20px 30px -10px rgba(19,75,154,0.2);
            border: 1px solid rgba(8,164,245,0.2);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .logo-text h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-colour);
            line-height: 1.1;
        }

        .logo-text h1 span {
            color: var(--secondary-colour);
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo-text .sub {
            color: var(--accent);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .header-badge {
            background: var(--highlight);
            color: var(--dark);
            padding: 0.6rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px dashed var(--cta);
        }

        .header-badge i {
            color: var(--cta);
            margin-right: 8px;
        }

        /* page title */
       .facilities-wrapper  .page-title {
            text-align: center;
            margin-bottom: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .page-title h2 {
            font-size: 36px;
            font-weight: 800;
           color: var(--primary-colour, #134b9a);
            position: relative;
            display: inline-block;
            letter-spacing: -0.02em;
        }
 

        .page-title p {
            color: var(--gray);
            font-size: 1.2rem;
            margin-top: 1.8rem;
            background: rgba(8,164,245,0.05);
            padding: 0.7rem 2rem;
            border-radius: 60px;
            display: inline-block;
            border: 1px dashed var(--secondary-colour);
        }

        /* facility card grid */
        .facility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .facility-card {
            background: var(--white);
            border-radius: 2rem;
            padding: 2rem 1.8rem;
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
            transition: all 0.25s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .facility-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-colour);
            box-shadow: 0 25px 40px -12px rgba(8,164,245,0.3);
        }

        .facility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--primary-colour), var(--secondary-colour), #b4ddef);
            border-radius: 2rem 2rem 0 0;
        }

        .facility-icon {
            width: 90px;
            height: 90px;
            background: rgba(8,164,245,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.8rem;
            color: var(--primary-colour);
            transition: 0.2s;
            border: 2px dashed var(--secondary-colour);
        }

        .facility-card:hover .facility-icon {
            background: var(--primary-colour);
            color: white;
            border: 2px solid var(--highlight);
        }

        .facility-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-colour);
            margin-bottom: 0.8rem;
        }

        .facility-card .badge-info {
            background: rgba(0,165,78,0.1);
            color: var(--accent);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
             
        }

        .facility-card p {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .facility-feature {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 1rem;
        }

        .facility-feature li {
            padding: 0.4rem 0;
            font-size: 0.95rem;
            border-bottom: 1px dashed #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .facility-feature li i {
            color: var(--accent);
            width: 20px;
        }

        /* specific card variations */
        .card-boys-hostel .facility-icon { color: #134b9a; }
        .card-girls-hostel .facility-icon { color: #f15a24; }
        .card-mess .facility-icon { color: #00a54e; }
        .card-gym .facility-icon { color: #08a4f5; }
        .card-doctor .facility-icon { color: #f15a24; }
        .card-computer .facility-icon { color: #134b9a; }
        .card-physics .facility-icon { color: #08a4f5; }
        .card-chemistry .facility-icon { color: #00a54e; }
        .card-pt .facility-icon { color: #feed00; }

        /* separate row for dual hostel display */
        .hostel-double {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        /* footer / contact strip */
        .facility-footer {
            background: var(--white);
            border-radius: 3rem;
            padding: 1.8rem 2rem;
            margin-top: 3rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 10px 25px -8px rgba(0,0,0,0.05);
            border: 1px solid rgba(8,164,245,0.2);
        }

        .footer-tag {
            background: var(--highlight);
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
        }

        /* responsive */
        @media (max-width: 768px) {
            .page-title h2 { font-size: 2.2rem; }
            .academy-header { flex-direction: column; text-align: center; gap: 1rem; }
            .hostel-double { grid-template-columns: 1fr; }
        }

          /* luxury container */
        .course-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* premium header with brand colors */
        .academy-header {
            background: var(--white);
            border-radius: 100px;
            padding: 1.2rem 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 25px 40px -20px rgba(19,75,154,0.3);
            border: 2px solid var(--secondary-colour);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 5px solid var(--accent);
        }

        .logo-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-colour);
            letter-spacing: -0.5px;
        }

        .logo-text h1 span {
            color: var(--secondary-colour);
            display: block;
            font-size: 1.8rem;
        }

        .logo-text .sub {
            color: var(--accent);
            font-weight: 600;
            font-size: 1rem;
        }

        .header-badge {
            background: linear-gradient(145deg, var(--primary-colour), #0d3a77);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            border: 2px solid var(--highlight);
        }

        /* REAL LUXURY HERO IMAGE - FIGHTER JET */
        .hero-luxury {
            position: relative;
            border-radius: 3rem;
            overflow: hidden;
            margin-bottom: 4rem;
            box-shadow: 0 40px 60px -15px rgba(19,75,154,0.4);
            border: 4px solid var(--secondary-colour);
            height: 550px;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.85) saturate(1.1);
            transition: transform 8s ease;
        }

        .hero-luxury:hover .hero-image {
            transform: scale(1.05);
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(19,75,154,0.9) 0%, transparent 100%);
            padding: 3rem 3rem 2rem;
            color: white;
        }

        .hero-overlay h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
        }

        .hero-overlay h2 span {
            color: var(--highlight);
            border-left: 5px solid var(--accent);
            padding-left: 1.5rem;
            margin-left: 1rem;
        }

        .pilot-badge {
            background: var(--cta);
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.3rem;
            display: inline-block;
            margin-top: 1rem;
            border: 3px solid var(--highlight);
            box-shadow: 0 10px 20px rgba(241,90,36,0.3);
        }

        /* luxury cards using brand colors */
        .luxury-card {
            background: var(--white);
            border-radius: 2.5rem;
            padding: 2.2rem;
            box-shadow: 0 20px 40px -12px rgba(19,75,154,0.15);
            border: 2px solid var(--secondary-colour);
            transition: all 0.3s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .luxury-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-colour), var(--accent), var(--cta));
        }

        .luxury-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 30px 50px -15px var(--primary-colour);
        }

        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-colour);
            border-bottom: 4px solid var(--highlight);
            padding-bottom: 1rem;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-title i {
            color: var(--accent);
            font-size: 2rem;
        }

        /* stages grid */
        .stages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .stage-card {
            background: var(--light-bg);
            border-radius: 2rem;
            padding: 2rem 1rem;
            text-align: center;
            border: 2px solid var(--secondary-colour);
            transition: 0.2s;
        }

        .stage-card:hover {
            border-color: var(--accent);
            background: white;
        }

        .stage-number {
            background: var(--primary-colour);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 auto 1.2rem;
            border: 3px solid var(--highlight);
        }

        /* vacancies */
        .vacancies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            text-align: center;
        }

        .vacancy-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-colour);
            background: rgba(8,164,245,0.1);
            padding: 1rem;
            border-radius: 2rem;
        }

        /* exam table */
        .exam-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
        }

        .exam-table th {
            background: var(--primary-colour);
            color: white;
            padding: 1.2rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 60px 60px 20px 20px;
        }

        .exam-table td {
            background: var(--light-bg);
            padding: 1.2rem;
            text-align: center;
            border-radius: 20px;
            font-weight: 500;
        }

        .total-marks {
            background: var(--accent);
            color: white;
            padding: 1.5rem 2.5rem;
            border-radius: 60px;
            font-size: 1.8rem;
            font-weight: 800;
            display: inline-block;
            border: 4px solid var(--highlight);
        }

        /* exam centres */
        .centre-tag {
            background: var(--light-bg);
            border: 2px solid var(--secondary-colour);
            color: var(--dark);
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            display: inline-block;
            margin: 0.3rem;
        }

        .centre-tag i {
            color: var(--cta);
        }

        /* fly high banner */
        .fly-high {
            background: linear-gradient(145deg, var(--primary-colour), #0d3a77);
            border-radius: 100px;
            padding: 2.5rem;
            text-align: center;
            border: 5px solid var(--highlight);
            box-shadow: 0 30px 40px -20px var(--primary-colour);
            margin: 3rem 0;
        }

        .fly-high h3 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            letter-spacing: 6px;
        }

        .fly-high h3 i {
            color: var(--highlight);
            margin: 0 1.5rem;
        }

        /* cta button */
        .btn-cta-custom {
            background: var(--cta);
            color: white;
            font-weight: 800;
            padding: 1.2rem 3.5rem;
            border-radius: 60px;
            border: none;
            font-size: 1.3rem;
            box-shadow: 0 15px 25px -8px var(--cta);
            transition: all 0.2s;
            border: 3px solid var(--highlight);
        }

        .btn-cta-custom:hover {
            background: #d94415;
            transform: scale(1.05);
        }

        /* responsive */
        @media (max-width: 768px) {
            .hero-overlay h2 { font-size: 2.5rem; }
            .stages-grid { grid-template-columns: 1fr; }
            .fly-high h3 { font-size: 2rem; }
            .hero-luxury { height: 400px; }
        }

        /* ===== UPDATED SECTION: Scheme of Examination heading font size 36px ===== */
        .scheme-heading {
            font-size: 36px !important;
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            color: var(--primary-colour);
            border-bottom: 4px solid var(--highlight);
            padding-bottom: 1rem;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .scheme-heading i {
            color: var(--accent);
            font-size: 2.5rem;
        }

        
        .course-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ===== NEW HEADER DESIGN ===== */
        .new-header {
            background: var(--white);
            border-radius: 0 0 50px 50px;
            padding: 1.5rem 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 15px 30px -10px rgba(19,75,154,0.15);
            border-bottom: 6px solid var(--accent);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .new-header::before {
            content: "⚔️";
            position: absolute;
            right: 20px;
            bottom: -10px;
            font-size: 6rem;
            opacity: 0.1;
            transform: rotate(-10deg);
        }

        .logo-new h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-colour);
            line-height: 1;
        }

        .logo-new h1 span {
            color: var(--secondary-colour);
            font-size: 2rem;
            display: block;
            font-weight: 700;
        }

        .logo-new .location {
            color: var(--accent);
            font-weight: 500;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        .badge-new {
            background: var(--cta);
            color: white;
            padding: 0.6rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            border: 3px solid var(--highlight);
            box-shadow: 0 5px 0 var(--primary-colour);
        }

        /* ===== HERO SECTION WITH OVERLAP ===== */
        .hero-new {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .hero-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-colour);
            line-height: 1.1;
        }

        

        .hero-tagline {
            background: var(--white);
            padding: 1rem 2rem;
            border-radius: 60px;
            display: inline-block;
            margin: 1.5rem 0;
            border: 2px solid var(--highlight);
            font-weight: 700;
            color: var(--primary-colour);
        }

        .hero-image-new {
            border-radius: 30px 30px 30px 200px;
            overflow: hidden;
            box-shadow: 25px 25px 0 -5px var(--secondary-colour), 25px 25px 0 0px var(--primary-colour);
            height: 400px;
        }

        .hero-image-new img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ===== NEW CARD STYLE ===== */
        .glass-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 2rem;
            box-shadow: 0 20px 40px -12px rgba(19,75,154,0.2);
            border: 1px solid rgba(8,164,245,0.3);
            transition: all 0.3s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 30px 50px -15px var(--primary-colour);
        }

        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, var(--highlight) 0%, transparent 70%);
            opacity: 0.1;
            border-radius: 50%;
        }

        .card-header-new {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px dashed var(--secondary-colour);
            padding-bottom: 1rem;
        }

        .card-header-new i {
            font-size: 2.2rem;
            color: var(--primary-colour);
            background: rgba(8,164,245,0.1);
            padding: 1rem;
            border-radius: 20px;
        }

      
        /* ===== STAGES MODERN ===== */
        .stages-modern {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 1rem 0;
        }

        .stage-modern {
            background: var(--white);
            border-radius: 20px;
            padding: 1.5rem 1rem;
            text-align: center;
            border-left: 5px solid transparent;
            transition: 0.2s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        /* .stage-modern:nth-child(1) { border-left-color: var(--primary-colour); }
        .stage-modern:nth-child(2) { border-left-color: var(--accent); }
        .stage-modern:nth-child(3) { border-left-color: var(--cta); } */

        .stage-modern:hover {
            transform: scale(1.02);
            background: #f0f8ff;
        }

        .stage-modern .stage-badge {
            background: var(--primary-colour);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: 700;
        }

        /* ===== VACANCY PILLS ===== */
        .vacancy-pills {
            display: flex;
            justify-content: space-around;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .pill {
            background: linear-gradient(145deg, var(--primary-colour), #0d3a77);
            color: white;
            padding: 16px;
            border-radius: 100px;
            text-align: center;
            flex: 1;
            min-width: 120px;
            border: 3px solid var(--highlight);
        }

        .pill .number {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }

        /* ===== TABLE NEW STYLE ===== */
        .table-new {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
        }

        .table-new th {
            background: var(--primary-colour);
            color: white;
            padding: 1.2rem;
            font-weight: 600;
        }

        .table-new td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
            text-align: center;
        }

        .table-new tr:last-child td {
            border-bottom: none;
        }

        .total-box {
    background: var(--accent);
    color: white;
    padding: 10px 10px;
    border-radius: 60px;
    font-size: 19px;
    font-weight: 700;
    display: inline-block;
    border: 4px solid var(--highlight);
}

        /* ===== CENTRES GRID ===== */
        .centres-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .centre-chip {
            background: var(--white);
            border: 2px solid var(--secondary-colour);
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }

        .centre-chip:hover {
            background: var(--secondary-colour);
            color: white;
            border-color: var(--primary-colour);
        }

        .centre-chip i {
            color: var(--cta);
        }

        /* ===== FLY HIGH NEW ===== */
        .fly-high-new {
            background: linear-gradient(145deg, var(--primary-colour), #0d3a77);
            border-radius: 30px;
            padding: 3rem;
            text-align: center;
            border: 5px solid var(--highlight);
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .fly-high-new h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 900;
            color: white;
            text-shadow: 3px 3px 0 var(--cta);
            letter-spacing: 5px;
        }

        .fly-high-new h3 i {
            color: var(--highlight);
            margin: 0 1rem;
        }

        .fly-high-new::before {
            content: "✈️";
            position: absolute;
            left: -20px;
            top: 50%;
            font-size: 8rem;
            opacity: 0.2;
            transform: translateY(-50%) rotate(-15deg);
        }

        .fly-high-new::after {
            content: "✈️";
            position: absolute;
            right: -20px;
            top: 50%;
            font-size: 8rem;
            opacity: 0.2;
            transform: translateY(-50%) rotate(15deg);
        }

        /* ===== BUTTON NEW ===== */
        .btn-new {
            background: var(--cta);
            color: white;
            font-weight: 700;
            padding: 1.2rem 4rem;
            border-radius: 60px;
            border: none;
            font-size: 1.3rem;
            box-shadow: 0 10px 0 #9e2d12;
            transition: 0.1s;
            border: 2px solid var(--highlight);
        }

        .btn-new:hover {
            transform: translateY(3px);
            box-shadow: 0 7px 0 #9e2d12;
            background: #e04e1f;
            color: white;
        }

        /* responsive */
        @media (max-width: 992px) {
            .hero-new {
                grid-template-columns: 1fr;
            }
            .stages-modern {
                grid-template-columns: 1fr;
            }
            .fly-high-new h3 {
                font-size: 2.5rem;
            }
        }

.cms-data h3{
  color: var(--primary-colour);
  font-weight: 800;
}

.cms-data ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.cms-data ul li{
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.cms-data ul li:before{
  content: '\f192';
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--primary-colour);
  font-family: FontAwesome;
}


/* Floating Buttons Container */
.floating-contact{
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Button Style */
.floating-contact a{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.3); */
    transition: all 0.3s ease;
}

/* Icon */
.floating-contact img{
    width: 40px;
}

/* WhatsApp Color */
/* .whatsapp{
    background:#25D366;
} */

/* Call Color */
/* .call{
    background:#007bff;
} */

/* Hover Effect */
.floating-contact a:hover{
    transform: scale(1.1);
}
