
     :root {
      --accent: #9c5c1c;
      --accent-light: #f3e58d;
      --dark: #0d1b25;
      --gold-dark: #9c5c1c;
      --gold-light: #f3e58d;
      --black: #000000;
      --white: #ffffff;
      --text: #222222;
    }
    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    /* ===== Top Header ===== */
   .top-header{
    background-color: rgba(0, 0, 0, 0.9);
    color:white;
    font-size:15px;
   }
   .header1 .social-icons{
    margin-left: 40%;
   margin-top: 15px;
}
@media screen  and (max-width: 768px){
  .header1 .social-icons{
    margin-left: 0%;
    margin-bottom: 10px;
    margin-top: 0px;
}
.top-text{
  text-align: center;
}
}
/* Social Icons */

.top-text{
  font-size: 15px;
  color: white;
}
.header1 .social-icons a {
  display: inline-block;
  margin-right: 12px;
 background: black;
 border: 2px solid white;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: 0.3s ease;
}

.header1 .social-icons a:hover {
 background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  color: black;
  border: 2px solid white;
  box-shadow: 0px 0px 10px 0px white;
  transform: translateY(-4px);
}
/* first header end */
    /* ===== Header with Video ===== */
    /* ===== Header with Background Image ===== */
header {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: white;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), 
              url('../images/terms.png') center/cover;
  color: white;
}
/* ===== Header Heading & Paragraph Styling ===== */
header h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: #f3e58d;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

header p {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* To vertically center heading and paragraph below navbar */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px; /* 👈 150 se 20px kam kar diya */
  text-align: center;
}


@media (max-width: 768px) {
  header h2 {
    font-size: 30px;
  }
  header p {
    font-size: 16px;
    padding: 0 20px;
  }
  header {
    padding-top: 180px;
  }
}
header h2, header p {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}
header p {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* ===== Navbar ===== */
    .navwrap {
      position: absolute; top: 40px; left: 0; right: 0;
      z-index: 4; display: flex; justify-content: center;
      pointer-events: none;
    }
    nav.site-nav {
      pointer-events: all; width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 26px; border-radius: 6px;
      background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.06));
      transition: all 0.3s ease;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand .mark {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: #081018; font-weight: 700; font-size: 18px;
    }
    .brand .name { color: var(--accent); font-weight: 700; font-size: 20px; }
    .navlinks { display: flex; align-items: center; gap: 8px; list-style: none; }
    .navlinks a {
      color: rgba(255,255,255,.95); text-decoration: none;
      padding: 10px 14px; border-radius: 6px; font-weight: 600; transition: all .25s ease;
    }
    .navlinks .active a {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .navlinks a:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .cta {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid var(--accent);
      padding: 8px 18px;
      background: transparent; color: #fff;
      font-weight: 700; text-decoration: none; transition: all .3s ease;
    }
    .cta:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018; border-color: transparent;
    }

    /* ===== Hamburger ===== */
    .hamburger { display: none; width: 42px; height: 40px;
      background: transparent; border: none; cursor: pointer;
      align-items: center; justify-content: center; z-index: 1001;
    }
    .hamburger .bar { width: 26px; height: 3px; background: #fff; border-radius: 2px; position: relative; transition: all .3s; }
    .hamburger .bar::before, .hamburger .bar::after {
      content:""; position:absolute; width:100%; height:3px; background:#fff; border-radius:2px; transition: all .3s;
    }
    .hamburger .bar::before { top:-8px; } .hamburger .bar::after { top:8px; }
    .hamburger.active .bar { background:transparent; }
    .hamburger.active .bar::before { transform: rotate(45deg) translate(5px,5px); background: var(--accent); }
    .hamburger.active .bar::after { transform: rotate(-45deg) translate(5px,-5px); background: var(--accent); }

    @media (max-width:900px){
      .navlinks { position: fixed; top:-100%; left:0; width:100%; background: rgba(13,27,37,0.98);
        flex-direction: column; align-items:center; gap:25px; padding:100px 0 40px; transition: top .4s ease;
      }
      .navlinks.active { top:0; }
      .cta { display:none; }
      .hamburger { display:flex; }
    }

    /* Heading from top */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text and button from bottom */
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* Button with animated border effect */
   @media only screen and (max-width: 768px) {
 

  header {
    height: 600px;
  }

}

.button_effect {
  position: relative;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
}

/* Top-left corner */
.button_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #9c5c1c;
  border-left: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Bottom-right corner */
.button_effect::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #9c5c1c;
  border-right: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Hover – smoothly expand both borders to full box */
.button_effect:hover::before,
.button_effect:hover::after {
  width: 100%;
  height: 100%;
}
/* terms and conditions */
 .conditions h1, h2, h3 {
      color: #9c5c1c;
      font-weight: 600;
    }
   
    .container {
      max-width: 900px;
    }
    .section-title-conditions {
      border-left: 5px solid #9c5c1c;
      padding-left: 15px;
      margin-bottom: 25px;
    }