* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

/* Navbar */
/* Navbar container */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  background: transparent;   /* Transparent at first */
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

/* Scroll-active class (will be added with JS) */
header.scrolled {
  background: white;  /* Solid background after scroll */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navbar flex */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 60px;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff6600;
}

/* Avoid content hiding under navbar */
body {
  margin: 0;
  padding-top: 100px;
}

/* Prevent content hiding under fixed navbar */
body {
  margin: 0;
  padding-top: 100px; /* Adjust equal to header height */
}

/* Hero */
.hero {
  background: url('background.jpeg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #f0a500;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* About */
.about, .services, .contact {
  padding: 50px;
  text-align: center;
}

.services .service-cards {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about {
  padding: 80px 10%;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Image */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Right Content */
.about-content {
  flex: 1;
}

.about-content .since {
  font-size: 14px;
  text-transform: uppercase;
  color: gray;
  letter-spacing: 2px;
}

.about-content h2 {
  font-size: 24px;
  margin: 10px 0;
  color: #333;
}

.about-content h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.about-content b {
  color: #f0a500;
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

.contact input, .contact textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background: #f0a500;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}

.logo img {
  width: 80px;
  height: auto;
  position: relative;
  left : 30px;
}

.about {
  padding: 80px 10%;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Animate Image */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);

  /* Animation setup */
  opacity: 0;
  transform: translateX(-100px); /* start from left */
  animation: slideInLeft 1.2s ease forwards;
}

/* Animate Text */
.about-content {
  flex: 1;
  opacity: 0;
  transform: translateX(100px); /* start from right */
  animation: slideInRight 1.2s ease forwards;
  animation-delay: 0.5s; /* text comes after image */
}

/* Keyframes */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial hidden state */
.about-image img,
.about-content {
  opacity: 0;
  transform: translateY(50px); /* start lower */
  transition: all 1s ease-out;
}

/* When visible on scroll */
.about-image.show img {
  opacity: 1;
  transform: translateY(0);
}

.about-content.show {
  opacity: 1;
  transform: translateY(0);
}

#services {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

#services h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.service {
  margin-bottom: 50px;
}

.service h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #444;
}

.service p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
}

.image-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.image-list img {
  width: 400px;   /* increased from 250px */
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-list img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
}

/* Full image inside modal */
.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#videos {
  text-align: center;
  padding: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  justify-items: center;
}

#service-cards {
  padding: 40px 20px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 320px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

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

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

.service-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-card .btn {
  text-decoration: none;
  background: #0073e6;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s;
}

.service-card .btn:hover {
  background: #005bb5;
}

.service-card:hover {
  transform: translateY(-10px);
}

a {
  text-decoration: none;
  color: #E1306C; /* Instagram pink */
  font-weight: bold;

}

a:hover {
  color: #bc2a8d; /* darker pink */
}

/* Footer Section */
.footer {
  background: #222;
  color: #ddd;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-gallery {
  flex: 1 1 300px;
  margin: 20px;
}

.footer h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-about p {
  margin: 8px 0;
  font-size: 14px;
  color: #bbb;
}

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

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s;
}

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

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}

.social-icons a {
  color: #bbb;
  margin: 0 8px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* Contact Section */
.contact {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #444;
}

.contact-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #e63946;   /* red accent */
  font-size: 20px;
}

.contact-info p:hover {
  color: #e63946;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hamburger (for mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #333;
    
  }
}
@media (max-width: 992px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about-image, .about-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
  }
}
