/* =====================================================
   GLOBAL
===================================================== */
body{
  margin:0;
  font-family:Poppins,sans-serif;
  background:#eef6f9;
  color:#1e2a5a;
}

section{ position:relative; }

/* =====================================================
   HEADER & NAV
===================================================== */
.custom-header{
  height:80px;
  background:#eef6f9;
  display:flex;
  align-items:center;
}

.custom-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{ height:44px; }

/* Desktop + Mobile Nav Links */
.nav-menu .nav-link,
.mobile-nav .nav-link{
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:#1e2a5a;
  text-decoration:none;
}

.nav-menu .nav-link{ margin-right:28px; }
.nav-menu .nav-link:hover,
.mobile-nav .nav-link:hover{ color:#22c1dc; }

/* =====================================================
   MOBILE MENU
===================================================== */
.mobile-nav-toggle{
  background:none;
  border:none;
  font-size:26px;
  color:#1e2a5a;
}

.mobile-nav{
  display:none;
  background:#fff;
  border-top:1px solid #e6eef2;
  padding:14px 18px;
  animation:slideDown .25s ease-out;
}

.mobile-nav.active{ display:block; }

.mobile-nav .nav-link{
  display:block;
  padding:12px 0;
  font-size:15px;
  font-weight:500;
}

@keyframes slideDown{
  from{opacity:0;transform:translateY(-8px);}
  to{opacity:1;transform:translateY(0);}
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-bg{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  background:url('https://picsum.photos/1600/900?random=2') center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(14,33,70,.85) 0%,
    rgba(14,33,70,.55) 45%,
    rgba(14,33,70,.15) 100%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
  color:#fff;
}

.hero-content h1{
  font-size:46px;
  font-weight:800;
  line-height:1.15;
}

.hero-content h1 span{ color:#22c1dc; }

.hero-content p{
  font-size:16px;
  opacity:.95;
}

.hero-badge{
  display:inline-block;
  background:rgba(34,193,220,.25);
  color:#22c1dc;
  padding:6px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}

.hero-btn{
  display:inline-block;
  background:linear-gradient(135deg,#ff7a3c,#ff5a1f);
  border-radius:30px;
  padding:14px 32px;
  color:#fff;
  font-size:17px;
  box-shadow:0 12px 30px rgba(255,90,31,.45);
}

.hero-trust{
  margin-top:20px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:14px;
}

/* =====================================================
   CTA
===================================================== */
.cta-section{
  padding:80px 0;
  background:linear-gradient(180deg,#eef6f9 0%,#ffffff 100%);
}

.cta-box{
  background:linear-gradient(135deg,#22c1dc,#4fd1c5);
  border-radius:28px;
  padding:60px 30px;
  color:#fff;
  box-shadow:0 30px 70px rgba(34,193,220,.35);
}

.cta-badge{
  display:inline-block;
  background:rgba(255,255,255,.18);
  padding:6px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.cta-title{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
}

.cta-text{
  font-size:16px;
  opacity:.95;
  margin-bottom:28px;
}

.cta-btn{
  display:inline-block;
  background:#ff6a2b;
  color:#fff;
  padding:14px 36px;
  font-size:17px;
  font-weight:700;
  border-radius:30px;
  text-decoration:none;
  box-shadow:0 14px 35px rgba(255,106,43,.45);
  transition:.3s ease;
}

.cta-btn:hover{
  background:#ff5a1f;
  transform:translateY(-3px);
}

/* =====================================================
   COMMON UI
===================================================== */
.glass{
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(30,42,90,.12);
  transition:.35s ease;
}

.glass:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(30,42,90,.18);
}

.pay-btn{
  background:#ff6a2b;
  border:none;
  border-radius:14px;
  padding:14px 26px;
  font-size:18px;
  color:#fff;
}

.pay-btn:hover{ background:#ff5a1f; }

/* =====================================================
   SECTION TITLES
===================================================== */
.section-title{
  font-size:32px;
  font-weight:800;
  margin-bottom:10px;
}

.section-subtitle{
  font-size:15px;
  color:#6b7280;
  margin-bottom:40px;
}

/* =====================================================
   FEATURE / ATTRACTION CARDS
===================================================== */
.feature-card,
.attraction-card{
  background:#fff;
  border-radius:22px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 12px 35px rgba(30,42,90,.12);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.feature-card::before,
.attraction-card::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#22c1dc,#4fd1c5);
}

.feature-card:hover,
.attraction-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(30,42,90,.22);
}

.icon-wrap{
  width:70px;
  height:70px;
  margin:0 auto 16px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  background:linear-gradient(135deg,#22c1dc,#4fd1c5);
}

/* =====================================================
   ABOUT
===================================================== */
.about-wrap{ padding:70px 0; }

.about-card{
  background:#fff;
  border-radius:26px;
  padding:40px;
  box-shadow:0 18px 45px rgba(30,42,90,.15);
}

.about-badge{
  display:inline-block;
  background:rgba(34,193,220,.12);
  color:#22c1dc;
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:30px;
  margin-bottom:14px;
}

.about-title{
  font-size:34px;
  font-weight:800;
  margin-bottom:16px;
}

.about-text{
  font-size:15px;
  line-height:1.8;
  color:#6b7280;
}

.about-img{
  border-radius:26px;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}

/* =====================================================
   BLOG
===================================================== */
.blog-section{ padding:80px 0; }

.blog-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 35px rgba(30,42,90,.12);
  transition:.35s ease;
}

.blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(30,42,90,.25);
}

.blog-img{
  width:100%;
  height:190px;
  object-fit:cover;
}

.blog-body{ padding:22px; }

/* =====================================================
   FOOTER
===================================================== */
.footer-dark{
  background:#1e2a5a;
  color:#cfd8ff;
  padding:60px 0 0;
}

.footer-logo{ height:55px; }

.footer-heading{
  color:#fff;
  font-size:16px;
  font-weight:600;
  margin-bottom:16px;
}

.footer-list,
.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-list li,
.footer-contact li{
  font-size:14px;
  margin-bottom:12px;
}

.footer-list a{
  color:#cfd8ff;
  text-decoration:none;
}

.footer-list a:hover{ color:#22c1dc; }

.footer-bottom{
  background:#151f45;
  text-align:center;
  padding:16px 10px;
  margin-top:40px;
}

/* =====================================================
   EXTRAS
===================================================== */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25d366;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  text-decoration:none;
  box-shadow:0 6px 14px rgba(0,0,0,.35);
}
/* DETAILS LINK */ 
.view-link{ display:inline-block; margin-top:10px; font-weight:600; font-size:14px; color:#22c1dc; text-decoration:none; } .view-link:hover{ text-decoration:underline; }
.blog-link{ font-size:14px; font-weight:600; color:#22c1dc; text-decoration:none; } .blog-link:hover{ text-decoration:underline; }
/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:768px){
  .hero-bg{ min-height:75vh; }
  .hero-content h1{ font-size:32px; }
  .section-title,
  .about-title{ font-size:26px; }
  .icon-wrap{ width:60px;height:60px;font-size:24px; }
  .footer-dark{ padding-bottom:90px; }
}
/* ===============================
   MODERN PAGINATION DESIGN
================================= */

.pagination {
    display: flex;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.pagination li {
    display: inline-block;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    background: #ffffff;
    color: #1e2a5a;
    border: 1px solid #e3e6f0;
    transition: all 0.3s ease;
}

/* Hover */
.pagination li a:hover {
    background: #00bcd4;
    color: #ffffff;
    border-color: #00bcd4;
    transform: translateY(-2px);
}

/* Active Page */
.pagination li.active span,
.pagination li.active a {
    background: linear-gradient(135deg, #1e2a5a, #00bcd4);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Disabled */
.pagination li.disabled span {
    opacity: 0.4;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .pagination li a,
    .pagination li span {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

