/* ===========================
       Reset & Global Styles
    =========================== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #ffffff;
      color: #333;
    }

    /* ===========================
       Navbar Styles
    =========================== */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      background: #fff;
      border-bottom: 1px solid #ddd;
      position: sticky; /* Make the header/navbar sticky at the top */
      top: 0;
      z-index: 100;
      flex-wrap: nowrap; /* Prevent wrapping */
      box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08); /* Added box shadow */
    }

    /* Logo section */
    .logo {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      width: 150px;
    }

    /* Navigation links */
    .nav-links {
      flex: 1 1 0;
      display: flex;
      justify-content: center; /* Center links horizontally */
      gap: 25px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 14px;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: orange;
    }

    /* Action buttons (Give & Live) */
    .action-buttons {
      flex: 0 0 auto;
      display: flex;
      gap: 10px;
      align-items: center;
      /* Push to far right */
    }

    .give-btn,
    .live-btn {
      padding: 10px 19px;
      border-radius: 20px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      font-size: 13px;
    }

    .give-btn {
      background: #fff;
      border: 2px solid #0A1A33;
      color: #0A1A33;
    }

    .give-btn:hover {
      background: #0A1A33;
      color: #fff;
    }

    .live-btn {
      background: #0A1A33;
      color: #fff;
      border: none;
    }

    .live-btn:hover {
      opacity: 0.9;
      color: #0A1A33;
      background: #fff;
      border: 1px solid #0A1A33;
    }

    /* Hamburger menu button (hidden by default, shown on mobile/tablet) */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      line-height: 1;
    }

    .menu-toggle .menu-icon {
      display: inline-block;
      transition: transform 0.3s cubic-bezier(.4,0,.2,1), color 0.3s;
      font-size: 28px;
    }

    /* When nav is open, rotate and scale the icon for a nice effect */
    .menu-toggle.open .menu-icon {
      transform: rotate(180deg) scale(1.2);
      color: #0A1A33; /* Changed from #ff6600 to dark blue */
    }

    /* ===========================
       Hero Section Styles
       Overlay: same style as card overlay, image sharp and full */
   /* ...existing code... */
.hero {
  position: relative;
  color: #ffffff;
  height: 80vh;
  text-align: center;
  padding: 0 20px; /* Remove top padding */
  background: 
    linear-gradient(135deg, rgba(0,92,166,0.82) 60%, rgba(0,0,0,0.45) 100%),
    url("image/s2.jpg") center center / cover no-repeat;
  
  background-blend-mode: lighten, normal;
  box-shadow: 0 8px 32px 0 rgba(0,92,166,0.10);
  display: flex;
  align-items: center;    /* Vertically center content */
  justify-content: center;/* Horizontally center content */
  min-height: 400px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
   background: linear-gradient(135deg, rgba(0,92,166,0.82) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  display: flex;
  align-items: center;    /* Vertically center content */
  justify-content: center;/* Horizontally center content */
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
/* ...existing code... */
    .hero h4 {
      letter-spacing: 3px;
      margin-bottom: 10px;
      color: #e0e0e0;
    }

    .hero h1 {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .hero h3 {
      font-weight: 400;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-buttons button {
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      transition: background 0.2s ease, box-shadow 0.2s;
      box-shadow: 0 2px 12px 0 rgba(10,26,51,0.13); /* Updated box shadow */
    }

    .hero-buttons .locate {
      background: #fff;
      color: #0A1A33;
      border: 2px solid #0A1A33;
    }

    .hero-buttons .locate:hover {
      background: #0A1A33;
      color: #fff;
      box-shadow: 0 4px 16px 0 rgba(10,26,51,0.18);
      transform: translateY(-2px) scale(1.04);
      transition: all 0.2s cubic-bezier(.4,0,.2,1);
    }

    .hero-buttons .join {
      background: rgba(10,26,51,0.1);
      border: 2px solid #0A1A33;
      color: #fff;
    }

    .hero-buttons .join:hover {
      background: #0A1A33;
      color: #fff;
      border-color: #0A1A33;
      box-shadow: 0 4px 16px 0 rgba(10,26,51,0.18);
      transform: translateY(-2px) scale(1.04);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    /* More obvious animated border under hero */
    .hero::after {
      content: "";
      display: block;
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 10px;
      background: linear-gradient(90deg, orange, #007bff, #00ffea, #fff200, orange, #ff00cc, orange);
      background-size: 300% 100%;
      border-radius: 0 0 12px 12px;
      z-index: 2;
      box-shadow: 0 2px 16px 2px rgba(255, 140, 0, 0.4), 0 0 24px 4px #007bff33;
      opacity: 0.95;
      transform: translateX(-50%);
      animation: hero-border-reveal 1.2s cubic-bezier(.4,0,.2,1) forwards, move-border 4s linear infinite 1.2s;
    }

    /* Reveal border from center outwards */
    @keyframes hero-border-reveal {
      0% {
        width: 0;
        opacity: 0;
      }
      60% {
        opacity: 1;
      }
      100% {
        width: 100%;
        opacity: 0.95;
      }
    }

    /* Move the gradient after reveal */
    @keyframes move-border {
      0% {
        background-position: 0% 0%;
      }
      100% {
        background-position: 300% 0%;
      }
    }

    /* Fade-in animation for hero text */
@keyframes hero-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in to hero text elements */
.hero h4,
.hero h1,
.hero h3,
.hero-buttons {
  opacity: 0;
  animation: hero-fade-in 1.2s cubic-bezier(.4,0,.2,1) forwards;
}

/* Stagger the animation for each element */
.hero h4 { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.4s; }
.hero h3 { animation-delay: 0.7s; }
.hero-buttons { animation-delay: 1s; }

    /* ===========================
       Responsive Styles
    =========================== */

    @media (max-width: 1024px) {
      nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
        box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
      }
      nav {
        position: relative; /* Needed for absolute positioning of nav-links */
        z-index: 10;
      }
      .logo { flex: 1 1 0; 
      display: flex; 
      align-items: center; 
      justify-content: flex-start; 
      margin-bottom: 0; 
          
      }
      .action-buttons { flex: 1 1 0;
      display: flex; 
      justify-content: center; 
      align-items: center; 
      margin: 0; gap: 18px; 
      position: static; 
      background: none; 
      box-shadow: none; 
      padding: 0; 
          
      }
      .menu-toggle { flex: 1 1 0; 
        display: block; 
        font-size: 28px; 
        background: none;
         border: none; 
         cursor: pointer; 
         /* text-align: right;  */
         margin-bottom: 0; 
         justify-content: flex-end; }

      /* Nav links hidden by default, shown when hamburger is toggled */
      .nav-links {
        position: absolute;
        top: 100%; /* Directly below the navbar */
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #eee;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 0 0 20px;
        max-height: 0;
        overflow: hidden;
        z-index: 20;
        transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
        display: flex;
      }
      /* Show nav links with slide-down effect */
      .nav-links.open {
        max-height: 400px; /* Enough for all links */
        padding: 20px 0 10px 20px;
      }

      /* Animate hero section down when nav is open */
      .hero {
        transition: margin-top 0.4s cubic-bezier(.4,0,.2,1);
      }
      .nav-open .hero {
        margin-top: 220px; /* Adjust to match nav-links height */
      }
    }



    @media (max-width: 768px) {
      .action-buttons {
        gap: 20px; /* Add more space between buttons on mobile */
      }
      .logo strong{
          font-size: 0.6em;
          }
     
      .action-buttons button{ 
          display: flex; 
          align-items: center; 
          gap: 3px; 
          font-size: 11px; 
          padding: 6px 12px;
          }
      .action-buttons button svg, .action-buttons button i { font-size: 16px; }
      .nav-links.open { max-height: 350px; }
      .nav-open .hero { margin-top: 180px; }

      .hero h1 {
      font-size: 1.5em;
      margin-bottom: 10px;
    }
     .logo img {
      width: 120px;
    }
    }

    /* ===========================
       Desktop-only adjustments
       (applies only when width > 1024px)
    =========================== */
    @media (min-width: 1025px) {
      /* Add more padding to the header/nav on desktop */
      nav {
        padding-left: 60px;
        padding-right: 60px;
      }

      /* Increase hero section height on desktop */
      .hero {
        padding-top: 140px;
        padding-bottom: 140px;
      }
    }

    /* Vertical divider between nav-links and action-buttons (desktop only) */
.nav-divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: #e0e0e0;
  margin: 0 24px;
}
 
/* Hide divider on tablet/mobile */
@media (max-width: 1024px) {
  .nav-divider {
    /*display: none;*/
  }
}

/* ============================
   Quick Links Cards
============================ */
/* Quick Links Cards with image and overlay */
.quick-links {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.card {
  position: relative;
  background: #0A1A33;
  color: #fff;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
}

/* Card image as background */
.card .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

/* Overlay on image */
.card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,51,0.82) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
  transition: background 0.3s cubic-bezier(.4,0,.2,1);
}

/* Card content: align to top, bigger text, bigger button, fade-in animation */
.card-content {
  position: relative;
  z-index: 3;
  padding: 28px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start; /* Align content to top */
  height: 100%;
  opacity: 0;
  animation: card-fade-in 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes card-fade-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Make card text bigger */
.card h4 {
  font-size: 1.35em;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.card p {
  font-size: 1.08em;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

/* Bigger button with icon inside */
.card button {
  align-self: flex-start;
  margin-top: 10px;
  padding: 12px 28px;
  border: none;
  border-radius: 24px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: #0A1A33;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px 0 rgba(10,26,51,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.card button:hover {
  background: #0A1A33;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(10,26,51,0.18);
}

/* Card hover effect */
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(10, 26, 51, 0.18);
}
.card:hover .card-img {
  transform: scale(1.07);
}
.card:hover .card-overlay {
  background: linear-gradient(135deg, rgba(10,26,51,0.60) 40%, rgba(255,140,0,0.30) 100%);
}

/* ============================
   Welcome Box
============================ */
.welcome-wrapper {
  background: #f4f5f7;
  margin-top: 80px;
  padding: 80px 20px 100px 20px;
  box-shadow: 0 8px 32px 0 rgba(10,26,51,0.10); /* Added box shadow */
  animation: welcome-fade-in 1.3s cubic-bezier(.4,0,.2,1) both;
}

@keyframes welcome-fade-in {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-card {
  max-width: 1000px;
  background: #fff;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(10, 26, 51, 0.05);
  display: flex;
  overflow: hidden;
  padding:20px;
}

.welcome-image {
  flex: 0 0 220px;
  width: 220px;
  min-width: 400px;
  max-width: 650px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  margin-top: 36px;
  margin-bottom: 36px;
  margin-right: 32px;

  border-radius:  15px;
  
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  align-self: flex-start;
}

.welcome-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  opacity: 0;
  animation: welcome-content-fade 1.2s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}

@keyframes welcome-content-fade {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-content p {
  line-height: 25px;
  font-size: 16px;
  color: #000;
  margin-top:10px;
 
}

.badge-group {
  display: flex;
  gap: 8px;
  margin: 5px 0 15px;
}

.badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0A1A33;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.about-btn {
  align-self: flex-start;
  padding: 8px 15px;
  border: 1px solid #0A1A33;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: #0A1A33;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
 
}

.about-btn:hover {
  background: #0A1A33;
  color: #fff;
}

/* ============================
   Responsive for Small Devices
============================ */
@media (max-width: 900px) {
  .welcome-card {
    flex-direction: column;
    max-width: 98vw;
    min-height: unset;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,92,166,0.10);
    margin: 0 auto;
    overflow: hidden;
  }
  .welcome-image {
    width: calc(100% - 24px);    /* Add horizontal padding */
    height: 300px;               /* Slightly taller for better aspect */
    min-width: unset;
    max-width: 100%;
    /*border-radius: 14px 14px 0 0;*/
    margin: 15px 12px 0 12px;    /* Top and horizontal margin for padding effect */
    padding-left: 0;
    object-fit: cover;
    object-position: center;
    box-shadow: none;
    display: block;
  }
  .welcome-content {
    padding: 18px 10px 24px 10px;
    font-size: 1em;
    gap: 10px;
  }
}

/* Always keep the header sticky on all devices */
nav {
  position: sticky;
  padding: 20px 40px;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.10);
}

/* Desktop-only: Style About Us button with more margin, width, and height */
@media (min-width: 901px) {
  .about-btn {
    margin-top: 52px;
    min-width: 180px;
    min-height: 48px;
    font-size: 1.13em;
    padding: 14px 38px;
  }
}
.event-banner {
  position: relative;
  background: url("image/esec.jpg") center/cover no-repeat;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: left;
    padding: 0 50px;
}

.event-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,92,166,0.82) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Event banner content styles */
.event-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* Align content to the left */
  gap: 8px;
  background: rgba(255,255,255,0.92); /* Light background for text */
  padding: 18px 28px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(10,26,51,0.10);
  margin-left: 32px;         /* Add space from the left edge */
}

/* On small screens, center it for better look */
@media (max-width: 600px) {
  .event-banner-content {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
}

.event-label {
  font-size: 13px;
  font-weight: 700;
  color: #007bff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.event-title {
  font-size: 1.12em;
  font-weight: 600;
  color: #002b55;
  letter-spacing: 0.5px;
}

/* ============================
   PPH Section
============================ */
.pph-section {
  background: #ffffff;
  padding: 60px 20px;
  opacity: 0;
  animation: pph-section-fade-in 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
@keyframes pph-section-fade-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pph-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.pph-video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(10,26,51,0.13);
}
.pph-video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
}

/* Text side */
.pph-text {
  flex: 1 1 350px;
  opacity: 0;
  animation: pph-text-up 1s cubic-bezier(.4,0,.2,1) 0.5s forwards;
}
@keyframes pph-text-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pph-text .tag {
  display: inline-block;
  background: #d4a716; /* gold-ish */
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.pph-text h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #002b55;
}

.pph-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Button with animation */
.pph-btn {
  padding: 12px 30px;
  background: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  animation: pph-btn-animate 1s cubic-bezier(.4,0,.2,1) 1s forwards;
  transform: translateY(30px) scale(0.97);
  transition: box-shadow 0.2s, transform 0.2s;
}

@keyframes pph-btn-animate {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pph-btn:hover {
  box-shadow: 0 6px 24px 0 rgba(10,26,51,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Video side */
.pph-video-wrapper {
  position: relative;
  flex: 0 0 480px;
  max-width: 100%;
  opacity: 0;
  animation: pph-video-right 1s cubic-bezier(.4,0,.2,1) 0.8s forwards;
}
@keyframes pph-video-right {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.pph-thumb {
  width: 100%;
  max-width: 450px;
  height: 250px;              /* Reduced height */
  border-radius: 12px;        /* More visible border radius */
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 12px 0 rgba(10,26,51,0.13);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pph-video-wrapper:hover .pph-thumb {
  box-shadow: 0 8px 32px 0 rgba(10,26,51,0.18);
  transform: scale(1.03);
}

/* Play button styling and hover effect */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.play-btn span {
  font-size: 32px;
  color: #007bff;
  margin-left: 4px;
  transition: color 0.2s;
}

.play-btn:hover {
  background: #007bff;
  box-shadow: 0 8px 24px rgba(10,26,51,0.18);
  transform: scale(1.08);
}

.play-btn:hover span {
  color: #fff;
}

/* ============================
   Responsive
============================ */
@media (max-width: 768px) {
  .pph-container {
    flex-direction: column;
    gap: 24px;
  }
  .pph-video-wrapper {
    width: 100%;
    justify-content: center;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
  }
  .pph-thumb {
    width: 100%;
    max-width: 100%;
    height: 260px;
    border-radius: 12px;
    object-fit: cover;
    margin: -20px auto -50px auto; /* Less space top and bottom */
    display: block;
  }
  .play-btn {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Ensure play button is centered on mobile */
    width: 56px;
    height: 56px;
  }
}

/* =====================================================
       Service‑Times Strip (above footer)
    ===================================================== */
   .service-strip {
  background: #10203b;
  padding: 30px 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: service-strip-fade-in 1.2s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}

@keyframes service-strip-fade-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

    .service-strip .time-item {
      font-size: 15px;
    }

    .service-strip strong {
      color: #f5c518;             /* Gold‑ish highlight */
    }

/* Animate footer text columns */
.footer .column-title,
.footer .contact-info,
.footer .quick-links ul,
.footer .social-icons,
.footer input[type="email"],
.footer .btn-subscribe,
.footer .form-label,
.footer .form-select {
  opacity: 0;
  transform: translateY(30px);
  animation: footer-text-fade-in 1s cubic-bezier(.4,0,.2,1) forwards;
}
.footer .column-title { animation-delay: 1.5s; }
.footer .contact-info { animation-delay: 1.7s; }
.footer .quick-links ul { animation-delay: 1.9s; }
.footer .social-icons { animation-delay: 2.1s; }
.footer input[type="email"] { animation-delay: 2.3s; }
.footer .btn-subscribe { animation-delay: 2.5s; }
.footer .form-label, .footer .form-select { animation-delay: 2.7s; }

@keyframes footer-text-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated hover effect for links in footer and service section */
.footer a,
.footer .quick-links li,
.service-strip .time-item {
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.footer a:hover,
.footer .quick-links li:hover {
  color: #f5c518 !important;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 2px 12px 0 rgba(245,197,24,0.12);
  transform: translateY(-2px) scale(1.04);
  cursor: pointer;
}

.service-strip .time-item:hover {
  color: #f5c518;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 2px 12px 0 rgba(245,197,24,0.10);
  transform: scale(1.04);
  cursor: pointer;
}
   /* =====================================================
       Footer Wrapper & Overlay
    ===================================================== */
   .footer {
  position: relative;
  padding: 60px 20px 30px;
  background: 
    linear-gradient(135deg, rgba(10,26,51,0.82) 60%, rgba(0,0,0,0.45) 100%),
    url("image/s2.jpg") center center / cover no-repeat;
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  animation: footer-fade-in 1.3s cubic-bezier(.4,0,.2,1) 0.7s forwards;
}

@keyframes footer-fade-in {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

    /* Dark overlay so text remains readable */
    .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 5, 25, 0.85);
      z-index: 0;
    }

    /* Keep footer content above overlay */
    .footer-content {
      position: relative;
      z-index: 1;
    }

    /* =====================================================
       Footer – General typography & element spacing
    ===================================================== */
    .column-title {
      font-weight: 600;
      margin-bottom: 20px;
    }

    /* -------- Quick‑Links list -------- */
    .quick-links ul {
      list-style: none;
      padding-left: 0;
    }

    .quick-links li {
      margin-bottom: 10px;
    }

    .quick-links i {
      margin-right: 10px;
      color: #6fbaf8; /* arrow icon tint */
    }

    /* -------- Logo & Social icons -------- */
    /* .logo img {
      width: 100px;
    
    } */

    .social-icons a {
      color: #fff;
      font-size: 18px;
      margin-right: 10px;
      transition: color 0.2s ease;
    }

    .social-icons a:hover {
      color: #6fbaf8;
    }

    /* -------- Newsletter form -------- */
    input[type="email"] {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .btn-subscribe {
      padding: 10px 20px;
      background: #3182ce;
      border: none;
      border-radius: 5px;
      color: #fff;
    }

    select {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
    }

    /* =====================================================
       Responsive tweaks (≥ 768 px)
    ===================================================== */
    @media (min-width: 768px) {
      .footer .row > div {
        padding: 0 30px; /* side‑padding per column */
      }
      
      .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  transition: transform 0.3s ease;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  padding: 5px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
    }




.hero {
  position: relative;
  overflow: hidden;
}
.hero > div[style*="position: absolute"] {
  /* Overlay for sliding effect */
  transition: opacity 1s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  transition: transform 0.3s ease;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  padding: 5px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.give-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
}
.give-modal-content {
  background: #f5f8fa;
  padding: 32px 24px 28px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 380px;
  max-width: 98vw;
  text-align: center;
  position: relative;
  animation: popup-in 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes popup-in {
  0% { transform: scale(0.92); opacity: 0;}
  100% { transform: scale(1); opacity: 1;}
}
.give-modal-cancel {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2.1em;
  color: #222;
  cursor: pointer;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(34,34,34,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
  border: 2px solid #f5c518;
}
.give-modal-cancel:hover {
  background: #f5c518;
  color: #fff;
  transform: scale(1.08) rotate(90deg);
}
.give-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
  justify-content: center;
  align-items: stretch;
}
.give-option img {
  height: 38px !important;
  width: 38px !important;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid #0A1A33;
  box-shadow: 0 2px 8px rgba(0,92,166,0.10);
  display: inline-block;
}
@media (max-width: 600px) {
  .give-option img {
    height: 30px !important;
    width: 30px !important;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }
}
.copy-zelle, .copy-cashapp {
  color: #fff !important;
  background: #005E6B;
  border-radius: 50%;
  padding: 7px 10px 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-size: 1.2em;
  margin-left: 8px;
}
.copy-zelle:hover, .copy-cashapp:hover {
  background: #f5c518;
  color: #222 !important;
  transform: scale(1.08);
}
.give-toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  background: #0A1A33;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
  transition: opacity 0.3s;
}
.give-toast.show {
  opacity: 1;
  pointer-events: auto;
}

/* Increase navbar height and show nav-divider on mobile */
@media (max-width: 768px) {
  nav {
        padding: 10px;
    min-height: 50px; /* Increased height */
  }
  .nav-divider {
    display: inline-block !important;
    width: 1px;
    height: 32px;
    background: #e0e0e0;
    margin: 0 12px;
    vertical-align: middle;
  }
  .action-buttons {
    gap: 18px;
    position: relative;
  }
  /* Place nav-divider after the action buttons */
  .action-buttons::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 32px;
    background: #e0e0e0;
    margin-left: 12px;
    vertical-align: middle;
  }
}

@media (max-width: 768px) {
  .give-btn,
  .live-btn {
    padding: 16px 28px;
    font-size: 17px;
    border-radius: 24px;
  }
}
