/* ======================= RESET & BASE ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ======================= HEADER ======================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(30, 30, 46, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(255, 107, 157, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: #FF6B9D;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.logo h1 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B9D, #FFA502);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  /* padding: 0.5rem 0; */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #FF6B9D, #FFA502);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 30, 46, 0.98);
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
  /* margin-top: 0.5rem; */
  border: 1px solid rgba(255, 107, 157, 0.2);
   /* Hide by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 1rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-content a:hover {
  background: rgba(255, 107, 157, 0.2);
  padding-left: 1.5rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #FF6B9D;
  border-radius: 3px;
  transition: all 0.3s;
}

/* ======================= SIDE DRAWER ======================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgba(30, 30, 46, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 999;
  padding-top: 2rem;
  border-left: 2px solid rgba(255, 107, 157, 0.3);
}

.side-drawer.open {
  right: 0;
}

.side-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-drawer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-drawer a {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s;
}

.side-drawer a:hover {
  background: rgba(255, 107, 157, 0.2);
  padding-left: 2rem;
}

.side-drawer .submenu {
  padding-left: 1rem;
  background: rgba(0, 0, 0, 0.2);
}


/* /////////////////feedback //////////////////////////////////// */


  .about-container {
      /* max-width: 900px; */
      max-width: 1020px;
      margin: 40px auto;
      /* background: #fff; */
      padding: 30px 40px;
      border-radius: 15px;
      /* box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
      line-height: 1.6;
    }
    .feedback-contact {
      font-size: 20px;
      text-align: center;
    }
    .feedback-contact a{
      color:rgb(247, 183, 29);
      text-decoration: none;
    }


    
    @media (max-width: 600px) {
      .about-container {
        padding: 20px;
      }
      

    }

    /* Feedback Section */
    .feedback {
      margin-top: 50px;
    }

    .feedback h2 {
      text-align: center;
      color: #f39c12;
      margin-bottom: 20px;
    }

    .feedback-form {
      /* background: #fafafa; */
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      background: rgba(30, 30, 46, 0.95);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .feedback-form label {
      font-weight: bold;
      margin-top: 10px;
      display: block;
    }

    .feedback-form input,
    .feedback-form select,
    .feedback-form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    .stars {
      display: flex;
      gap: 5px;
      margin: 10px 0;
    }

    .stars span {
      font-size: 1.5rem;
      cursor: pointer;
      color: #ccc;
    }

    .stars span.active {
      color: #f39c12;
    }

    .feedback-form button {
      background: #f39c12;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
    }

    /* ////////////footer section ////////////////////////// */

     /* ---------------- Footer ---------------- */
    footer {
      background: #222;
      color: #ddd;
      padding: 40px 20px;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      margin-top: 50px;
    }

    .footer-container {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section ul li a {
      text-decoration: none;
      color: #ddd;
      transition: 0.3s;
    }

    .footer-section ul li a:hover {
      color: #4a90e2;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icons a {
      display: inline-block;
      width: 35px;
      height: 35px;
      background: #444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #4a90e2;
    }

    .social-icons img {
      width: 18px;
      height: 18px;
      filter: invert(1);
    }

    .footer-bottom {
      text-align: center;
      padding: 15px;
      margin-top: 20px;
      border-top: 1px solid #444;
      font-size: 0.9rem;
      color: #aaa;
    }

    /* ////////////////////////////////////////////////////////////////////////////// */

   /* star-rating */
     .star-rating {
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    margin: 8px 0 15px;
  }
  .star {
    transition: color 0.2s;
    padding: 3px;
  }
  .star.active {
    color: gold;
  }
   @media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .logo h1 {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }
}
  @media (max-width: 480px) {
  .header {
    padding: 0.875rem 1rem;
  }

  .logo h1 {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }
  }

   /* ======================= THEME STYLES ======================= */

/* 🌞 Light Theme */

body.light-theme .about-container {
  background: #ffffff;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
body.light-theme {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  color: #222;
}

body.light-theme .header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.light-theme .nav-link {
  color: #222;
}

body.light-theme .dropdown-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .dropdown-content a {
  color: #333;
}
body.light-theme .dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* body.light-theme .about-container {
  background: #ffffff;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
} */

/* body.light-theme .update-item, */
body.light-theme .feedback-form
/* body.light-theme .review-card */
 {
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .feedback-form button {
  background: #f39c12;
}

/* body.light-theme .review-card p {
  color: #333;
} */

body.light-theme footer {
  background: #ffffff;
  color: #333;
  border-top: 1px solid #ddd;
}

body.light-theme .footer-bottom {
  border-top: 1px solid #ddd;
}

body.light-theme .footer-container li a{
  color: #676767;
}
body.light-theme .footer-container h3{
  color: #333;
}

/* Side Drawer */
body.light-theme .side-drawer {
  background: rgba(255, 255, 255, 0.97);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .side-drawer a {
  color: #333;
}

body.light-theme .side-drawer a:hover {
  background: rgba(255, 127, 80, 0.1);
}

/* 🌙 Dark Theme */
body.dark-theme {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #ffffff;
}

body.dark-theme .header {
  background: rgba(30, 30, 46, 0.95);
  border-bottom: 2px solid rgba(255, 107, 157, 0.3);
}

 body.dark-theme .about-container, 
/* body.dark-theme .update-item */
body.dark-theme .feedback-form
/* body.dark-theme .review-card */
 {
  background: rgba(30, 30, 46, 0.95);
  color: #fff;
}

body.dark-theme footer {
  background: rgba(30, 30, 46, 0.95);
  color: #fff;
}



.theme-toggle {
  display: flex;
  gap: 0.5rem;
}

.theme-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.theme-btn:hover {
  background: rgba(255,255,255,0.2);
}
body.light-theme .theme-btn {
  color: #333;
  border: 1px solid rgba(0,0,0,0.2);
}

body.light-theme .theme-btn:hover {
  background: rgba(0,0,0,0.05);
}