/* ===== MERGED STYLES ===== */
/* style.css and style1.css merged into single stylesheet */

/* ===== SCROLL PERFORMANCE OPTIMIZATION ===== */
html {
scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: pageLoadFade 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pageLoadFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


section {
  animation: sectionSlideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

section:nth-of-type(1) {
  animation-delay: 0ms;
}

section:nth-of-type(2) {
  animation-delay: 100ms;
}

section:nth-of-type(3) {
  animation-delay: 200ms;
}

section:nth-of-type(4) {
  animation-delay: 300ms;
}

section:nth-of-type(n + 5) {
  animation-delay: 400ms;
}

@keyframes sectionSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ANIMATED CURSOR STYLES ===== */
* {
  cursor: auto;
}

/* Animate page headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  animation: headingFadeInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

h1 {
  animation-delay: 150ms;
}

h2 {
  animation-delay: 200ms;
}

h3 {
  animation-delay: 250ms;
}

@keyframes headingFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate paragraphs & text */
p,
li {
  animation: textFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

p {
  animation-delay: 300ms;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Animate buttons & interactive elements */
button,
a,
input[type="submit"],
input[type="button"],
[role="button"] {
  animation: interactivePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

button {
  animation-delay: 350ms;
}

@keyframes interactivePop {
   0% {
     opacity: 0;
     transform: scale(0.8);
   }
   100% {
     opacity: 1;
     transform: scale(1);
   }
 }

 @keyframes fadeSlideUp {
   0% {
     opacity: 0;
     transform: translateY(20px) translateZ(0);
   }
   100% {
     opacity: 1;
     transform: translateY(0) translateZ(0);
   }
 }

/* Animate navbar */
nav {
  animation: navSlideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes navSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section entrance */
.hero,
.hero-section {
  animation: heroZoomIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes heroZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

a,
button,
[role="button"],
.event-card,
.highlight-card,
input[type="submit"],
input[type="button"],
.clickable,
.hamburger {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Image animations */
img {
  animation: imageReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.4s ease;

  /* SVG visibility boost */
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(1.15) contrast(1.25)
          drop-shadow(0 0 1px rgba(0,0,0,0.6))
          drop-shadow(0 0 4px rgba(0,0,0,0.35));
}

@keyframes imageReveal {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
select {
  cursor: text;
}

/* ===== Original style.css ===== */
.contact-map-container {
   width: 100%;
  max-width: 100%;
    padding: 3px 1px 29px 1px;
}
.contact-map-iframe {
  border: 0;
  border-radius: 2px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
/* --- Entrance Animation for Key Focus Areas --- */
.area-item {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.area-item.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
/* --- Creative Entrance Animations for Cards --- */
@keyframes cardSlideInRotate {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(90deg) scaleY(0.8) translateZ(0);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scaleY(1) translateZ(0);
  }
}

@keyframes cardBounceFlip {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateY(-90deg) scale(0.7);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) rotateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateY(0) scale(1);
  }
}

@keyframes cardExpandGlow {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(40px);
    filter: blur(6px);
  }
  70% {
    transform: scale(1.05) translateY(-4px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes cardZoomShake {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(100px);
  }
  50% {
    transform: scale(1.08) translateX(6px);
  }
  75% {
    transform: scale(1.04) translateX(-3px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) translateX(0);
  }
}

@keyframes cardPerspectiveSlide {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(-75deg) translateZ(-50px);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) translateZ(0);
  }
}

.event-card,
.highlight-card {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  contain: layout style paint;
}

.event-card.visible,
 .highlight-card.visible {
   animation: fadeSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
   opacity: 1;
   transform: translateY(0) translateZ(0);
 }
 
 .event-card:hover,
 .highlight-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 32px rgba(255, 114, 0, 0.2);
 }
 

/* --- Visual Consistency for Events & Highlights --- */
.events-section,
.highlights-section {
  padding-top: 90px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}
.events-section::before,
.highlights-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 114, 0, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.events-section::before {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.highlights-section::before {
  bottom: -200px;
  right: -200px;
}
.events-section .section-title,
.highlights-section .section-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #f8fafb;
  margin-bottom: 0.4em;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.events-section .section-title::after,
.highlights-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #ffb84d 100%);
  margin: 12px auto 0;
  border-radius: 2px;
}
.events-section .section-subtitle,
.highlights-section .section-subtitle {
  color: #d1d5db;
  font-size: 1.2rem;
  margin-bottom: 3em;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}
.events-cards,
.highlights-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5em;
  flex-wrap: wrap;
}
.event-card,
.highlight-card {
  background: linear-gradient(135deg, #231a16 0%, #19151c 100%);
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  margin-bottom: 12px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 380px;
  cursor: pointer;
  will-change: transform, box-shadow;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.event-card::before,
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.event-card:hover::before,
.highlight-card:hover::before {
  opacity: 1;
}

.event-card::after,
.highlight-card::after {
  display: none;
}

.event-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 8px;
}

.highlight-card {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 18px;
  justify-content: flex-start;
}
@keyframes cardHoverLift {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
  100% {
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes cardGlowPulse {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(255, 114, 0, 0.2),
      0 4px 12px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 20px 60px rgba(255, 114, 0, 0.35),
      0 8px 20px rgba(0, 0, 0, 0.5);
  }
}

.event-card:hover,
.highlight-card:hover {
  animation: cardHoverLift 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  border-color: rgba(37, 99, 235, 0.35);
}


.event-date {
   background: linear-gradient(
     135deg,
     rgba(37, 99, 235, 0.15) 0%,
     rgba(255, 184, 77, 0.1) 100%
   );
   border-radius: 12px;
   border: 1.2px solid rgba(37, 99, 235, 0.3);
   padding: 18px 22px;
   margin-right: 28px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   min-width: 75px;
   box-shadow: 0 4px 12px rgba(255, 114, 0, 0.12),
     inset 0 1px 1px rgba(255, 184, 77, 0.2);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.event-date::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-date::after {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(37, 99, 235, 0.15),
    transparent
  );
}

.event-card:hover .event-date {
  box-shadow: 0 6px 16px rgba(255, 114, 0, 0.18),
    inset 0 1px 1px rgba(255, 184, 77, 0.3);
}
.event-day {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e58444 0%, #b59f7e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.event-month {
  font-size: 0.85rem;
  color: #f8fafb;
  font-weight: 700;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 1;
}
.event-details h3,
.highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.3px;
  text-rendering: optimizeLegibility;
}
.event-card:hover h3,
.highlight-card:hover h3 {
  color: #ff9800;
}
.event-details p,
.highlight-card p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #cfd6e1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  text-rendering: optimizeLegibility;
}
.event-meta,
.highlight-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: #9ca3af;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-meta .event-time {
  color: #d1d5db;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-meta .event-location {
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: right;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-meta {
  border-top-color: rgba(255, 255, 255, 1);
}

.event-card:hover .event-meta .event-time,
.event-card:hover .event-meta .event-location {
  color: #d1d5db;
}
.highlight-date {
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 500;
}
.highlight-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
.highlight-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.highlight-tag:hover {
  transform: translateY(-1px);
  box-shadow: none;
}
.highlight-tag:hover::before {
  transform: translateX(100%);
}
.highlight-tag.policy {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border: 1.2px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-tag.cybersecurity {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
  border: 1.2px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-tag.announcement {
  background: rgba(37, 99, 235, 0.18);
  color: #ffb84d;
  border: 1.2px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-read {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: rgba(37, 99, 235, 0.05);
}
.highlight-read::after {
  content: "→";
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-read:hover {
  color: #ffb84d;
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
.highlight-read:hover::after {
  transform: translateX(4px);
}
/* --- No Content Fallback --- */
.no-content {
  padding: 60px 40px;
  text-align: center;
  color: #9ca3af;
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(37, 99, 235, 0.03);
  border: 1.5px dashed rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  min-width: 300px;
  margin: 20px auto;
  letter-spacing: 0.3px;
}

/* --- Responsive Card Sizing for Events & Highlights --- */
.event-card,
.highlight-card {
  min-width: 320px;
  max-width: 420px;
  width: 100%;
}

@media (max-width: 1200px) {
  .events-cards,
  .highlights-cards {
    gap: 24px;
  }
  .event-card,
  .highlight-card {
    min-width: 260px;
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .events-cards,
  .highlights-cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .event-card,
  .highlight-card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 24px 10vw;
  }
  .view-all-events {
    float: none;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 1em;
  }
}
/* --- Upcoming Events Section --- */
.events-section {
  background: #10121a;
  padding: 70px 0 40px 0;
  text-align: center;
}
.events-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}
.events-section .section-subtitle {
  color: #cfd6e1;
  font-size: 1.3rem;
  margin-bottom: 2em;
}
.view-all-events {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  float: right;
  margin-right: 8vw;
  margin-top: -3.5em;
  margin-bottom: 2em;
  display: inline-block;
  transition: color 0.2s;
}
.view-all-events:hover {
  color: #ff9800;
}
.events-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 2em;
  flex-wrap: wrap;
}
.event-card {
  background: linear-gradient(135deg, #231a16 0%, #19151c 100%);
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 32px 38px;
  min-width: 390px;
  max-width: 480px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(37, 99, 235, 0.12);
}
.event-date {
  background: linear-gradient(135deg, #3a2412 0%, #2d1b0f 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 18px 22px;
  margin-right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.event-day {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 2px;
}
.event-month {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}
.event-details h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}
.event-details p {
  color: #cfd6e1;
  font-size: 1.08rem;
  margin-bottom: 1em;
}
.event-meta {
  display: flex;
  gap: 18px;
  font-size: 1rem;
  color: #b6b6b6;
  align-items: center;
}
.event-meta .event-time {
  color: #fff;
  font-weight: 500;
}
.event-meta .event-location {
  color: #b6b6b6;
}

@media (max-width: 900px) {
  .events-cards {
    flex-direction: column;
    align-items: center;
  }
  .view-all-events {
    float: none;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 1em;
  }
}

/* --- Latest Highlights Section --- */
.highlights-section {
  text-align: center;
  padding: 80px 40px;
 background:
  linear-gradient
  (160deg, rgba(16, 21, 32, 0.92) 0%,
   rgb(41 50 68 / 32%) 100%);
  
}
.highlights-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}
.highlights-section .section-subtitle {
  color: #cfd6e1;
  font-size: 1.3rem;
  margin-bottom: 2em;
}
.highlights-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 2em;
  flex-wrap: wrap;
}
.highlight-card {
  background: linear-gradient(135deg, #231a16 0%, #19151c 100%);
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 32px 38px 18px 38px;
  min-width: 390px;
  max-width: 480px;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(37, 99, 235, 0.12);
}
.highlight-tag {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 18px;
  margin-bottom: 1em;
  letter-spacing: 1px;
}
.highlight-tag.policy {
  background: #2563eb;
  color: #fff;
}
.highlight-tag.cybersecurity {
  background: #ff9800;
  color: #fff;
}
.highlight-tag.announcement {
  background: #c97a2b;
  color: #fff;
}
.highlight-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}
.highlight-card p {
  color: #cfd6e1;
  font-size: 1.08rem;
  margin-bottom: 1em;
}
.highlight-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  font-size: 1rem;
  color: #b6b6b6;
  margin-top: 1em;
}
.highlight-date {
  color: #b6b6b6;
}
.highlight-read {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.highlight-read:hover {
  color: #ff9800;
}

@media (max-width: 900px) {
  .highlights-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== Admin Dashboard & Modal Styles ===== */

/* Utility Classes for Dashboard Layouts */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.dashboard-header h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.dashboard-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transform: translateZ(0);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.dashboard-main {
  min-width: 0;
}
.dashboard-sidebar {
  min-width: 260px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #2563eb;
  transform: translateY(-4px);
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}
.stat-label {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 5px;
}

/* Analytics Section */
.analytics-section {
  margin-top: 32px;
}
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

/* Feedback Messages */
.feedback-message {
  display: none;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid;
}
.feedback-success {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border-color: #22c55e;
}
.feedback-error {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border-color: #ef4444;
}

/* Buttons */
.btn {
  padding: 14px 28px;
  background: #ff7200;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.submit-btn {
  padding: 14px 32px;
  background: linear-gradient(90deg, #2563eb 0%, #ffa500 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.18);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  font-family: inherit;
}
.submit-btn:hover,
.submit-btn:focus {
  background: linear-gradient(90deg, #ffa500 0%, #2563eb 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.28);
  outline: none;
}
.submit-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn-secondary {
  background: linear-gradient(135deg, #374151, #4b5563);
  color: #fff;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #4b5563, #6b7280);
  box-shadow: 0 8px 25px rgba(75, 85, 99, 0.3);
}
.bulk-delete-btn {
  display: none;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.contact-form .form-group .form-label {
  color: black;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.select-all-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  cursor: pointer;
  color: #cbd5e1;
  font-weight: 500;
}
.select-all-label input[type="checkbox"] {
  cursor: pointer;
  accent-color: #2563eb;
}

/* Search & Filter */
.search-filters {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
}
.search-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-input:focus {
  outline: none;
  border-color: #2563eb;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}
.filter-select {
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.filter-select:focus {
  outline: none;
  border-color: #2563eb;
  background: rgba(255, 255, 255, 0.1);
}
.filter-select option {
  background: #1f2937;
  color: #fff;
}

/* Posts/Media Lists */
.posts-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.post-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
}
.post-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}
.post-item h3 {
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 8px;
  color: #fff;
}
.post-item p {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 14px;
}

/* Edit and Delete Buttons in Items */
.edit-btn {
  position: absolute;
  top: 16px;
  right: 60px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
  font-family: inherit;
}
.edit-btn:hover {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  transform: translateY(-2px);
}

/* Checkboxes */
input[type="checkbox"] {
  cursor: pointer;
  accent-color: #2563eb;
  width: 18px;
  height: 18px;
}
input[type="checkbox"]:hover {
  opacity: 0.8;
}
.post-checkbox,
.media-checkbox {
  position: absolute;
  left: 12px;
  top: 18px;
  z-index: 1;
  cursor: pointer;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #232946;
  margin: auto;
  padding: 32px 24px 24px 24px;
  border-radius: 16px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5rem;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  color: #ffa500;
  transform: scale(1.1);
}
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.modal-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.3rem;
}
.modal-content p {
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}
.modal-content label {
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  margin-top: 12px;
}
.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #2563eb;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: #ffa500;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.modal-content button[type="submit"] {
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .dashboard-section {
    padding: 16px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-value {
    font-size: 2rem;
  }
  .dashboard-header h1 {
    font-size: 1.5rem;
  }
  .search-filters {
    flex-direction: column;
  }
  .search-input,
  .filter-select {
    width: 100%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap");

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

:root {
  --primary-color: #ff7200;
  --primary-dark: #a65621;
  --secondary-color: #ffb366;
  --text-light: #ffffff;
  --text-dark: #2a2d35;
  --bg-dark: rgba(70, 65, 55, 0.92);
  --border-color: rgba(255, 138, 61, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme overrides */
.light-theme {
  --text-light: #ffffff;
  --text-dark: #ffffff;
  --bg-dark: var(--bg-light);
  --border-color: var(--border-light);
}

html {
  overflow-x: hidden;
  scroll-behavior: auto;
  /* scrollbar-gutter: stable; - Not supported in Safari, using padding-right fallback */
  padding-right: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      color: #ffffff;
    background: rgb(14, 17, 39);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.main {
   width: 100%;
   background-image: linear-gradient(
       to top,
       rgba(0, 0, 0, 0.2) 0%,
       rgba(0, 0, 0, 0.2) 100%
     ),
     url("images/background.jpg");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   position: relative;
 }

.navbar {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
   background: #1e3a5f;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
     inset 0 1px 0 rgba(255, 255, 255, 0.08);
   border-bottom: 1px solid var(--border-color);
   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
   position: relative;
   z-index: 100;
   contain: layout style;
   will-change: transform;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
}

.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.logo-circle:hover {
    border-color: transparent;
    background: #ffffff;
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.logo img,
.logo-img {
    height: 86px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3)) brightness(1.05) contrast(1.1);
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-center ul {
   display: flex;
   gap: 8px;
   align-items: center;
   list-style: none;
   background: rgba(255, 114, 0, 0.06);
   border: 1px solid var(--border-color);
   border-radius: 30px;
   padding: 8px 16px;
   -webkit-backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
   flex-wrap: wrap;
   justify-content: center;
}

.nav-center ul li {
  list-style: none;
}

.nav-center ul li a {
     text-decoration: none;
     color: #ffffff;
     font-family: inherit;
     font-weight: 600;
     font-size: 13px;
     padding: 6px 10px;
     border-radius: 4px;
     transition: var(--transition);
     position: relative;
     display: inline-block;
     white-space: nowrap;
     letter-spacing: 0.3px;
     text-transform: none;
     filter: brightness(1.8);
}

.nav-center ul li a:hover {
   color: var(--primary-color);
   transform: translateX(4px);
   display: inline-block;
}

/* Resources Dropdown */
.resources-dropdown {
   position: relative;
   z-index: 100;
}

.resources-toggle {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.resources-toggle::after {
    content: " ▼";
    font-size: 9px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.resources-dropdown:hover .resources-toggle::after,
.resources-dropdown.open .resources-toggle::after {
   transform: rotate(180deg);
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: rgba(10, 12, 20, 0.95);
   border: 1px solid rgba(255, 114, 0, 0.3);
   border-radius: 8px;
   list-style: none;
   padding: 8px 0;
   margin-top: 8px;
   min-width: 180px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition: all 0.3s ease;
   z-index: 1000;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
}

@supports (overflow: clip) {
   .dropdown-menu {
      overflow: clip;
   }
}

.resources-dropdown:hover .dropdown-menu,
.resources-dropdown.open .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.dropdown-menu li {
   list-style: none;
   margin: 0;
}

.dropdown-menu li a {
   display: block;
   padding: 10px 16px;
   color: #ffffff;
   text-decoration: none;
   font-size: 13px;
   font-weight: 500;
   transition: all 0.2s ease;
   white-space: nowrap;
   filter: brightness(1.6);
}

.dropdown-menu li a:hover {
   background: rgba(255, 114, 0, 0.2);
   color: #ffb84d;
   padding-left: 20px;
}

/* Mobile dropdown menu adjustments */
@media (max-width: 1024px) {
    .resources-dropdown {
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        width: 100% !important;
        -webkit-appearance: none !important;
    }

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        background: rgba(255, 114, 0, 0.1) !important;
        border: none !important;
        border-left: 3px solid rgba(255, 114, 0, 0.5) !important;
        border-radius: 0 !important;
        padding: 8px 0 8px 20px !important;
        margin: 0 !important;
        box-shadow: none !important;
        list-style: none !important;
        overflow: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        z-index: 100 !important;
        max-height: 0 !important;
        display: none !important;
        pointer-events: none !important;
        -webkit-appearance: none !important;
    }

    .resources-dropdown.open .dropdown-menu {
        max-height: 500px !important;
        display: block !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }

    .dropdown-menu li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 101 !important;
        display: block !important;
    }

    .dropdown-menu li a {
       padding: 12px 16px 12px 0 !important;
       margin: 0 !important;
       font-size: 12px !important;
       color: #e8eff0 !important;
       display: block !important;
       text-decoration: none !important;
       white-space: normal !important;
       transition: color 0.2s ease !important;
       line-height: 1.6 !important;
       cursor: pointer !important;
       pointer-events: auto !important;
       min-height: 44px !important;
       display: flex !important;
       align-items: center !important;
       touch-action: manipulation !important;
    }

    .dropdown-menu li a:hover,
    .dropdown-menu li a:active {
       color: #ffb84d !important;
       background: rgba(255, 114, 0, 0.15) !important;
    }
}

.nav-center ul li.search-item {
   padding: 4px 8px;
   margin-left: 8px;
}

/* Navbar Decoration Stripe */
.navbar-decoration {
   width: 100%;
   height: 8px;
   background: linear-gradient(90deg, 
     #2563eb 0%,
     #2563eb 25%,
     #ff7200 25%,
     #ff7200 70%,
     #10b981 70%,
     #10b981 100%
   );
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-right {
   flex: 0 0 auto;
   display: flex !important;
   align-items: center;
   gap: 16px;
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  color: #ef4444;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.logout-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.logout-btn:active {
  transform: scale(0.98);
}

.logout-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.search-container {
   display: flex;
   align-items: center;
   background: transparent;
   border: none;
   border-radius: 12px;
   padding: 0;
   transition: var(--transition);
   width: auto;
   position: relative;
}  

.search-container:hover,
.search-container:focus-within {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
}

.search-input {
   border: none;
   background: rgba(255, 255, 255, 0.1);
   color: #a9a9a9;
   font-size: 13px;
   padding: 8px 12px;
   outline: none;
   font-family: inherit;
   width: 200px;
   position: absolute;
   right: 50px;
   top: 50%;
   transform: translateY(-50%) scaleX(0);
   transform-origin: right;
   transition: transform 0.3s ease;
   border-radius: 8px;
   border: 1px solid rgba(37, 99, 235, 0.5);
}

.search-container.active .search-input {
   transform: translateY(-50%) scaleX(1);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-btn {
  border: none;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-btn:hover {
  color: var(--secondary-color);
  transform: scale(1.15);
}

.nav-btn {
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  text-align: center;
}

.nav-btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.nav-btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.nav-btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border: 2px solid var(--primary-color);
}

.nav-btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.nav-left {
  display: none;
}

.search-container {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  transition: var(--transition);
  order: 3;
  margin: 0 12px;
}

.search-container:hover,
.search-container:focus-within {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 6px 10px;
  outline: none;
  font-family: inherit;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-btn {
  border: none;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-btn:hover {
  color: var(--secondary-color);
  transform: scale(1.15);
}

.nav-right {
  flex: 0 0 auto;
  display: flex !important;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
.nav-right ul {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  position: relative;
  width: 50px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 50;
  flex-shrink: 0;
  order: 5;
  margin-left: auto;
}

.nav-toggle .hamburger {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: var(--transition);
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.nav-toggle .hamburger::before {
  top: -10px;
}
.nav-toggle .hamburger::after {
  top: 10px;
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 16px);
  width: calc(100% - 40px);
  max-width: 900px;
  background: rgba(6, 8, 12, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  z-index: 45;
  -webkit-backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.mobile-menu ul li {
  list-style: none;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  border-radius: 8px;
  font-size: 15px;
  transition: var(--transition);
}

.mobile-menu ul li a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary-color);
  padding-left: 24px;
}

.mobile-menu.open {
  display: block;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  contain: layout style;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  /* Curved edges matching sketch */
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 35%, 93% 50%, 100% 65%, 100% 100%,
    0% 100%,
    0% 65%, 7% 50%, 0% 35%, 0% 0%
  );
  /* Tech-inspired grid pattern with brand gradient */
background:linear-gradient(
77deg,
 rgba(255, 180, 77, 0.05) 1px,
  transparent 1px),
   linear-gradient(rgba(255, 180, 77, 0.05) 1px,
    #804c4c00 1px), radial-gradient(circle at 20% 50%,
     rgb(53 82 108 / 15%) 0%, transparent 50%), 
     radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
      linear-gradient(306deg, #1d2533 0%, #152b43 50%, #1a2332 100%);
  background-size: 
    50px 50px,
    50px 50px,
    100% 100%,
    100% 100%,
    100% 100%;
  background-attachment: fixed;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  height: 200px;
  max-width: 500px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.25));
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffeb99;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 180, 77, 0.3);
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 180, 77, 0.2);
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
 background: #ff7200;
    
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-primary-large {
  padding: 18px 48px;
  font-size: 18px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn-primary-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

section {
  padding: 80px 40px;

  background:linear-gradient(160deg,
                    rgba(16, 21, 32, 0.92) 0%,
                    rgba(20, 24, 32, 0.9) 100%);
}

section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #e8eff0;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 0.4px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.about-card {
    background: rgb(255 114 0 / 19%);
    border: 1px solid rgba(255, 114, 0, 0.3);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-card:hover {
  background: rgba(255, 114, 0, 0.12);
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #FFA500;
}

.about-card p {
  line-height: 1.8;
  font-size: 15px;
  color: #e8e8e8;
}

/* Key Areas Stats Section */
.key-areas-stats {
  position: relative;
  padding: 100px 20px 80px;
  background: linear-gradient(160deg, rgb(16 21 32 / 95%) 0%, rgb(20 24 32 / 90%) 100%);
  overflow: hidden;
}

.key-areas-stats-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.key-areas-stats-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 114, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 114, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Animated background orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 114, 0, 0.1) 0%, transparent 70%);
  top: -100px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 114, 0, 0.08) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 114, 0, 0.06) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.key-areas-stats-content {
  position: relative;
  z-index: 2;
}

.key-areas-stats-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #ff9944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.key-areas-stats-content .section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 5rem;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0066cc, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(0, 102, 204, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(0, 102, 204, 0.4);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2),
              0 0 40px rgba(0, 102, 204, 0.15);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.05) 100%);
  color: #0066cc;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.stat-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.25) 0%, rgba(0, 102, 204, 0.1) 100%);
  box-shadow: 0 0 30px rgba(0, 102, 204, 0.3);
}

.stat-item:hover .stat-icon::before {
  opacity: 1;
}

.stat-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
  transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon svg {
  transform: scale(1.1);
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 15px 0;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 102, 204, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.percent-sign {
  font-size: 1.8rem;
  margin-left: 4px;
  vertical-align: super;
}

.stat-item:hover .stat-number {
  color: #ffb347;
  text-shadow: 0 6px 30px rgba(255, 114, 0, 0.35);
  transform: scale(1.08);
}

.stat-label {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  color: #ff7200;
}

.stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 0;
  font-weight: 400;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.stat-item:hover .stat-description {
  color: rgba(255, 114, 0, 0.8);
}

/* ===== GEOGRAPHIC REACH SECTION ===== */
.geographic-reach-section {
  padding: 80px 40px;
  background: linear-gradient(160deg,
                    rgba(16, 21, 32, 0.92) 0%,
                    rgba(20, 24, 32, 0.9) 100%);
  text-align: center;
  position: relative;
}

.geographic-reach-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reach-header {
  text-align: center;
  margin-bottom: 60px;
}

.reach-header h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

.reach-header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.reach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reach-map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 102, 204, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.2);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(30, 64, 175, 0.05) 100%);
  width: 100%;
  max-width: 100%;
}

.reach-map-wrapper:focus-within {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

.reach-map {
  width: 100%;
  aspect-ratio: 1000 / 600;
  background: linear-gradient(135deg, rgba(15, 30, 70, 0.6) 0%, rgba(20, 40, 90, 0.5) 100%);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
}

/* SVG Map Container */
.reach-map svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.1));
}

.map-legend {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(15, 18, 28, 0.95);
  padding: 20px 24px;
  border-radius: 16px;
  border: 2px solid rgba(0, 153, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1),
              0 0 20px rgba(0, 153, 255, 0.15);
  z-index: 100;
  pointer-events: auto;
}

.legend-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0 0 8px 0;
  padding: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 500;
  min-height: 24px;
}

.legend-text {
  display: block;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.legend-color.primary {
  background: #0066cc;
  box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

.legend-color.secondary {
  background: #1e40af;
  box-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
}

.legend-color.tertiary {
  background: #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.reach-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.reach-stat {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(30, 64, 175, 0.04) 100%);
  border: 2px solid rgba(0, 102, 204, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.reach-stat:focus {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
  border-color: rgba(0, 102, 204, 0.6);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(30, 64, 175, 0.06) 100%);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.reach-stat:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

@supports not selector(:focus-visible) {
  .reach-stat:focus {
    outline: 3px solid #0066cc;
    outline-offset: 2px;
  }
}

.reach-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0066cc, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reach-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2),
              0 0 40px rgba(0, 102, 204, 0.1);
}

.reach-stat:hover::before {
  opacity: 1;
}

.reach-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #0066cc;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  line-height: 1.1;
  text-rendering: optimizeLegibility;
}

.reach-stat:hover .reach-stat-number,
.reach-stat:focus .reach-stat-number {
  color: #0052a3;
  text-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
}

.reach-stat-label {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.reach-stat:hover .reach-stat-label,
.reach-stat:focus .reach-stat-label {
  color: #ffffff;
}

.reach-stat-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.5;
  flex-grow: 1;
}

.reach-stat:hover .reach-stat-desc,
.reach-stat:focus .reach-stat-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reach-stat,
  .reach-stat-number,
  .reach-stat-label,
  .reach-stat-desc,
  .legend-item {
    transition: none !important;
    animation: none !important;
  }

  .reach-stat:hover {
    transform: none !important;
  }
}

/* Focus visible for keyboard navigation */
.reach-stat:focus-visible {
  outline-width: 3px;
  outline-color: #0066cc;
  outline-style: solid;
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .reach-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reach-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .geographic-reach-section {
    padding: 60px 20px;
  }

  .reach-header h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .reach-header .section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .reach-map-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .reach-map {
    aspect-ratio: 1000 / 600;
    width: 100%;
    padding: 0;
    border-radius: 16px;
    display: block;
  }

  .reach-map svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .map-legend {
    position: static;
    bottom: auto;
    left: auto;
    gap: 10px;
    padding: 16px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 102, 204, 0.4);
    margin-top: 16px;
    background: rgba(15, 18, 28, 0.9);
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .legend-title {
    font-size: 0.75rem;
    margin: 0 0 8px 0;
    text-transform: uppercase;
  }

  .legend-item {
    font-size: 0.8rem;
    padding: 8px 0;
  }

  .legend-color {
    min-width: 16px;
    width: 16px;
    height: 16px;
  }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  .geographic-reach-section {
    padding: 40px 12px;
  }

  .reach-header h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .reach-header .section-subtitle {
    font-size: 0.9rem;
  }

  .reach-map-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
  }

  .reach-map {
    aspect-ratio: 1000 / 600;
    width: 100%;
    padding: 0;
    border-radius: 12px;
    display: block;
  }

  .map-legend {
    position: static;
    gap: 8px;
    padding: 12px;
    font-size: 0.75rem;
    margin-top: 12px;
    border-radius: 10px;
    width: 100%;
  }

  .legend-title {
    font-size: 0.7rem;
    margin: 0 0 6px 0;
  }

  .legend-item {
    gap: 8px;
    font-size: 0.75rem;
    min-height: 18px;
    padding: 6px 0;
  }

  .legend-color {
    min-width: 14px;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .reach-stats-grid {
    gap: 16px;
  }

  .reach-stat {
    padding: 24px;
    min-height: 180px;
  }

  .reach-stat-number {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .reach-stat-label {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .reach-stat-desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .key-areas-stats {
    padding: 60px 20px 50px;
  }
  
  .key-areas-stats-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .key-areas-stats-content .section-subtitle {
    margin-bottom: 3rem;
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-description {
    font-size: 0.85rem;
  }
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.area-item {
  background: linear-gradient(135deg, rgb(29 41 64 / 90%) 0%, rgba(42, 55, 80, 0.8) 100%);
  border: 1px solid rgba(100, 150, 200, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.area-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff7200, transparent);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.area-item:hover::before {
  opacity: 1;
}

.area-item:hover,
.area-item:focus-within {
  background: linear-gradient(135deg, rgba(50, 70, 110, 0.9) 0%, rgba(40, 55, 85, 0.85) 100%);
  border-color: rgba(255, 114, 0, 0.35);
  box-shadow: 0 12px 48px rgba(255, 114, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* Mobile touch states */
@media (hover: none) and (pointer: coarse) {
  .area-item:active {
    background: rgba(255, 114, 0, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-8px);
  }
}

.area-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 114, 0, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
  border: 1px solid rgba(255, 114, 0, 0.35);
  border-radius: 12px;
  font-size: 2.2rem;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7200;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.area-item:hover .area-icon {
  background: linear-gradient(135deg, rgba(255, 114, 0, 0.25) 0%, rgba(255, 152, 0, 0.2) 100%);
  border-color: rgba(255, 114, 0, 0.5);
}

.area-item h3 {
  font-size: 1.2rem;
  margin: 0 0 12px 0;
  color: #ffa500;
  font-weight: 700;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.3;
}

.area-item:hover h3 {
  color: #ffb84d;
}

.area-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8c4d4;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

.area-item:hover p {
  color: #d1d5db;
}

/* Responsive Key Areas Stats Layout */
@media screen and (max-width: 1024px) {
  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .key-areas-stats {
    padding: 60px 20px 50px;
  }

  .key-areas-stats-content h2 {
    font-size: 2.2rem;
  }

  .key-areas-stats-content .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .stat-item {
    flex: 0 1 calc(50% - 12.5px);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .key-areas-stats {
    padding: 50px 15px 40px;
  }

  .key-areas-stats-content h2 {
    font-size: 1.8rem;
  }

  .key-areas-stats-content .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .stats-grid {
    flex-direction: column;
    gap: 25px;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* ===== Call to Action Section ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(255, 114, 0, 0.15) 0%,
    rgba(255, 165, 0, 0.08) 100%
  );
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.cta-text p {
  font-size: 1.3rem;
  color: #e8eff0;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.btn-primary-large {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border: 2px solid var(--primary-color);
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  letter-spacing: 0.5px;
}

.btn-primary-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
}

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

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.event-card {
  background: rgba(255, 114, 0, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.event-card:hover {
  background: rgba(255, 114, 0, 0.12);
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
  padding: 16px 12px;
  min-width: 80px;
  text-align: center;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.event-month {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.event-details h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.event-location {
  font-size: 0.95rem;
  color: #e8eff0;
  margin-bottom: 8px;
}

.event-desc {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.filter-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: transparent;
  color: #e8eff0;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Featured Documents - page specific polish */
.documents-grid {
  max-width: 1200px;
  margin: 0 auto;
  gap: 28px;
}

/* Featured documents list (moved from inline styles) */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
}
.featured-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 6px;
}
.featured-item .pdf-icon {
  width: 56px;
  flex-shrink: 0;
  display: block;
}
.featured-item .doc-info {
  flex: 1;
}
.featured-item .doc-info .doc-link h3 {
  margin: 0;
  font-size: 1rem;
  color: #e8eff0;
  font-weight: 600;
  line-height: 1.2;
}
.featured-item .doc-btn {
  white-space: nowrap;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-item {
    padding: 10px 0;
  }
  .featured-item .pdf-icon {
    width: 48px;
  }
}

.doc-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  min-height: 200px;
}

.doc-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #fff;
}

.doc-card .doc-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.doc-card p {
  color: #e8eff0;
}

.doc-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

/* Admin upload panel styles */
#adminUploadPanel {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Admin upload panel visible state and styling moved from inline */
.admin-upload-panel {
  display: none;
  background: rgba(255, 114, 0, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}
.admin-upload-panel.show {
  display: block;
}
.admin-upload-title {
  color: var(--primary-color);
  margin-top: 0;
}
.admin-upload-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-upload-form .form-group {
  flex-direction: column;
}
.form-actions {
  display: flex;
  gap: 12px;
}
.muted-note {
  color: #e8eff0;
  margin-top: 6px;
  font-size: 13px;
}

#adminUploadPanel input[type="text"],
#adminUploadPanel input[type="date"],
#adminUploadPanel input[type="file"],
#adminUploadPanel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  width: 100%;
}

#toggleAdminBtn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .doc-card {
    padding: 18px;
  }
  .doc-actions {
    flex-direction: column;
  }
}

.doc-card {
  background: rgba(255, 114, 0, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.doc-card:hover {
  background: rgba(255, 114, 0, 0.12);
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.doc-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.doc-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.doc-card p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.media-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.media-tab {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  background: transparent;
  color: #e8eff0;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 600;
}

.media-tab:hover,
.media-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.media-item h3 {
  font-size: 1.1rem;
  color: #e8eff0;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  align-items: stretch;
}

/* Page container to keep content aligned */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Ensure blog grid items stretch to the same height for neat alignment */
.blog-grid {
  align-items: stretch;
}

/* Make blog cards consistent and align the CTA */
.blog-grid .blog-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.blog-card .read-more {
  margin-top: 16px;
  align-self: flex-end;
}

/* Admin upload panel defaults and spacing improvements */
#adminUploadPanel {
  display: none; /* JS can toggle a `.show` class to reveal it */
}
#adminUploadPanel.show {
  display: block;
}

#adminUploadPanel .form-group {
  flex-direction: column;
  gap: 8px;
}

/* Mobile: keep Read More left-aligned for better flow */
@media (max-width: 768px) {
  .blog-card .read-more {
    align-self: flex-start;
  }
}

.blog-date {
  font-size: 13px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.read-more {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid #2563eb;
  padding: 10px 24px;
  border-radius: 6px;
  align-self: flex-start;
  font-size: 14px;
}

.read-more:hover {
  color: #fff;
  background-color: #2563eb;
  transform: translateX(0);
}

/* ===== Modern Event Card Design ===== */
.blog-card {
  position: relative;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 12px;
  background: rgba(255, 114, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 114, 0, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  display: none;
}

.blog-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  transition: background 0.35s ease;
}

.blog-card-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  justify-content: space-between;
}

.blog-card-category {
  display: none;
}

.blog-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.4;
  color: #ffa500;
  letter-spacing: -0.3px;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 28px 0;
  color: #e8eff0;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 114, 0, 0.25);
  border-color: rgba(255, 114, 0, 0.4);
}

.blog-card:hover::after {
  background: transparent;
}

/* ===== Event Registration Section ===== */
.event-registration-section {
  padding: 60px 40px;
  background: rgba(255, 114, 0, 0.08);
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.event-registration-section h2 {
  margin-bottom: 10px;
}

.event-registration-section .section-subtitle {
  margin-bottom: 40px;
}

.registration-card {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 40px;
  margin: 0 auto;
}

.registration-card h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.5rem;
}

.newsletter-section {
  background: linear-gradient(
    135deg,
    rgba(255, 114, 0, 0.15) 0%,
    rgba(255, 165, 0, 0.08) 100%
  ) !important;
  padding: 80px 40px !important;
  text-align: center;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  margin-bottom: 20px;
  color: #fff;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--border-color);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
  background: #0a0c14;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
}

.newsletter-form .form-group input {
  flex: 1;
}

.form-notice {
  font-size: 13px;
  color: #d4d9e6;
  margin-top: 12px;
}

/* ===== Notification Styles ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 10000;
  animation: slideInRight 0.3s ease;
}

.notification.error {
  background: rgba(239, 68, 68, 0.95);
  border-color: rgba(239, 68, 68, 0.5);
}

.notification.info {
  background: rgba(59, 130, 246, 0.95);
  border-color: rgba(59, 130, 246, 0.5);
}

.notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.notification-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification-title {
  font-weight: 600;
  font-size: 14px;
}

.notification-message {
  font-size: 13px;
  opacity: 0.9;
}

.notification-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0;
}

.notification-close:hover {
  opacity: 1;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.notification.closing {
  animation: slideOutRight 0.3s ease forwards;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(255, 114, 0, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.info-card:hover {
  background: rgba(255, 114, 0, 0.12);
  border-color: var(--primary-color);
  transform: translateX(8px);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.info-card p {
  font-size: 15px;
}

.social-links h3 {
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  color: #1e3a5f;
}

.social-icon:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-form {
  background: rgba(255, 114, 0, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.contact-form .form-group {
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
}

/* ===== Dashboard Section ===== */
.dashboard-section,
.settings-section {
  padding:100px 10px;
  background: linear-gradient(135deg, rgb(35 39 52 / 92%) 0%,
   rgb(0 0 0 / 90%) 100%);
}

.dashboard-container,
.settings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-grid,
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.dashboard-card,
.setting-item {
  background: rgba(255, 114, 0, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.dashboard-card:hover,
.setting-item:hover {
  background: rgba(255, 114, 0, 0.12);
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.dashboard-card h3,
.setting-item h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.dashboard-card ul {
  list-style: none;
  padding: 0;
}

.dashboard-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8eff0;
}

.dashboard-card li:last-child {
  border-bottom: none;
}

.setting-select {
  padding: 10px 16px;
  border: 1.5px solid var(--border-color);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  margin-top: 16px;
  transition: var(--transition);
  width: 100%;
  max-width: 200px;
}

.setting-select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
}

.setting-select option {
  background: #0a0c14;
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  background: #1e3a5f;
  padding: 60px 40px 20px;
  color: #ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
  display: inline-block;
}

.footer-divider {
  border: none;
  border-top: 2px solid #fff;
  margin: 30px 0;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #e0e5eb;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Organizers & Partners Page Styles ===== */

.org-partners-section {
  padding: 100px 40px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.org-partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(37, 99, 235, 0.05),
    transparent
  );
  pointer-events: none;
}

.org-partners-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.org-partners-tabs {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
  border-bottom: 2px solid rgba(37, 99, 235, 0.15);
  padding-bottom: 25px;
  flex-wrap: wrap;
  position: relative;
}

.org-tab {
  background: none;
  border: none;
  color: rgba(212, 217, 230, 0.6);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  padding: 0 20px 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.org-tab:hover {
  color: rgba(212, 217, 230, 0.9);
}

.org-tab:focus {
  outline: none;
}

.org-tab.active {
  color: #fff;
}

.org-tab.active::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 0 auto;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.org-tab.active::before {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tab-content {
  animation: fadeInUp 0.5s ease-out;
  display: none;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.org-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 60px 40px;
  align-items: center;
  justify-items: center;
  padding: 20px 0;
}

.org-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: 100%;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(255, 165, 0, 0.02) 100%
  );
  border: 1.5px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(150px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.org-logo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.org-logo-item:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12) 0%,
    rgba(255, 165, 0, 0.06) 100%
  );
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.org-logo-item:hover::before {
  opacity: 1;
}

.org-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  padding: 15px;
}

.org-logo-item:hover img {
  filter: brightness(1.1) contrast(1.1);
  transform: scale(0.95);
}

/* Organizers & Partners responsive */
@media (max-width: 1024px) {
  .org-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 45px 30px;
  }

  .org-partners-tabs {
    gap: 50px;
    margin-bottom: 80px;
  }

  .org-tab {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .org-logo-item {
    height: 140px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .org-partners-section {
    padding: 50px 16px;
  }

  .org-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 18px;
  }

  .org-logo-item {
    height: 120px;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
  }

  .org-logo-item img {
    padding: 10px;
  }

  .org-partners-tabs {
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 20px;
  }

  .org-tab {
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0 12px 12px;
  }

  .org-tab.active::after {
    bottom: -20px;
  }

  .org-tab.active::before {
    bottom: -32px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-color);
  }
}

@media (max-width: 480px) {
  .org-partners-section {
    padding: 40px 12px;
  }

  .org-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 12px;
  }

  .org-logo-item {
    height: 130px;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
  }

  .org-logo-item img {
    padding: 8px;
  }

  .org-partners-tabs {
    gap: 15px;
    margin-bottom: 30px;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1.5px solid rgba(37, 99, 235, 0.1);
  }

  .org-tab {
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 10px 15px 12px;
    width: 100%;
    text-align: center;
  }

  .org-tab.active::after {
    bottom: -15px;
    height: 2px;
  }

  .org-tab.active::before {
    bottom: -25px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
  }
}

@media (max-width: 992px) {
   .navbar {
     padding: 12px 20px;
     gap: 16px;
   }

   .nav-center ul {
     display: none;
     flex-direction: column;
     position: absolute;
     top: 70px;
     left: 0;
     right: 0;
     width: 100%;
     background: #1e3a5f;
     padding: 12px 0;
     border: none;
     border-radius: 0;
     margin: 0;
     gap: 0;
     overflow: visible;
     z-index: 999;
   }

  .nav-center ul.show {
    display: flex;
  }

  .nav-right {
    display: none !important;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo-circle {
    width: 50px;
    height: 50px;
  }

  .logo img {
    height: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 30px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
     padding: 12px 16px;
     gap: 12px;
   }

   .nav-center ul {
     display: none;
     flex-direction: column;
     position: absolute;
     top: 70px;
     left: 0;
     right: 0;
     width: 100%;
     background: #1e3a5f;
     padding: 12px 0;
     border: none;
     border-radius: 0;
     margin: 0;
     gap: 0;
   }

   .nav-center ul.show {
     display: flex;
   }

  .nav-center ul li {
    width: 100%;
    padding: 12px 0;
    position: relative;
    overflow: visible;
  }

  .nav-center ul li.resources-dropdown {
    overflow: visible;
    z-index: 1001;
  }

  .nav-center ul li a {
    display: block;
    padding: 12px 20px;
    color: #d4d9e6;
  }

  .nav-right {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  .logo-circle {
    width: 45px;
    height: 45px;
  }

  .logo img {
    height: 35px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  section h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-grid,
  .areas-grid,
  .events-grid,
  .documents-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 20px;
  }

  .mobile-menu {
    width: calc(100% - 20px);
    max-width: none;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 12px;
  }

  .logo-circle {
    width: 40px;
    height: 40px;
  }

  .logo img {
    height: 32px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .org-logo-grid {
    grid-template-columns: 1fr;
  }
}

.nav-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.nav-center ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  background: rgba(42, 45, 53, 0.85);
  color: #a0a6b3;
  padding: 12px 36px;
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nav-center ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  padding: 8px 6px;
  display: inline-block;
  transition: var(--transition);
}

.nav-center ul li a:hover {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}
style @media (max-width: 900px) {
  .nav-center ul {
    padding: 10px 20px;
    gap: 18px;
    font-size: 12px;
  }
  .nav-btn.nav-btn-primary {
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .nav-center ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 8px;
  }
  .nav-center ul li:nth-last-child(2) {
    order: 999;
    margin-left: 0;
  }
  .nav-btn.nav-btn-secondary::before,
  .nav-btn.nav-btn-secondary::after {
    display: none;
  }
  .search-container {
    order: 9999;
    width: 100%;
    margin-top: 8px;
  }
}

/* ===== Blog Post Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[style*="display: block"] {
  display: flex !important;
}

.modal-content {
  background: linear-gradient(
    135deg,
    rgba(42, 45, 53, 0.95) 0%,
    rgba(60, 64, 75, 0.93) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin: 0;
  padding: 36px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease-out;
  position: relative;
  flex-shrink: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--text-light);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 114, 0, 0.1);
  border: 1px solid var(--border-color);
}

.close-modal:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.modal-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.modal-date {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.modal-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.modal-body {
  padding: 30px 40px 40px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
}

.modal-body p {
  margin-bottom: 20px;
}

.modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-media {
  margin-top: 20px;
  padding: 0;
  display: block;
}

.modal-media img,
.modal-media video {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: block;
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 0;
    max-height: 85vh;
  }

  .modal-header {
    padding: 30px 20px 15px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 20px;
    font-size: 15px;
  }

  .close-modal {
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 0;
    max-height: 90vh;
  }

  .modal-header {
    padding: 25px 15px 10px;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 15px;
    font-size: 14px;
  }
}

/* ===== Login Page Styles ===== */
.login-page-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
}

.login-card {
  max-width: 450px;
  width: 100%;
background: rgb(27 27 46 / 95%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header .logo {
  margin-bottom: 24px;
}

.login-header h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}

.login-header p {
  color: #d4d9e6;
  font-size: 1rem;
}

.login-form .form-group {
  margin-bottom: 24px;
}

.login-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.forgot-password {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.forgot-password:hover {
  color: var(--secondary-color);

  text-decoration: underline;
}

/* ===== Suggest a Topic Section ===== */

.suggest-topic-section {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0) 0%,
    rgba(255, 114, 0, 0.03) 100%
  );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.suggest-topic-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  margin-bottom: 80px;
}

.suggest-topic-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.suggest-topic-section .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
}

.suggest-topic-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 30, 0.8) 0%,
    rgba(25, 28, 40, 0.8) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 24px;
  padding: 50px;
  text-align: left;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.suggest-topic-container:hover {
  border-color: rgba(255, 114, 0, 0.35);
  box-shadow: 0 12px 48px rgba(255, 114, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.suggest-topic-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.suggest-topic-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggest-topic-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.suggest-topic-form .label-text {
  flex: 1;
}

.suggest-topic-form .required-indicator {
  color: #ff6b6b;
  font-weight: 700;
}

.suggest-topic-form input,
.suggest-topic-form textarea {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 114, 0, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  transition: all 0.2s ease;
}

.suggest-topic-form input::placeholder,
.suggest-topic-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.suggest-topic-form input:focus,
.suggest-topic-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 114, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 114, 0, 0.15);
}

.suggest-topic-form textarea {
  resize: vertical;
  min-height: 120px;
}

.suggest-topic-form .btn-submit {
  width: 100%;
  padding: 16px 28px;
  margin-top: 12px;
  background: #ff7200;
  border: 2px solid #ff7200;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 114, 0, 0.3);
}

.suggest-topic-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 114, 0, 0.4);
  background: linear-gradient(135deg, #ff8a1a, #ffaa44);
}

.suggest-topic-form .btn-submit:active {
  transform: translateY(0);
}

.suggest-topic-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== Enhanced Mobile Responsive Styles ===== */

/* Tablet and below */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  body {
    overflow-x: hidden;
  }

  /* Typography */
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  section h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Hero Section */
  .hero {
    min-height: 60vh;
    padding: 80px 20px 60px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Sections */
  section {
    padding: 40px 16px;
  }

  /* Cards and Grids */
  .blog-grid,
  .documents-grid,
  .events-grid,
  .areas-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 5px;
  }

  .blog-card,
  .doc-card,
  .event-card,
  .area-item {
    padding: 20px;
  }

  .blog-card h3,
  .doc-card h3 {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 0.9rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    padding-top: 20px;
    font-size: 0.85rem;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 40px 20px;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  .newsletter-form .form-group {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .newsletter-form button {
    width: 100%;
    padding: 14px 20px;
  }

  /* Contact Form */
  .contact-form {
    padding: 25px 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 14px;
  }

  /* Info Cards */
  .info-card {
    padding: 20px;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: auto;
    min-width: 140px;
  }

  .btn-primary,
  .btn-secondary {
    display: block;
    text-align: center;
  }

  /* Modal */
  .modal-content {
    width: 95%;
    max-width: none;
    margin: 10px;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Tables - make scrollable */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 50vh;
    padding: 70px 15px 50px;
  }

  section {
    padding: 30px 12px;
  }

  .blog-card,
  .doc-card,
  .event-card {
    padding: 16px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .navbar {
    padding: 10px 12px;
  }

  .logo-circle {
    width: 40px;
    height: 40px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .toast {
    width: calc(100% - 24px);
    max-width: none;
    right: 12px;
    left: 12px;
  }

  .toast-container {
    right: 0;
    left: 0;
    padding: 0 12px;
  }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Suggest Topic Section Mobile */
  .suggest-topic-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .suggest-topic-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .suggest-topic-section .section-subtitle {
    font-size: 0.95rem;
  }

  .suggest-topic-container {
    max-width: 100%;
    padding: 30px 20px;
    border-radius: 12px;
  }

  .suggest-topic-form {
    gap: 20px;
  }

  .suggest-topic-form input,
  .suggest-topic-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .suggest-topic-form .btn-submit {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
  .btn,
  button,
  a {
    min-height: 19px;
    min-width: 19px;
  }

  .nav-center ul li a {
    padding: 12px 8px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .suggest-topic-form .btn-submit {
    min-height: 50px;
  }
}

/* ===== Original style1.css ===== */
/* ===== Events Section ===== */
.events-section {
  padding: 80px 40px;
  background: var(--bg-dark);
}

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

.events-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.events-container .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  min-width: 70px;
  text-align: center;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
}

.event-details {
  flex: 1;
}

.event-details h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.event-location {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.event-desc {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== Consultations Section ===== */
.consultations-section {
  padding: 80px 40px;
  background: linear-gradient(
    135deg,
    rgba(6, 8, 12, 0.95) 0%,
    rgba(10, 12, 20, 0.9) 100%
  );
}

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

.consultations-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.consultations-container .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

.consultations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.consultation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.consultation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
}

.consultation-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.consultation-card h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.consultation-card p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.consultation-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ===== Workshops Section ===== */
.workshops-section {
  padding: 80px 40px;
  background: var(--bg-dark);
}

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

.workshops-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.workshops-container .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.workshop-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
}

.workshop-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
  opacity: 0;
  transition: var(--transition);
}

.workshop-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.workshop-card:hover::after {
  opacity: 1;
}

.workshop-card h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.workshop-card p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.workshop-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .events-section,
  .consultations-section,
  .workshops-section {
    padding: 60px 20px;
  }

  .events-container h2,
  .consultations-container h2,
  .workshops-container h2 {
    font-size: 2rem;
  }

  .events-grid,
  .consultations-grid,
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .consultation-card,
  .workshop-card {
    padding: 20px;
  }
}

/* ===== Admin Pages Styles ===== */

/* Media Grid Desktop */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.media-item {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  padding: 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.media-item:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-8px) scale(1.02);
}

.media-thumb {
  width: 100%;
  height: 220px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1729 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.media-item:hover .media-thumb {
  filter: brightness(1.1);
}

.media-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.media-item:hover .media-thumb::before {
  opacity: 1;
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-item:hover .media-thumb img,
.media-item:hover .media-thumb video {
  transform: scale(1.08);
}

.media-info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.media-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #e0e7ff;
  word-break: break-word;
  white-space: normal;
  font-weight: 600;
  line-height: 1.4;
}

.media-item p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 6px;
  flex-grow: 1;
}

.media-meta {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.media-meta span {
  background: rgba(37, 99, 235, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.media-actions {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  flex-wrap: wrap;
}

.media-action-btn {
  flex: 1;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  white-space: nowrap;
}

.media-action-btn:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.5);
  color: #bfdbfe;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.media-action-btn:active {
  transform: translateY(0);
}

.media-checkbox {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
}

/* Media Grid Date Headers */
.media-grid > div[style*="grid-column"] {
  animation: sectionHeaderSlide 0.4s ease-out backwards;
}

@keyframes sectionHeaderSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Feedback Messages */
.feedback-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
  animation: feedbackSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid;
  backdrop-filter: blur(8px);
}

@keyframes feedbackSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feedback-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
  border-left-color: #10b981;
  color: #a7f3d0;
}

.feedback-error {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
  border-left-color: #f43f5e;
  color: #fecaca;
}

/* ===== Admin Pages Mobile Responsive Styles ===== */
@media screen and (max-width: 768px) {
  /* Posts List Mobile */
  .posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .post-item {
    padding: 16px;
    padding-left: 40px;
    position: relative;
  }

  .post-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    padding-right: 60px;
  }

  .post-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .post-item .edit-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Media Grid Mobile */
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .media-item {
    padding: 12px;
  }

  .media-thumb {
    height: 120px;
    margin-bottom: 8px;
  }

  .media-item h3 {
    font-size: 0.85rem;
    word-break: break-all;
  }

  .media-item p {
    font-size: 12px;
  }

  /* Form Row Mobile */
  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-row .form-group {
    min-width: 100%;
  }

  /* Admin Upload Form Mobile */
  .admin-upload-form {
    padding: 16px;
  }

  /* Search Filters Mobile */
  .search-filters {
    flex-direction: column;
    gap: 10px;
  }

  .search-filters .search-input,
  .search-filters .filter-select {
    width: 100%;
  }

  /* Form Actions Mobile */
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }

  .form-actions .btn {
    width: 100%;
  }

  .select-all-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }

  /* Bulk Delete Button Mobile */
  .bulk-delete-btn {
    display: none;
  }

  /* Posts Pager Mobile */
  .posts-pager {
    text-align: center;
    padding: 16px 0;
  }

  .posts-pager .btn {
    width: 100%;
  }

  /* Modal Mobile */
  .modal-content {
    width: 95%;
    max-width: none;
    margin: 5% auto;
    padding: 20px;
    max-height: 85vh;
  }

  .modal-content h3 {
    font-size: 1.2rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  /* Posts List Small Mobile */
  .post-item {
    padding: 14px;
    padding-left: 36px;
  }

  .post-item h3 {
    font-size: 0.95rem;
  }

  .post-item p {
    font-size: 12px;
  }

  /* Media Grid Small Mobile */
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-item {
    padding: 14px;
    padding-left: 32px;
  }

  /* Admin Upload Form Small Mobile */
  .admin-upload-form {
    padding: 12px;
  }

  /* Modal Small Mobile */
  .modal-content {
    margin: 2% auto;
    padding: 16px;
    max-height: 90vh;
  }

  .modal-content h3 {
    font-size: 1.1rem;
  }
}

/* ===== RESPONSIVE FIX: Prevent horizontal overflow ===== */
@media (max-width: 1024px) {
  * {
    max-width: 100%;
  }
  
  body, html {
    overflow-x: hidden;
  }
  
  .navbar {
    padding: 8px 15px;
    gap: 12px;
  }
  
  .logo-circle {
    width: 50px;
    height: 50px;
  }
  
  .logo img,
  .logo-img {
    height: 42px;
  }
  
  .nav-center ul {
    padding: 6px 12px;
    gap: 4px;
  }
  
  .nav-center ul li a {
    font-size: 11px;
    padding: 4px 6px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ios-carousel-wrapper {
    width: 95% !important;
  }
  
  .ios-carousel-slide {
    flex: 0 0 calc(100% - 40px) !important;
    height: 300px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .navbar {
    padding: 8px 10px;
    gap: 8px;
  }
  
  .logo-circle {
    width: 45px;
    height: 45px;
  }
  
  .logo img,
  .logo-img {
    height: 38px;
  }
  
  .nav-center ul {
    padding: 4px 8px;
    gap: 2px;
  }
  
  .nav-center ul li a {
    font-size: 10px;
    padding: 3px 5px;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  
  .hero-slideshow {
    min-height: 250px;
    max-height: 400px;
  }
  
  .ios-carousel-section {
    min-height: 350px !important;
    max-height: 450px !important;
  }
  
  .ios-carousel-slide {
    flex: 0 0 calc(100% - 30px) !important;
    height: 250px;
  }
  
  section {
    padding: 40px 15px !important;
  }
  
  .dashboard-grid,
  .settings-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .navbar {
    padding: 6px 8px;
    gap: 6px;
  }
  
  .logo-circle {
    width: 38px;
    height: 38px;
  }
  
  .logo img,
  .logo-img {
    height: 32px;
  }
  
  .nav-center ul {
    padding: 3px 6px;
    gap: 2px;
  }
  
  .nav-center ul li a {
    font-size: 9px;
    padding: 2px 4px;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  
  .ios-carousel-slide {
    flex: 0 0 calc(100% - 20px) !important;
    height: 200px;
  }
  
  .carousel-card-overlay {
    padding: 16px 12px 12px;
  }
  
  .carousel-card-overlay h3 {
    font-size: 1.1rem;
  }
  
  .carousel-card-overlay p {
    font-size: 0.85rem;
  }
  
  section {
    padding: 30px 10px !important;
  }
  
  .dashboard-card,
  .setting-item,
  .info-card,
  .contact-form {
    padding: 16px;
  }
  
  .contact-content {
    gap: 15px;
  }
  
  .social-icons {
    gap: 8px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}


