* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: white;
    overflow-x: hidden;
}

/* Progress Bar */
#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    width: 0%;
    z-index: 2000;
}

/* ================================ HEADER =========================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  transition: 0.3s ease;
}

/* ======================= LOGO ================================ */
.logo a {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
transition: 0.3s ease;
}

.logo-img {
height: 40px;
}

.logo-text {
font-size: 1.4rem;
font-weight: 800;
color: #fff;
}

/* ================================ NAVIGATION =================================== */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
text-decoration: none;
color: #fff;
font-weight: 600;
transition: 0.3s ease;
}

/* Hover effect */
nav ul li a:hover {
color: #00c6ff;
}

/* Active */
nav ul li a.active {
color: #00c6ff;
}

/* =============================== DROPDOWN ============================= */
.header-dropdown-content {
  position: absolute;
  top: 45px;
  left: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(15px);
  padding: 15px;
  border-radius: 12px;
  display: none;
  min-width: 200px;
  flex-direction: column;
}

.header-dropdown-content a {
  display: block;
  padding: 8px 0;
  color: #ffffff;
}

.header-dropdown:hover .header-dropdown-content {
  display: block;
}

/* ================= LOGIN BUTTON ================= */
.login-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  padding: 8px 18px;
  border-radius: 20px;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* ================= HIGHLIGHT EXPLORE ================= */
.nav-link[href="attraction.php"] {
  background: linear-gradient(135deg, #1e69d2, #58a6ff); /* bold blue gradient */
  color: #fff; /* white text for contrast */
  font-weight: 700; /* slightly bolder */
  padding: 12px 20px; /* a bit larger padding */
  border-radius: 12px; /* rounded button look */
  box-shadow: 0 6px 20px rgba(30,105,210,0.4); /* subtle shadow */
  transition: all 0.4s ease;
  position: relative;
}

/* Hover effect for Explore button */
.nav-link[href="attraction.php"]:hover {
  background: linear-gradient(135deg, #1555a5, #3a6ea5); /* darker gradient on hover */
  transform: translateY(-3px) scale(1.08); /* lift + slight zoom */
  box-shadow: 0 10px 30px rgba(30,105,210,0.5); /* bigger shadow */
}

/* Optional: subtle glow animation to attract attention */
@keyframes exploreGlow {
  0% { box-shadow: 0 6px 20px rgba(30,105,210,0.4); }
  50% { box-shadow: 0 10px 35px rgba(30,105,210,0.6); }
  100% { box-shadow: 0 6px 20px rgba(30,105,210,0.4); }
}

.nav-link[href="attraction.php"] {
  animation: exploreGlow 2.5s ease-in-out infinite;
}

/* ================= MOBILE CLOSE BUTTON ================= */
.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-close:hover {
  color: #00c6ff;
}

@media (max-width: 992px) {
  .nav-close {
      display: block;
  }
}
@media (max-width: 768px) {
  .nav-link[href="attraction.php"] {
    padding: 10px 20px; /* smaller padding for mobile */
    font-size: 20px;   /* slightly smaller text */
    border-radius: 10px; /* slightly smaller rounding */
    width: auto; /* let it adjust naturally */
    display: inline-block; /* ensures proper sizing */
    text-align: center;
  }
}
/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* ===== PROFILE MENU ===== */

.profile-menu{
  position:relative;
  }
  
  /* BUTTON */
  
  .profile-trigger{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:25px;
  font-weight:600;
  color:#ffffff;
  transition:0.3s;
  }
  
  .profile-trigger:hover{
  background:#f3f6ff;
  color:#0d6efd;
  }
  
  .profile-trigger i{
  font-size:16px;
  }
  
  /* USERNAME */
  
  .username{
  font-size:14px;
  color: rgb(255, 255, 255);
  }

  
  /* ARROW */
  
  .arrow{
  font-size:11px;
  opacity:0.7;
  transition:0.3s;
  }
  
  /* ===== DROPDOWN ===== */
  
  .profile-dropdown{
  position:absolute;
  top:48px;
  right:0;
  background:#fff;
  border-radius:14px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  min-width:200px;
  display:none;
  flex-direction:column;
  overflow:hidden;
  animation:dropdownFade .25s ease;
  color:#0051ff;
  }
  
  /* HEADER */
  
  .profile-header{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  font-weight:600;
  background:linear-gradient(135deg,#f5f8ff,#eef3ff);
  border-bottom:1px solid #eee;
  }
  
  .profile-header i{
  font-size:20px;
  color:#0d6efd;
  }
  
  /* LINKS */
  
  .profile-dropdown a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  text-decoration:none;
  color:#333;
  font-size:14px;
  transition:0.25s;
  }
  
  .profile-dropdown a:hover{
  background:#f6f8ff;
  color:#0d6efd;
  padding-left:20px;
  }
  
  /* ICONS */
  
  .profile-dropdown a i{
  font-size:14px;
  width:18px;
  }
  
  /* ANIMATION */
  
  @keyframes dropdownFade{
  from{
  opacity:0;
  transform:translateY(-8px);
  }
  to{
  opacity:1;
  transform:translateY(0);
  }
  }

/* profilemodal Styles */
.profilemodal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.744);
  backdrop-filter: blur(5px);
}

.profilemodal-content {
  background-color: #ffffff56;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 400px;
  position: relative;
}

.profilemodal-content h2 {
  margin-bottom: 20px;
  color: #0072ff;
}

.profilemodal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #000000;
  border-radius: 5px;
}

.profilemodal-content button {
  background: #0072ff;
  color: #000000;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.profilemodal-content button:hover {
  background: #00c6ff;
}

/* Close button */
.profilemodal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Header Dropdown Container */
.header-dropdown {
  position: relative;
}

/* Header Dropdown Content */
.header-dropdown-content {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  background: #1a1a1a8d; /* dark background */
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(251, 251, 251, 0.2);
  z-index: 1001;
}

/* Header Dropdown Links */
.header-dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: background 0.5s, color 0.5s;
}

.header-dropdown-content a:hover {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Show dropdown on hover */
.header-dropdown:hover .header-dropdown-content {
  display: block;
}

/* Optional: change the Services text color on hover */
.header-dropdown:hover > .nav-link {
  color: #00c6ff;
}

/* Desktop: hide mobile profile, sidebar contains profile */
#profileMenuMobile {
  display: none;
}

/* ======================= PREMIUM MOBILE SIDEBAR ======================= */
@media (max-width: 992px) {

  /* Sidebar container */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(15, 32, 39, 0.95); /* glassy dark */
    backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    overflow-y: auto;
    z-index: 1200;
    box-shadow: -5px 0 30px rgba(0,0,0,0.6);
  }

  nav.active {
    right: 0;
    opacity: 1;
  }

  /* Sidebar animated gradient overlay */
  nav::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, #00c6ff, #0072ff, #00c6ff);
    background-size: 300% 300%;
    animation: premiumGradient 12s ease infinite;
    opacity: 0.05;
    pointer-events: none;
    border-radius: 0 0 0 0;
  }

  @keyframes premiumGradient {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
  }

  /* Close button */
  .nav-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav-close:hover {
    color: #00c6ff;
    transform: scale(1.2);
  }

  /* Menu list */
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 25px;
    gap: 25px;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    position: relative;
  }

  nav ul li a {
    font-size: 1.2rem;
    padding: 12px 0;
    width: 100%;
    display: block;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
  }

  nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0%;
    background: #00c6ff;
    transform: translateY(-50%);
    transition: height 0.3s ease;
    border-radius: 2px;
  }

  nav ul li a:hover::before {
    height: 60%;
  }

  nav ul li a:hover {
    color: #00c6ff;
    padding-left: 15px;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 20px rgba(0,198,255,0.3);
  }

  /* Dropdown inside sidebar */
  .header-dropdown-content {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 15px;
    margin-top: 8px;
    animation: slideFadeDown 0.35s ease forwards;
  }

  .header-dropdown.active .header-dropdown-content {
    display: flex;
  }

  .header-dropdown-content a {
    color: #fff;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .header-dropdown-content a:hover {
    color: #00c6ff;
    padding-left: 18px;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 15px rgba(0,198,255,0.3);
  }

  @keyframes slideFadeDown {
    0% {opacity: 0; transform: translateY(-15px);}
    100% {opacity: 1; transform: translateY(0);}
  }

  .hamburger {
    display: block;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: -30px; /* adjust value if needed */
  }

  .hamburger:hover {
    color: #00c6ff;
    transform: scale(1.2);
  }

  /* Scrollbar */
  nav::-webkit-scrollbar {
    width: 6px;
  }

  nav::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
  }

  nav::-webkit-scrollbar-thumb {
    background: rgba(0,198,255,0.35);
    border-radius: 10px;
  }

  /* Mobile profile inside sidebar */
  #profileMenuMobile {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    padding-left: 25px;
  }

  #profileMenuMobile .profile-dropdown {
    position: relative;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    min-width: 90%;
    padding: 12px 0;
    box-shadow: 0 10px 25px rgba(0,198,255,0.35);
    transition: all 0.3s ease;
    transform: translateY(-10px);
    opacity: 0;
  }

  #profileMenuMobile.active .profile-dropdown {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  #profileMenuMobile .profile-dropdown a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  #profileMenuMobile .profile-dropdown a:hover {
    color: #00c6ff;
    padding-left: 22px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,198,255,0.25);
  }

  /* Add profile avatar (optional) */
  #profileMenuMobile .profile-dropdown a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background: url('images/avatar.png') center/cover no-repeat;
  }
}
/* ================= HERO BACKGROUND ================= */

/* Background Slider Layer */
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

/* Ensure content is above background */
.overlay,
.hero-content,
.shape {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ================= HERO LAYOUT ================= */

.hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
}

/* ================= HERO LEFT ================= */

.hero-left {
  max-width: 600px;
  margin-top: 40px;
}

/* ================= BADGE ================= */

.badge {
  display: inline-block;
  background: linear-gradient(135deg,#ffffff,#e7efff);
  color: #0b2a66;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

/* ================= HERO TITLE ================= */

.hero-left h1 {
  position: relative;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 30px;
  z-index: 1;
  color: #ffffff;

  text-shadow:
  0 5px 20px rgba(0,0,0,0.6),
  0 0 25px rgba(47,121,246,0.3);

  animation: heroFadeUp 1.2s ease forwards;
}

/* ================= PREMIUM LINE UNDER TITLE ================= */

.hero-left h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 5px;
  border-radius: 12px;

  background: linear-gradient(270deg,#ffffff,#fbd4ff,#4ade80,#facc15);
  background-size: 600% 100%;

  box-shadow:
  0 0 15px #ffffff,
  0 0 25px #fbd4ff,
  0 0 35px #4ade80,
  0 0 50px #facc15;

  transition: width 0.6s ease;
  animation: gradientMove 3s linear infinite, glowPulse 2s ease-in-out infinite alternate;
}

.hero-left h1:hover::after {
  width: 420px;
}

/* ================= HIGHLIGHT TEXT ================= */

.hero-left .highlight {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;

  background: linear-gradient(90deg,#0025dc,#ffffff,#ffffff);
  background-size: 200%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientShift 6s linear infinite;
}

/* ================= QUOTE CARD ================= */

.quote {
  position: relative;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  padding: 22px 25px;
  border-radius: 16px;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #e8e8e8;

  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  animation: heroFadeUp 1.5s ease forwards;
}

.quote::before{
  content:"“";
  position:absolute;
  font-size:70px;
  top:-20px;
  left:15px;
  opacity:0.15;
  color:#fff;
}

/* ================= AUTHOR ================= */

.author {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: #ffc400;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
}

/* ================= ANIMATIONS ================= */

@keyframes heroFadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes gradientMove {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

@keyframes glowPulse {
  0% {
    box-shadow:0 0 15px #ffffff,0 0 25px #ff4fff,0 0 35px #00ff5e,0 0 50px #ffdd00;
  }
  100% {
    box-shadow:0 0 25px #ffffff,0 0 40px #ff4fff,0 0 55px #00ff5e,0 0 70px #ffdd00;
  }
}

@keyframes gradientShift{
  0%{background-position:0%}
  100%{background-position:200%}
}
  
/* Container spacing */
.buttons {
  display: flex;
  gap: 15px;               /* space between buttons */
  margin-top: 20px;
}

/* Base button style */
.buttons button,
.buttons a {                  /* in case you use <a> too */
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;   /* remove underline for <a> */
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Blue button */
.btn-blue {
  background: linear-gradient(135deg, #4a90e2, #2f79f6);
  color: #fff;
}

.btn-blue:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Dark button */
.btn-dark {
  background: linear-gradient(135deg, #444, #2c2c2c);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Active / click effect */
.buttons button:active,
.buttons a:active {
  transform: scale(0.98);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
  
  /* Right Column */
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top:40px;
    

  }
  
  @keyframes slideInRight {
    0% {
      transform: translateX(100%); /* start offscreen right */
      opacity: 0;
    }
    100% {
      transform: translateX(0);    /* end at original position */
      opacity: 1;
    }
  }
  

  .card {
    width: 300px;
    height: 100px;
    background: rgba(255, 255, 255, 0.438);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 20px;
    border: 1px solid rgb(0, 0, 0);
    color:#000;

    /* ADD THESE */
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    /* animation */
    animation: slideInRight 0.7s ease forwards;
    opacity: 0;
}
  .hero-right .card:nth-child(1) {
    animation-delay: 0.2s;
  }
  .hero-right .card:nth-child(2) {
    animation-delay: 0.4s;
  }
  .hero-right .card:nth-child(3) {
    animation-delay: 0.6s;
  }

  
  .card img {
    width: 70px;   /* smaller image */
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
  }
  
  .card-text strong {
    font-size: 15px;  /* slightly smaller */
  }
  
  .card-text p {
    font-size: 12px;
    color: #000000;
  }
  
  .cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.card:hover {
    transform: rotateY(10deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,198,255,0.5);
}
  
  .arrow {
    margin-left: auto;
    font-size: 20px;
    color: #fff;
  }
  
  .btn-orange {
    display: inline-block;         /* works for <a> and <button> */
    background: linear-gradient(135deg, #213af7, #559cf3); /* subtle gradient */
    color: white;
    font-weight: 600;
    text-decoration: none;         /* remove underline */
    text-align: center;
    padding: 12px 25px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-orange:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    text-decoration: none;         /* extra safety */
}

.btn-orange:active {
    transform: scale(0.98);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
/* ============================= */
/* PREMIUM RESPONSIVE SETTINGS   */
/* ============================= */

/* Large Screens (1400px and below) */
@media (max-width: 1400px) {
  .hero-content {
    padding: 0 40px;
  }

  .hero-left h1 {
    font-size: 54px;
  }

  .hero-right .card {
    width: 260px;
  }
}


/* Tablets (1024px and below) */
@media (max-width: 1024px) {

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left h1:hover::after {
    width: 100%;
  }

  .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

}
/* MOBILE HERO SIDEBAR */
.mobile-toggle{
  display:none;
}

@media (max-width:768px){

  /* Arrow Button */
  .mobile-toggle{
    display:flex;
    position:fixed;
    right:10px;
    top:80%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    background:#2f79f6;
    color:rgb(0, 0, 0);
    font-size:20px;
    justify-content:center;
    align-items:center;
    border-radius:30%;
    z-index:9999;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
  }

  /* Turn hero-right into sidebar */
  #heroRight{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:rgba(0, 0, 0, 0.311);
    backdrop-filter:blur(10px);
    padding:80px 20px;
    flex-direction:column;
    gap:20px;
    transition:0.4s;
    z-index:9998;
    overflow-y:auto;
  }

  /* Show Sidebar */
  #heroRight.active{
    right:0;
  }

  /* Fix card width */
  #heroRight .card{
    width:100%;

  }

  .hero {
    padding: 50px 20px 60px 20px;
    height: 90vh;
    text-align:center;
  }

  .hero-left h1 {
    font-size: 120px;
    line-height: 1;
  }
  
  .hero-left .highlight {
    font-size: 3.2rem;
  }

  .badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .quote {
    font-size: 14px;
    padding: 4px 25px;
  }

  .author {
    justify-content: center;
    text-align: center;
  }

  /* GRID BUTTONS */
  .buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 buttons side by side */
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }

  .buttons a,
  .buttons button {
    width: 100%;
    text-align: center;
  }

  .hero-right .card {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 20px;
  }

  .card img {
    margin: 0 0 10px 0;
    width: 100%;
    height: 120px;
  }

  .arrow {
    display: none;
  }

  .shape1,
  .shape2 {
    display: none;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-left .highlight {
    font-size: 2rem;
  }

  .quote {
    font-size: 13px;
  }

  .profilemodal-content {
    margin: 30% auto;
    width: 90%;
  }

}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,198,255,0.2);
    animation: float 6s infinite ease-in-out;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
}

.shape2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 15%;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Sections */
section {
    padding: 10px 60px;
    text-align: center;
    min-height: 60vh;
    
}
/* Fix header covering section */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Container */
.about-barangay {
    padding: 10px 20px;
    background: #fdfdfd;
    font-family: 'Poppins', sans-serif;
    color: #222;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Section Title */
  .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
  }
/* Section Container */
.about-barangay {
  padding: 10px 20px;
  background: #fdfdfd;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}


.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;             /* large and premium */
  font-weight: 700;            /* bold */
  color: #0b0c2b;              /* dark navy/black for premium look */
  text-align: center;          /* center aligned */
  position: relative;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Gradient underline effect */
.section-title::after {
  content: "";
  display: block;
  width: 120px;                /* underline width */
  height: 4px;                 /* thickness */
  margin: 12px auto 0 auto;    /* centered */
  border-radius: 2px;
  background: linear-gradient(135deg, #f97316, #fb923c); /* orange gradient */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
      font-size: 34px;          /* slightly smaller on tablet/mobile */
  }

  .section-title::after {
      width: 90px;               /* shorter underline on smaller screens */
      height: 3px;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 28px;           /* mobile friendly */
  }

  .section-title::after {
      width: 70px;
      height: 3px;
  }
}

/* ============================About Us Section============================ */
.about-us {
  padding: 50px 0;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
}

.about-subtitle {
  color: #2f79f6;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 18px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b0c2b;
  line-height: 1.2;
  max-width: 100%;
}

.underline {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #001aff, #0018f0);
  margin: 15px 0 40px 0;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.about-left {
  flex: 1;
}

.about-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.about-item:hover {
  transform: translateX(5px);
}

.about-item .icon {
  width: 50px;
  height: 50px;
  background: #eef2ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  color: #2f79f6;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.about-item:hover .icon {
  background: linear-gradient(135deg, #2f79f6, #72a5ff);
  color: #fff;
  box-shadow: 0 5px 15px rgba(47, 121, 246, 0.4);
}

.about-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #0b0c2b;
}

.about-item p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.flight-path {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
/* Wrapper for hover effect */
.image-hover {
  position: relative;
  display: inline-block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

/* Floating Animation for images */
.image-hover img {
  transition: all 0.5s ease;
  animation: float 4s ease-in-out infinite;
}
.about-right {
  flex: 1;
  position: relative;
  min-height: 550px; /* gives space for absolute images */
}

/* Image base style */
.circle-image {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all 0.5s ease;
  animation: float 5s ease-in-out infinite;
  cursor: pointer;
}

/* Desktop Positions */
.image-large {
  width: 300px;
  top: 0;
  right: 20px;
  z-index: 3;
}

.image-medium {
  width: 250px;
  top: 160px;
  left: 60px;
  z-index: 2;
}

.image-small {
  width: 200px;
  bottom: -50px;
  left: 80px;
  z-index: 1;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@media (max-width: 992px) {

  .about-content {
    flex-direction: column;
    gap: 60px;
  }

  .about-right {
    min-height: 500px;
  }

  .image-large {
    width: 280px;
    right: 50%;
    transform: translateX(50%);
  }

  .image-medium {
    width: 180px;
    left: 20%;
    top: 220px;
  }

  .image-small {
    width: 160px;
    left: 55%;
    bottom: 20px;
  }
}
@media (max-width: 768px) {

  /* Stack content vertically with proper spacing */
  .about-content {
    flex-direction: column;
    gap: 60px; /* breathing room */
    padding: 0 20px;
    align-items: center;
  }

  /* About left (text) styling */
  .about-left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .about-subtitle {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .about-title {
    font-size: 34px;
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto 25px;
  }

  .underline {
    width: 100%;
    margin: 1px auto 35px;
    margin-top: 0;
  }

  /* About items */
  .about-item {
    flex-direction: row;          /* keep icon left, text right */
    align-items: flex-start;
    text-align: justify;          /* justify h3 and p */
    gap: 15px;                    /* spacing between icon and text */
    margin-bottom: 25px;
  }

  .about-item .icon {
    margin-right: 0;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    font-size: 24px;
    flex-shrink: 0;               /* keep icon size fixed */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }

  .about-item h3 {
    font-size: 20px;
    text-align: justify;           /* justified heading */
    margin-bottom: 8px;
  }

  .about-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    text-align: justify;           /* justified paragraph */
  }

  /* About right (images) */
  .about-right {
    display: none; /* hide images on mobile for clean layout */
  }

  /* Optional: subtle gradient background */
  .about-us {
    padding: 50px 15px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  }

  /* Smooth text fade-in animation */
  .about-left, .about-subtitle, .about-title, .about-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
  }

  .about-subtitle { animation-delay: 0.1s; }
  .about-title { animation-delay: 0.2s; }
  .about-item:nth-child(1) { animation-delay: 0.3s; }
  .about-item:nth-child(2) { animation-delay: 0.4s; }
  .about-item:nth-child(3) { animation-delay: 0.5s; }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
  /* ===================Footer================*/
  .main-footer {
    background: linear-gradient(135deg, #4e73df, #3b5bcc);
    color: white;
    padding: 70px 100px 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Brand Section */
.footer-brand h2 {
    font-size: 32px;
    margin-left: 10px;
    font-weight: 600;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-title img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    color: #3b5bcc;
    transform: translateY(-5px);
}

/* Titles */
.footer-links h3,
.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 8px;
}

/* Contact */
.footer-contact p {
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
}

/* Divider */
.main-footer hr {
    margin: 50px 0 25px;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #e0e0e0;
}

/* ========================= */
/* ✅ TABLET RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {

    .main-footer {
        padding: 60px 60px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

}

/* ========================= */
/* ✅ MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .main-footer {
        padding: 50px 30px 30px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logo-title {
        justify-content: center;
    }

    .footer-brand h2 {
        font-size: 26px;
        margin-left: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links h3,
    .footer-contact h3 {
        margin-bottom: 20px;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
    }
}
/* ================= OFFICIALS SECTION ================= */
.officials-section {
  padding: 10px 10%;
  text-align: center;
  background: linear-gradient(to bottom, #e3e3e4, #e3e3e4);
  font-family: 'Inter', sans-serif;
}

/* Section Title */
.section-title {
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
}

/* ================= CAPTAIN ROW ================= */
.captain-row {
  display: flex;
  justify-content: center;
  gap: 20px; /* spacing between captain cards */
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* ================= CARD DESIGN ================= */
.official-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 20px;
  width: 200px;              /* optimized width */
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Hover Animation */
.official-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

/* ================= IMAGE ================= */
.official-card img {
  width: 100%;
  height: 150px;           /* adjusted height for proportion */
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.official-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ================= TEXT ================= */
.official-card h3,
.official-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.official-card p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* ================= CAPTAIN PREMIUM BORDER ================= */
.captain-card {
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #2f79f6, #72a5ff) border-box;
}

/* ================= KAGAWADS SLIDER ================= */
.kagawads-slider {
  margin-top: 30px;
}

/* Slider card centering */
.splide__slide {
  display: flex;
  justify-content: center;
}

/* Adjust Kagawad card width for consistency */
.kagawad-card {
  width: 180px;
}
/* MODAL OVERLAY */
.officials-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

/* MODAL BOX */
.officials-modal-content {
  background: #ffffff;
  margin: 6% auto;
  padding: 30px 25px;
  border-radius: 18px;
  width: 340px;
  text-align: center;
  position: relative;

  box-shadow: 
    0 20px 50px rgba(0,0,0,0.25),
    0 8px 20px rgba(0,0,0,0.15);

  animation: modalSlide 0.35s ease;
}

/* IMAGE */
.officials-modal-content img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;

  border: 4px solid #f2f2f2;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* NAME */
.officials-modal-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #111;
  font-weight: 600;
}

/* POSITION */
.officials-modal-content p {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}

/* COMMITTEE LIST */
#officialsModalCommittees {
  text-align: left;
  padding-left: 20px;
  margin-top: 10px;
}

#officialsModalCommittees li {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* CLOSE BUTTON */
.officials-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: 0.3s;
}

.officials-close:hover {
  color: #000;
  transform: rotate(90deg);
}

/* ANIMATIONS */
@keyframes modalSlide {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .captain-row {
    justify-content: center;
    gap: 15px;
  }
  .official-card {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .captain-row {
    gap: 10px;
  }
  .official-card {
    width: 150px;
  }
  .official-card img {
    height: 120px;
  }
}

/* ================= SERVICES / E-SERVICES ================= */
.services-section {
  padding: 10px 10%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-section .section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f2027;
  letter-spacing: 1px;
}

.services-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Service Card - Premium Glass Style */
.service-card {
  background: rgba(15, 32, 39, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #0f2027;
  margin-bottom: 12px;
}

.service-card p {
display: none;
}

/* Floating shapes for premium style */
.services-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,123,255,0.08);
  z-index: 0;
}

.shape1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.shape2 {
  width: 150px;
  height: 150px;
  bottom: -40px;
  right: 30px;
}

.shape3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

/* Make grid items equal height */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-items: stretch; /* ensures equal height */
}

/* Make cards fill the full grid height */
.service-card {
  background: rgba(15, 32, 39, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps spacing balanced */
  height: 100%; /* same height */
}

/* Make paragraph take flexible space */
.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}
}
.service-card-link {
  display: block;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep text color */
}
/* ================= TOURISM ATTRACTIONS ================= */
/* GRID */
.tourism-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.tourism-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CARD */
.tourism-card {
  position: relative;
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

/* IMAGE */
.tourism-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* SLIDE PANEL */
.tourism-overlay {
  position: absolute;
  top: 0;
  right: -100%;   /* Start hidden outside */
  width: 100%;
  height: 100%;
  background: #027afa80; 
  color: #fff;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: right 0.5s ease;
}

/* TEXT STYLE */
.tourism-overlay h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.tourism-overlay p {
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.tourism-card:hover .tourism-overlay {
  right: 0;   /* Slide in */
}

.tourism-card:hover img {
  transform: scale(1.05);
}
.tourism-card:hover {
  transform: translateY(-8px);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .tourism-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {

  .tourism-section {
    padding: 10px 5%;
  }
  .tourism-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }
  .tourism-card {
    height: 200px;
    width: 150px;
  }
  /* Text visible by default */
  .tourism-overlay {
    right: 0;
    padding: 10px 10px;
    justify-content: center;
    text-align: center;
    transition: right 0.7s ease;
  }
  /* When user touches/points the card, hide the text */
  .tourism-card:active .tourism-overlay {
    right: -100%;
  }
  /* Text sizing */
  .tourism-overlay h3 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .tourism-overlay p {
    font-size: 11px;
    line-height: 1.3;
  }
}
/* =================  BANNER ================= */
.attractions-banner {
  position: relative;
  height: 45vh; /* slightly taller for premium look */
  background: url("images/samp2.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 10% 40px 10%; /* more bottom space */
  color: #fff;
  overflow: hidden;
  perspective: 1000px; /* for 3D hover effects */
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
  transition: background 0.5s ease;
}

.attractions-banner:hover .banner-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1.2s ease forwards;
  transform-style: preserve-3d;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 3s ease infinite;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.banner-subtitle {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  animation: fadeUp 1.5s ease forwards 0.2s;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* PREMIUM PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff);
  color: #fff;
  box-shadow: 0 5px 20px rgba(0,114,255,0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(25deg);
  transition: all 0.5s ease;
}

.btn-primary:hover::before {
  left: 125%;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,114,255,0.6);
}

/* PREMIUM SECONDARY BUTTON */
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: #fff;
  color: #0072ff;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,114,255,0.4);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:900px){
  .attractions-banner {
    height: 35vh;
    padding: 0 5% 25px 5%;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* ================= FORM CONTAINER ================= */
.form-container {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 40px 50px;
  width: 350px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.form-container h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ================= INPUTS ================= */
.input[type="text"], input[type="email"], input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.input::placeholder {
  color: rgba(255,255,255,0.7);
}

.input:focus {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* ================= BUTTON ================= */
.button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
}

/* ================= LINKS ================= */
.switch-form {
  margin-top: 15px;
  font-size: 14px;
}

.switch-form a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 600;
}

.switch-form a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ================= MESSAGES ================= */
.error {
  color: #ff4b5c;
  margin-bottom: 10px;
}

.success {
  color: #00ffb3;
  margin-bottom: 10px;
}

/* ================= MEDIA ================= */
@media(max-width: 800px){
  .form-wrapper {
      flex-direction: column;
      gap: 30px;
  }
  .form-container {
      width: 90%;
      padding: 30px 20px;
  }
}

/* ================= MODERN THEME REFRESH (INDEX) ================= */
:root {
  --bg-base: #f4f7fb;
  --bg-soft: #eef3fb;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text-main: #13223a;
  --text-muted: #5f7088;
  --accent: #2f79f6;
  --accent-soft: #73a8ff;
  --line-soft: rgba(19, 34, 58, 0.1);
  --shadow-soft: 0 14px 34px rgba(16, 39, 82, 0.12);
}

body {
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% -10%, rgba(115, 168, 255, 0.25), transparent 45%),
    radial-gradient(circle at 95% 20%, rgba(47, 121, 246, 0.18), transparent 35%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg-base) 45%, #f6f9ff 100%);
}

header {
  background: rgba(10, 20, 37, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(7, 17, 33, 0.2);
}

nav ul li a:hover,
nav ul li a.active {
  color: #7ec0ff;
}

.hero {
  min-height: 100vh;
}

.hero::before {
  background-image:
    linear-gradient(120deg, rgba(8, 18, 35, 0.7), rgba(20, 43, 83, 0.56)),
    radial-gradient(circle at 75% 25%, rgba(79, 151, 255, 0.25), transparent 40%);
}

.quote {
  background: rgba(17, 33, 58, 0.5);
  border: 1px solid rgba(189, 216, 255, 0.2);
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.card-text p,
.event-date {
  color: var(--text-muted);
}

.arrow {
  color: var(--accent);
}

.btn-blue,
.btn-orange {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.btn-dark {
  background: linear-gradient(135deg, #24364d, #172335);
}

section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.about-us,
.services-section,
.tourism-section,
.officials-section {
  position: relative;
  background: transparent;
}

.about-us::before,
.services-section::before,
.tourism-section::before,
.officials-section::before {
  content: "";
  position: absolute;
  inset: 10px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(246, 250, 255, 0.72));
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  z-index: 0;
}

.about-us .container,
.services-section .container,
.tourism-section .container,
.officials-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  color: var(--text-main);
}

.section-subtitle,
.about-item p {
  color: var(--text-muted);
}

.about-item .icon {
  background: linear-gradient(145deg, #edf4ff, #e2edff);
  color: var(--accent);
}

.official-card,
.service-card {
  background: var(--surface-strong);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  color: var(--accent);
}

.service-card p {
  display: block;
  color: var(--text-muted);
}

.tourism-card {
  box-shadow: var(--shadow-soft);
}

.tourism-overlay {
  background: linear-gradient(180deg, rgba(17, 37, 73, 0.24), rgba(20, 50, 92, 0.74));
}

.main-footer {
  background: linear-gradient(135deg, #17315f, #264f95);
}

@media (max-width: 768px) {
  .about-us::before,
  .services-section::before,
  .tourism-section::before,
  .officials-section::before {
    inset: 6px 10px;
    border-radius: 20px;
  }
}