/* ===== Reset & Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: white;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 105, 180, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.logo span {
  color: hotpink;
  text-shadow: 0 0 5px hotpink, 0 0 10px pink;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: hotpink;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

nav a:hover {
  color: hotpink;
}

nav a:hover::after {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url('hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero span {
  color: hotpink;
  text-shadow: 0 0 5px hotpink, 0 0 12px pink;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, hotpink, deeppink);
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(255,105,180,0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,105,180,0.6);
}

/* ===== Section Styling ===== */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  color: hotpink;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 5px hotpink;
  animation: fadeUp 1s ease-in-out;
}

/* ===== Services ===== */
.service-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  padding: 25px;
  border-radius: 15px;
  width: 260px;
  transition: all 0.4s ease;
  box-shadow: 0 0 6px rgba(255,105,180,0.08);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 12px rgba(255,105,180,0.4);
}

/* ===== Gallery ===== */
.gallery .images {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(255,105,180,0.15);
  transition: all 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255,105,180,0.4);
}

/* ===== Contact ===== */
.contact a {
  color: hotpink;
  text-decoration: none;
  font-weight: bold;
}

.contact .btn {
  margin-top: 20px;
}

/* ===== Footer ===== */
footer {
  background: black;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 105, 180, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Mobile Navbar ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 768px) {
  header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 220px;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 15px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
  }

  nav a:hover {
    color: #ff4fd8;
    transition: color 0.2s ease-in-out;
  }

  nav.active {
    transform: translateX(0);
  }
}


/* ===== Responsive H1 Font Size ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
/* ===== Mobile Navbar Toggle Visibility ===== */
.menu-toggle {
  display: none; /* Hidden by default for large screens */
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show hamburger menu on small screens */
  }

  nav {
    display: flex; /* Make sure mobile nav is ready to slide in */
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 220px;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 15px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  /* Hide normal nav on desktop size but show toggle */
  header nav {
    display: none; /* Prevent overlap */
  }

  nav.active {
    transform: translateX(0);
    display: flex;
  }
}

@media (min-width: 769px) {
  nav {
    display: flex !important; /* Always show normal nav on desktop */
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    transform: none;
  }
}

#sp1{
  color: white;
}
/* ===== Custom Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 10px; /* Scrollbar width */
}

::-webkit-scrollbar-track {
  background: #0a0a0a; /* Dark background (matches your black theme) */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff4d94, #d6006d); /* Pink gradient */
  border-radius: 10px;
  border: 2px solid #0a0a0a; /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff66a3, #ff1a75); /* Lighter on hover */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff4d94 #0a0a0a; /* thumb color, track color */
}
