/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
}

/* Headbar Styles */
.headbar {
  background-color: #f77c00;
  height: 100px;
  position: relative;
}

.logo-container {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
  background-color: #000;
  padding: 20px 40px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 80px; /* previously 60px or more */
  max-width: 100%;
  object-fit: contain;
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 80px 40px;
  background: #fff;
  background-image: url('images/background.png');
  background-repeat: repeat;
}

.about-left {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 300px;
}

.about-right img {
  width: 600px; /* or even 400px if you prefer */
  height: 600px;
  max-width: 100%;
  padding-left: 50px;
  margin-top: -40px;
}

/* Title + Tagline */
.about h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.about-sub {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* Highlight Line */
.about-highlight {
  font-size: 18px;
  margin: 20px 0;
}

.orange {
  color: #f77c00;
  font-weight: bold;
}

/* Split Headings with line */
.about-heading {
  margin-bottom: 20px;
}

.about-heading p {
  font-size: 60px;
  font-weight: normal;
  line-height: 1.3;
}

.about-heading p span {
  font-weight: normal;
}

/* Paragraph Text */
.about-para {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Location Section */
.location-section {
  padding: 80px 40px;
  background-image: url('images/background.png');
  background-repeat: repeat;
}

.location-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.location-header p {
  font-size: 14px;
  margin-bottom: 40px;
}

.location-line {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  margin-left: 10px;
  vertical-align: middle;
}

.location-line .dot {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
  margin-right: 0px;
}

.location-line .line {
  width: 220px;  /* Keep it short like your image */
  height: 1.5px;
  background-color: black;
}

.location-scroll-wrapper {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  position: relative;
}

.slide {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  padding: 0 40px;
  box-sizing: border-box;
}

.block {
  background-color: #f77c00;
  flex: 1;
  height: 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.block-left {
  border-top-left-radius: 80px;
}

.block-center {
  border-radius: 0;
}

.block-right {
  border-bottom-right-radius: 80px;
}

/* Hide scrollbar */
.location-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.location-scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Footer Section */
.footer {
  background-color: #121212;
  color: #eee;
  padding: 60px 40px 30px;
  font-family: 'Segoe UI', sans-serif;
  background-size: cover;
  background-position: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 20px;
}

.footer-info {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  color: #f77c00;
  font-size: 16px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.footer-column hr {
  border: none;
  border-top: 2px solid #f7f7f7;
  width: 40px;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}

.footer-nav {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #ccc;
  margin: 0 15px;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #f77c00;
}

.footer-copy {
  font-size: 13px;
  color: #999;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 16px;
  width: 16px;
  margin: 0 6px;
  background-color: #fcb97d;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #f77c00;
}

/* RESPONSIVE STYLES */

/* Medium Devices */
@media (max-width: 1024px) and (min-width: 769px) {
  .about {
    padding: 70px 30px;
  }
  .about-left,
  .about-right {
    min-width: 100%;
  }
  .location-section {
    padding: 70px 30px;
  }
  .slide {
    padding: 0 30px;
  }
}

/* Tablets and Small Laptops */
@media (max-width: 768px) {
  .headbar {
    height: 80px;
  }
  .logo-container {
    bottom: -40px;
    height: 120px;
    padding: 15px 30px;
  }
  .logo {
    height: 60px;
  }
  .about {
    flex-direction: column;
    padding: 60px 20px;
  }
  .about-left,
  .about-right {
    max-width: 100%;
    min-width: 100%;
  }
  .about-right {
    margin-top: 20px;
  }
  .about-right img {
    width: 100%;
    height: auto;
    padding-left: 0;
    margin-top: 0;
  }
  .about h2 {
    font-size: 28px;
  }
  .about-heading p {
    font-size: 40px;
  }
  .location-section {
    padding: 60px 20px;
  }
  .location-header h2 {
    font-size: 28px;
  }
  .location-header p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .location-line .line {
    width: 150px;
  }
  .slide {
    padding: 0 20px;
  }
  .block {
    height: auto;
    padding: 15px;
  }
  .footer {
    padding: 40px 20px 20px;
  }
  .footer-logo img {
    width: 80px;
  }
  .footer-column {
    min-width: 100%;
  }
  .footer-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .headbar {
    height: 70px;
  }
  .logo-container {
    bottom: -35px;
    height: 100px;
    padding: 10px 20px;
  }
  .logo {
    height: 50px;
  }
  .about {
    padding: 40px 10px;
  }
  .about h2 {
    font-size: 24px;
  }
  .about-heading p {
    font-size: 32px;
  }
  .location-section {
    padding: 40px 10px;
  }
  .location-header h2 {
    font-size: 24px;
  }
  .location-header p {
    font-size: 12px;
  }
  .location-line .line {
    width: 100px;
  }
  .slide {
    padding: 0 10px;
  }
  .block {
    height: auto;
    padding: 10px;
  }
  .location-img {
    max-width: 180px;
  }
  .location-name {
    font-size: 18px;
  }
  .location-link {
    font-size: 12px;
  }
  .footer {
    padding: 30px 10px;
  }
  .footer-logo img {
    width: 60px;
  }
  .footer-column {
    min-width: 100%;
  }
  .footer-nav a {
    margin: 0 10px;
    font-size: 12px;
  }
  .footer-copy {
    font-size: 11px;
  }
}
