body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

header, section, footer {
  padding: 60px 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #0056b3;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav .logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #2970ff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav ul li a:hover {
  color: #2970ff;
}

.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h1 {
  font-size: 2.5rem;
  color: #333;
}

.section-title p {
  color: #666;
  font-size: 1rem;
}

.text-container {
  max-width: 800px;
  margin: auto;
}

.gallery, .services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
  }
  nav ul.active {
    display: flex;
  }
  .burger {
    display: block;
  }
}
a[aria-label="Twitter"] {
  color: #000000; /* Twitter blue or any color you want */
  text-decoration: none; /* optional: remove underline */
}

a[aria-label="Twitter"]:hover {
  color: #000000; /* darker on hover */
}

}
a[aria-label="tiktok"] {
  color: #171717* Twitter blue or any color you want */
  text-decoration: none; /* optional: remove underline */
}

a[aria-label="tiktok"]:hover {
  color: #171717; /* darker on hover */
}

a[aria-label="tiktok"] {
  color: #171717; /* TikTok icon color */
  font-size: 1rem;
  text-decoration: none;
}


a[aria-label="tiktok"] i {
  color: inherit;
}

/* Main container to center everything */
.container {
  max-width: 1200px;
  margin: 0 auto;   /* centers horizontally */
  padding: 40px 20px;
  text-align: center;
}

/* Header text */
.services-header {
  margin-bottom: 40px;
}

/* Services grid */
.services {
  display: flex;
  justify-content: center; /* center the cards */
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* Service cards */
.service {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.service img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Container to center everything */
.container {
  max-width: 1200px;
  margin: 0 auto;   /* centers horizontally */
  padding: 40px 20px;
  text-align: center;
}

/* Header styles */
.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 30px;
  justify-items: center; /* center each video */
}

/* Each video */
.gallery-item {
  width: 100%;
  max-width: 550px;
}

/* Responsive: stack into 1 column on smaller screens */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}



