/* Disable blinking cursor and text editing globally */
* {
  caret-color: transparent !important; /* hides blinking text cursor */
  cursor: default !important;          /* shows normal arrow cursor */
}

body, h1, h2, h3, h4, h5, h6, p, span, div {
  user-select: none !important;        /* prevents text selection */
}
* {
  caret-color: transparent !important;
  cursor: default !important;
}
/* Global Theme */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff; /* clean background */
  border-bottom: 2px solid #eee;
}

.logo h1 {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
}

.nav-links {
  list-style: none;
  display: flex;        /* horizontal layout */
  gap: 25px;            /* spacing between links */
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: #000000;       /* visible text */
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff0000;       /* highlight on hover */
}

.contact-info {
  font-weight: bold;
  color: #000000;
}
/* FIXED NAVBAR */
header {
  position: fixed;       /* keeps it stuck at the top */
  top: 0;
  left: 0;
  width: 100%;           /* full width */
  z-index: 1000;         /* stays above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff; /* solid background */
  border-bottom: 2px solid #eee;
}

/* Add spacing so content doesn’t hide under navbar */
body {
  padding-top: 80px;     /* adjust based on navbar height */
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: grid;                 /* use grid for perfect alignment */
  grid-template-columns: 1fr 2fr 1fr; /* logo | nav | contact */
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff;
  border-bottom: 2px solid #eee;
}

/* LOGO */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;       /* center the links */
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: #000000;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #ff0000;
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;              /* taller section for maximum visibility */
  overflow: hidden;
}

.home-image {
  width: 100%;
  height: 100%;
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills space without distortion */
  object-position: 40% center; /* pushes image lower so signage is visible */
  display: block;
}
@media (max-width: 768px) {
  .home-image img {
    object-position: 50% center; /* lower focus for mobile */
  }
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline-item {
  border-left: 4px solid #333;
  padding-left: 15px;
}

/* Cards */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  flex: 1;
  min-width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
}
/* About Section */
#about {
  padding: 100px 20px;
  background: #fdfdfd;
  text-align: center;
}
#about h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
}
#about p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555;
}

/* Company Image */
.about-image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.about-image img {
  width: 70%;           /* scales nicely, not full width */
  max-width: 600px;     /* cap the size for large screens */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}
.mv-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.mv-card h3 {
  color: #222;
  margin-bottom: 10px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto;
  max-width: 600px;
  text-align: left;
}
.timeline-item {
  border-left: 4px solid #333;
  padding-left: 15px;
  font-size: 1.1em;
  color: #444;
}

/* Core Values */
.values-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.value-card {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(to right, orange, green, blue);
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}
.home-image {
  width: 100%;
  height: 100vh;             /* full viewport height, stretches down */
  overflow: hidden;
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills sideways */
  object-position: center 40%; /* shift focus lower, shows more bottom */
  display: block;
}

.home-button {
  text-align: center;
  margin: 20px 0;
}

.home-button .btn {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home-button .btn:hover {
  background-color: #333333;
}
/* Services Section */
#services {
  padding: 100px 20px;
  background: #fdfdfd;
  text-align: center;
}
#services h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

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

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

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

.service-card h3 {
  margin: 15px 0 10px;
  font-size: 1.5em;
  color: #222;
}

.service-card p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #555;
}

.service-card button {
  margin: 20px auto;
  padding: 12px 25px;
  background: linear-gradient(to right, orange, green, blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.service-card button:hover {
  opacity: 0.9;
}

/* Booking Form Section */
#booking {
  padding: 100px 20px;
  background: #fdfdfd;
  text-align: center;
}
#booking h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.booking-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(to right, orange, green, blue);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Inputs */
.booking-form input,
.booking-form select {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
}

/* Gradient Button */
.booking-form button {
  padding: 14px;
  background: #fff;
  color: #333;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.booking-form button:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
  transform: scale(1.05);
}

/* Contact Section */
#contact {
  padding: 100px 20px;
  background: #fdfdfd;
  text-align: center;
}
#contact h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(to right, orange, green, blue);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Inputs and Textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  background: #fff;
  color: #333;
}

/* Larger message box */
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Submit Button */
.contact-form button {
  padding: 14px;
  background: #fff;
  color: #333;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form button:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
  transform: scale(1.05);
}

/* FOOTER STYLING */
.site-footer {
  background: #000;          /* solid black background */
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
  width: 100%;               /* full width */
  box-sizing: border-box;
}

/* Top section with buttons and contact */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.footer-btn {
  padding: 12px 20px;
  margin: 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.book-btn {
  background: orange;
  color: #fff;
}

.call-btn {
  background: #fff;
  color: #333;
}

.footer-btn:hover {
  transform: scale(1.05);
}

/* Contact numbers */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #ddd;
}

.footer-contact p {
  margin: 0;
  font-weight: bold;
  color: orange;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-contact a:hover {
  color: orange;
}

/* Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;   /* align all columns at the top */
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

.footer-col {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-col h3 {
  margin-top: 0;
}

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

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

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: red;
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  margin: 15px 0;
}

.social-icons a img {
  width: 35px;
  height: 35px;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

/* Subscribe Form */
.subscribe {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.subscribe input {
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  width: 200px;
}

.subscribe input::placeholder {
  color: #eee;
}

.subscribe button {
  padding: 10px 15px;
  margin-left: 8px;
  background: orange;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.subscribe button:hover {
  background: green;
}

/* Bottom section */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
}

.footer-bottom hr {
  border: none;
  border-top: 2px solid #fff;
  margin-bottom: 10px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE FOOTER FIX */
@media (max-width: 768px) {
  body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;      /* stop sideways scroll */
  }

  .footer-top {
    flex-direction: column;  /* stack vertically */
    gap: 10px;
  }

  .footer-btn {
    width: 100%;             /* full width buttons */
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;  /* stack numbers vertically */
    gap: 5px;
  }

  .footer-contact span {
    display: none;           /* hide "|" separator on mobile */
  }

  .site-footer {
    padding: 30px 15px;      /* balanced padding */
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin: 15px 0;
  }

  .subscribe {
    flex-direction: column;
    align-items: center;
  }

  .subscribe input {
    width: 100%;
    margin-bottom: 10px;
  }

  .subscribe button {
    width: 100%;
    margin-left: 0;
  }
}