* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  padding-top: 80px;
}

.mobile-logo {
  height: 70px;
  border-radius: 50%;
  background: white;
  padding: 3px;
}

.custom-navbar {
  background: transparent;
  transition: all 0.35s ease;
  padding: 8px 20px;
  min-height: 68px;
  z-index: 1100;
}

/* WHEN SCROLLED */
.custom-navbar.scrolled {
  background: rgba(117, 117, 117, 0.95) !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* NAV LINKS */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #000;
  padding: 10px 15px;
}

.navbar-collapse {
  padding: 0 10rem;
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

.navbar-nav .nav-link.active {
  color: #000000;
  /* border-bottom: 2px solid #000000; */
}

.mobile-logo {
  height: 50px;
  border-radius: 50%;
  background: white;                                     
  padding: 3px;
}

/* CENTER LOGO */
.center-logo {
  height: 90px;
  border-radius: 50%;
  background: white;
  padding: 6px;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* MOBILE MENU PANEL */
@media (max-width: 991px) {

  .custom-navbar {
    background: rgba(255, 255, 255, 0.95);
  }

  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .center-logo {
    display: none;
  }
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  z-index: 1200;
}

/* header-section */
.hero {
  background: url("imgg/namann-hotel.jpg") center/cover no-repeat;
  object-fit: cover;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
 
}

.hero h1 {
  font-size: 45px;
  margin-bottom: 10px;
}

.btn {
  background: #2e7d32;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 15px;
}

section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

/* header-ends */
#carouselExampleAutoplaying {
  height: 50vh;
}

#carouselExampleAutoplaying img {
  height: 50vh;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {

  #carouselExampleAutoplaying,
  #carouselExampleAutoplaying img {
    height: 50vh;
  }
}

/* Mobile */
@media (max-width: 767px) {

  #carouselExampleAutoplaying,
  #carouselExampleAutoplaying img {
    height: 35vh;
  }
}

/* gallery-section */
.tg-gallery-section {
  padding: 50px 20px;
  background: #f4ffe9;
}

.tg-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
}

/* FILTER BUTTONS */
.tg-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tg-filters button {
  background: #00c389;
  border: none;
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}

.tg-filters button.active,
.tg-filters button:hover {
  background: #ff0099;
}

/* GALLERY GRID */
.tg-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.tg-item img {
  width: auto;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

/* TABLET */
@media (max-width: 991px) {
  .tg-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .tg-gallery {
    grid-template-columns: 1fr;
  }

  .tg-item img {
    height: 220px;
  }
}

/* ===== BUTTON EFFECT ===== */
.tg-filters button {
  transition: all 0.3s ease;
}

.tg-filters button:active {
  transform: scale(0.92);
}

/* ===== GALLERY ITEM EFFECT ===== */
.tg-item {
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}

.tg-item img {
  transition: transform 0.5s ease;
}

/* Hover zoom */
.tg-item:hover img {
  transform: scale(1.08);
}

/* Overlay effect */
.tg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tg-item:hover::after {
  opacity: 1;
}

/* ===== FILTER ANIMATION ===== */
.tg-item.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.tg-item.show {
  opacity: 1;
  transform: scale(1);
  transition: all 0.45s ease;
}

/* ===== FADE IN KEYFRAME ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* gallery-ends */
/* insta-video */
.tg-insta-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #eef7ff);
  text-align: left;
}

.tg-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.insta-icon {
  color: #e1306c;
  margin-left: 8px;
}

/* GRID */
.tg-insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.tg-insta-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  animation: slideUp 0.7s ease forwards;
}

.tg-insta-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover lift + glow */
.tg-insta-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.tg-insta-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.tg-insta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.4s;
}

.tg-insta-card:hover::after {
  opacity: 1;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s;
  z-index: 2;
}

.video:hover .play-btn {
  opacity: 1;
  transform: scale(1);
}

/* TABLET */
@media (max-width: 991px) {
  .tg-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .tg-insta-grid {
    grid-template-columns: 1fr;
  }

  .tg-insta-card img {
    height: 220px;
  }
}

/* ENTRANCE ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* insta-gram-ends */
/* addition-carousel */

.carousel-inner {
  transition: transform 0.8s ease-in-out;
}

.carousel img {
  height: 180px;
  object-fit: cover;
  cursor: pointer;
}

/* Carousel Control Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* Change icon color to white */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for visibility */
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  top: 30%; 
  width: 80px;
}

/* Positioning adjustments for medium and small devices */
@media (max-width: 991px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
  }
}

/* carousel-ends */
/* Contact-us */
.contact-hero {
  background:url("assets/imgg/contact.jpg") no-repeat center/cover;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 20px auto 0;
}

.contact-form-wrapper {
  background: #fff;
  border: 3px solid #00a47a;
  border-radius: 12px;
  padding: 30px;
  width: 80%;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.contact-form-wrapper h4 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-control {
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #00a47a;
  box-shadow: none;
}

.btn-send {
  width: 100%;
  background: #00a47a;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn-send:hover {
  background: #008a66;
}

.contact-info-box {
  background: #e81b6d;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.contact-info-box h5 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-info-box p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-info-box i {
  margin-right: 8px;
}

.qr-section {
  margin: 50px 0;
  text-align: center;
}

.qr-section h4 {
  font-weight: 700;
  margin-bottom: 30px;
}

.qr-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-card img {
  max-width: 100%;
  height: auto;
}

.qr-card p {
  margin-top: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.map-wrapper {
  margin: 50px 0 0 0;
  border-radius: 8px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* contact-ends */
/* footer-starts */
.tg-footer {
  background:
    linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)),
    url("imgg/world-map-dots000ng") center / cover no-repeat;
  color: #000000;
  padding-top: -70px;
}

/* LEFT CURVED PANEL */
.tg-contact {
  background: #ffffff;
  padding: 45px 35px;
  ;
  border-radius: 0 110px 0px 0;
}

.tg-logo {
  width: 85px;
  margin-bottom: 20px;
}

.tg-contact h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

.tg-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.tg-contact i {
  color: #ffffff;
  margin-right: 8px;
}

/* QR */
.tg-qr {
  width: 120px;
  margin: 18px 0;
}

/* SOCIAL */
.tg-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  background: #000000;
 
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 6px;
  transition: 0.3s;
}

.tg-social a:hover {
  background: #505050;
}

/* LINKS */
.tg-links {
  padding: 40px 50px;
}

.tg-links a {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}

.tg-links a:hover {
  color: #61c9a6;
  /* text-decoration: underline; */
}

.tg-links h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

.tg-links ul {
  list-style: none;
  padding: 0;
}

.tg-links ul li {
  font-size: 14px;
  margin-bottom: 7px;
  position: relative;
  padding-left: 15px;
}

.tg-links ul li::before {
  content: "•";
  color: #11a97d;
  position: absolute;
  left: 0;
}

/* MAP */
.tg-map {
  padding: 0px 0px;
}

.tg-map iframe {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: 10px;
}

/* BOTTOM BAR */
.tg-bottom {
  background: #000000;
  text-align: center;
  font-size: 13px;
  padding: 12px;
  margin-top: px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .tg-contact {
    border-radius: 0;
    margin-bottom: 30px;
  }

  .tg-links {
    padding: 30px;
  }
}

/* ===== FOOTER RESPONSIVE FIX (NO DESIGN CHANGE) ===== */

.tg-footer {
  overflow-x: hidden;
}

/* Logo & QR responsive */
.tg-logo {
  max-width: 180px;
  height: auto;
}

.tg-qr {
  max-width: 140px;
  height: auto;
}

/* Google map responsive */
.tg-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* UL default fix */
.tg-footer ul {
  padding-left: 0;
  margin: 0;
}

.tg-footer ul li {
  list-style: none;
}

/* ===============================
   LARGE DESKTOP (unchanged)
================================ */
@media (min-width: 1200px) {
  .tg-footer .row {
    padding: 0px 90px;
  }
}

/* ================= MEDIUM DEVICES (Tablets ≤ 991px) ================= */
@media (max-width: 991px) {

  .tg-contact,
  .tg-links,
  .tg-map {
    margin-bottom: 30px;
  }

  .tg-map iframe {
    min-height: 200px;
  }

  .tg-links .row {
    row-gap: 20px;
  }

  .tg-bottom {
    padding: 190px 0 10px 0;
  }
}

/* ================= SMALL DEVICES (Mobiles ≤ 767px) ================= */
@media (max-width: 767px) {

  .tg-contact,
  .tg-links,
  .tg-map {
    text-align: left;
  }

  /* Contact list center align */
  .tg-contact ul li {
    justify-content: left;
    text-align: left;
  }

  /* Social icons center */
  .tg-social {
    justify-content: left;
    font-size: 25px;
  }

  .tg-footer ul li {
    font-size: 16px;
  }

  .tg-map iframe {
    min-height: 50px !important;
    padding-bottom: 20px !important;
  }

  /* Bottom copyright */
  .tg-bottom {
    font-size: 13px;
    line-height: 1.6;
    padding: 170px 0 10px 0;
  }
}

/* terms-section */
.terms-wrapper {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
}

.terms-box {
  background: #ffffff;
  border: 2px dotted #333;
  border-radius: 8px;
  padding: 25px;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

h2 {
  margin-top: 25px;
  font-size: 20px;
  color: #222;
}

h3 {
  margin-top: 20px;
  font-size: 17px;
}

.pera-text {
  color: #000;
}

ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .terms-box {
    padding: 15px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  p,
  li {
    font-size: 14px;
  }
}

/* terms-ends */