body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  text-align: center;
}

header {
  background: rgba(0,0,0,0.6);
  padding: 15px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

.background-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

.image-slider {
  margin-top: 80px;
  position: relative;
  width: 80%;
  max-width: 900px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.image-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-slider .slide.active {
  opacity: 1;
}

.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  text-align: center;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  animation: fadeUp 1.5s ease;
}

.gallery {
  padding: 60px 20px;
  background: #f4f4f4;
  color: #333;
}

.gallery.dark {
  background: #222;
  color: #fff;
}

.gallery h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery-grid p{
  color: black;
  text-transform: capitalize;
}

.card {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card p {
  padding: 15px;
  font-weight: bold;
  background: #fafafa;
}

.card.visible {
  transform: translateY(0);
  opacity: 1;
}

.about-section {
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: black;
}

.about-section p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
  color: black;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 50%); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
/* HEADER */
#main-header {
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: all 0.4s ease;
}

#main-header.scrolled {
  background: #111;
  padding: 8px 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 12px;
  transition: height 0.4s ease;
}

#main-header.scrolled .logo {
  height: 35px;
}

.company-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffcc00;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: font-size 0.4s ease;
}

#main-header.scrolled .company-name {
  font-size: 1.1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 25px;
  text-align: center;
  margin-top: 60px;
}

footer .company-name {
  color: #ffcc00;
  font-weight: bold;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}


/* HEADER */
#main-header {
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: space-between; /* space between logo and nav */
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: all 0.4s ease;
}

#main-header.scrolled {
  background: #111;
  padding: 8px 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

.logo-container {
  display: flex;
  align-items: center;
}

/* Logo in Circle */
.logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  transition: all 0.4s ease;
  border: 2px solid #ffcc00; /* thin border around circle */
}

#main-header.scrolled .logo {
  height: 45px;
  width: 45px;
}

.company-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffcc00;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: font-size 0.4s ease;
}

#main-header.scrolled .company-name {
  font-size: 1.1rem;
}

/* Center the navigation */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}
/* Active page link */
nav a.active {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 4px;
}
/* Default nav for desktop */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-center {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    text-align: center;
    display: none;
  }

  .nav-center.show {
    display: flex;
  }

  .nav-center a {
    margin: 15px 0;
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }
}
.about-section h2{
  color: orange;
}
.about-section p{
  color: black;
}


