/* Base Styles */
:root {
  --primary-color: #000000;
  --primary-dark: #080808;
  /* --dark-color: #333; */
  --light-color: #f4f4f4;
  --gray-color: #777;
  --light-gray: #eaeaea;
  --white: #fff;
  /* --black: #000; */
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--primary-color);
  overflow-x: hidden;
  cursor:default;
}
section {
  background: var(--primary-color);
  
}
a {
  text-decoration: none;
  color: var(--white);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn {
  background-color: var(--primary-color);
  color: var(--gray-color);
  border: 2px solid var(--light-color);
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn:active {
  transform: translateY(-0.5svh);
}
.section-subtitle {
  color: var(--gray-color);
  margin-bottom: 40px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: black;
  z-index: 1000;
  transition: var(--transition);
}
.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header.scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.logo {
  height: auto;
  width: 300px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-right: 2svh;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--gray-color);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  text-align: center;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 3rem;
}

.mobile-menu li {
  margin: 1.5rem 0;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--neon-green);
}
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--gray-color);
  transition: var(--transition);
}



/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/why.webp) no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
    color:var(--gray-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content h1 span{
    color:var(--white)
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

/* How Section */
.how {
  padding: 100px 0;
}

.how h2,
.packages h2,
.projects h2,
.testimonials h2,
.about h2,
.contact h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  color: var(--white);
}

.how h2::after,
.packages h2::after,
.projects h2::after,
.testimonials h2::after,
.about h2::after,
.contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--gray-color);
  margin: 15px auto 30px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 80px;
  margin-top: 50px;
}

.how-card {
  background-color: var(--primary-dark);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 1px 1px var(--gray-color);
  transition: var(--transition);
  text-align: center;
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--gray-color);
}

.how-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.how-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
}

.how-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.learn-more {
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  position: relative;
  top: 20px;
  left: 0;
}
.learn-more:hover {
  transform: scale(1.05);
}

/* Packages */
.packages {
  padding: 100px 0;
  background-color: var(--primary-color);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: var(--transition);
  background: var(--primary-dark);
  box-shadow: 0 1px 1px var(--gray-color);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--gray-color);
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white);
}
.feature p {
  color: var(--gray-color);
}

.book {
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.book:hover {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--primary-color);
}

.testimonial-slider {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.testimonial {
  height: 300px;
  display: none;
  padding: 30px;
  background-color: var(--primary-dark);
  border-radius: 8px;
  box-shadow: 0 1px 1px var(--gray-color);
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  position: relative;
  padding: 30px;
}

.testimonial-content p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  color: var(--white);
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 50px;
  color: var(--light-gray);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content p::before {
  top: -20px;
  left: -15px;
}

.testimonial-content p::after {
  bottom: -40px;
  right: -15px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--gray-color);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}



.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--gray-color);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--primary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
}

.about-text h2::after {
  margin: 15px 0 30px;
}

.about-text p {
  text-align: justify;
  /* margin-bottom: 20px; */
  color: var(--light-color);
}

.about-image {
  background: white;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  height: auto;
  display: block;
}
/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--primary-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  color: var(--light-color);
}
.contact-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

#social{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
}
.social-links {
    display: flex;
    gap: 15px;
  }
 
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }

.contact-form {
  background-color: var(--primary-dark);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 1px 1px var(--gray-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  caret-color: white;
  outline: none;
  border: none;
  box-shadow: 0 1px 1px var(--gray-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  background: var(--primary-color);
  color: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  outline: none;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: -1;
  }
}
@media(max-width:800px){
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url(images/whyBackground.webp) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }
  .mobile-menu-toggle {
    display: block;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .services h2,
  .packages h2,
  .projects h2,
  .testimonials h2,
  .about h2,
  .contact h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .service-card,
  .feature {
    padding: 20px 15px;
  }

  .testimonial-content {
    padding: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Section Padding Adjustment for Mobile */
@media (max-width: 768px) {
  .hero,
  .services,
  .packages,
  .testimonials,
  .about,
  .contact {
    padding: 60px 0;
  }
}

/* Input Placeholder Styling */
::-webkit-input-placeholder {
  color: #4f4f4f;
  opacity: 1;
}

:-moz-placeholder {
  color: #4f4f4f;
  opacity: 1;
}

::-moz-placeholder {
  color: #4f4f4f;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #4f4f4f;
  opacity: 1;
}

/* Selection Styling */
::selection {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #4f4f4f;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}



