* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0d6b2e;
  --primary-dark: #094e21;
  --primary-light: #1a8a3f;
  --gold: #d4a017;
  --gold-light: #f0c75e;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --border: #e5e7eb;
  --text: #374151;
  --heading: #111827;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar .social-links a {
  color: var(--white);
  margin-left: 12px;
  font-size: 15px;
  transition: var(--transition);
}
.top-bar .social-links a:hover { color: var(--gold-light); }

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo-text h1,
.logo-text .site-title {
  font-size: 20px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
}
.logo-text span {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* Navigation */
nav { display: flex; align-items: center; }
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--primary);
  color: var(--white);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 60px 0;
}
.hero-align-left-bottom .hero-content,
.hero-align-center-bottom .hero-content,
.hero-align-right-bottom .hero-content {
  padding-bottom: 40px;
}
.hero-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 70px 0;
}
.section-gray { background: var(--light-gray); }
.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}
.section-dark .section-title h2 { color: var(--white); }
.section-dark .section-title p { color: rgba(255,255,255,0.8); }

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about-text h3 {
  font-size: 26px;
  color: var(--heading);
  margin-bottom: 16px;
}
.about-text p {
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.about-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 30px 16px;
}
.stat-card .number {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-card .label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  height: 200px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.6;
}
.card-body .date {
  font-size: 12px;
  color: var(--gray);
  display: block;
  margin-bottom: 6px;
}
.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { color: var(--primary-dark); }

/* Core Committee */
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.member-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.member-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.member-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 12px;
}
.member-card h4 {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 4px;
}
.member-card .role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.member-card .media {
  font-size: 12px;
  color: var(--gray);
}

/* Sidebar Layout */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 50px 0;
}
.main-content h1 {
  font-size: 30px;
  color: var(--heading);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
}
.main-content h2 {
  font-size: 22px;
  color: var(--heading);
  margin: 24px 0 12px;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.sidebar-widget h3 {
  font-size: 17px;
  color: var(--heading);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  font-size: 13px;
  color: var(--text);
  transition: var(--transition);
  display: block;
}
.sidebar-widget ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,107,46,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 {
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 16px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 2px;
}
.contact-info-text p {
  font-size: 13px;
  color: var(--gray);
}

/* District List */
.district-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.district-list li {
  padding: 6px 12px;
  background: var(--light-gray);
  border-radius: 4px;
  font-size: 14px;
  border-left: 3px solid var(--primary);
}

/* Membership Table */
.membership-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.membership-table th,
.membership-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.membership-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.membership-table td {
  font-size: 14px;
}
.membership-table tr:nth-child(even) {
  background: var(--light-gray);
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-contact .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

/* Whatsapp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: var(--white);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}
.page-header p { opacity: 0.85; font-size: 16px; }
.breadcrumb {
  font-size: 13px;
  margin-top: 10px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* Intro Section */
.intro-section {
  padding: 50px 0;
}
.intro-section h2 {
  font-size: 28px;
  color: var(--heading);
  margin-bottom: 16px;
}
.intro-section p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .page-layout { grid-template-columns: 1fr; }
  .hero-align-left-bottom .hero-content { margin-left: 24px; }
  .hero-3d-logo { width: 120px; height: 120px; }
  .stat-card .number { font-size: 34px; }
  .card-img { height: 180px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    display: none;
    border-top: 2px solid var(--primary);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 14px; font-size: 15px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    display: none;
    background: var(--light-gray);
    border-radius: 6px;
    margin: 4px 0;
  }
  .nav-links > li:hover .dropdown-menu { display: block; }
  .dropdown-menu li a { font-size: 14px; padding: 10px 14px; }

  .hero { min-height: 380px; }
  .hero-content h2 { font-size: 28px; }
  .hero-content p { font-size: 15px; }
  .hero-align-left-bottom .hero-content { margin-left: 16px; padding-bottom: 24px; }

  .section { padding: 50px 0; }
  .section-title { margin-bottom: 32px; }
  .section-title h2 { font-size: 26px; }
  .section-title p { font-size: 14px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image img { height: 280px; }
  .about-text h3 { font-size: 22px; }
  .about-features { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 20px 12px; }
  .stat-card .number { font-size: 30px; }

  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-img { height: 200px; }
  .card-body { padding: 20px; }

  .contact-grid { grid-template-columns: 1fr; gap: 30px; }

  .page-layout { padding: 30px 0; }
  .main-content h1 { font-size: 24px; }

  .page-header { padding: 36px 0; }
  .page-header h1 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  footer { padding: 40px 0 0; }
  .footer-bottom { margin-top: 30px; }

  .top-bar .container { flex-direction: column; text-align: center; gap: 4px; }
  .top-bar { font-size: 12px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 160px; }

  .district-list { grid-template-columns: repeat(2, 1fr); }

  .membership-table { font-size: 13px; display: block; overflow-x: auto; white-space: nowrap; }

  .core-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .hero-3d-logo { width: 80px; height: 80px; right: 5%; top: 8%; }
  .hero-blob:nth-child(1) { width: 200px; height: 180px; }
  .hero-blob:nth-child(2) { width: 150px; height: 200px; }
  .hero-blob:nth-child(3) { display: none; }
  .hero-ring:nth-child(1) { width: 300px; height: 300px; }
  .hero-ring:nth-child(2) { width: 220px; height: 220px; }
  .hero-ring:nth-child(3) { display: none; }
}

@media (max-width: 600px) {
  .page-layout { padding: 20px 0; }
  .hero-align-left-bottom .hero-content { margin-left: 12px; padding-bottom: 16px; }
  .about-image img { height: 220px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 8px 0; }
  .logo-text h1,
  .logo-text .site-title { font-size: 15px; }
  .logo-text span { font-size: 10px; }
  .logo-img { width: 40px; height: 40px; }

  .hero { min-height: 280px; }
  .hero-content h2 { font-size: 22px; }
  .hero-content p { font-size: 14px; margin-bottom: 20px; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { padding: 10px 20px; font-size: 13px; }

  .section { padding: 36px 0; }
  .section-title h2 { font-size: 22px; }
  .section-title p { font-size: 13px; }

  .stats-grid { grid-template-columns: 1fr; gap: 8px; }
  .stat-card { padding: 16px; }
  .stat-card .number { font-size: 28px; }

  .about-grid { gap: 20px; }
  .about-image img { height: 200px; }
  .about-text h3 { font-size: 20px; }
  .about-text p { font-size: 14px; }
  .about-features { gap: 8px; }
  .about-features li { font-size: 13px; }

  .card-img { height: 180px; }
  .card-body { padding: 16px; }
  .card-body h3 { font-size: 16px; }
  .card-body p { font-size: 13px; }

  .page-header { padding: 28px 0; }
  .page-header h1 { font-size: 24px; }
  .page-header p { font-size: 14px; }

  .main-content h1 { font-size: 22px; }
  .main-content h2 { font-size: 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 30px 0 0; }
  .footer-col h3 { font-size: 16px; }
  .footer-bottom { font-size: 12px; padding: 16px 0; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }

  .core-grid { grid-template-columns: 1fr; }
  .member-card { padding: 18px; }

  .page-layout { padding: 16px 0; }
  .sidebar-widget { padding: 18px; }

  .contact-grid { gap: 24px; }
  .contact-info-item { gap: 10px; }

  .district-list { grid-template-columns: 1fr; }

  .container { padding: 0 14px; }

  .whatsapp-float { width: 46px; height: 46px; font-size: 22px; bottom: 16px; right: 16px; }

  .hero-3d-logo { display: none; }
}

/* Hero Alignment */
.hero-align-left-top { justify-content: flex-start; align-items: flex-start; text-align: left; }
.hero-align-center-top { justify-content: center; align-items: flex-start; text-align: center; }
.hero-align-right-top { justify-content: flex-end; align-items: flex-start; text-align: right; }
.hero-align-left-middle { justify-content: flex-start; align-items: center; text-align: left; }
.hero-align-center-middle { justify-content: center; align-items: center; text-align: center; }
.hero-align-right-middle { justify-content: flex-end; align-items: center; text-align: right; }
.hero-align-left-bottom { justify-content: flex-start; align-items: flex-end; text-align: left; }
.hero-align-center-bottom { justify-content: center; align-items: flex-end; text-align: center; }
.hero-align-right-bottom { justify-content: flex-end; align-items: flex-end; text-align: right; }

.hero-align-center-middle .hero-content,
.hero-align-center-top .hero-content,
.hero-align-center-bottom .hero-content {
  max-width: 800px;
}
.hero-align-right-middle .hero-content,
.hero-align-right-top .hero-content,
.hero-align-right-bottom .hero-content {
  margin-left: auto;
}
.hero-align-left-middle .hero-content,
.hero-align-left-top .hero-content,
.hero-align-left-bottom .hero-content {
  margin-right: auto;
}
.hero-align-left-bottom .hero-content {
  margin-left: 40px;
}

/* 3D Hero Effects */
.hero-3d {
  perspective: 1000px;
  overflow: hidden;
}
/* Animated mesh gradient background */
.hero-3d-mesh {
  position: absolute;
  inset: -50%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(13,107,46,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212,160,23,0.08) 0%, transparent 50%);
  animation: meshMove 20s ease-in-out infinite alternate;
}
@keyframes meshMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-2%, 2%) rotate(1deg); }
  50% { transform: translate(1%, -1%) rotate(-1deg); }
  75% { transform: translate(-1%, -2%) rotate(2deg); }
  100% { transform: translate(2%, 1%) rotate(-1deg); }
}
/* Organic morphing blobs */
.hero-3d-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: blobMorph 12s ease-in-out infinite alternate;
}
.hero-blob:nth-child(1) {
  width: 400px;
  height: 350px;
  background: var(--gold);
  top: -100px;
  right: 5%;
  animation-duration: 14s;
}
.hero-blob:nth-child(2) {
  width: 300px;
  height: 400px;
  background: var(--primary-light);
  bottom: -100px;
  left: 0;
  animation-duration: 16s;
  animation-delay: -4s;
}
.hero-blob:nth-child(3) {
  width: 250px;
  height: 250px;
  background: #1a8a3f;
  top: 30%;
  right: 40%;
  animation-duration: 12s;
  animation-delay: -8s;
  opacity: 0.08;
}
@keyframes blobMorph {
  0% { border-radius: 50%; transform: scale(1) translate(0, 0); }
  33% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; transform: scale(1.1) translate(20px, -15px); }
  66% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; transform: scale(0.95) translate(-15px, 10px); }
  100% { border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%; transform: scale(1.05) translate(10px, -5px); }
}
/* Rotating orbital rings */
.hero-3d-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.1);
  animation: ringSpin var(--dur, 20s) linear infinite;
  transform-style: preserve-3d;
}
.hero-ring:nth-child(1) {
  width: 500px;
  height: 500px;
  --dur: 25s;
  right: 5%;
  top: 5%;
  border-color: rgba(212,160,23,0.08);
  border-width: 2px;
}
.hero-ring:nth-child(2) {
  width: 380px;
  height: 380px;
  --dur: 18s;
  right: 8%;
  top: 10%;
  border-color: rgba(255,255,255,0.06);
  border-style: dashed;
}
.hero-ring:nth-child(3) {
  width: 620px;
  height: 620px;
  --dur: 30s;
  right: 2%;
  top: 0;
  border-color: rgba(212,160,23,0.05);
  border-style: dotted;
  border-width: 3px;
}
@keyframes ringSpin {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}
/* 3D Logo with glow ring */
.hero-3d-logo {
  position: absolute;
  z-index: 2;
  width: 160px;
  height: 160px;
  right: 10%;
  top: 12%;
  transform-style: preserve-3d;
  animation: logoLevitate 6s ease-in-out infinite;
}
.hero-3d-logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: logoRotate 12s ease-in-out infinite;
}
.hero-3d-logo-inner img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 30px rgba(212,160,23,0.2),
    0 0 60px rgba(212,160,23,0.1),
    inset 0 0 20px rgba(255,255,255,0.1);
}
.hero-logo-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  z-index: 1;
  background: conic-gradient(from 0deg, transparent, rgba(212,160,23,0.3), transparent, rgba(13,107,46,0.3), transparent);
  animation: glowSpin 4s linear infinite;
}
.hero-logo-glow::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(9,78,33,0.3);
  filter: blur(8px);
}
@keyframes logoLevitate {
  0%, 100% { transform: translateY(0) translateZ(10px); }
  50% { transform: translateY(-12px) translateZ(25px); }
}
@keyframes logoRotate {
  0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
  25% { transform: rotateY(5deg) rotateX(-3deg); }
  50% { transform: rotateY(0deg) rotateX(3deg); }
  75% { transform: rotateY(-5deg) rotateX(-2deg); }
}
@keyframes glowSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Hero content 3D effects */
.hero-3d .hero-content {
  transform-style: preserve-3d;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateZ(0) translateY(0); }
  50% { transform: translateZ(15px) translateY(-6px); }
}
.hero-3d .hero-content h2 {
  transform-style: preserve-3d;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
}
.hero-3d .hero-content p {
  transform-style: preserve-3d;
}
.hero-overlay-3d {
  background: linear-gradient(135deg, rgba(9,78,33,0.85) 0%, rgba(13,107,46,0.7) 40%, rgba(0,0,0,0.45) 100%) !important;
}
.hero-content-3d .btn {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-content-3d .btn:hover {
  transform: translateZ(15px) scale(1.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  z-index: 1;
  line-height: 1;
}
.lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  padding: 12px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--dark);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.3);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212,160,23,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.video-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--white);
}
.video-body { padding: 16px; }
.video-body h4 {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 6px;
}
.video-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* Notifications List */
.notifications-list {
  margin: 16px 0 40px;
}
.notification-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.notification-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}
.notification-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.notification-body h4 {
  font-size: 15px;
  color: var(--heading);
  margin-bottom: 4px;
}
.notification-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.notification-date {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
  background: #fff8e1;
  padding: 2px 10px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; gap: 20px; }
  .video-thumb { height: 200px; }
  .notification-item { padding: 14px 16px; }
  .lightbox img { max-width: 95%; max-height: 80%; }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-thumb { height: 180px; }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .back-to-top { width: 38px; height: 38px; font-size: 16px; bottom: 80px; right: 16px; }
}

/* Hero with uploaded image - no 3D extras */

@media (max-width: 768px) {
  .hero-3d-logo { width: 100px; height: 100px; right: 5%; top: 8%; }
  .hero-blob:nth-child(1) { width: 200px; height: 180px; }
  .hero-blob:nth-child(2) { width: 150px; height: 200px; }
  .hero-blob:nth-child(3) { display: none; }
  .hero-ring:nth-child(1) { width: 300px; height: 300px; }
  .hero-ring:nth-child(2) { width: 220px; height: 220px; }
  .hero-ring:nth-child(3) { display: none; }
}

/* === News Card Layout === */
.news-search {
  display: flex;
  max-width: 400px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.news-search input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}
.news-search button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
}
.news-search button:hover { background: var(--primary-dark); }

.news-list {
  display: grid;
  gap: 24px;
}
.news-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.news-card-featured {
  border-left: 4px solid var(--gold);
}
.news-card-img {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gray);
}
.news-badge-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-date {
  display: inline-block;
  background: var(--light-gray);
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.news-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card-body h3 a { color: var(--heading); }
.news-card-body h3 a:hover { color: var(--primary); }
.news-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}
.news-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.news-share span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}
.news-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--gray);
  font-size: 12px;
  transition: var(--transition);
}
.news-share a:hover { background: var(--primary); color: var(--white); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 40px 0;
}
.pagination a {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}
.pagination a:hover,
.pagination a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* === Mobile Dropdown Toggle === */
@media (max-width: 768px) {
  .nav-links > li.dropdown > a::after {
    content: '\25BC';
    font-size: 10px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.2s;
  }
  .nav-links > li.dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
  }
  .nav-links > li.dropdown.dropdown-open .dropdown-menu {
    display: block;
  }
  .nav-links > li:hover .dropdown-menu {
    display: none;
  }
  .nav-links > li.dropdown.dropdown-open:hover .dropdown-menu {
    display: block;
  }
}

/* === Responsive News Cards === */
@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
  }
  .news-card-img {
    flex: 0 0 200px;
  }
}
@media (max-width: 480px) {
  .news-card-img {
    flex: 0 0 160px;
  }
}

/* === Social Share Buttons === */
.share-buttons { display: flex; align-items: center; gap: 6px; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; color: var(--white);
  font-size: 15px; transition: var(--transition);
}
.share-btn:hover { transform: scale(1.1); }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* === Print Stylesheet === */
@media print {
  .top-bar, header, .page-header, .sidebar-widget, .footer-social,
  .footer-bottom, .whatsapp-float, .back-to-top, .share-buttons,
  .breadcrumb, .btn, .newsletter-form, form, .hamburger { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .container { max-width: 100%; padding: 0; }
  .page-layout { display: block; }
  .main-content { width: 100%; }
  article { box-shadow: none !important; padding: 0 !important; }
  a { color: #000; text-decoration: underline; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
}

/* === Newsletter Form === */
#newsletter-form input:focus { outline: 2px solid var(--gold); outline-offset: -2px; }
