body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 1000;
}
/* Navbar Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d47a1; /* royal color */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff; /* or black if navbar bg is light */
  margin: 0;
}

.nav-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffd700; /* golden contrast */
  margin: 0;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.navbar nav ul li {
  margin: 0 15px;
}
.navbar nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1e90ff; /* underline color */
  transition: width 0.3s ease;
}
.navbar nav ul li a:hover::after {
  width: 100%;
}
.navbar nav ul li a:hover {
  color: #1e90ff;           /* text color on hover */
  background: rgba(255,255,255,0.1); /* light background */
  border: 6px;
  border-radius: 9px;       /* smooth rounded corners */
}
.actions {
  display: flex;
  align-items: center;
  padding-right: 40px;
}
.btn {
  background: #1e90ff;
  border: none;
  padding: 8px 16px;
  margin-left: 10px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}
.icon-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  color: #000;
  right: 0;
  margin-top: 5px;
  border-radius: 4px;
  overflow: hidden;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #000;
}
.dropdown-content.show {
  display: block;
}

.hero {
  background: url('../images/hotel2.jpeg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.6); /* dark overlay for readability */
  width: 100%;
  height: 100%;
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Feature boxes */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;   /* force one line */
}

.feature-box {
  background: black;
  border-radius: 10px;
  padding: 15px;
  width: 180px;  /* smaller fixed size */
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-box i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1e90ff; /* blue icon */
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 13px;
  line-height: 1.3;
}

.feature-box:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.2);
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
  .features {
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-box {
    width: 45%; /* two per row on tablets */
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .feature-box {
    width: 100%; /* one per row on small mobile */
  }
}

.free-account {
  width: 100%;
  height: 60px; /* small height */
  background: #292626; /* highlight color */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* spacing between text and button */
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.free-account p {
  margin: 0;
}

.btn-try {
  background: #1e90ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-try:hover {
  background: #1e90ff;
  color: #fff;
}
/* Free account section (default desktop style already given) */

/* Tablet view */
@media (max-width: 768px) {
  .free-account {
    flex-direction: column;
    height: auto;
    padding: 10px;
    text-align: center;
  }

  .free-account p {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .btn-try {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .free-account {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .free-account p {
    font-size: 14px;
  }

  .btn-try {
    width: 100%; /* full width button for mobile */
    font-size: 14px;
    padding: 10px;
  }
}

.countdown-section {
  background: rgb(27, 120, 157); /* promo orange */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-family: Arial, sans-serif;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.time-box {
  background: rgba(0,0,0,0.2);
  padding: 10px 15px;
  border-radius: 6px;
  min-width: 60px;
}

.time-box span {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

.time-box small {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
}

.countdown-msg {
  font-size: 18px;
  font-weight: 500;
}


/* ---------------------------
   Complementary Section
---------------------------- */
.complementary-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 10%;
  background: #f5f7fb;
  flex-wrap: wrap;
}

/* Left Column */
.comp-left {
  flex: 1;
  min-width: 250px;
}

.comp-left h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.comp-left p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #444;
}

.icon-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-block i {
  font-size: 20px;
  color: #007bff;
}

.icon-block:hover {
  background: #007bff;
  color: #fff;
}

.icon-block:hover i {
  color: #fff;
}

/* Middle Column (Videos) */
.comp-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
}

.comp-middle video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Right Column */
.comp-right {
  flex: 1;
  min-width: 250px;
}

.comp-right h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.comp-right p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .complementary-section {
    flex-direction: column;
    text-align: center;
  }

  .icon-block {
    justify-content: center;
  }
}


/* Whole Section with Background Image */
.advanced-section {
  background: url("images/bg-pattern.jpg") no-repeat center center/cover;
  padding: 70px 20px;
  position: relative;
  z-index: 1;
}
.advanced-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 11, 147, 0.7); /* royal dark overlay */
  z-index: -1;
}

/* Container */
.advanced-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}

/* Headings */
.advanced-container h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #f7d774; /* royal gold */
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  position: relative;
}
.advanced-container h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f7d774, #b78eff);
  border-radius: 2px;
}

/* Feature Items (Complementary + Mobile) */
.comp-item, .mob-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 18px;
  background: rgba(11, 7, 7, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.comp-item i, .mob-item i {
  font-size: 20px;
  color: #afdb11; /* gold icons */
}
.comp-item p, .mob-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.comp-item:hover, .mob-item:hover {
  background: linear-gradient(90deg, #3c1e70, #1a1a3c);
  transform: translateX(6px);
}

/* Video Blocks */
.video-blocks {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-box {
  background: linear-gradient(135deg, #2b1055, #1f1c47);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.4);
}
.video-box video {
  width: 100%;
  border-radius: 10px;
  max-height: 180px;
  object-fit: cover;
}
.video-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #f7d774;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .advanced-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .comp-item, .mob-item {
    justify-content: center;
  }
  .video-box video {
    max-height: 150px;
  }
}


.pms-features {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #00c6ff;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #d9f0ff;
}

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

.pms-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pms-box i {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 15px;
}

.pms-box h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.pms-box p {
  font-size: 0.95rem;
  color: #cce7ff;
}

.pms-box:hover {
  background: rgba(0,198,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Section Wrapper */
.multi-company {
  padding: 70px 20px;
  background: #f8faff;
}

.multi-company .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Content */
.multi-company .content {
  flex: 1;
  min-width: 320px;
}

.multi-company h2 {
  font-size: 2rem;
  color: #002a6c;
  margin-bottom: 20px;
}

.multi-company p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Buttons */
.cta-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-right: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #0047ab;
  color: #fff;
}

.btn.primary:hover {
  background: #002f73;
}

.btn.secondary {
  background: #e8f0ff;
  color: #0047ab;
  border: 1px solid #0047ab;
}

.btn.secondary:hover {
  background: #0047ab;
  color: #fff;
}

/* Right Image */
.image-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image-box img {
  width: 100%;
  max-width: none;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .multi-company .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    margin-top: 25px;
  }
}


/* Booking Engine Section */
.booking-engine {
  background: linear-gradient(135deg, #1a237e, #283593); /* royal blue gradient */
  color: #fff;
  padding: 80px 20px;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-content {
  flex: 1;
  min-width: 320px;
}

.booking-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffeb3b; /* highlight heading */
}

.booking-content .intro {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 12px;
  border-radius: 10px;
}

.feature-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-list i {
  font-size: 28px;
  color: #ffeb3b;
  min-width: 35px;
}

.feature-list h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #fff;
}

.feature-list p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.btn-demo {
  display: inline-block;
  padding: 12px 24px;
  background: #ffeb3b;
  color: #1a237e;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-demo:hover {
  background: #fdd835;
}

.booking-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.booking-image img {
  width: 100%;
  max-width: none;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.booking-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .booking-container {
    flex-direction: column;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
    text-align: left;
  }
}

/* Stats Section */
.stats-section {
  background: #000;
  color: #fff;
  padding: 6px 8px;
  text-align: center;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.stat-box {
  padding: 30px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border: 2px solid #fff;
  transform: translateY(-6px);
}

.stat-box h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.stat-box p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* Global Section */
.global-section {
  position: relative;
  background: url('images/world-map.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.global-overlay {
  background: rgba(68, 16, 180, 0.6); /* Dark overlay */
  padding: 80px 20px;
  border-radius: 10px;
}

.global-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.global-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e5e5e5;
}

.global-content span {
  color: #ffd700; /* Highlight color */
  font-weight: bold;
}

.partner-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffd700;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partner-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .global-content h2 {
    font-size: 2rem;
  }
  .global-content p {
    font-size: 1rem;
  }
}


/* Hotel Section */
.hotel-section {
  background: linear-gradient(135deg, #1a237e, #0d47a1); /* Royal color gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hotel-content {
  max-width: 800px;
  margin: 0 auto;
}

.hotel-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: capitalize;
}

.hotel-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 12px;
  font-size: 1.4rem;
  color: #ffd700; /* Gold icons */
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hotel-content h2 {
    font-size: 1.8rem;
  }
  .hotel-content p {
    font-size: 1rem;
  }
}


/* Footer Base */
.footer {
  background: #0d47a1; /* royal blue */
  color: #fff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo Section */
.footer-logo {
  flex: 1;
  min-width: 220px;
}

.logo-circle {
  width: 70px;
  height: 70px;
  background: #ffd700;
  color: #0d47a1;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin: 0;
}

.footer-logo p {
  font-style: italic;
  font-size: 1rem;
  color: #e0e0e0;
}

/* Footer Columns */
.footer-columns {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffd700;
}

/* Newsletter Section */
.newsletter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px; /* space between input & button */
  flex-wrap: wrap;
}

.newsletter input {
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  outline: none;
  width: 220px;
  max-width: 100%;
  font-size: 0.95rem;
}

.newsletter button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  background: #ffd700;
  color: #0d47a1;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: #fff;
  color: #0d47a1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    margin-top: 15px;
  }

  .newsletter input {
    width: 100%;
    max-width: 300px;
  }

  .newsletter button {
    width: 100%;
    max-width: 150px;
  }
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-columns {
    justify-content: center;
  }
  
}
