/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: #000;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 10;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: -1;
}

.hero-content {
  z-index: 2;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h2 {
    font-size: 3.5rem;
  }
}
.hero-content {
  z-index: 2;
  padding: 0 20px;
  margin-top: 500px; /* pushes text downward */
}
.logo h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 3px;
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: #000;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f44336; /* red accent */
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  z-index: 2;
  padding: 0 20px;
  margin-top: 550px; /* pushes text downward */
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h2 {
    font-size: 3.5rem;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Hero Heading Animation */
.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;                /* start invisible */
  transform: translateY(30px); /* start slightly lower */
  animation: fadeUp 1.5s ease forwards; /* trigger animation */
}

/* Keyframes for fade + slide up */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effect (glow + scale) */
.hero-content h2:hover {
  color: #f44336;  /* red accent on hover */
  text-shadow: 0 0 15px rgba(244, 67, 54, 0.8);
  transform: scale(1.05);
  transition: all 0.4s ease;
}

/* Larger sizes */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-content h2 {
    font-size: 3.5rem;
  }
}
/* About Section */
#about {
  background: linear-gradient(135deg, #1a0033, #001f3f);
  padding: 80px 10%;
  color: #fff;
  font-family: 'Lucida Sans', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-logo img {
  width: 320px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.5);

  /* Transition effect */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-logo img:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0px 10px 30px rgba(255, 200, 0, 0.7);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.about-text h2:hover {
  color: #f4b400; /* golden effect */
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
html {
  scroll-behavior: smooth;
}
/* General Styling */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a0033, #001f3f);
  color: white;
  text-align: center;
}

/* Section Title */
.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

/* Container */
.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

/* Service Card */
.service-card {
  background: white;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #d63384; /* pink highlight */
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-content ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Hover Zoom Effect */
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}
.feedback-section {
  background: #111;
  padding: 80px 20px;
}

.feedback-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  flex: 1;
  min-width: 300px;
  color: #ddd;
}

.testimonials h2 {
  color: #f44336;
  margin-bottom: 20px;
}

.testimonial {
  margin-bottom: 20px;
  font-style: italic;
}

/* Contact */
.contact {
  flex: 1;
  min-width: 300px;
  color: #ddd;
}

.contact h2 {
  color: #f44336;
  margin-bottom: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
}

.contact button {
  padding: 12px;
  border: none;
  background: #f44336;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #d32f2f;
}

/* Mobile */
@media (max-width: 768px) {
  .feedback-container {
    flex-direction: column;
  }
}
