body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: lch(0% 0 0);   /* FULL BLACK */
               /* text white */
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Navbar */
.navbar {
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: hsl(0, 0%, 0%);
    display: flex;
    align-items: center;
    z-index: 999;
    justify-content:space-between;
    padding:0 0px;
}

/* Logo Left */
.logo img {
    height: 60px;
}

/* Center Menu */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* underline */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

/* hover effect */
.nav-links a:hover {
    color: #60a5fa;
}

.nav-links a:hover::after {
    width: 100%;
}
.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:white;
display:block;
}

/* ================================
   TERMS & CONDITIONS PAGE
================================ */

/* Hero Section */
.terms-hero {
  text-align: center;
  padding: 120px 20px 60px;
  background: radial-gradient(circle at top, #111, #050505);
}

.terms-hero h1 {
  font-size: 3.2rem;
  color: #60a5fa;
  margin-bottom: 15px;
  text-shadow:
    0 0 10px rgba(96,165,250,0.6),
    0 0 20px rgba(96,165,250,0.3);
}

.terms-hero p {
  color: #aaa;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Main Container */
.terms-container {
  max-width: 1150px;
  margin: auto;
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Individual Section Box */
.terms-box {
  background: #111;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle Glow Hover */
.terms-box:hover {
  transform: translateY(-6px);
  border-color: #60a5fa;
  box-shadow: 0 20px 50px rgba(96,165,250,0.15);
}

/* Section Heading */
.terms-box h2 {
  font-size: 1.5rem;
  color: #60a5fa;
  margin-bottom: 12px;
  position: relative;
}

/* Decorative underline */
.terms-box h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, transparent);
  margin-top: 8px;
  border-radius: 5px;
}

/* Paragraph Text */
.terms-box p {
  color: #ccc;
  line-height: 1.8;
  font-size: 1rem;
}

/* Optional Bullet List Styling */
.terms-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.terms-box ul li {
  margin-bottom: 8px;
  color: #bbb;
}




.site-footer {
  background: radial-gradient(circle at top, #111, #050505);
  padding-top: 80px;
  color: #ccc;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 45px;
  padding: 0 20px 60px;
}

.footer-box h3 {
  color: #60a5fa;
  font-size: 1.9rem;
}

.footer-box h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg,#60a5fa,transparent);
  margin: 10px 0 20px;
}

.footer-box p {
  line-height: 1.7;
  font-size: .95rem;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

/* Footer contact list items ko flex bana do */
.footer-box ul li {
  display: flex;
  align-items: center; /* Ye icon ko vertical center karega */
  gap: 8px; /* Icon aur text ke beech gap */
  margin-bottom: 10px;
  font-size: .95rem;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: .3s;
}

.footer-box ul li a:hover {
  color: #60a5fa;
  padding-left: 6px;
}

.footer-contact i {
  color: #60a5fa;
  margin-right: 8px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #ccc;
  font-size: 1.1rem;
  transition: .35s;
  box-shadow: 0 0 0 transparent;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
  background: #60a5fa;
  box-shadow: 0 0 15px #60a5fa;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 22px;
  font-size: .9rem;
  background: #030303;
}
.footer-logo {
  width: 170px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(96,165,250,.6));
  transition: .3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(96,165,250,1));
}






/* Floating Review Box Styles */
.floating-review-container {
    position: fixed;
    bottom: 20px;
    right: -400px; /* Initially hidden outside screen */
    width: 350px;
    height: 500px;
    background-color: #000000; /* Black Background */
    border: 2px solid #60a5fa; /* Blue Border */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    z-index: 9999;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Jab yeh class lag jaye to box dikhayi de (JS se control hoga) */
.floating-review-container.show-up {
    right: 20px;
}

/* Header Styling */
.review-header {
    background-color: #60a5fa; /* Blue Header */
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #60a5fa;
}

.review-header h3 {
    margin: 0;
    font-size: 16px;
}

.close-review-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Form Styling */
.review-form-body {
    padding: 15px;
    background-color: #111; /* Dark Black */
}

.review-form-body input, 
.review-form-body textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    box-sizing: border-box;
}

.review-form-body button {
    width: 100%;
    padding: 10px;
    background-color: #60a5fa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.review-form-body button:hover {
    background-color: #60a5fa;
}

/* Reviews List Styling */
.reviews-list-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: black; /* White/Light Grey for list */
}

.review-item {
    background: white;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 3px solid #60a5fa;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.review-item .author {
    font-weight: bold;
    color: #60a5fa;
    font-size: 14px;
}

.review-item .text {
    color: #333;
    font-size: 13px;
    margin-top: 4px;
}

/* The Toggle Button (To open box again if closed) */
.toggle-review-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #60a5fa;
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: none; /* Hidden by default, shown via JS */
}