    /* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #000 70%, #111 100%);
      color: #fff;
      line-height: 1.8;
      scroll-behavior: smooth;
    }

/* --- Base Header (same as yours) --- */
header {
  background: rgba(15, 15, 15, 0.95);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #f1c40f;
  box-shadow: 0 4px 20px rgba(241, 196, 15, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  backdrop-filter: blur(6px);
}

header img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 4px solid #f1c40f;
  box-shadow: 0 0 20px #f1c40f, 0 0 40px #f1c40f, 0 0 60px #f1c40f;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.6s ease;
  transform: scale(1);
}
@media (max-width:470px) {
  header img{
    height: 50px;
  width: 50px;
  
  }
}
/* Desktop Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
  text-shadow: 0 0 8px #f1c40f;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f1c40f;
  transition: 0.4s ease;
  box-shadow: 0 0 10px #f1c40f;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 15px #fff, 0 0 25px #f1c40f;
}

nav a:hover::after {
  width: 100%;
}

/* --- Mobile Menu Button --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #f1c40f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Side Menu --- */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  box-shadow: -4px 0 20px rgba(241, 196, 15, 0.4);
  padding: 60px 20px;
  transition: 0.4s ease;
  z-index: 1200;
}

.side-menu.active {
  right: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  margin: 25px 0;
}

.side-menu ul li a {
  color: #f1c40f;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.3s;
}

.side-menu ul li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #f1c40f;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #f1c40f;
  cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Keep header always full width */
header {
  width: 100%;
  transition: all 0.3s ease;
}

/* Shrink effect (no scale here) */
header.shrink {
  padding: 8px 40px;
  background: rgba(15, 15, 15, 0.85);
  box-shadow: 0 6px 40px rgba(241, 196, 15, 0.8);
}

/* Scale only the inner container */
header .container {
  transition: transform 0.3s ease;
}

header.shrink .container {
  transform: scale(0.97);
}

/* Logo shrink */
header.shrink img {
  transform: scale(0.7) rotate(-3deg);
  box-shadow: 0 0 25px #f1c40f, 0 0 50px #f1c40f, 0 0 80px #f1c40f;
}

/* Nav shrink */
header.shrink nav a {
  font-size: 1rem;
  text-shadow: 0 0 5px #f1c40f;
}



   /* Hero Section */
.hero {
  background: linear-gradient(135deg, #000 50%, #111 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 0 20px; /* ✅ padding for small screens */
}

/* Background Image (blurred & animated) */
.hero-bg {
  background: url("BackgroundHomePage.png") no-repeat center center/cover;
  filter: blur(5px) brightness(0.4);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  animation: bg-scale 5s ease-in-out infinite alternate;
}

@keyframes bg-scale {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-bg:hover {
  transform: scale(1.2) rotate(2deg);
  box-shadow: 0 0 30px #f1c40f, 0 0 60px #f1c40f, 0 0 90px #f1c40f;
  transition: transform 1s ease, box-shadow 1s ease;
}

/* Rotating Glow */


@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  color: #f1c40f;
  margin-bottom: 20px;
  
  white-space: nowrap;
  overflow: hidden;
}

.hero p {
  font-size: 1.5rem;
  color: #eee;
  text-shadow: 0 0 15px #000;
}

.hero-btn {
  margin-top: 50px;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #222;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(110, 110, 22, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.hero-btn:hover {
  transform: scale(1.12) translateY(-5px);
  background: linear-gradient(135deg, #ffdb4d, #ff9800);
  color: #111;
  box-shadow: 0 8px 20px rgba(110, 110, 22, 0.7);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.2rem; }
  .hero-btn { font-size: 20px; padding: 12px 32px; }
}

@media (max-width: 900px) {
  .hero { padding: 0 15px; }
  .hero h1 { font-size: 2.5rem; white-space: normal; }
  .hero p { font-size: 1rem; }
  .hero-btn { font-size: 18px; padding: 10px 28px; }
}

@media (max-width: 600px) {
  .hero { height: auto; padding: 100px 15px; }
  .hero h1 { font-size: 2rem; line-height: 1.2; }
  .hero p { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-btn { font-size: 16px; padding: 8px 22px; }
}

 .about-section {
  background: linear-gradient(135deg, #111, #222);
  color: #f5f5f5;
  padding: 100px 10%;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
}

.about-text {
  grid-column: 1 / 2;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #f1c40f;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-text:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(241,196,15,0.4);
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f1c40f;
  letter-spacing: 1.5px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
}

.about-text a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
}

.about-text a:hover {
  text-decoration: underline;
}

.about-image {
  grid-column: 2 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: transform 5s infinite;
}

@keyframes transform {
  0% { transform: translate(0px,0px); }
  50% { transform: translate(-20px,30px); }
  100% { transform: translate(0px,0px); }
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(241,196,15,0.4);
}

.about-text.second {
  grid-column: 1 / -1;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #f39c12;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    padding: 80px 6%;
  }

  .about-container {
    gap: 50px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    grid-column: 1 / -1;
  }

  .about-image {
    grid-column: 1 / -1;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text.second {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-text h2 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-image img {
    max-width: 90%;
  }
}
/* Courses Section */
.courses-section {
  padding: 100px 8%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  position: relative; /* for arrows */
}

.courses-section h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #f1c40f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Default Desktop Grid */
.courses-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Course Box */
.course-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(241,196,15,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  flex: 0 0 80%; /* for mobile slider */
}

.course-box:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 45px rgba(241,196,15,0.6);
  background: rgba(255, 255, 255, 0.08);
}

/* Price Tag */
.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #111;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(241,196,15,0.5);
}

/* Course Image */
.course-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.course-box:hover img {
  transform: scale(1.05);
}

/* Wrapper for slider effect */
.course-img-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  position: relative;
}

/* Course Title */
.course-box h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #f1c40f;
  font-weight: 600;
  min-height: 50px;
}

/* Button */
.course-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #111;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(241,196,15,0.4);
}

.course-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(241,196,15,0.7);
  background: linear-gradient(135deg, #ffdb4d, #ff9800);
}

/* --- Responsive Design --- */

/* Large Screens */
@media (max-width: 1200px) {
  .courses-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .courses-section h2 {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .courses-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-box h3 {
    font-size: 18px;
  }
  .course-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}

/* Mobiles: turn into horizontal scroll with arrows */
@media (max-width: 600px) {
  .courses-section {
    padding: 60px 6%;
  }
  .courses-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  /* Make container horizontal */
  .courses-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 15px;
  }

  .course-box {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* Hide scrollbar */
  .courses-container::-webkit-scrollbar {
    display: none;
  }

  /* Navigation Arrows */
  .course-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #f1c40f;
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }
  .course-arrow.left { left: 10px; }
  .course-arrow.right { right: 10px; }
}

/* Section Styling */
.cpc-section {
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}

.cpc-section h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #f1c40f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Grid Layout */
.cpc-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card Styling */
.cpc-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(241,196,15,0.3);
  box-shadow: 0 12px 35px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cpc-box:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 45px rgba(241,196,15,0.6);
  background: rgba(255, 255, 255, 0.08);
}

/* Price Tag */
.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #111;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(241,196,15,0.5);
  z-index: 5;
}

/* Image Wrapper */
.cpc-img-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: -1;
}

/* Image */
.cpc-img-wrapper img {
  width: 100%;
  height: auto;  /* keep original aspect ratio */
  object-fit: contain; /* ensures full image is visible */
  transition: transform 0.4s ease;
}

/* Hover zoom */
.cpc-box:hover .cpc-img-wrapper img {
  transform: scale(1.05);
}

/* Title */
.cpc-box h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #f1c40f;
  font-weight: 600;
  min-height: 50px;
}

/* Button */
.cpc-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #111;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(241,196,15,0.4);
}

.cpc-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(241,196,15,0.7);
  background: linear-gradient(135deg, #ffdb4d, #ff9800);
}

/* ✅ Responsive Design */
@media (max-width: 1200px) {
  .cpc-container {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }

  .cpc-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .cpc-container {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }

  .cpc-box h3 {
    font-size: 18px;
  }

  .cpc-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}

@media (max-width: 600px) {
  .cpc-container {
    grid-template-columns: 1fr; /* 1 per row */
  }

  .cpc-section {
    padding: 60px 6%;
  }

  .cpc-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .cpc-box {
    padding: 18px;
  }

  .cpc-box h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .price-tag {
    font-size: 13px;
    padding: 5px 10px;
  }

  .cpc-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}
/* Default hide arrows */
.cpc-arrow {
  display: none;
}

/* Show arrows only on mobile */
@media (max-width: 600px) {
  .cpc-section {
    position: relative; /* so arrows can be placed inside */
  }

  .cpc-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
  }

  .cpc-box {
    flex: 0 0 85%; /* each card takes 85% of screen */
    scroll-snap-align: center;
  }

  /* Arrows Styling */
  .cpc-arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #f1c40f;
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    transition: 0.3s ease;
  }

  .cpc-arrow.left { left: 10px; }
  .cpc-arrow.right { right: 10px; }

  .cpc-arrow:hover {
    background: #f1c40f;
    color: #000;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 15px #f1c40f;
  }
}

/* Why Choose Us Section */
.why-section {
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}

.why-section h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #f1c40f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Grid layout */
.why-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Box styling */
.why-box {
  background: linear-gradient(to top, rgba(241,196,15,0.05), rgba(255,255,255,0.02));
  border-radius: 18px;
  padding: 35px 20px;
  border: 1px solid rgba(241,196,15,0.3);
  box-shadow: 0 12px 35px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.6s ease;
  position: relative;
  overflow: hidden;
}

.why-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 18px 40px rgba(241,196,15,0.6);
  background: linear-gradient(to top, rgba(241,196,15,0.3), rgba(255,255,255,0.1));
}

/* Different increasing gradient for each box */
.why-box:nth-child(1) {
  background: linear-gradient(to top, rgba(241,196,15,0.1), rgba(255,255,255,0.02));
}
.why-box:nth-child(2) {
  background: linear-gradient(to top, rgba(241,196,15,0.2), rgba(255,255,255,0.05));
}
.why-box:nth-child(3) {
  background: linear-gradient(to top, rgba(241,196,15,0.3), rgba(255,255,255,0.07));
}
.why-box:nth-child(4) {
  background: linear-gradient(to top, rgba(241,196,15,0.4), rgba(255,255,255,0.1));
}

/* Icon styling */
.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.6s ease;
}

.why-box:hover .why-icon {
  transform: rotate(360deg);
}

/* Number */
.why-box h3 {
  font-size: 32px;
  color: #f1c40f;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.why-box p {
  font-size: 16px;
  opacity: 0.85;
}


/* ✅ Responsive Design */

/* Large Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .why-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-section h2 {
    font-size: 32px;
  }
  .why-box h3 {
    font-size: 28px;
  }
}

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-section {
    padding: 80px 6%;
  }
  .why-section h2 {
    font-size: 28px;
  }
  .why-box {
    padding: 30px 18px;
  }
  .why-box h3 {
    font-size: 24px;
  }
  .why-box p {
    font-size: 15px;
  }
}

/* Mobiles (max-width: 600px) */
@media (max-width: 600px) {
  .why-container {
    grid-template-columns: 1fr;
  }
  .why-section {
    padding: 60px 5%;
  }
  .why-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .why-box {
    padding: 25px 15px;
  }
  .why-box h3 {
    font-size: 22px;
  }
  .why-box p {
    font-size: 14px;
  }
  .why-icon {
    font-size: 32px;
  }
}

/* FAQ Section */
.faq-section {
  
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #f1c40f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ Box */
.faq-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(241,196,15,0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  overflow: hidden;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #f1c40f;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Answer Box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  padding: 15px 0;
  color: #ddd;
}

/* Active State */
.faq-box.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px;
  border-left:2px solid yellow ;
}

.faq-box.active .faq-icon {
  transform: rotate(45deg);
  color: #f1c40f;
}

    /* Section */
    .section {
      padding: 80px 40px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
      position: relative;
    }

    .section h2 {
      color: #f1c40f;
      margin-bottom: 30px;
      font-size: 2.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 0 15px #f1c40f;
    }

    .section img {
      max-width: 100%;
      height: auto;
      margin: 25px 0;
      border-radius: 15px;
      border: 3px solid #f1c40f;
      box-shadow: 0 0 30px rgba(241, 196, 15, 0.4);
      transition: transform 0.4s ease;
    }

    .section img:hover {
      transform: scale(1.05);
    }

    .section ul {
      list-style: none;
      padding: 0;
      margin-top: 15px;
    }

    .section ul li {
      margin: 10px 0;
      font-size: 1.1rem;
      color: #ddd;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .section ul li:hover {
      color: #f1c40f;
      transform: translateX(10px);
    }

/* Contact Section */
#contact {
  
  padding: 80px 8%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}

#contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #f1c40f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#contact p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* Contact Form */
form {
  max-width: 700px;
  margin: 0 auto;
  
  padding: 25px 30px;
  border-radius: 14px;
  border: 1px solid rgba(241, 196, 15, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease both;
  text-align: left;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

form label {
  display: block;
  margin: 10px 0 5px;
  color: #f1c40f;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: left   ;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: 0.95rem;
  background: #000;
  color: #fff;
  transition: 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #f1c40f;
  box-shadow: 0 0 8px #f1c40f;
}

/* Button */
form button {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #f1c40f, #d4ac0d);
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(241,196,15,0.3);
}

form button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 18px #f1c40f;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  padding: 35px 20px;
  border-top: 2px solid #f1c40f;
  box-shadow: 0 -4px 20px rgba(241, 196, 15, 0.3);
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 30px;
}

footer p {
  margin-bottom: 12px;
  font-size: 15px;
}

footer a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 12px;
  transition: 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-shadow: 0 0 10px #f1c40f;
}

/* Social Icons */
.footer-social {
  margin-top: 18px;
  text-align: center;
}

.footer-social a {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: rgba(241, 196, 15, 0.1);
  border: 1px solid #f1c40f;
  color: #f1c40f;
  font-size: 18px;
  margin: 0 8px;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background: #f1c40f;
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px #f1c40f;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

/* ✅ Responsive Design */

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
  footer p {
    font-size: 14px;
  }
}

/* Mobiles (max-width: 600px) */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  footer {
    padding: 25px 15px;
  }
  footer p {
    font-size: 13px;
  }
  .footer-social {
    margin-top: 12px;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    margin: 0 6px;
  }
}

