
         :root {
            --primary-color: #5c74aa;
            --secondary-color: #159895;
            --accent-color: #ffa500;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 76px; /* Added padding to account for fixed navbar */
        }
        a{text-decoration:none;}
        .navbar {
            background-color: rgba(255, 255, 255, 1) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        /* Hover dropdown styles for desktop */
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
                animation: fadeIn 0.3s;
            }
            
            .dropdown-menu {
                border: none;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
                padding: 0.5rem 0;
            }
            
            .dropdown-item {
                padding: 0.75rem 1.5rem;
                transition: all 0.2s;
            }
            
            .dropdown-item:hover {
                background-color: rgba(26, 95, 122, 0.1);
                color: var(--primary-color);
            }
            
            .navbar-nav .nav-item {
                position: relative;
            }
            
            /* Add smooth transition for dropdown */
            .dropdown-menu {
                transition: all 0.3s ease;
                display: block;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
            }
            
            .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

    .blog-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s;156
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-img {
      position: relative;
    }

    .blog-img img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .category-tag {
      position: absolute;
      bottom: 15px;
      right: 15px;
      background: #008066;
      color: white;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .blog-meta i {
      color: #f45b7a;
      margin-right: 5px;
    }

    .blog-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #111;
    }

    .blog-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .read-more-btn {
     background: #008066;
    color: white;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block !important;
    transition: 0.3s;
    }

    .read-more-btn:hover {
      background: #f45b7a;
      color: white;
    }
  
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
   
        .hero-section {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            color: white;
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
       
        .brand-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #eaeaea;
            position:relative;
        }
        
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .brand-img {
            height: 180px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .brand-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .partner-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 70px;
            object-fit: contain;
        }
        
        .category-tag {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        .upscale-tag {
            background-color: rgba(138, 43, 226, 0.1);
            color: #8a2be2;
        }
        
        .upper-midscale-tag {
            background-color: rgba(30, 144, 255, 0.1);
            color: #1e90ff;
        }
        
        .midscale-tag {
            background-color: rgba(50, 205, 50, 0.1);
            color: #32cd32;
        }
        
        .economy-tag {
            background-color: rgba(255, 165, 0, 0.1);
            color: #ffa500;
        }
        
        .feature-box {
            padding: 30px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .icon-1 {
            background-color: rgba(42, 157, 143, 0.1);
            color: var(--accent-color);
        }
        
        .icon-2 {
            background-color: rgba(230, 57, 70, 0.1);
            color: var(--secondary-color);
        }
        
        .icon-3 {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--primary-color);
        }
        
      
    
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0 40px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
   
     .hero-slider .carousel-item {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.carousel-caption {
  bottom: 35%;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 1.1rem;
}
.booking-engine {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.booking-form {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.booking-field {
  position: relative;
}

.booking-field span {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #f45b7a;
}

.booking-field .form-control {
  padding-left: 40px;
  height: 48px;
}

.book-btn {
  background: linear-gradient(135deg, #f45b7a, #ff8a5b);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 10px;
}

        .booking-section {
            background-color: var(--primary-color);
            color: white;
            padding: 2.5rem 0;
            margin-top: -50px;
            position: relative;
            z-index: 100;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        
        .property-icon {
            color: var(--secondary-color);
            font-size: 24px;
            margin-right: 8px;
            vertical-align: middle;
        }
        
        .attraction-card, .activity-card, .dining-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            height: 100%;
        }
        
        .attraction-icon, .activity-icon, .dining-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
      .staygo-footer {

     background:
        linear-gradient(rgba(115, 16, 74, 1), rgba(115, 16, 74, 1))
        ;
    background-size: cover;
    background-position: center;
    padding: 60px 0 40px;
    position: relative;
    font-family: Arial, sans-serif;
}

.footer-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
}

.footer-address {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
}

.footer-contact span {
    font-size: 15px;
    color: #fff;
}

.footer-icon {
    width: 35px;
    height: 35px;
    background: black;
    color: #d6a84a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
}

.footer-social p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: black;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #2d2c2c;
    transform: translateY(-3px);
}

.footer-line {
    margin: 30px auto 30px;
    border-top: 1px solid #f998ad;
    width: 90%;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 15px;
}

.footer-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 15px;
    color: #fff;
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.footer-bottom span {
    margin: 0 10px;
}

     
        /* ===== Section 1 (Head Office) ===== */
        .head-office-section {
            background: #fbf7ef;
            padding: 70px 0;
        }

        .head-office-img img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .head-office-content h2 {
            font-size: 60px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .head-office-content p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #111;
        }

        .head-office-content span {
            font-weight: bold;
        }

        .head-office-content a {
            color: #c49b45;
            text-decoration: none;
        }

        /* ===== Section 2 (Hotel Directory) ===== */
        .hotel-directory {
            padding: 70px 0;
            background: #fff;
        }

     

        .hotel-card {
            position: relative;
            text-align: center;
            margin-bottom: 60px;
        }

        .hotel-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

       .hotel-info-box {
    width: 85%;
    background: #fff;
    margin: -60px auto 0 auto;
    padding: 30px 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
  
    position: relative;
}

        .hotel-info-box h4 {
            font-size: 22px;
            font-weight: 500;
           
            margin-bottom: 20px;
        }

        .hotel-info-box p {
            font-size: 16px;
            margin-bottom: 10px;
            color: #111;
        }

        .hotel-info-box span {
            font-weight: bold;
        }

        .hotel-info-box a {
            color: #f45b7a;
            text-decoration: none;
        }
   
/* Scroll To Top Button */
.scroll-top {
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f0e2c0;
    border: 1px solid #000;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-top:hover {
    background: #fff;
    transform: translateY(-3px);
}


        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
        }
        
        .btn-accent:hover {
            background-color: #e69500;
            border-color: #e69500;
            color: white;
        }
        
        @media (max-width: 768px) {
            .hero-slide {
                height: 60vh;
            }
            
            .carousel-caption {
                bottom: 10%;
                padding: 1rem;
            }
            
            .carousel-caption h2 {
                font-size: 1.5rem;
            }
            
            .booking-section {
                margin-top: 0;
                border-radius: 0;
            }
        }
.property-slider-section {
  padding: 60px 0;
  background-color: #fff6ed;
}

.property-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1, h2, h5{font-family: "Lora", serif; font-weight:400;}
h2{font-size:3rem;}
.property-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.property-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
#activities{background-color:#fff6ed}
/* Swiper buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.attraction-section {
  background: #fff7ec;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.attraction-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.attraction-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.our-values {
  background-color: #fff6ed;
}

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.06); */
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 42px;
  color: #f45b7a;
  margin-bottom: 15px;
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  color: #555;
}
.our-philosophy {
  background-color: #fff6ed;
}

.feature-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  /* box-shadow: 0 8px 22px rgba(0,0,0,0.06); */
  transition: all 0.3s ease;
}

.feature-card span {
  font-size: 32px;
  color: #f45b7a;
}

.feature-card h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}

.feature-card small {
  font-weight: 400;
  color: #777;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card.highlight {
  background: linear-gradient(135deg, #f45b7a, #ff8a5b);
  color: #fff;
}

.feature-card.highlight span {
  color: #fff;
}
.about-staygo {
  background-color: #ffffff;
}

.section-tag {
  display: inline-block;
  color: #f45b7a;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-card {
  background: #fff6ed;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-card span {
  font-size: 34px;
  color: #f45b7a;
  margin-bottom: 8px;
  display: block;
}

.about-card h6 {
  margin: 0;
  font-weight: 600;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
