/* GLOBAL */
.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;
    }
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fb;
  color: #1f2937;
}

/* TOP BANNER */
.top-banner {
  height: 420px;
  background: url('images/banner.jpg') center/cover no-repeat;
  position: relative;
}

.top-banner .overlay {
  background: rgba(13, 110, 253, 0.75);
  height: 100%;
  display: flex;
  align-items: center;
}

.top-banner h1 {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
}

.top-banner p {
  color: #e0eaff;
  font-size: 18px;
  max-width: 600px;
}

/* WRAPPER */
.blog-wrapper {
 padding: 20px 0 80px 0;
  background: #fafafa;
}

.blog-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 40px;
}

.content-block {
  margin-bottom: 50px;
}

.content-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 18px;
}

.content-block h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #b11226; /* hospitality red */
}

.content-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.blog-inline-img {
  margin: 35px 0;
}

.blog-inline-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.conclusion-box {
  background: #fff;
  border-left: 6px solid #387dd8;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.conclusion-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.conclusion-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero img {
    height: 260px;
  }

  .content-block h2 {
    font-size: 26px;
  }

  .content-block h4 {
    font-size: 20px;
  }
}
.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;
    }
}


@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;
    }
}
.about-hero {
    position: relative;
    width: 100%;
      height: 470px;
    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-image: url('/src/images/blogdetail6.jpg');
    z-index: 1;
    height: 600px;
    background-size: cover;
    /* 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:#ffff;
}

@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;
  }
}
@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;
    }
}
.h2{
    color: white;
    text-align: left;
}




.end-cta {
    max-width: 1500px;
    justify-items: center;
    text-align: center;
    background-color: rgb(37, 99, 235);
    color: rgb(255, 255, 255);
    margin: 80px 0px 40px;
    padding: 40px;
    border-radius: 22px;
}


.end-cta-btn {
    display: inline-block;
    color: rgb(37, 99, 235);
    font-weight: 600;
    background: rgb(255, 255, 255);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}