/* ==========================================
   GOOGLE FONTS
========================================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ==========================================
   CSS VARIABLES
========================================== */
html {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}
:root {
  --primary: #003d35;
  --secondary: #1c8c55;
  --gold: #d7a11c;
  --dark: #08281b;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #777777;
  --border: #e5e5e5;

  --shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  --transition: 0.4s ease;
}

/* ==========================================
   RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  overflow-x: hidden;
  background: #fff;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

input {
  outline: none;
}

/* ==========================================
   CONTAINER
========================================== */

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.section-padding {
  padding: 50px 0;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 30px;
}

p {
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* =========================
   WATCH VIDEO BUTTON
========================= */

/* =========================
   VIDEO MODAL
========================= */
.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

/* VIDEO BOX */
.video-container {
  position: relative;
  width: 85%;
  max-width: 400px;
  transform: scale(0.8);
  transition: 0.4s ease;
}

.video-modal.active .video-container {
  transform: scale(1);
}

video {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* CLOSE */
.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* CONTROLS */
.video-controls {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 0 0 10px 10px;
}

#playPause {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

#progress {
  flex: 1;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

#volume {
  width: 80px;
}

#fullscreen {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
/* ==========================================
   BUTTONS
========================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  background: var(--primary);
  color: #fff;

  font-weight: 600;
  border-radius: 5px;

  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  margin-left: 15px;
  font-weight: 600;
}

.btn-video i {
  width: 55px;
  height: 55px;

  background: #fff;
  color: var(--primary);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   HEADER
========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 30px;
  width: 100%;
  z-index: 999;

  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);

  transition: 0.4s ease;
}

.header.sticky {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 90px;
}

.logo {
  width: 110px;
}

.logo img {
  /* margin-left: 40px; */
  height: auto;
}

/* ==========================================
   NAVIGATION
========================================== */

.navbar {
  display: flex;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
}

.header.sticky .nav-links li a {
  color: #222;
}

.nav-links li a:hover {
  color: var(--gold);
}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu {
  position: absolute;

  top: 120%;
  left: 0;

  min-width: 250px;

  background: #fff;

  padding: 20px 0;

  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: 0.4s ease;

  border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;

  color: #222 !important;

  padding: 12px 25px;

  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  padding-left: 35px;
}

/* ==========================================
   SOCIAL ICONS
========================================== */

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  color: #000000;
  font-size: 18px;
}

.header.sticky .social-icons a {
  color: #222;
}

.social-icons a:hover {
  color: var(--gold);
}

/* ==========================================
   MOBILE TOGGLE
========================================== */

.mobile-toggle {
  display: none;
  font-size: 26px;
  color: #000000;
  cursor: pointer;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.233) center center;
  background-size: cover;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   HERO OVERLAY
========================================== */

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.404), rgba(0, 0, 0, 0.616));
}

/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {
  position: relative;
  z-index: 5;

  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  max-width: 1400px;

  /* padding-left: 8%; */
}

.hero-content h1 {
  color: #fff;
  /* margin-bottom: 20px; */
}

.hero-content p {
  color: #fff;
  font-size: 20px;

  margin-bottom: 35px;

  max-width: 650px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================
   HERO ARROWS
========================================== */

.slider-arrow {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 10;

  box-shadow: var(--shadow);
}

.slider-prev {
  left: 40px;
}

.slider-next {
  right: 40px;
}

/* ==========================================
   HERO INDICATORS
========================================== */

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 12px;

  z-index: 20;
}

.hero-dots span {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.5);

  cursor: pointer;
}

.hero-dots span.active {
  background: #fff;
}

/* ==========================================
   FADE ANIMATION CLASSES
========================================== */

.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
}

.fade-active {
  opacity: 1;
  transform: translate(0);

  transition: 1s ease;
}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ==========================================
   ABOUT SECTION
========================================== */

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-right: 20px;
  align-items: center;
}

.about-image {
  /* margin-top: -180px; */
  z-index: 20;
  position: relative;
  overflow: visible;
  border-radius: 0px;
  height: 750px;
}

.about-image img {
    margin: 2px;
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  text-align: justify;
  color: #2e2d2d;
  margin-bottom: 20px;
}
.year-box {
  position: absolute;

  bottom: 40px;
  right: -70px;

  width: 220px;

  background: var(--primary);

  padding: 30px;

  z-index: 50;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.year-box span {
  display: block;

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  line-height: 1.6;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.year-box h2 {
  color: #fff;

  font-size: 30px;

  margin-top: 10px;

  line-height: 1;
}

/* ==========================================
   READ MORE BUTTON
========================================== */
.read-more-btn {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: rgba(0, 128, 0, 0.785);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 128, 0, 0.774);
  background: transparent;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Background fill effect */
.read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  transform: scaleY(0);
  transform-origin: bottom;
  background: #fff;
  z-index: -1;
  transition: height 0.4s ease;
}

/* Hover effects */
.read-more-btn:hover::before {
  height: 100%;
}

.read-more-btn:hover {
  color: #000;
  border-bottom: 1px solid rgba(0, 128, 0, 0);
  transform: scaleY(1);
  color: white;
  background: #003d35;
  animation: bounce 0.5s ease;
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==========================================
   PROGRESS BAR
========================================== */
.progress-bar {
  width: 40px;
  height: 30px;
  background: #d9d9d9;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #003d35;

  transform: translateX(-100%);
  animation: fillBar 1.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fillBar {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ==========================================
   VISION & MISSION
========================================== */

.vision-mission {
  padding: 100px 0;
  background: #f7f7f7;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vision-card,
.mission-card {
  position: relative;
  overflow: hidden;

  padding: 50px;

  min-height: 350px;

  border-radius: 12px;

  text-align: justify;
  word-spacing: -1px;
  font-size: 18px;

  color: #fff;
}

.vision-card {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.mission-card {
  background: linear-gradient(rgba(10, 101, 55, 0.783), #003d35);
}

.vision-card h3,
.mission-card h3 {
  color: #fff;
  margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
  color: #fff;
}

/* ==========================================
   FUNCTIONS SECTION
========================================== */

.functions-section {
  background: #fff;
}

.functions-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 70px;
  padding: 90px;
  align-items: center;
}

.functions-image {
  overflow: hidden;
  border-radius: 10px;
}

.functions-image img {
  min-height: 500px;
  object-fit: cover;
  background: #d9d9d9;

  transition: 0.6s ease;
}

.functions-image:hover img {
  transform: scale(1.08);
}

.functions-content h2 {
  margin-bottom: 25px;
}
.functions-content h3{
    font-size: 20px;
}
.functions-content p {
  text-align: justify;
  color: #666;
}
.functions-content li{
    list-style-type: square;
}

/* ==========================================
   OUR SCOPE
========================================== */

.scope-section {
  position: relative;

  padding: 120px 0;

  background-image: url("../../media/hero/bghero4.jpg");

  background-size: cover;
  background-position: center;
}

.scope-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 45, 35, 0.75);
}

.scope-section .container {
  position: relative;
  z-index: 2;
}

.scope-wrapper {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.scope-title h2 {
  color: #fff;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
}

.scope-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.scope-card {
  background: #003d35;

  padding: 40px;

  min-height: 220px;

  border-radius: 4px;

  transition: 0.4s ease;
}

.scope-card:hover {
  transform: translateY(-10px);
}

.scope-card i {
  font-size: 3rem;

  color: #9cff93;

  margin-bottom: 25px;
}

.scope-card h4 {
  color: #fff;

  font-size: 1.8rem;

  line-height: 1.4;

  font-weight: 700;
}

.scope-btn-wrap {
  display: flex;
  justify-content: flex-end;

  margin-top: 35px;
}

.scope-btn {
  background: #fff;

  color: #003d35;

  padding: 18px 35px;

  display: inline-flex;
  align-items: center;
  gap: 15px;

  font-weight: 600;

  transition: 0.4s ease;
}

.scope-btn:hover {
  background: #0f6d3e;

  color: #fff;
}
/* ==========================================
   POSITIONING
========================================== */
.positioning {
  background: #f4f4f4;
  overflow: hidden;
  padding-left: 30px;
}

.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Grey box behind image */
.position-grid::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 400px;
  background: #e6e6e6;
  left: 80px;
  top: -40px;
  z-index: 1;
}

.position-grid img {
  width: 90%;
  max-width: 550px;
  display: block;
  margin-top: 60px;
  margin-right: 60px;
  position: relative;
  z-index: 2;
}

.position-grid h2 {
  font-size: 46px;
  font-weight: 700;
  color: #00433d;
  margin-bottom: 25px;
  line-height: 1.1;
}

.position-grid p {
  font-size: 16px;
  color: #8b8b8b;
  font-style: italic;
  line-height: 1.6;
  max-width: 600px;
}

.position-line {
  width: 80px;
  height: 6px;
  background: #0b6b4c;
  margin-bottom: 30px;
}

/* ==========================================
   PROGRAMMES SECTION
========================================== */

.programmes {
  background: #fff;
}

.programmes .section-tag {
  display: block;
  text-align: center;
}

.programmes h2 {
  text-align: center;
}

.programme-slider {
  margin-top: 60px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.programme-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
}

.programme-card img:hover,
.programme-card1 img:hover {
  transform: translateY(-10px);
}

.programme-card1 {
  position: relative;
  width: 150%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
}

.programme-card img,
.programme-card1 img{
  height: 350px;

  object-fit: cover;

  background: #d9d9d9;

  transition: 0.7s ease;
}

.programme-card:hover img,
.programme-card1:hover img{
  transform: scale(1.1);
}

.programme-card::before,
.programme-card1::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));

  z-index: 2;
}

.programme-card-content,
.programme-card1-content {
  position: absolute;

  left: 20px;
  bottom: 20px;

  z-index: 5;

  color: #fff;
}

.programme-card-content h4 {
  color: #fff;
  margin-bottom: 10px;
}

.programme-card-content p {
  color: #fff;
  font-size: 14px;
}

/* ==========================================
   IMAGE HOVER EFFECTS
========================================== */

.image-hover {
  overflow: hidden;
  border-radius: 10px;
}

.image-hover img {
  transition: 0.7s ease;
}

.image-hover:hover img {
  transform: scale(1.1);
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: auto;

  color: #666;
}

/* ==========================================
   CARD SHADOW
========================================== */

.shadow-card {
  background: #fff;

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.shadow-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   MANAGEMENT SECTION
========================================== */

.management {
  background: #f8f8f8;
}

.management-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.management-content h2 {
  margin-bottom: 25px;
}

.management-content ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.management-content ul li {
  padding: 18px 25px;

  background: #fff;

  border-left: 5px solid var(--primary);

  border-radius: 8px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);

  transition: 0.4s ease;
}

.management-content ul li:hover {
  transform: translateX(10px);

  border-left-color: var(--gold);
}

.management-image img {
  min-height: 550px;

  object-fit: cover;

  border-radius: 12px;

  background: #d9d9d9;
}

/* ==========================================
   DEPARTMENTS
========================================== */

.departments {
  background: #fff;
}

.department-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 50px;
}

.department-card {
  padding: 40px 25px;

  background: #fff;

  border-radius: 12px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;

  cursor: pointer;
}

.department-card:hover {
  background: var(--primary);

  color: #fff;

  transform: translateY(-10px);
}

/* ==========================================
   HALL OF FAME
========================================== */

.hall-of-fame {
  background: #f7f7f7;
}

.hall-of-fame h2 {
  text-align: center;

  margin-bottom: 60px;
}

.hall-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.hall-card {
  background: #fff;

  border-radius: 12px;

  overflow: hidden;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.5s ease;
}

.hall-card:hover {
  transform: translateY(-12px);
}

.hall-card img {
  height: 350px;

  object-fit: cover;

  background: #d9d9d9;
}

.hall-card h4 {
  padding-top: 25px;
}

.hall-card p {
  padding: 0 20px 25px;

  color: #666;
}

/* ==========================================
   FOOTER
========================================== */
.footer-top {
  text-align: center;

  margin-bottom: 60px;
}

.footer-logo img {
  width: 90px;

  margin: 0 auto 20px;
}

.footer-logo h3 {
  color: #fff;

  margin-bottom: 15px;
}

.footer-logo p {
  color: #ddd;

  max-width: 700px;

  margin: auto;
}

.footer-widget h4 {
  color: #fff;

  margin-bottom: 20px;

  font-size: 20px;
}

.footer-widget p {
  color: #ddd;

  margin-bottom: 15px;
}

.footer-widget ul {
  list-style: none;

  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #ddd;

  transition: 0.3s;
}

.footer-widget ul li a:hover {
  color: #d7a11c;

  padding-left: 8px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 15px;

  border: none;

  border-radius: 5px;
}

.newsletter-form button {
  background: #0f6d3e;

  color: #fff;

  padding: 15px;

  border: none;

  cursor: pointer;

  transition: 0.4s;
}

.newsletter-form button:hover {
  background: #d7a11c;
}

.footer-social {
  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  border-radius: 50%;

  transition: 0.4s;
}

.footer-social a:hover {
  background: #d7a11c;

  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 40px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 15px;
}

.footer-bottom p {
  color: #ccc;

  margin: 0;
}

.footer {
  position: relative;

  padding: 100px 0 40px;

  background: #003d35;

  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.footer h3 {
  color: #fff;

  margin-bottom: 25px;
}

.footer p,
.footer li,
.footer a {
  color: #ddd;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a:hover {
  color: var(--gold);
}

/* ==========================================
   NEWSLETTER
========================================== */

.footer form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer input {
  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 6px;
}

.footer button {
  padding: 15px;

  background: var(--primary);

  color: #fff;

  border-radius: 6px;

  transition: 0.4s ease;
}

.footer button:hover {
  background: var(--gold);
}

/* ==========================================
   COPYRIGHT
========================================== */

.copyright {
  margin-top: 60px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 25px;

  color: #ddd;
}

/* ==========================================
   BACK TO TOP
========================================== */

.back-to-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 999;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .about-grid,
  .functions-grid,
  .position-grid,
  .management-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .programme-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .department-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hall-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   MOBILE MENU
========================================== */

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .navbar {
    position: fixed;

    top: 90px;
    left: -100%;
    display: none;
    width: 300px;
    height: 100vh;

    background: #fff;

    transition: 0.4s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    padding: 30px;
  }

  .navbar.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .nav-links li a {
    color: #222 !important;
  }

  .dropdown-menu {
    position: relative;

    opacity: 1;
    visibility: visible;

    transform: none;

    display: none;

    box-shadow: none;

    width: 100%;

    margin-top: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .social-icons {
    display: none;
  }

  .hero-content {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .programme-slider {
    grid-template-columns: 1fr;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .hall-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    text-align: center;
  }
  .vision,
  .mission {
    text-align: center;
  }
  .vision-card,
  .mission-card {
    text-align: center;
  }
  .functions-content p,
  .functions-content h2 {
    text-align: center;
  }
  .about-grid,
  .vision-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;

    justify-items: center; /* centers grid items horizontally */
    text-align: center; /* centers text content */
    padding-right: 0;
  }
  .functions-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }
  .scope-title h2 {
    text-align: center;
  }
  .scope-title {
    justify-content: center;
  }
  .container {
    /* justify-content:center; */
  }
  .hero-buttons {
    justify-content: center;
    align-items: center;
  }
  .position-grid {
    text-align: center;
  }
  .scope-card {
    text-align: center;
  }
  .scope-title h2 {
    text-align: center;
    margin-left: 30px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .btn-primary {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-video {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    height: 700px;
    margin-top: -120px;
  }

  .year-box {
    right: 20px;
    bottom: 20px;
    width: 200px;
    padding: 25px;
  }

  .year-box h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .about-section {
    margin-top: 0;
  }

  .about-image {
    height: 450px;

    margin-top: 0;

    overflow: visible;
  }

  .about-image img {
    height: 50%;
    object-fit: cover;
  }

  .year-box {
    width: 170px;

    right: 10px;

    bottom: 10px;

    padding: 18px;
  }

  .year-box span {
    font-size: 11px;

    line-height: 1.4;
  }

  .year-box h2 {
    font-size: 38px;

    margin-top: 5px;
  }
}
@media (max-width: 480px) {
  .about-image {
    height: 350px;
  }

  .year-box {
    width: 140px;

    padding: 15px;

    right: 5px;
    bottom: 5px;
  }

  .year-box span {
    font-size: 10px;
  }

  .year-box h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .scope-wrapper {
    grid-template-columns: 1fr;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .scope-title h2 {
    font-size: 3rem;
  }

  .scope-btn-wrap {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .position-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .position-grid::before {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    height: 250px;
  }

  .position-grid h2 {
    font-size: 40px;
  }

  .position-grid p {
    font-size: 18px;
  }
}
/* =========================
   MOBILE OFFCANVAS MENU (UNIVERSAL)
========================= */

.menu-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;

  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   SIDEBAR MENU
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;

  width: 85%;
  max-width: 320px; /* IMPORTANT FIX */

  height: 100vh;

  background: #fff;

  z-index: 1000;

  transition: 0.4s ease;

  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);

  display: flex;
  flex-direction: column;
}

/* OPEN STATE */
.mobile-menu.active {
  left: 0;
}

/* =========================
   HEADER
========================= */

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 20px;

  border-bottom: 1px solid #eee;
}

.mobile-menu-header h3 {
  font-size: 18px;
  color: #0f6d3e;
}

.close-menu {
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* =========================
   LINKS
========================= */

.mobile-menu-links {
  list-style: none;

  padding: 10px 0;

  overflow-y: auto;
}

.mobile-menu-links li {
  border-bottom: 1px solid #f2f2f2;
}

.mobile-menu-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 18px;

  color: #333;

  font-weight: 500;

  transition: 0.3s;
}

/* HOVER EFFECT */
.mobile-menu-links li a:hover {
  background: #f5f5f5;
  padding-left: 22px;

  color: #0f6d3e;
}
/* MOBILE DROPDOWN */

.mobile-dropdown{

    border-bottom:1px solid #eee;

}

.mobile-dropdown-toggle{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 20px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.mobile-dropdown-toggle:hover{

    background:#f7f7f7;

    color:#0f6d3e;

}

.mobile-dropdown-toggle i{

    transition:.35s;

}

.mobile-dropdown.active .mobile-dropdown-toggle i{

    transform:rotate(45deg);

}

/* SUBMENU */

.mobile-submenu{

    list-style:none;

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    background:#f8f8f8;

}

.mobile-dropdown.active .mobile-submenu{

    max-height:500px;

}

.mobile-submenu li{

    border-top:1px solid #ececec;

}

.mobile-submenu li a{

    display:block;

    padding:14px 40px;

    color:#444;

    transition:.3s;

}

.mobile-submenu li a:hover{

    background:#ececec;

    color:#0f6d3e;

    padding-left:50px;

}


@media (max-width:1024px){

.header{

    padding:12px 25px;

}

.nav-container{

    min-height:80px;

}

.logo{

    width:90px;

}

.logo img{

    margin-left:0;

    width:100%;

}

/* Hide desktop navigation */

.navbar{

    position:fixed;

    top:104px;
    left:-100%;

    width:320px;
    height:calc(100vh - 104px);

    background:#fff;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    transition:.45s ease;

    overflow-y:auto;

    z-index:999;

}

.navbar.active{

    left:0;

}

.nav-links{

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    padding:30px;

}

.nav-links li{

    width:100%;

}

.nav-links li a{

    display:block;

    width:100%;

    padding:18px 0;

    border-bottom:1px solid #eee;

    font-size:16px;

}

/* Dropdown */

.dropdown-menu{

    position:static;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

    box-shadow:none;

    padding:0;

    margin-left:15px;

    background:#f8f8f8;

    border-radius:8px;

}

.dropdown.active .dropdown-menu{

    display:block;

}

.dropdown-menu li a{

    padding:12px 18px;

    border:none;

}

/* Mobile button */

.mobile-toggle{

    display:block;

    font-size:30px;

    cursor:pointer;

    color:#111;

    z-index:1001;

}

/* Hide social icons */

.social-icons{

    display:none;

}
.about-image img{
   width: 100%;
   margin-top: 80px;
  }

}


.executive-hero{

    position:relative;
    width:100%;
    min-height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding-top: 70px;
    overflow:hidden;
    background:
    linear-gradient(rgba(0, 0, 0, 0.439),
    rgba(27, 18, 18, 0.75)),
    url("../../media/gallery/DSC_9259.jpg");
    background-size: cover;
    /* background-position: center; */

}

.executive-overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.08),
    transparent 70%);

}

.executive-content{

    position:relative;
    z-index:5;
    width:900px;
    max-width:92%;

}
.executive-badge{

    display:inline-block;

    padding:12px 30px;

    border:1px solid rgba(255,255,255,.18);

    border-radius:40px;

    color:#D4AF37;

    letter-spacing:3px;

    margin-bottom:30px;

    backdrop-filter:blur(10px);

}

.executive-content h1{

    font-size:65px;

    color:white;

    margin-bottom:20px;

}

.executive-content p{

    color:#ddd;

    line-height:1.9;

    font-size:19px;

}