* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; width:100%; overflow-x:hidden; font-family:"Poppins",sans-serif; background:#f5f5f5; color:#ffffff; }

/* Header Base (keeps your original styling) */
/* ----- HEADER HIDE / SHOW ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #710000c8;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;      /* prevent clicking while hidden */
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hide state */
.site-header.hide {
  top: -150px;  /* slightly more than header height */
}

/* Inner structure stays same */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
}

.fade-container,
.fade-slide {
  z-index: 1 !important;
}
/* Prevent header from hiding while dropdown is open */
.site-header.hover-lock {
  top: 0 !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Logo */
.logo-area { display:flex; align-items:center; gap:12px; }
.logo-box { width:56px; height:56px; border-radius:50%; overflow:hidden; border:2px solid #000000; background:#fff; display:flex; align-items:center; justify-content:center; }
.logo-img { width:100%; height:100%; object-fit:cover; }
.brand-name { color:#fff; font-size:40px; font-weight:600; letter-spacing:0.6px; }

/* Nav */
.nav-container { flex:1; display:flex; justify-content:flex-end; }
.nav { display:flex; list-style:none; gap:28px; align-items:center; margin:0; padding:0; }
.nav > li { position:relative; }
nav ul li a {
    color: rgba(230, 230, 230, 0.796);      
    text-decoration: none;
    transition: 0.3s ease; 
}

nav ul li a:hover {
    color: #2de743;   
}

.nav-label { color:#fff; font-size:17px; font-weight:500; cursor:pointer; padding:8px; display:inline-block; }
.no-dropdown:hover { opacity:0.85; }

/* Dropdown (hover) */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;         /* instead of calc(100% + 8px) */
  left: 0;
  margin-top: 4px;   /* tiny gap but still hoverable */
  background: #d6fdc4d6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  z-index: 9999;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 32px;        /* hover buffer */
  background: transparent;
}

.dropdown:hover > .dropdown-content { display:flex; }
.dropdown-content.small-menu { width:340px; }

/* columns */
.menu-column { min-width:160px; }
.menu-column h3 { margin:0 0 8px; color:#d32f2f; font-weight:600; font-size:15px; }
.menu-column a { display:block; color:#222; text-decoration:none; padding:6px 0; font-size:14px; }
.menu-column a:hover { color:#d32f2f; transform:translateX(4px); }

/* Main content area - full width but center internal content using max-width */
.main-content { width:100%; }
.animation-section { width:100%; max-width:1200px; margin:0 auto; padding:22px 16px; 
.main-nav a.nav-button {
  color: #fff;
  text-decoration: none;
}

.main-nav a.nav-button:hover {
  color: #ffe0e0;  /* same hover effect as your other buttons */
}
}

/* ------------------------------ ABOUT PAGE (PREMIUM STYLE) ------------------------------ */

.about-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
}

/* MAIN HEADING */
.about-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.8rem;
  color: #0b4ea4;
  letter-spacing: 0.5px;
}

/* SUBHEADINGS */
.about-section h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  color: #0b4ea4;
  font-weight: 600;
}

/* PARAGRAPHS */
.about-section p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 1.4rem;
}

/* INTRO TEXT */
.about-section .intro {
  font-size: 1.15rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

/* LIST STYLING */
.about-section ul {
  margin: 1rem 0 1.8rem;
  padding-left: 1.4rem;
}

.about-section ul li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  position: relative;
}

/* CUSTOM BULLET */
.about-section ul li::before {
  content: "•";
  color: #0b4ea4;
  font-weight: bold;
  position: absolute;
  left: -1rem;
  top: 0;
}

/* SMALL ANIMATION ON SECTION */
.about-section {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .about-section {
    padding: 28px 20px;
  }

  .about-section h1 {
    font-size: 1.9rem;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }
}

/* ----------------------------- Link not Appearing blue-------------------- */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #d32f2f;
}

/* ------------------------------ FOOTER ------------------------------ */
.footer {
  width: 100%;
  background: #2f2b1b;
  color: #fff;
  padding: 28px 0 36px;
  margin-top: 40px;
}

.footer-container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col { min-width: 220px; }
.footer-col h3 { margin-bottom: 8px; font-size: 18px; font-weight: 700; }
.footer-col p { margin: 6px 0; font-size: 15px; opacity: 0.95; }

.footer-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.95;
}
