/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: '', sans-serif; line-height: 1.6; }

/* Header */
.site-header {
  background: #fff;
  color: #000;
  padding: 15px 0;
  border-bottom: 2px solid #eee;
  position: relative;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
.logo { font-size: 1.5rem; font-weight: bold; }
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}
.nav-links li:last-child {
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: orange;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: orange;
  color: #fff !important;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.btn:hover {
  background: darkorange;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* Animate hamburger into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .hamburger {
    display: flex;
  }
}

/* Slide down effect */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.about {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 90%;
  margin: auto;
  flex-wrap: wrap; /* responsive */
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.about-text .btn {
  border-radius: 25px;
  padding: 12px 25px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text {
    margin-top: 20px;
  }
}

.mission-vision {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #000;   /* Black Title */
  font-weight: bold;
}


.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
}

.mv-card {
  background: orange; /* orange background */
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff; /* default text color white */
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.mv-icon {
  font-size: 40px;
  color: #fff; /* white icon */
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.mv-card:hover .mv-icon {
  transform: rotate(360deg) scale(1.2);
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff; /* white text */
}

.mv-card p {
  font-size: 1rem;
  color: #fff; /* white text */
  line-height: 1.6;
}


/* Section Background */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(-45deg, #000, #ff6600, #111, #ff4500);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color: #fff;
  text-align: center;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Title */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: black;
}

.section-titleservice
{
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: white;
}


/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Cards */
.service-card {
  background: rgba(0,0,0,0.75);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255,102,0,0.3);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(255,102,0,0.6);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6600;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f2f2f2;
}



/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #fff; /* White background */
  text-align: center;
}

.gallery-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #000; /* Black title */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 90%;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.gallery-item:hover img {
  transform: scale(1.1);
}


/* Lightbox Background */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

/* Lightbox Image */
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  animation: fadeIn 0.5s ease;
}

/* Close Button */
.lightbox .close {
  position: absolute;
  top: 20px; 
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: orange;
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}


/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 90%;
  margin: auto;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: orange;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: darkorange;
  transform: scale(1.05);
}

/* Info */
.contact-info p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: orange;
  transition: 0.3s;
}

.social-icons a:hover {
  color: darkorange;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.image-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: black;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}
html {
  scroll-behavior: smooth;
}


