/*    .menu-toggle {
      position: fixed;
      top: 30px;
      right: 40px;
      background: #ff7a00;
      color: #fff;
      border: none;
      font-size: 18px;
      padding: 12px 25px;
      border-radius: 50px;
      cursor: pointer;
      z-index: 1001;
      transition: all 0.4s ease;
    }

    .menu-toggle:hover {
      background: #e86e00;
      transform: scale(1.05);
    }

    .menu-overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, #ff7a00, #ffb300);
      color: white;
      z-index: 1000;
      clip-path: circle(0% at 90% 10%);
      transition: clip-path 1s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .menu-overlay.active {
      right: 0;
      clip-path: circle(150% at 90% 10%);
    }

    .menu-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 80%;
      max-width: 1100px;
    }

    .menu-items {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .menu-items a {
      color: white;
      text-decoration: none;
      font-size: 2rem;
      font-weight: 500;
      position: relative;
      transition: all 0.3s ease;
    }

    .menu-items a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background: white;
      transition: width 0.3s ease;
    }

    .menu-items a:hover::after {
      width: 100%;
    }

    .menu-info {
      text-align: right;
      font-size: 1rem;
      line-height: 1.8;
    }

    .menu-image {
      margin-top: 40px;
      width: 200px;
      border-radius: 20px;
    }

    @media (max-width: 768px) {
      .menu-content {
        flex-direction: column;
        text-align: center;
      }
      .menu-info {
        text-align: center;
        margin-top: 30px;
      }
    }*/


/* === MENU TOGGLE BUTTON === */
.menu-toggle {
  position: fixed;
  top: 30px;
  right: 40px;
  background: linear-gradient(135deg, #ff7a00, #ffb300);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,122,0,0.6);
}

/* === OVERLAY CONTAINER === */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;!;!importan;!i;!;
  height: 100vh;
  background: radial-gradient(circle at top right, #ff9a00, #ff6200, #d84700);
  overflow: hidden;
  color: white;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  border-radius: 0px 0px 0px 330px;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  animation: slideFadeIn 0.8s ease forwards;
}

/* background glow circles */
.menu-overlay::before,
.menu-overlay::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  z-index: 0;
  animation: floatGlow 6s infinite alternate ease-in-out;
}

.menu-overlay::before {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
}

.menu-overlay::after {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -60px;
}

/* === CONTENT WRAPPER === */
.menu-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  max-width: 1200px;
  animation: fadeUp 1s ease;
}

/* === MENU LINKS === */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  transform: translateX(-50px);
  opacity: 0;
  animation: fadeInLeft 0.8s forwards 0.4s;
}

.menu-items a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.menu-items a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.menu-items a:hover::after {
  width: 100%;
}
.menu-items a:hover {
  color: #ffde8b;
}

/* === INFO SECTION === */
.menu-info {
  text-align: right;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.6s;
}

/* === MUNSHI JI IMAGE === */
.menu-image {
      height: 90vh;
    width: auto;
  margin-top: 20px;
/*  transform: translateY(60px) rotate(5deg);
  animation: floatImage 5s ease-in-out infinite alternate;*/
}

/* === ANIMATIONS === */
@keyframes slideFadeIn {
  from {clip-path: circle(0% at 90% 10%);}
  to {clip-path: circle(150% at 50% 50%);}
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-50px);}
  to {opacity: 1; transform: translateX(0);}
}
@keyframes floatGlow {
  from {transform: translateY(0);}
  to {transform: translateY(40px);}
}
@keyframes floatImage {
  from {transform: translateY(0px) rotate(5deg);}
  to {transform: translateY(-20px) rotate(-5deg);}
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .menu-content {
    flex-direction: column;
    text-align: center;
  }
  .menu-info {
    text-align: center;
    margin-top: 25px;
  }
}
/* ==== CONTACT INFO CARD ==== */
.contact-card {
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  width: 250px;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.6s;
}

.contact-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-item i {
  font-size: 1.2rem;
  color: #ffd58a;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  color: #ffde8b;
  transform: translateX(5px);
}

.contact-item:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* ==== SOCIAL ICONS ==== */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #ff7a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.4);
}



/* ==== HEADER ==== */
#main-header {
    width: 100%;
    font-family: sans-serif;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    z-index: 999;
}

/* ==== FLOATING ROUND LOGO ==== */
#logo-round-wrapper {
  position: fixed;   /* ðŸ‘ˆ ye floating karega */
  top: 10px;
  left: 10%;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: all 0.7s ease;
  z-index: 99;
  width: 130px;
}

#logo-round {
  position: relative;
  width: 160px;
  height: 160px;
}

#logo-round img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 2000;
}

.circular-text {
  width: 130px;
  height: 130px;
  transform-origin: center;
  z-index: 1990 !important;
}

/* ==== NAV MENU ==== */
.nav-menu ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.nav-menu ul li a:hover {
  color: #007bff;
}

/* ==== MOBILE ==== */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 65px;
    right: 0;
    width: 220px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu ul {
    flex-direction: column;
    padding: 15px;
    gap: 12px;
  }
}