/* RESET MARGIN & PADDING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

.navbar {
  background: #0d0d2b;
  color: gold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: gold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar .logo img {
  width: 22px;
  height: 22px;
}

/* Nav Links */
.navbar nav {
  display: flex;
  gap: 1.5rem;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: gold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start; /* Align all content to the left */
  }

  .navbar .logo {
    font-size: 1.05rem;
    margin-right: auto; /* Push nav and hamburger to the right */
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1a1a40;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
    display: none;
    text-align: center;
  }

  .navbar nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.social-hero {
  background: radial-gradient(ellipse at top, #0d0d2b, #1a1a40);
  color: white;
  padding: 6rem 2rem 5rem;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.social-hero h1 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 1rem;
  animation: slideInDown 1s ease-out;
}

.social-hero p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeIn 2s ease;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px gold);
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #ffd700);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  0% { transform: translateY(-40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
  .social-hero h1 {
    font-size: 1.8rem;
  }

  .social-icons a img {
    width: 30px;
    height: 30px;
  }
}
.youtube-section {
  background: #1a1a40;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.youtube-container {
  max-width: 1100px;
  margin: auto;
}

.youtube-container h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.youtube-container p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  animation: fadeIn 2s ease;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.video-item iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.social-media-cards {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.social-container {
  max-width: 1100px;
  margin: auto;
}

.social-container h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease-out;
}

.social-container p {
  color: #ccc;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.social-card {
  background: #1a1a40;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1.2s ease;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.social-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px gold);
}

.social-card h4 {
  color: gold;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.social-card p {
  font-size: 0.9rem;
  color: #ccc;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .social-card img {
    width: 36px;
    height: 36px;
  }

  .social-card h4 {
    font-size: 1rem;
  }
}
.cta-footer {
  background: linear-gradient(to bottom, #0d0d2b, #1a1a40);
  color: white;
  padding: 4rem 2rem 2rem;
  text-align: center;
  animation: fadeInUp 1.5s ease-in-out;
}

.cta-footer-container {
  max-width: 1000px;
  margin: auto;
}

.cta-footer h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-footer p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-footer-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-footer-btn {
  background: gold;
  color: black;
  font-weight: bold;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.cta-footer-btn img {
  width: 22px;
  height: 22px;
}

.cta-footer-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 25px gold;
  transform: translateY(-3px);
}

.cta-footer-copy {
  font-size: 0.85rem;
  color: #888;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .cta-footer h2 {
    font-size: 1.5rem;
  }

  .cta-footer-btn {
    width: 100%;
    justify-content: center;
  }
}
.floating-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-contact-btn img {
  width: 36px;
  height: 36px;
}

.floating-contact-btn:hover {
  transform: scale(1.1);
}

.contact-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #1a1a40;
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  width: 240px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.contact-popup h4 {
  color: gold;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.contact-popup a {
  background: gold;
  color: black;
  padding: 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: 0.3s ease;
  text-align: center;
}

.contact-popup a:hover {
  background: white;
  box-shadow: 0 0 10px gold;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
}
.advanced-testimonials {
  background: linear-gradient(to right, #1a1a40, #2c2c6c);
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  animation: fadeIn 1.2s ease forwards;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.4s ease;
  animation: slideUp 0.8s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #e0e0ff;
}

.testimonial-card h4 {
  color: #ffd700;
  font-weight: bold;
  font-size: 1rem;
}
.social-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}

.hero-content {
  max-width: 700px;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}
.social-hero ul {
  list-style: none;
  padding: 2rem;
  margin: 2rem auto;
  font-size: 1.1rem;
  line-height: 2;
  color: #f9f9f9;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  box-shadow: inset 0 0 0 transparent, 0 0 8px rgba(255, 204, 0, 0.3); /* BACK glow */
  animation: borderGlow 5s ease-in-out infinite;
}

/* Tick alignment bilkul sahi */
.social-hero ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.social-hero ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ffcc00;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Glowing border animation */
@keyframes borderGlow {
  0%, 100% {
    box-shadow: inset 0 0 0 transparent, 0 0 8px rgba(255, 204, 0, 0.3);
  }
  50% {
    box-shadow: inset 0 0 0 transparent, 0 0 16px rgba(255, 204, 0, 0.6);
  }
}
