
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url("images/Back_ground.png");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            line-height: 1.6;
        }

       
        .topbar {
            background: #0a2c5a;
            color: #fff;
            padding: 8px 0;
            font-size: 13px;
            overflow: hidden;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
        }

        .topbar-text {
            display: inline-block;
            white-space: nowrap;
            padding-left: 100%;
            animation: scrollText 20s linear infinite;
        }

        @keyframes scrollText {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

      
        header {
            position: fixed;
            top: 35px; /* Sits right under topbar */
            width: 100%;
            background: white;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            margin-right: 10px;
        }

        .logo-text {
            color: #0a2c5a;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 0.5px;
        }

        .menu {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .menu a {
            text-decoration: none;
            color: #0a2c5a;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }

        .menu a:hover {
            color: #ff9800;
        }

        
        .hero {
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 20px 40px; /* Space for fixed header */
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            margin-bottom: 15px;
            text-shadow: 2px 4px 15px rgba(0,0,0,0.6);
        }

        .hero p {
            font-size: clamp(1rem, 4vw, 1.4rem);
            background: rgba(255, 152, 0, 0.9);
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .seo{
padding:60px 5%;
background: transparent;   /* removed white background */
color: white;              /* text visible on dark bg */
text-align:center;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes side by side */
  gap: 20px;
  padding: 20px;
}

.seo-box {
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  text-align: center;
  transition: 0.3s;
}

.seo-link {
  text-decoration: none;
  color: inherit;
}


.seo-box {
  cursor: pointer;
  transition: 0.3s;
}

.seo-box:hover {
  transform: translateY(-5px);
}

      
        .tour-section {
            padding: 60px 5%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
        }

        .tour-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
        }

        .slider-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .slider-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide {
            flex: 0 0 33.333%;
            padding: 15px;
            text-align: center;
        }

        .slide img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 15px;
            border: 4px solid #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            margin-bottom: 15px;
        }
        
        .packages {
  padding: 60px 5%;
  text-align: center;
}

.packages h2 {
  margin-bottom: 40px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.package-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card h4 {
  margin: 10px 0;
}

.package-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.package-card:hover {
  transform: translateY(-8px);
}


       
        .footer {
            background: #0a2c5a;
            padding: 60px 5% 30px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-box h3 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-left: 4px solid #ff9800;
            padding-left: 10px;
        }

        .footer-box ul {
            list-style: none;
        }

        .footer-box ul li {
            margin-bottom: 12px;
            font-size: 15px;
        }

        .contact-info {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .contact-info i {
            color: #ff9800;
            font-size: 18px;
            min-width: 25px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-form input {
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
            flex: 1;
        }

        .newsletter-form button {
            padding: 12px 20px;
            background: #ff9800;
            border: none;
            color: white;
            font-weight: bold;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }

        .copyright {
            background: #05162d;
            text-align: center;
            padding: 20px;
            font-size: 14px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

      
     @media (max-width: 768px) {

    
    header {
        top: 30px;
    }

    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .logo img {
        height: 40px;
    }

    .menu {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .menu li a {
        padding: 6px 12px;
        background: #f4f4f4;
        border-radius: 4px;
        font-size: 13px;
    }

    
    .hero {
        height: 60vh;
        padding: 140px 15px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
        padding: 6px 15px;
    }

    /* SLIDER */
    .slide {
        flex: 0 0 100%;
    }

    .slide img {
        height: 220px;
    }

    
    .seo-grid {
        grid-template-columns: 1fr; /* stack */
        gap: 12px;
        padding: 10px;
    }

    .seo-box {
        padding: 15px;
    }

    /* ✅ PACKAGE SECTION FIX */
    .packages {
        padding: 40px 10px;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* make package card horizontal */
    .package-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px;
        gap: 10px;
    }

    .package-card img {
        width: 110px;
        height: 90px;
        border-radius: 10px;
        object-fit: cover;
    }

    .package-card h4 {
        font-size: 15px;
        margin: 4px 0;
    }

    .package-card p {
        font-size: 12px;
        margin: 2px 0;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-links {
    text-align: center;
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.wa-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 9999;
}

.wa-popup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: white;
    color: black;
    border-radius: 15px;
    display: none;
    overflow: hidden;
    z-index: 9999;
}

.wa-header {
    background: #25D366;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.wa-body button {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: none;
    background: #f1f1f1;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
}

.wa-body button:hover {
    background: #25D366;
    color: white;
}
}