/* ================================================== */
/* ROOT VARIABLES & BASE STYLES */
/* ================================================== */
:root {
  --accent: #f07d3a;
  --dark: #080f18;
  --muted: #e9e6e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: var(--dark);
  background: #d4d7d8;
}

/* ================================================== */
/* BUTTONS */
/* ================================================== */
.btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #f0731f;
}

/* ================================================== */
/* TOPBAR / NAVIGATION */
/* ================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  background: rgba(255, 255, 254, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  color: #fff;
}

.topbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.topbar .nav {
  display: flex;
  gap: 20px;
}

.topbar .nav a {
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #05090f; /* Primary text color */
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topbar .nav img {
  display: none;
}
/* Subtle underline effect */
.topbar .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ff8800; /* Accent color */
  transition: width 0.3s ease;
}

/* Hover effect */
.topbar .nav a:hover {
  color: #ff8800;
}

.topbar .nav a:hover::after {
  width: 100%;
}

/* Active state */
.topbar .nav a:active {
  color: #f3f4f5;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #ff5e00;
  z-index: 1000;
}

/* Responsive nav */
@media (max-width: 768px) {
  .topbar {
    padding: 12px 20px;
  }

  .topbar .nav {
    position: absolute;
    top: 1px;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgba(9, 12, 17, 0.9);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border-radius: 0 0 0 12px;
    display: none;
  }

  .topbar .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .topbar .nav a {
   color: #f4f5f5; /* Primary text color */
}
.topbar .nav img {
  display: block;
}
}


/* ================================================== */
/* HERO SECTION / SLIDER */
/* ================================================== */
.hero {
  position: relative;
  text-align: center;
  background: var(--muted);
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 90vh;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.caption {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 50px;
  border-radius: 16px;
  max-width: 100%;
  height: 200px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  animation: fadeInUp 1.2s ease both;
}

.caption h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
}

.caption p {
  font-size: 1.2rem;
  color:#00ff0d;
  opacity: 0.9;
}

/* Typewriter effect */
.typewriter {
  overflow: hidden;
  display: inline-block;
  border-right: .12em solid #5eff00;
  white-space: nowrap;
  letter-spacing: .06em;
  animation: typing 4s steps(40, end), blink .75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}

/* Animations */
@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes jumpIn {
  0% { transform: translateY(50px) scale(0.8); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.jump {
  animation: jumpIn 1.2s ease forwards;
  opacity: 0;
}

/* Hero slider dots */
.hero-dots {
  text-align: center;
  margin-top: 15px;
}

.hero-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots .dot.active {
  background: #1a73e8;
}


/* ================================================== */
/* SEARCH BAR 
/* ================================================== */


/* Base style for the search input */
#searchInput {
    width: 90%;                 /* Full width to fit container */
    padding: 20px 20px;          /* Comfortable padding inside input */
    font-size: 16px;             /* Easy-to-read text */
    border: 2px solid #ccc;      /* Light border */
    border-radius: 25px;         /* Rounded corners for a modern look */
    outline: none;               /* Remove default outline */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: all 0.3s ease;  /* Smooth transitions for interactions */
    margin: 20px;
}

/* Placeholder style */
#searchInput::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Focus style */
#searchInput:focus {
    border-color: #007BFF;       /* Blue border on focus */
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2); /* Highlight shadow */
}

/* Optional: add a subtle hover effect */
#searchInput:hover {
    border-color: #888;
}

/* ================================================== */
/* CONTAINERS & GRID LAYOUTS */
/* ================================================== */
.container {
  max-width: 100%;
  margin: 100px auto;
  padding: 20px;
  }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 18px;
}

/* ================================================== */
/* CARDS (SERVICES, FORMS, NEWS) */
/* ================================================== */
/* Container */
/* Section Container */
#services {
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}

/* Section Heading */
#services h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  position: relative;
  display: inline-block;
}

/* Decorative underline */
#services h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
#servicesList.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Service Card */
#servicesList .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Card hover effect */
#servicesList .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  background-color: #00ffd5;
}

/* Card Title */
#servicesList .card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #111;
}

/* Card Description */
#servicesList .card .desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  max-height: 3em;  /* collapsed */
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.4s ease;
}

/* Expanded Description */
#servicesList .card.expanded .desc {
  max-height: 500px;
}

/* Read More Button */
#servicesList .card .toggle-btn {
  margin-top: 16px;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover effect for button */
#servicesList .card .toggle-btn:hover {
  background: #ee950f;
  transform: scale(1.05);
}


/* ================================================== */
/* WHY CHOOSE US */
/* ================================================== */

/* Why Choose Us Section */
#why-choose-us {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

/* Heading */
#why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
  position: relative;
  display: inline-block;
}

#why-choose-us h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Benefit Card */
.benefit-card {
  background: #f9fafc;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Big Icon Watermark */
.benefit-card i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 6rem;              /* <<< Bigger size */
  color: rgba(0, 123, 255, 0.09); /* faint blue */
  z-index: 0;
  pointer-events: none;         /* don’t block clicks */
}

/* Titles & Text stay above icon */
.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

/* Benefit Titles */
.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #007bff;
}

/* Benefit Text */
.benefit-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Card hover + focus effect */
.benefit-card:hover,
.benefit-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  outline: none; /* removes default outline */
  border: 2px solid #007bff; /* custom focus border */
}


/* ============================= */
/* Stats Section */
/* ============================= */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: #151618;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin: 50px auto;
  width: 95%;
  border-radius: 10px;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  font-weight: 500;
  color: #ffbb00;
}


/* ================================================== */
/* FORMS (ADD / EDIT) */
/* ================================================== */
/* Container for all cards */
#formsList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%; /* ensures equal height inside grid */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* Caption */
.card-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  max-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price */
.card-content .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff3300;
  margin-bottom: 5px;
}

/* Button */
.card-content .btn {
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: #00a2ff;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  margin-top: auto; /* keeps it pinned to the bottom */
  transition: background 0.3s ease;
}

.card-content .btn:hover {
  background: #093947;
}

#forms {
  text-align: center; /* Center everything inside */
}

#forms h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  display: inline-block; /* keeps underline sized to text */
  padding-bottom: 10px;
}

/* Decorative underline */
#forms h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #007bff;
  margin: 8px auto 0; /* centers underline */
  border-radius: 2px;
}

.paystack-simple {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #bcc1c2;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ps-logo img {
  width: 200px;
  margin-bottom: 15px;
}

.ps-row {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.ps-item {
  flex: 1 1 120px;
  text-align: center;
}

.ps-item .ps-ico img {
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
}

.ps-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.ps-banks {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 5px;
}

.ps-banks img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 2px;
  background: #fff;
}




/* ================================================== */
/* NEWS 
/* ================================================== */
/* News Grid */
#newsList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* News Card */
#newsList .card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#newsList .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* Title */
#newsList .card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d30505;
  margin-bottom: 12px;
}

/* Summary */
#newsList .card p {
  font-size: 1rem;
  color: #444; /* slightly darker for better readability */
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Read More Link */
#newsList .card a {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  align-self: flex-start;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

/* Hover Effect */
#newsList .card a:hover {
  background: linear-gradient(135deg, #0056b3, #00408a);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
}


#newsList .card a:hover {
  background: #0056b3;
}

/* ================================================== */
/* TABLES */
/* ================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

th, td {
  padding: 12px 15px;
  text-align: left;
}

th {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
}

tr:nth-child(even) {
  background: #f9f9f9;
}

tr:hover {
  background: #e6f0ff;
}




/* ======================
   Social Feed Section
   ====================== */
/* ======================
   Social Feed Section
   ====================== */

/* Social list */
#socialList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0;
}

/* Social link cards */
.social-link {
  display: block;
  padding: 12px 18px;
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #0073e6, #005bb5);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ======================
   Modal Styling
   ====================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Modal animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  padding: 25px 30px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  text-align: center;
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-content h3 {
  margin-top: 0;
  font-size: 22px;
  color: #0073e6;
}

.modal-content p {
  margin: 15px 0;
  line-height: 1.6;
  color: #122636;
  font-size: 16px;
}

/* Close X button */
.close {
  float: right;
  font-size: 26px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}

.close:hover {
  color: #0073e6;
}

/* Close button inside modal */
.close-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.close-btn:hover {
  background: #005bb5;
  transform: scale(1.05);
}



/* ========================
CONTACT FORM 
==========================*/

/* Forms */
.forms {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  margin-top: 70PX;
  margin: 0 auto;
}

.subscribe-form,
.message-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom:10px;
  margin-right:20px;
}

.forms input,
.forms textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.forms button {
  background: linear-gradient(to right, #ff512f, #dd2476);
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.forms button:hover {
  background: linear-gradient(to right, #135081, #3a0747);
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #111111;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  margin-top: 25px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-section {
  flex: 1 1 250px;
  margin: 10px;
  min-width: 220px;
}

.footer-section h3 {
  border-bottom: 2px solid #007BFF;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #fcfcfc;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: #00ff0d;
  transform: translateY(-3px);
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: invert(100%) brightness(150%);
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* =========================
   FORMS
========================= */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6e9ef;
  margin: 8px 0;
}

/* ================================================== */
/* FOOTER (general) */
/* ================================================== */
footer {
  padding: 24px;
  text-align: center;
  background: #131212;
  color: #fff;
  margin-top: 48px;
}


 #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #111; /* background color */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Loader container */
    .spinner {
      position: relative;
      width: 150px;
      height: 150px;
    }

    /* Logo in the center */
    .spinner img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px; /* adjust logo size */
      z-index: 2;
    }

    /* Outer ring (clockwise) */
    .ring1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 150px;
      height: 150px;
      border: 6px solid transparent;
      border-top: 6px solid #00ff0d;
      border-radius: 50%;
      animation: spinClockwise 2s linear infinite;
    }

    /* Inner ring (anticlockwise) */
    .ring2 {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 110px;
      height: 110px;
      border: 6px solid transparent;
      border-bottom: 6px solid #007BFF;
      border-radius: 50%;
      animation: spinAnti 1.5s linear infinite;
    }

    /* Animations */
    @keyframes spinClockwise {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes spinAnti {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(-360deg); }
    }

    /* Hide loader when page is ready */
    body.loaded #loader {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }


    /* =========================
   MESSAGE NOTIFICATION
========================= */

.notification-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.notification-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  max-width: 400px;
}
.checkmark {
  font-size: 50px;
  color: green;
  margin-bottom: 15px;
}
.notification-box p {
  font-size: 18px;
  margin-bottom: 20px;
}
.notification-box button {
  background: green;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
    margin: 15px 0;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }

 .form-container { flex-direction: column; gap: 10px; }
  .card { flex: 1 1 100%; }
  table, th, td { font-size: 14px; }
  .hero-slider .typewriter { font-size: 1.5rem; }
  .hero {
  position: relative;
  text-align: center;
  background: var(--muted);
  font-family: "Poppins", sans-serif;
  height: 100vh;
  margin: 0 auto;
}

.forms {
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #b8bdbc;
  }

.hero-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.caption h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
}

.caption p {
  font-size: 1rem;
  color:#00ff0d;
  opacity: 0.9;
}
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px 15px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 80vh;
  }
}