/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html{
scroll-behavior:smooth;
}
img{
max-width:100%;
height:auto;
display:block;
}

body {
  background: #f7f7f7;
  color: #222;
  overflow-x: hidden;
}

section {
  padding: 80px 40px;
}

/* ================= HEADER ================= */
header {
  background: #ffffff;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;   /* Proper professional size */
  width: auto;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
}

.logo-text span {
  color: #f4b400;
  font-size: 16px;
  font-weight: bold;
}


nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

nav a:hover {
  color: #f4b400;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 25px;
  padding: 5px 10px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px;
  width: 150px;
}

.search-box button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.book-btn {
  background: #f4b400;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background:
  linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
  url("assets/hero-exhibition_.png")
  center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero-box {
  background: rgba(0,0,0,0.7);
  padding: 40px;
  max-width: 520px;
  border-radius: 10px;
  color: #fff;
}

.hero-box h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-box p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.rating {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 10px;
}

.cta {
  background: #f4b400;
  color: #000;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

/* ================= SERVICES ================= */
.our-services {
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

.our-services h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtext {
  color: #bbb;
  margin-bottom: 40px;
}

.services-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.service-box {
  background: #161616;
  padding: 30px 20px;
  border-radius: 14px;
  transition: 0.3s ease;
  text-align: center;
}

.service-box i {
  font-size: 32px;
  color: #f4b400;
  margin-bottom: 15px;
}

.service-box:hover {
  background: #f4b400;
  color: #000;
  transform: translateY(-8px);
}

.service-box:hover i {
  color: #000;
}

/* ================= DISCOVER ================= */
.discover {
  background: #fff;
}

.discover-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.discover-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.discover-icons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.icon-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 150px;
}

.discover-image img {
  width: 100%;
  border-radius: 16px;
}

/* ================= STEPS ================= */
.steps {
  background: #f7f7f7;
  text-align: center;
  
}
.steps h2{
  margin-bottom: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.step-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.step-card h3 {
  color: #f4b400;
  margin-bottom: 10px;
}

/* ================= CHECKLIST ================= */
.exhibition-checklist {
  background: #fff;
  text-align: center;
}
.exhibition-checklist h2{
  margin-bottom: 20px;
}

.checklist-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.checklist-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
}

.checklist-card h4 {
  color: #f4b400;
  margin-bottom: 15px;
}

.checklist-card ul {
  list-style: none;
}

.checklist-card li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* ================= BOOKING ================= */
.booking-section {
  background: #f4b400;
  display: flex;
  justify-content: center;
  padding: 80px 20px;   /* Added section padding */
}
.booking-box h2{
text-align: center;
font-size: 28px;
}

.booking-box {
  background: #fff;
  padding: 50px;        /* Increased inner padding */
  border-radius: 14px;
  max-width: 900px;
  width: 100%;
}

.booking-form {
  display: grid;
  padding: 14px 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;   /* Increased spacing between fields */
}

.booking-form input,
.booking-form select {
  padding: 14px 16px;   /* More horizontal padding */
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;      /* Better text size */
}

.booking-form button {
  grid-column: 1 / -1;
  background: #000;
  color: #fff;
  padding: 16px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

/* ================= CTA ================= */
/* ================= CTA SECTION ================= */
.exhibition-cta {
  background: linear-gradient(135deg, #f9b233, #ffcc4d);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.exhibition-cta h3{
  font-size: 42px;
}

.exhibition-cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
}

.exhibition-cta p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #222;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA BUTTON CONTAINER */
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* COMMON BUTTON STYLE */
.cta-actions a {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* PRIMARY BUTTON */
.cta-primary {
  background: #000;
  color: #fff;
}

.cta-primary:hover {
  background: #222;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* SECONDARY BUTTON */
.cta-secondary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.cta-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

.site-footer {
  background: #111;
  color: #eee;
  padding: 70px 30px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  color: #f4b400;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}

.footer-column p,
.footer-column li {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-link {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #f4b400;
}

.footer-buttons {
  margin-top: 15px;
}

.footer-buttons .btn {
  display: inline-block;
  margin: 8px 5px 0 0;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: #f4b400;
  color: #000;
}

.btn.primary:hover {
  background: #ffcc33;
}

.btn.outline {
  border: 1px solid #f4b400;
  color: #f4b400;
}

.btn.outline:hover {
  background: #f4b400;
  color: #000;
}

.btn.white {
  background: #fff;
  color: #000;
}

.btn.white:hover {
  background: #f4b400;
  color: #000;
}

.footer-social {
  text-align: center;
  margin-top: 50px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  margin: 0 12px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f4b400;
}

.footer-brand {
  text-align: center;
  margin-top: 40px;
}

.footer-brand h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-brand span {
  color: #f4b400;
}

.copyright {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}



/* Floating Buttons - Right Center */
.floating-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

/* Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

/* WhatsApp */
.whatsapp {
  background: #25D366;
  border-radius: 10px 0 0 0;
}

/* Call */
.call {
  background: #007bff;
  border-radius: 0 0 0 10px;
}

/* Hover Effect */
.float-btn:hover {
  transform: translateX(-5px);
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 15px;
  }

  .discover-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .discover-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-grid,
  .steps-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form button {
    grid-column: span 1;
  }
}
