:root {
  --blue: #0a66ff;
  --light-blue: #eef4ff;
  --text: #111827;
  --muted: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #ffffff;
  color: var(--text);
}
.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


.navbar-brand .logo {
    width: 150px;
    height: 60%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.navbar-nav .nav-link::after {
    display: none;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(13, 59, 102, 0.4);
}


.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
    }

    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }

    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }

    .navbar-brand .logo {
        width: 120px;
    }
}

/* HERO */
.hero {
  padding: 120px 10% 80px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  margin-top: 18px;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--muted);
}

/* BLOG SECTION */
.blog-section {
  padding: 0 10% 120px;
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 15px;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.img-box {
  height: 220px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.content {
  padding: 28px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--blue);
  background: var(--light-blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.content h3 {
  font-size: 1.35rem;
  margin: 15px 0 12px;
}

.content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.content a {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
  position: relative;
}

.content a::after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--blue);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.4s ease;
}

.content a:hover::after {
  width: 100%;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  animation: reveal 1s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 90px 7% 60px;
  }
}
.blog-banner {
  background: linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.banner-content {
  max-width: 700px;
}
.footer {
    background: linear-gradient(135deg, #0d3b66, #144b8b);
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}


.footer::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100%;
    left: -100%;
    animation: waveMove 20s infinite linear;
}

@keyframes waveMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #dcdcdc;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #e6e6e6;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #3b82f6;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e6e6e6;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-social {
    margin-top: 20px;
}

a {
    text-decoration: none;
}

.footer-social a {
    text-decoration: none;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    font-size: 14px;
    color: #dcdcdc;
    z-index: 2;
    position: relative;
}


@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin: 25px 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 8px;
    }
}







@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        max-width: 350px;
        margin: 25px 0;
    }


    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }


    .footer-col ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-col ul li i {
        margin-right: 8px;
    }


    .footer-col.contact ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social a {
        margin: 8px;
    }


    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 15px;
       
    }

    .footer-col {
        width: 100%;
        margin: 20px 0;
    }

    /* Center heading underline */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* List center */
    .footer-col ul li {
        justify-content: center;
        font-size: 14px;
    }

    /* Logos center */
    .footer-logo {
        font-size: 28px;
    }

    /* Social icons center + spacing */
    .footer-social a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        margin: 6px;
    }

    /* Footer bottom */
    .footer-bottom {
        font-size: 13px;
        padding: 15px 10px;
    }
}

.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    /*   color: #fff; */
    overflow: hidden;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 42, 82, 0.5);
    z-index: 1;
    /* backdrop-filter: blur(2px); */
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease forwards;
}

.about-hero-content h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a8d0ff;
    margin-bottom: 10px;
}

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
  .blog-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-card .img-box {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blog-section {
    grid-template-columns: 1fr;
    padding: 40px 15px;
  }

  .blog-card {
    border-radius: 14px;
  }

  .blog-card h3 {
    font-size: 17px;
  }

  .blog-card p {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
    .about-hero {
        height: 55vh;
        padding-left: 6%;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
        padding-left: 5%;
        justify-content: center;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content h3 {
        font-size: 16px;
    }
}

.font-link {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}
.blog-title,
.blog-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.blog-subtitle {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-title {
  font-size: 38px;
  font-weight: 700;
  color: #387dd8; /* deep navy blue */
  margin-top: 30px;
  margin-bottom: 12px;
}

.blog-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: #5f7285; /* soft blue-gray */
  max-width: 720px;
  margin: 0 auto;
}
.about-hero {
  height: 460px;        /* 👈 reduce height (adjust as needed) */
  min-height: 460px;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
background-color: #000; /* fallback */

}
.about-hero {
  position: relative;
  width: 100%;
  min-height: 450px; /* adjust as needed */
  background-image: url('/images/hotels.jpg');
  background-size: cover;          /* MOST IMPORTANT */
  background-position: center;     /* keeps image centered */
  background-repeat: no-repeat;
  display: flex;
  align-items: left;
  justify-content: left;
  
}

/* Dark overlay (optional but professional) */
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  margin-top: 100px;
}

/* Content above overlay */
.about-hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  text-align: left;
  margin-top: 100px;
}
.hero-fixed {
    position: relative;
    width: 100%;
    background: none;
    /* kill gray */
    overflow: hidden;
    margin-top: 80px;
}

/* IMAGE CONTROLS HEIGHT */
.hero-fixed-img {
    width: 100%;
    height: auto;
    /* EXACT image height */
    display: block;
    /* removes bottom gap */
}

/* OVERLAY */
.hero-fixed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* TEXT CONTENT */
.hero-fixed-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
}
