/* ==========================================
   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: 90vh;
  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;
  flex-direction: column;


  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: -230px;
  display: flex;
  padding: 10px;
  justify-content: center;
  background: rgb(11, 37, 11);
  z-index: 20;
  position: relative;
  overflow: visible;
  border-radius: 0px;
  height: 400px;
}

.about-image img {
  /* width: 100%; */
  margin: 10px;
  /* height: 100%; */
  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;
}

/* ==========================================
   story SECTION
========================================== */

.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 70px;
  padding: 10px 90px;
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 10px;
}

.story-image img {
  min-height: 500px;
  object-fit: cover;
  background: #d9d9d9;

  transition: 0.6s ease;
}

.story-image:hover img {
  transform: scale(1.08);
}

.story-content h2 {
  margin-bottom: 25px;
}
.story-content h3{
    font-size: 20px;
}
.story-content p {
  text-align: justify;
  color: #666;
}
.story-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,
  .story-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: left;
  }
  .vision,
  .mission {
    text-align: center;
  }
  .vision-card,
  .mission-card {
    text-align: center;
  }
  .story-content p,
  .story-content h2 {
    text-align: justify;
  }
  .about-grid,
  .vision-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;

    justify-items: left; /* centers grid items horizontally */
    text-align: left; /* centers text content */
    padding-right: 0;
  }
  .story-grid {
    text-align: justify;
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .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;
    padding: 25px;

    overflow: visible;
  }

  .about-image img {
    height: 100%;
    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;

}

/*==================================================
MEMBERSHIP PAGE GLOBAL
==================================================*/

.member-page section{

    position:relative;

    overflow:hidden;

}

.section-padding{

    padding:120px 0;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(15,109,62,.08);

    color:#0f6d3e;

    font-weight:600;

    font-size:14px;

    letter-spacing:.5px;

}

.section-tag::before{

    content:"";

    width:10px;
    height:10px;

    border-radius:50%;

    background:#d4af37;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:48px;

    line-height:1.2;

    margin:20px 0;

    color:#1a1a1a;

}

.section-title p{

    max-width:750px;

    margin:auto;

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/*==================================================
INTRODUCTION SECTION
==================================================*/

.member-intro{

    background:#fff;

}

.member-intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/*=========================
IMAGE
=========================*/

.member-intro-image{

    position:relative;

}

.member-intro-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:20px;

    background:#d9d9d9;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

/* Decorative Shape */

.member-intro-image::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(212,175,55,.15);

    top:-50px;
    left:-50px;

    z-index:-1;

}

.member-intro-image::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(15,109,62,.08);

    right:-80px;
    bottom:-80px;

    z-index:-1;

}

/*=========================
BADGE
=========================*/

.intro-badge{

    position:absolute;

    bottom:35px;
    right:-40px;

    background:#0f6d3e;

    color:#fff;

    padding:25px 35px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(15,109,62,.30);

    text-align:center;

    min-width:220px;

}

.intro-badge h2{

    color:#fff;

    font-size:48px;

    margin-bottom:5px;

}

.intro-badge span{

    font-size:15px;

    opacity:.95;

}

/*=========================
CONTENT
=========================*/

.member-intro-content h2{

    font-size:52px;

    line-height:1.2;

    margin:20px 0;

    color:#1a1a1a;

}

.member-intro-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;

}

/*=========================
FEATURES
=========================*/

.intro-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}

.intro-features div{

    display:flex;

    align-items:center;

    gap:12px;

    background:#f8f9fa;

    padding:18px 22px;

    border-radius:12px;

    font-weight:600;

    transition:.4s;

}

.intro-features div:hover{

    transform:translateY(-5px);

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.intro-features div i{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#0f6d3e;

    color:#fff;

    font-size:15px;

}

/*==================================================
INTRO ANIMATION
==================================================*/

.member-intro-image img{

    transition:.6s ease;

}

.member-intro-image:hover img{

    transform:scale(1.03);

}

.intro-badge{

    animation:floatBadge 4s ease-in-out infinite;

}

@keyframes floatBadge{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
WHY BECOME A MEMBER
==================================================*/

.why-member{

    background:#f8faf9;

    position:relative;

    overflow:hidden;

}

/* Decorative Shapes */

.why-member::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(15,109,62,.05);

    top:-150px;
    left:-150px;

}

.why-member::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    right:-120px;
    bottom:-120px;

}

/*=========================
GRID
=========================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

    position:relative;

    z-index:2;

}

/*=========================
CARD
=========================*/

.why-card{

    position:relative;

    background:#fff;

    padding:45px 35px;

    border-radius:18px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    border:1px solid #ececec;

}

/* TOP BORDER EFFECT */

.why-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#0f6d3e;

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}
/* GOLD CIRCLE */

.why-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    top:-90px;
    right:-90px;

    transition:.5s;

}

/*=========================
ICON
=========================*/

/* .why-card .icon{

    width:85px;
    height:85px;

    margin:auto auto 28px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#0f6d3e;

    color:#fff;

    font-size:34px;

    transition:.5s;

    position:relative;

    z-index:2;

} */


.why-card .icon{

    width:85px;
    height:85px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    margin-bottom:28px;

    background:linear-gradient(
    135deg,
    #0f6d3e,
    #18894f);

    color:#fff;

    font-size:34px;

    transition:.5s;

}



/*=========================
TEXT
=========================*/

.why-card h3{

    font-size:26px;

    margin-bottom:18px;

    color:#222;

    transition:.3s;

    position:relative;

    z-index:2;

}

.why-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;

    position:relative;

    z-index:2;

}

/*=========================
HOVER
=========================*/

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover::after{

    transform:scale(1.2);

}

.why-card:hover .icon{

    background:#d4af37;

    transform:rotateY(360deg);

}

.why-card:hover h3{

    color:#0f6d3e;

}

/*=========================
ICON PULSE
=========================*/

.why-card .icon::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:2px dashed rgba(15,109,62,.25);

    animation:spinCircle 18s linear infinite;

}

@keyframes spinCircle{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*=========================
HOVER GLOW
=========================*/

.why-card:hover .icon{

    box-shadow:

    0 0 0 10px rgba(15,109,62,.08),

    0 15px 35px rgba(15,109,62,.25);

}

/*=========================
FADE ANIMATION
=========================*/

.why-card{

    opacity:0;

    transform:translateY(40px);

    animation:whyFade .8s forwards;

}

.why-card:nth-child(1){animation-delay:.1s;}
.why-card:nth-child(2){animation-delay:.2s;}
.why-card:nth-child(3){animation-delay:.3s;}
.why-card:nth-child(4){animation-delay:.4s;}
.why-card:nth-child(5){animation-delay:.5s;}
.why-card:nth-child(6){animation-delay:.6s;}

@keyframes whyFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
ELIGIBILITY SECTION
==================================================*/

.eligibility{

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.eligibility::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(15,109,62,.04);

    left:-250px;
    top:-250px;

}

.eligibility::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    right:-150px;
    bottom:-150px;

}

/*==============================
GRID
==============================*/

.eligibility-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

    position:relative;

    z-index:2;

}

/*==============================
CARD
==============================*/

.eligibility-card{

    background:#fff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.06);

    transition:.45s ease;

    position:relative;

    overflow:hidden;

}

.eligibility-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:#0f6d3e;

}

.eligibility-card::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(15,109,62,.05);

    top:-100px;
    right:-100px;

    transition:.4s;

}

/*==============================
ICON
==============================*/

.eligibility-card i{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#0f6d3e;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

    position:relative;

    z-index:2;

    transition:.4s;

}

/*==============================
TITLE
==============================*/

.eligibility-card h3{

    font-size:28px;

    color:#222;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}

/*==============================
LIST
==============================*/

.eligibility-card ul{

    list-style:none;

    padding:0;

    position:relative;

    z-index:2;

}

.eligibility-card ul li{

    position:relative;

    padding-left:38px;

    margin-bottom:18px;

    color:#666;

    line-height:1.8;

    font-size:14px;

}

.eligibility-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:0;

    width:24px;
    height:24px;

    border-radius:50%;

    background:#0f6d3e;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:13px;

    font-weight:bold;

}

/*==============================
HOVER
==============================*/

.eligibility-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.eligibility-card:hover::after{

    transform:scale(1.25);

}

.eligibility-card:hover i{

    background:#d4af37;

    transform:rotateY(360deg);

}

.eligibility-card:hover h3{

    color:#0f6d3e;

}

/*==============================
NUMBER BADGE
(Optional)
==============================*/

.eligibility-card .card-number{

    position:absolute;

    top:25px;
    right:30px;

    font-size:70px;

    font-weight:800;

    color:rgba(15,109,62,.06);

    line-height:1;

    pointer-events:none;

}

/*==============================
ENTRY ANIMATION
==============================*/

.eligibility-card{

    animation:slideCard .8s ease forwards;

    opacity:0;

    transform:translateY(50px);

}

.eligibility-card:nth-child(1){

    animation-delay:.2s;

}

.eligibility-card:nth-child(2){

    animation-delay:.4s;

}

@keyframes slideCard{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==============================
GREEN STRIP ON HOVER
==============================*/

.eligibility-card:hover::before{

    background:linear-gradient(
        90deg,
        #0f6d3e,
        #d4af37
    );

}
/*==================================================
MEMBERSHIP CATEGORIES
==================================================*/

.member-category{

    background:#f8faf9;

    position:relative;

    overflow:hidden;

}

.member-category::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(15,109,62,.05);

    top:-220px;
    left:-220px;

}

.member-category::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    bottom:-180px;
    right:-180px;

}

/*==============================
GRID
==============================*/

.category-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

    position:relative;

    z-index:2;

}

/*==============================
CARD
==============================*/

.category-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    padding:50px;

    transition:.45s ease;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*==============================
TOP BAR
==============================*/

.category-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:8px;

    background:#0f6d3e;

}

/*==============================
POPULAR RIBBON
==============================*/

.category-card:first-child::after{

    content:"Most Popular";

    position:absolute;

    top:20px;
    right:-40px;

    width:170px;

    text-align:center;

    background:#d4af37;

    color:#fff;

    padding:10px 0;

    transform:rotate(45deg);

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

}

/*==============================
HONORARY CARD
==============================*/

.category-card.honorary{

    background:linear-gradient(
        180deg,
        #ffffff,
        #fffdf6
    );

}

.category-card.honorary::before{

    background:#d4af37;

}

/*==============================
HEADER
==============================*/

.category-header{

    text-align:center;

    margin-bottom:40px;

}

.category-header i{

    width:90px;
    height:90px;

    margin:auto;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#0f6d3e;

    color:#fff;

    font-size:38px;

    transition:.5s;

}

.category-card.honorary
.category-header i{

    background:#d4af37;

}

.category-header h3{

    margin-top:25px;

    font-size:32px;

    color:#222;

}

/*==============================
FEATURE LIST
==============================*/

.category-card ul{

    list-style:none;

    padding:0;

    margin:40px 0;

}

.category-card ul li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    color:#555;

    font-size:17px;

}

.category-card ul li i{

    width:30px;
    height:30px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#0f6d3e;

    color:#fff;

    font-size:13px;

}

.category-card.honorary ul li i{

    background:#d4af37;

}

/*==============================
BUTTON
==============================*/

.category-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:100%;

    padding:16px;

    border-radius:8px;

    background:#0f6d3e;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.category-card.honorary
.category-btn{

    background:#d4af37;

}

.category-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/*==============================
HOVER EFFECT
==============================*/

.category-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.category-card:hover .category-header i{

    transform:rotateY(360deg);

}

/*==============================
BACKGROUND CIRCLE
==============================*/

.category-card .bg-circle{

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(15,109,62,.05);

    right:-110px;
    bottom:-110px;

}

.category-card.honorary .bg-circle{

    background:rgba(212,175,55,.08);

}

/*==============================
PRICE STYLE LABEL
(Optional)
==============================*/

.member-type{

    display:inline-block;

    margin-top:10px;

    padding:8px 18px;

    border-radius:50px;

    background:#eef8f2;

    color:#0f6d3e;

    font-size:14px;

    font-weight:600;

}

.category-card.honorary .member-type{

    background:#fff5d8;

    color:#b8860b;

}

/*==============================
ENTRY ANIMATION
==============================*/

.category-card{

    opacity:0;

    transform:translateY(50px);

    animation:categoryFade .8s ease forwards;

}

.category-card:nth-child(1){

    animation-delay:.2s;

}

.category-card:nth-child(2){

    animation-delay:.4s;

}

@keyframes categoryFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
REQUIRED DOCUMENTS
==================================================*/

.required-documents{

    background:#fff;

    position:relative;

    overflow:hidden;

}

.required-documents::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(15,109,62,.05);

    left:-200px;
    bottom:-200px;

}

.required-documents::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    right:-150px;
    top:-150px;

}

/*==============================
GRID
==============================*/

.document-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

    position:relative;

    z-index:2;

}

/*==============================
CARD
==============================*/

.document-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    border:1px solid rgba(0,0,0,.08);

    transition:.45s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.document-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:#0f6d3e;

    transform:scaleX(0);

    transition:.45s;

}

.document-card:hover::before{

    transform:scaleX(1);

}

.document-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.document-icon{

    width:85px;
    height:85px;

    margin:auto;

    border-radius:50%;

    background:#0f6d3e;

    display:flex;

    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:34px;

    transition:.45s;

}

.document-card:hover .document-icon{

    background:#d4af37;

    transform:rotateY(360deg);

}

.document-card h3{

    margin:30px 0 15px;

    font-size:24px;

    color:#222;

}

.document-card p{

    color:#666;

    line-height:1.8;

}

/*==================================================
APPLICATION TIMELINE
==================================================*/

.application-process{

    background:#f8faf9;

}

.process-timeline{

    position:relative;

    margin-top:90px;

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:30px;

}

/* Connecting Line */

.process-timeline::before{

    content:"";

    position:absolute;

    left:7%;

    right:7%;

    top:45px;

    height:4px;

    background:#d4af37;

    z-index:1;

}

/*==============================
STEP
==============================*/

.timeline-step{

    position:relative;

    text-align:center;

    z-index:2;

}

.timeline-step .circle{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0f6d3e;

    color:#fff;

    font-size:32px;

    font-weight:bold;

    display:flex;

    justify-content:center;
    align-items:center;

    transition:.45s;

    border:8px solid #fff;

    box-shadow:0 12px 35px rgba(0,0,0,.15);

}

.timeline-step h4{

    margin-top:25px;

    font-size:18px;

    color:#222;

    line-height:1.5;

}

.timeline-step:hover .circle{

    background:#d4af37;

    transform:scale(1.1);

}

/*==============================
STEP NUMBER ANIMATION
==============================*/

.timeline-step .circle{

    animation:pulseTimeline 2.5s infinite;

}

@keyframes pulseTimeline{

    0%{

        box-shadow:0 0 0 0 rgba(15,109,62,.3);

    }

    70%{

        box-shadow:0 0 0 20px rgba(15,109,62,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(15,109,62,0);

    }

}

/*==============================
ARROW
==============================*/

.timeline-step::after{

    content:"➜";

    position:absolute;

    top:32px;

    right:-22px;

    color:#d4af37;

    font-size:26px;

}

.timeline-step:last-child::after{

    display:none;

}

/*==============================
HOVER
==============================*/

.timeline-step:hover h4{

    color:#0f6d3e;

}

/*==============================
FADE ANIMATION
==============================*/

.timeline-step{

    opacity:0;

    transform:translateY(40px);

    animation:timelineFade .8s forwards;

}

.timeline-step:nth-child(1){

    animation-delay:.1s;

}

.timeline-step:nth-child(2){

    animation-delay:.2s;

}

.timeline-step:nth-child(3){

    animation-delay:.3s;

}

.timeline-step:nth-child(4){

    animation-delay:.4s;

}

.timeline-step:nth-child(5){

    animation-delay:.5s;

}

.timeline-step:nth-child(6){

    animation-delay:.6s;

}

@keyframes timelineFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
IMPORTANT NOTICE
==================================================*/

.member-notice{

    background:#fff;

    position:relative;

    overflow:hidden;

}

.notice-box{

    display:flex;

    align-items:flex-start;

    gap:30px;

    padding:50px;

    background:linear-gradient(135deg,#0f6d3e,#16794a);

    color:#fff;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(15,109,62,.25);

    position:relative;

    overflow:hidden;

}

.notice-box::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-120px;
    top:-120px;

}

.notice-icon{

    width:80px;
    height:80px;

    min-width:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:#fff;

    color:#0f6d3e;

    font-size:34px;

}

.notice-box h3{

    color:#fff;

    font-size:32px;

    margin-bottom:15px;

}

.notice-box p{

    line-height:1.9;

    opacity:.95;

    margin-bottom:15px;

}

/*==================================================
DOWNLOADS
==================================================*/

.member-downloads{

    background:#f8faf9;

}

.download-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.download-card{

    display:flex;

    align-items:center;

    gap:25px;

    padding:30px;

    background:#fff;

    border-radius:16px;

    text-decoration:none;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.06);

}

.download-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.download-card i{

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#0f6d3e;

    color:#fff;

    font-size:28px;

    transition:.4s;

}

.download-card:hover i{

    background:#d4af37;

    transform:rotateY(360deg);

}

.download-card h4{

    color:#222;

    margin-bottom:8px;

    font-size:22px;

}

.download-card span{

    color:#777;

    font-size:15px;

}

/*==================================================
FAQ
==================================================*/

.membership-faq{

    background:#fff;

}

.faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    background:#fff;

    border:1px solid #e9e9e9;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    padding:25px 30px;

    transition:.3s;

}

.faq-question:hover{

    background:#f8faf9;

}

.faq-question h4{

    font-size:20px;

    color:#222;

}

.faq-question i{

    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#0f6d3e;

    color:#fff;

    transition:.4s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.45s ease;

    padding:0 30px;

}

.faq-answer p{

    color:#666;

    line-height:1.8;

    padding-bottom:25px;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question{

    background:#0f6d3e;

}

.faq-item.active h4{

    color:#fff;

}

.faq-item.active .faq-question i{

    background:#fff;

    color:#0f6d3e;

    transform:rotate(45deg);

}

/*==================================================
CALL TO ACTION
==================================================*/

.member-cta{

    position:relative;

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #0f6d3e,
        #1b8b55
    );

    overflow:hidden;

}

/* Decorative Circles */

.member-cta::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-220px;
    left:-180px;

}

.member-cta::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    border-radius:50%;

    background:rgba(212,175,55,.15);

    right:-180px;
    bottom:-180px;

}

/*=============================
CTA BOX
=============================*/

.cta-box{

    position:relative;

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:80px 60px;

    border-radius:25px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:0 30px 80px rgba(0,0,0,.18);

}

.cta-box span{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:#d4af37;

    color:#fff;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

    letter-spacing:.5px;

}

.cta-box h2{

    color:#fff;

    font-size:54px;

    line-height:1.2;

    margin-bottom:25px;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    color:rgba(255,255,255,.92);

    line-height:2;

    font-size:18px;

}

/*=============================
BUTTONS
=============================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:50px;

}

.cta-buttons a{

    min-width:220px;

    text-align:center;

    text-decoration:none;

    padding:18px 35px;

    border-radius:8px;

    font-size:16px;

    font-weight:600;

    transition:.4s;

}

/* Apply Button */

.cta-buttons .btn-primary{

    background:#d4af37;

    color:#fff;

}

.cta-buttons .btn-primary:hover{

    background:#fff;

    color:#0f6d3e;

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

/* Contact Button */

.cta-buttons .btn-secondary{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.cta-buttons .btn-secondary:hover{

    background:#fff;

    color:#0f6d3e;

    transform:translateY(-5px);

}

/*=============================
FLOAT ANIMATION
=============================*/

.cta-box{

    animation:ctaFloat 5s ease-in-out infinite;

}

@keyframes ctaFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
RESPONSIVE - LARGE LAPTOP
1200px
==================================================*/

@media (max-width:1200px){

.container{

    width:92%;

}

.intro-grid,
.why-grid,
.eligibility-grid,
.category-grid{

    gap:35px;

}

.document-grid{

    grid-template-columns:repeat(2,1fr);

}

.process-timeline{

    grid-template-columns:repeat(3,1fr);

    row-gap:70px;

}

.process-timeline::before{

    display:none;

}

.timeline-step::after{

    display:none;

}

.cta-box{

    padding:70px 45px;

}

.cta-box h2{

    font-size:46px;

}

}



/*==================================================
RESPONSIVE
992px
==================================================*/

@media (max-width:992px){

.section-padding{

    padding:90px 0;

}

/*-------------------
INTRO
--------------------*/

.intro-grid{

    grid-template-columns:1fr;

    gap:60px;

}

.intro-image{

    order:-1;

}

/*-------------------
WHY JOIN
--------------------*/

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

/*-------------------
ELIGIBILITY
--------------------*/

.eligibility-grid{

    grid-template-columns:1fr;

}

/*-------------------
CATEGORY
--------------------*/

.category-grid{

    grid-template-columns:1fr;

}

/*-------------------
DOCUMENTS
--------------------*/

.document-grid{

    grid-template-columns:repeat(2,1fr);

}

/*-------------------
TIMELINE
--------------------*/

.process-timeline{

    grid-template-columns:repeat(2,1fr);

    gap:45px;

}

/*-------------------
NOTICE
--------------------*/

.notice-box{

    flex-direction:column;

    text-align:center;

}

.notice-icon{

    margin:auto;

}

/*-------------------
DOWNLOADS
--------------------*/

.download-grid{

    grid-template-columns:1fr;

}

/*-------------------
CTA
--------------------*/

.cta-box{

    padding:60px 40px;

}

.cta-box h2{

    font-size:40px;

}

.cta-buttons{

    flex-wrap:wrap;

}

.cta-buttons a{

    width:100%;

}

}



/*==================================================
TABLET
768px
==================================================*/

@media (max-width:768px){

.section-padding{

    padding:80px 0;

}

.section-title h2{

    font-size:34px;

}

/*-------------------
INTRO
--------------------*/

.intro-content h2{

    font-size:34px;

}

.intro-image{

    height:420px;

}

.intro-image img{

    height:100%;

    object-fit:cover;

}

/*-------------------
WHY JOIN
--------------------*/

.why-grid{

    grid-template-columns:1fr;

}

.why-card{

    padding:35px;

}

/*-------------------
ELIGIBILITY
--------------------*/

.eligibility-card{

    padding:35px;

}

/*-------------------
CATEGORY
--------------------*/

.category-card{

    padding:35px;

}

.category-header h3{

    font-size:28px;

}

.category-card:first-child::after{

    display:none;

}

/*-------------------
DOCUMENTS
--------------------*/

.document-grid{

    grid-template-columns:1fr;

}

.document-card{

    padding:35px;

}

/*-------------------
TIMELINE
--------------------*/

.process-timeline{

    grid-template-columns:1fr;

    gap:50px;

}

.timeline-step{

    max-width:380px;

    margin:auto;

}

.timeline-step .circle{

    width:80px;

    height:80px;

}

.timeline-step h4{

    font-size:20px;

}

/*-------------------
NOTICE
--------------------*/

.notice-box{

    padding:40px 30px;

}

.notice-box h3{

    font-size:28px;

}

/*-------------------
DOWNLOAD
--------------------*/

.download-card{

    flex-direction:column;

    text-align:center;

}

/*-------------------
FAQ
--------------------*/

.faq-question{

    padding:22px;

}

.faq-question h4{

    font-size:18px;

}

/*-------------------
CTA
--------------------*/

.cta-box{

    padding:50px 25px;

}

.cta-box h2{

    font-size:34px;

}

.cta-box p{

    font-size:16px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons a{

    width:100%;

}

}


/*==================================================
MOBILE LARGE
576px
==================================================*/

@media (max-width:576px){

.section-padding{

    padding:70px 0;

}

.container{

    width:92%;

}

.section-title h2{

    font-size:30px;

    line-height:1.3;

}

.section-title p{

    font-size:15px;

}

/*---------------------
INTRO
----------------------*/

.intro-content h2{

    font-size:30px;

}

.intro-content p{

    font-size:16px;

}

.intro-image{

    height:320px;

}

/*---------------------
WHY JOIN
----------------------*/

.why-card{

    padding:28px;

}

.why-card i{

    width:70px;

    height:70px;

    font-size:28px;

}

.why-card h3{

    font-size:22px;

}

/*---------------------
ELIGIBILITY
----------------------*/

.eligibility-card{

    padding:28px;

}

.eligibility-card h3{

    font-size:22px;

}

/*---------------------
CATEGORY
----------------------*/

.category-card{

    padding:28px;

}

.category-header h3{

    font-size:24px;

}

.category-header i{

    width:75px;

    height:75px;

    font-size:28px;

}

/*---------------------
DOCUMENTS
----------------------*/

.document-card{

    padding:28px;

}

.document-icon{

    width:70px;

    height:70px;

    font-size:28px;

}

/*---------------------
TIMELINE
----------------------*/

.timeline-step .circle{

    width:70px;

    height:70px;

    font-size:26px;

}

.timeline-step h4{

    font-size:18px;

}

/*---------------------
NOTICE
----------------------*/

.notice-box{

    padding:30px 20px;

}

.notice-icon{

    width:70px;

    height:70px;

    font-size:28px;

}

.notice-box h3{

    font-size:24px;

}

/*---------------------
DOWNLOAD
----------------------*/

.download-card{

    padding:22px;

}

.download-card h4{

    font-size:20px;

}

/*---------------------
FAQ
----------------------*/

.faq-question{

    padding:18px;

}

.faq-question h4{

    font-size:17px;

}

.faq-answer{

    padding:0 18px;

}

/*---------------------
CTA
----------------------*/

.cta-box{

    padding:40px 20px;

}

.cta-box h2{

    font-size:30px;

}

.cta-box p{

    font-size:15px;

}

.cta-buttons a{

    min-width:100%;

}

}


/*==================================================
480px
==================================================*/

@media (max-width:480px){

.section-title h2{

    font-size:26px;

}

.intro-content h2{

    font-size:26px;

}

.intro-image{

    height:260px;

}

.timeline-step{

    max-width:100%;

}

.timeline-step .circle{

    width:65px;

    height:65px;

    font-size:24px;

}

.category-card,
.document-card,
.eligibility-card,
.why-card{

    padding:22px;

}

.cta-box{

    padding:35px 18px;

}

.cta-box h2{

    font-size:26px;

}

.notice-box{

    border-radius:15px;

}

}


/*==================================================
430px
==================================================*/

@media (max-width:430px){

.section-title h2{

    font-size:24px;

}

.intro-content h2{

    font-size:24px;

}

.download-card{

    flex-direction:column;

    text-align:center;

}

.download-card i{

    margin-bottom:10px;

}

.category-btn{

    width:100%;

}

}


/*==================================================
390px
==================================================*/

@media (max-width:390px){

.timeline-step h4{

    font-size:16px;

}

.document-card h3{

    font-size:20px;

}

.notice-box h3{

    font-size:22px;

}

.cta-box h2{

    font-size:24px;

}

.cta-box span{

    font-size:13px;

}

}


/*==================================================
360px
==================================================*/

@media (max-width:360px){

.container{

    width:94%;

}

.section-padding{

    padding:60px 0;

}

.section-title h2{

    font-size:22px;

}

.intro-content h2{

    font-size:22px;

}

.intro-image{

    height:220px;

}

.why-card,
.eligibility-card,
.category-card,
.document-card{

    padding:18px;

}

.timeline-step .circle{

    width:60px;

    height:60px;

}

.download-card{

    padding:18px;

}

.notice-box{

    padding:25px 15px;

}

.notice-icon{

    width:60px;

    height:60px;

    font-size:24px;

}

.cta-box{

    padding:30px 15px;

}

.cta-box h2{

    font-size:22px;

}

.cta-buttons a{

    padding:15px;

    font-size:15px;

}

}


/*==================================================
320px
==================================================*/

@media (max-width:320px){

.section-title h2{

    font-size:20px;

}

.intro-content h2{

    font-size:20px;

}

.timeline-step .circle{

    width:55px;

    height:55px;

    font-size:20px;

}

.download-card h4{

    font-size:18px;

}

.faq-question h4{

    font-size:15px;

}

.notice-box h3{

    font-size:20px;

}

.cta-box h2{

    font-size:20px;

}

}

/*==================================================
MEMBER INTRO RESPONSIVE
==================================================*/

/*========================
1200px
========================*/

@media (max-width:1200px){

    .member-intro-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

    .member-intro-content h2{

        font-size:44px;

    }

}

/*========================
992px
========================*/

@media (max-width:992px){

    .member-intro{

        padding:90px 0;

    }

    .member-intro-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .member-intro-image{

        order:-1;

        max-width:700px;

        margin:auto;

    }

    .member-intro-content{

        text-align:center;

    }

    .intro-features{

        justify-content:center;

    }

    .member-intro-content h2{

        font-size:40px;

    }

}

/*========================
768px
========================*/

@media (max-width:768px){

    .member-intro{

        padding:80px 0;

    }

    .member-intro-image{

        height:450px;

    }

    .member-intro-image img{

        width:100%;

        height:100%;

        object-fit:cover;

    }

    .member-intro-content h2{

        font-size:34px;

        line-height:1.3;

    }

    .member-intro-content p{

        font-size:16px;

    }

    .intro-features{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:20px;

        margin-top:30px;

    }

    .intro-badge{

        width:170px;

        padding:20px;

    }

    .intro-badge h2{

        font-size:42px;

    }

}

/*========================
576px
========================*/

@media (max-width:576px){

    .member-intro{

        padding:70px 0;

    }

    .member-intro-image{

        height:360px;

    }

    .member-intro-content h2{

        font-size:30px;

    }

    .member-intro-content p{

        font-size:15px;

        line-height:1.9;

    }

    .intro-features{

        grid-template-columns:1fr;

        gap:15px;

    }

    .intro-features div{

        justify-content:flex-start;

    }

    .intro-badge{

        width:150px;

        padding:18px;

        right:15px;

        bottom:15px;

    }

    .intro-badge h2{

        font-size:36px;

    }

}

/*========================
480px
========================*/

@media (max-width:480px){

    .member-intro-image{

        height:300px;

    }

    .member-intro-content h2{

        font-size:26px;

    }

    .member-intro-content p{

        font-size:15px;

    }

    .intro-badge{

        width:135px;

        padding:15px;

    }

    .intro-badge h2{

        font-size:30px;

    }

    .intro-badge span{

        font-size:11px;

    }

}

/*========================
360px
========================*/

@media (max-width:360px){

    .member-intro{

        padding:60px 0;

    }

    .member-intro-image{

        height:240px;

    }

    .member-intro-content h2{

        font-size:22px;

    }

    .member-intro-content p{

        font-size:14px;

    }

    .intro-features{

        gap:12px;

    }

    .intro-features div{

        font-size:14px;

    }

    .intro-badge{

        width:120px;

        padding:12px;

    }

    .intro-badge h2{

        font-size:26px;

    }

    .intro-badge span{

        font-size:10px;

    }

}

/*========================
320px
========================*/

@media (max-width:320px){

    .member-intro-content h2{

        font-size:20px;

    }

    .member-intro-image{

        height:220px;

    }

    .intro-badge{

        width:105px;

        padding:10px;

    }

    .intro-badge h2{

        font-size:22px;

    }

    .intro-badge span{

        font-size:9px;

    }

}


.executive-hero{

    position:relative;
    width:100%;
    min-height:95vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding-top: 70px;
    overflow:hidden;
    background:
    linear-gradient(rgba(0, 0, 0, 0.193),
    rgb(0, 0, 0)),
    url("../../media/gallery/01.jpg") center/cover;

}

.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;

}

.why-card{

    padding:40px 25px;

    text-align:center;

}

/* .why-card .icon{

    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#0f6d3e;
    border:6px solid #e8f5ef;

}

.why-card .icon i{

    color:#fff;
    font-size:30px;

} */

/* .why-card .icon{

    width:85px;
    height:85px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    margin-bottom:28px;

    background:linear-gradient(
    135deg,
    #0f6d3e,
    #18894f);

    color:#fff;

    font-size:34px;

    transition:.5s;

} */

.why-card:hover .icon{

    transform:rotateY(180deg);

    background:linear-gradient(
    135deg,
    #d4af37,
    #f2cb57);

}



@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;
  }

}


@media(max-width:600px){

.executive-heading h1{

font-size:40px;

}

.executive-image{

height:280px;

}

.executive-info{

padding:22px;

}

.executive-info h3{

font-size:19px;

}

.member-content{

padding:22px;

}

.member-name{

font-size:26px;

}

.member-position{

font-size:12px;

}

.close-modal{

width:42px;

height:42px;

}

.executive-content h1 {
  font-size: 48px;
 }
.executive-content p {
  font-size: 16px;
  font-style: italic;
}

}
