* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Topbar */
.topbar {
  background: #4a7892;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar {
    transition: all 0.3s ease;
}

.hide-top {
    transform: translateY(-100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    
    background: transparent;
    transition: all 0.3s ease;
    height: 15%;
}

.navbar.scrolled {
    background: #0d3b66;   /* dark blue */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links .active {
  color: #ffc107;
}

.login-btn {
  background: #ffc107;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
}

/* ===============================
   BASE (Already yours + improved)
================================ */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ===============================
   LARGE SCREENS (1200px+)
================================ */
@media (min-width: 1200px) {
  .container {
    width: 85%;
  }

  .nav-links {
    gap: 30px;
  }
}

/* ===============================
   LAPTOP (992px - 1199px)
================================ */
@media (max-width: 1199px) {

  .container {
    width: 90%;
  }

  .nav-links {
    gap: 20px;
  }

  .logo img {
    width: 55px;
  }
}

/* ===============================
   TABLET (768px - 991px)
================================ */
@media (max-width: 991px) {

  .logo img {
    width: 50px;
  }

  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  .login-btn {
    padding: 6px 14px;
    font-size: 14px;
  }
}

/* ===============================
   MOBILE (max 768px)
================================ */
@media (max-width: 768px) {

  /* Topbar */
  .flex-between {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  /* Navbar */
  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .nav-flex {
    flex-wrap: wrap;
  }

  /* Logo */
  .logo img {
    width: 45px;
  }

  /* Show menu icon */
  .menu-toggle {
    display: block;
  }

  /* Hide login */
  .login-btn {
    display: none;
  }

  /* Mobile Menu */
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: #0d3b66;

    flex-direction: column;
    align-items: center;
    gap: 15px;

    padding: 20px 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ===============================
   SMALL MOBILE (max 480px)
================================ */
@media (max-width: 480px) {

  .topbar {
    font-size: 12px;
  }

  .logo img {
    width: 40px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .menu-toggle {
    font-size: 24px;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('/images/background\ img.jpeg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 90, 0.6);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px;
}

.primary {
  background: #ffc107;
  color: #000;
}

.secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Responsive */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #4a7892;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 30px;
  }
}

/* SEARCH BOX */
.search-box{
  background:#fff;
  padding:20px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* FIELD */
.field{
  flex:1;
  display:flex;
  flex-direction:column;
}

.field label{
  font-size:14px;
  margin-bottom:5px;
  color:#555;
}

.field input,
.field select{
  padding:10px;
  border:none;
  border-bottom:2px solid #ddd;
  outline:none;
}

/* BUTTON */
.find-btn{
  background:#f4a300;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero{
    height:500px;
  }

  .search-box{
    flex-direction:column;
  }

  .button-field{
    width:100%;
  }

  .find-btn{
    width:100%;
  }
}

/* 🔥 FLOATING SEARCH WRAPPER */
.search-wrapper{
  position:absolute;
  bottom:-60px; /* overlap effect */
  width:100%;
  display:flex;
  justify-content:center;
}

/* SEARCH BOX */
.search-box{
  width:85%;
  background:#fff;
  padding:20px 25px;
  border-radius:12px;
  display:flex;
  gap:20px;
  align-items:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* FIELDS */
.field{
  flex:1;
  display:flex;
  flex-direction:column;
}

.field label{
  font-size:14px;
  color:#777;
  margin-bottom:5px;
}

.field input,
.field select{
  border:none;
  border-bottom:2px solid #ddd;
  padding:8px;
  outline:none;
}

/* BUTTON */
.find-btn{
  background:#f4a300;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero-section{
    height:450px;
  }

  .search-box{
    flex-direction:column;
    width:90%;
    margin-top: 20px;
  }

  .btn-field{
    width:100%;
  }

  .find-btn{
    width:100%;
  }

  .search-wrapper{
    bottom:-120px;
  }
}

/* SECTION */
.about-section{
  padding:80px 0;
  background:#f5f7fa;
  margin-top: 50px;
}
.contact{
    margin-left: 100px;
}

/* CONTAINER */
.about-container{
  width:85%;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
  margin-top: 30px;
}

/* 🔥 EQUAL WIDTH FIX */
.about-image,
.about-content{
  width:50%;
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:block;
}

/* CONTENT */
.about-content h1{
  font-size:40px;
  color:#1f3c88;
  margin-bottom:20px;
  line-height:1.3;
}

.about-content p{
  color:#555;
  margin-bottom:15px;
  line-height:1.7;
}

/* -------------------------------- */
/* 📱 TABLET + MOBILE */
@media(max-width:992px){

  .about-container{
    flex-direction:column;   /* 🔥 stack */
    text-align:center;
  }

  /* 🔥 FULL WIDTH ON MOBILE */
  .about-image,
  .about-content{
    width:100%;
  }

  .about-image img{
    margin-top:50px;   /* fix gap */
  }

  .about-content h1{
    font-size:28px;
  }

}

/* -------------------------------- */
/* 📱 SMALL MOBILE */
@media(max-width:480px){

  .about-content h1{
    font-size:24px;
  }

  .about-content p{
    font-size:14px;
  }

}

/* FEATURES */
.features{
  display:flex;
  
  gap:30px;
  margin-top:25px;
}

/* FEATURE BOX */
.feature-box{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.feature-box span{
  font-size:25px;
  color:#f4a300;
}

.feature-box h4{
  margin-bottom:5px;
  color:#1f3c88;
}

/* RESPONSIVE */
@media(max-width:768px){

  .about-container{
    flex-direction:column;
  }

  .about-content h1{
    font-size:28px;
  }

  .features{
    flex-direction:column;
  }

}


.stats {
    background: #f5f7fa;
    padding: 80px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.stat-box {
    flex: 1 1 200px;
    padding: 20px;
}

.stat-box h2 {
    font-size: 48px;
    color: #d99a00;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-box p {
    font-size: 18px;
    color: #555;
}

/* Tablet */
@media (max-width: 768px) {
    .stat-box h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
    }

    .stat-box h2 {
        font-size: 32px;
    }
}
.packages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7f3e9, #e6f0f5);
}

.container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.card:hover {
    transform: translateY(-10px);
}

/* IMAGE */




/* PRICE BADGE */
.price {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d99a00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 🔥 PRICE BUTTON */
.price {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    
    background: #d89a00;
    color: #fff;
    
    padding: 10px 20px;
    border-radius: 50px;
    
    font-size: 16px;
    font-weight: bold;
    
    white-space: nowrap;
}

/* BODY */
.card-body {
    padding: 25px 20px;
    text-align: left;
}

.card-body h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #222;
}

.card-body p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container {
        grid-template-columns: 1fr;
    }

    .card-img img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .price {
        font-size: 14px;
        padding: 8px 16px;
        bottom: -15px;
    }
}

/* SECTION */
.features {
    background: #eef2f7;
    padding: 70px 20px;
}

/* WRAPPER (center align) */
.wrapper {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.title {
    text-align: center;
    font-size: 42px;
    color: #1d2b53;
    margin-bottom: 50px;
    font-weight: 700;
}

/* CARDS CONTAINER */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

/* SINGLE CARD */
.card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* ICON */
.icon {
    font-size: 26px;
    margin-bottom: 15px;
}

/* TITLE */
.card h3 {
    font-size: 24px;
    color: #1d2b53;
    margin-bottom: 15px;
}

/* TEXT */
.card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* BACKGROUND SHAPE */
.card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: url('images/dotted-map.png') no-repeat center/contain;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
}

/* ================== RESPONSIVE ================== */

/* Tablet */
@media (max-width: 992px) {
    .cards {
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cards {
        flex-direction: column;
    }

    .title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card h3 {
        font-size: 20px;
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f5f5f5;
}

/* SECTION */
.testimonial-section{
    background: linear-gradient(rgba(20,60,90,0.85), rgba(20,60,90,0.85)),
                url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color:#fff;
    text-align:center;
}

/* HEADING */
.testimonial-section h1{
    font-size: 42px;
    margin-bottom: 20px;
}

.testimonial-section p{
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* CARD CONTAINER */
.cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.card{
    background: rgba(255,255,255,0.9);
    color:#333;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-5px);
}

/* USER NAME */
.name{
    margin-top: 15px;
    font-weight: bold;
    color:#1d3557;
}

/* STARS */
.stars{
    color: #f4b400;
    margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .cards{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){
    .testimonial-section h1{
        font-size: 28px;
    }

    .cards{
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
}

.news-section {
    padding: 60px 5%;
    text-align: center;
}

.news-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2b49;
}

/* Container */
.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
}

/* Image */
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.news-content {
    padding: 20px;
    text-align: left;
}

.news-content .date {
    font-size: 14px;
    color: #777;
}

.news-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #1a2b49;
}

.news-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Read More */
.news-content a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}

.news-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-container {
        grid-template-columns: 1fr;
    }

    .news-section h2 {
        font-size: 28px;
    }
}

/* Newsletter Section */
.newsletter {
    margin: 60px 5%;
    border-radius: 20px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center/cover;
    position: relative;
}

/* Dark Overlay */
.newsletter-overlay {
    background: rgba(0, 30, 60, 0.7);
    padding: 60px 40px;
    border-radius: 20px;
}

/* Content */
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Heading */
.newsletter-content h2 {
    color: #fff;
    font-size: 32px;
    max-width: 400px;
    line-height: 1.4;
}

/* Form */
.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    max-width: 500px;
}

/* Input */
.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

/* Placeholder */
.newsletter-form input::placeholder {
    color: #ddd;
}

/* Button */
.newsletter-form button {
    background: #f5a623;
    border: none;
    padding: 14px 18px;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #e69500;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-content h2 {
        font-size: 24px;
    }

    .newsletter-form {
        width: 100%;
    }
}

/* Section */
.cta-footer {
    margin-top: 60px;
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') no-repeat center/cover;
    color: #fff;
    position: relative;
}

/* Overlay */
.cta-overlay {
    background: rgba(0, 40, 80, 0.85);
    padding: 40px 5%;
}

/* Top */
.cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.cta-top h2 {
    font-size: 28px;
}

.cta-btn {
    background: #f5a623;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}

/* Center */
.cta-content {
    text-align: center;
    margin: 40px 0;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
    font-size: 15px;
}

/* Links */
.cta-links {
    margin-top: 20px;
}

.cta-links a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Bottom */
.cta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.cta-bottom span {
    color: #f5a623;
}

/* Payment icons */
.payments img {
    width: 40px;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-links a {
        display: block;
        margin: 8px 0;
    }
}
