/* Reset and setup */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important; /* only hides horizontal overflow */
    font-family: sans-serif;
    background-color: #150a2e
 !important;
    scroll-behavior: smooth;
   
  }
  .header-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 45px 20px;
    /* background: url('/img/backgroung_img1.png') no-repeat center center; */
    background-size: cover;
  }

.navbar-custom {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 1.2rem;
}

.navbar-custom a {
  position: relative;
  padding-bottom: 5px;
  color: white;
  text-decoration: none;
   transition: color 0.2s ease-in-out; 
}

.navbar-custom a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ffc107;
  /* transition: 0.3s ease; */
}

/* Hover effect */
.navbar-custom a:hover {
  color: #ffc107;
}

.navbar-custom a:hover::after {
  width: 100%;
}

/* Active link style */
.navbar-custom a.active {
  color: #ffc107;
}

.navbar-custom a.active::after {
  width: 100%;
}


    .angel-section, .message-section {
      /* background-color: #170A36 !; */
      padding: 80px 20px;
      display: none;
    }

    .angel-section.active {
      display: block;
    }

   
     .icon-circle {
  width: 90px !important;
  height: 90px !important;
   background: linear-gradient(to right, #3c32a8, #622fb9);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem !important;
 
  color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

    .icon-circle i {
      font-size: 35px;
      color: white;
    }

    .angel-heading {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
    }

    .angel-subtext {
      font-size: 16px;
      color: #ccc;
      margin-bottom: 40px;
    }

    .angel-cards {
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      margin-bottom: 40px !important;
      margin-top: 50px !important;
    }

    .angel-cards img {
      width: 200px;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .angel-cards img:hover {
      transform: scale(1.05);
    }

    /* ============== */
/* =================== */
    .journey-button {
       background: linear-gradient(to right, #4338CA, #7C3AED);
  color: white !important;
      border: none;
      padding: 12px 50px;
      text-decoration: none;
  font-weight: 500;
      font-size: 17px;
      border-radius: 30px;
      transition: all 0.3s ease;
    }
     

    .journey-button:hover {
      opacity: 0.9;
    }

    .back-link {
      margin-top: 30px;
      display: inline-block;
      color: #ccc;
      text-decoration: none;
      font-size: 16px;
    }

    .back-link i {
      margin-right: 5px;
    }

    .message-section h2 {
      font-size: 30px;
      margin-bottom: 60px;
      color: white;
    }

    .dots {
      margin-top: 20px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 4px;
      background-color: #aaa;
      border-radius: 50%;
      display: inline-block;
      animation: pulse 1.4s infinite ease-in-out both;
    }

    .dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes pulse {
      0%, 80%, 100% {
        transform: scale(0);
      }
      40% {
        transform: scale(1);
      }
    }

    .angel-message {
      display: none;
      font-size: 18px;
      color: #f8f8f8;
      margin-top: 20px;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }
    .message-section {
  padding: 80px 20px !important;
  display: none; /* hidden by default */
  
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 40, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: linear-gradient(to bottom, #0e0e24, #111132);
  padding: 40px 30px;
  border-radius: 20px;
  color: #ffffff;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff !important;
}

.modal-content p {
  font-size: 1rem;
  color: #ddddff;
  margin-top: 10px;
}

.insight-box {
    background: linear-gradient(to right, #3c32a8, #622fb9);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 20px 0;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.book-now-btn{
     background: linear-gradient(to right, #4338CA, #7C3AED) !important;
      /* background: linear-gradient(to right, #6a5acd, #8a2be2); */

      border: none;
      color: white !important;
      padding: 10px 30px !important;
      border-radius: 15px !important; 
}

.btn-primary {
  background-color: #7c5fff;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(124, 95, 255, 0.4);
}

.btn-primary:hover {
  background-color: #624ad8;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #aaa;
  transition: color 0.2s;
}

.close-btn:hover {
  color: white;
}
/* =========== */
.angel-message-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.angel-message-box {
     background: linear-gradient(to right, #3c32a8, #622fb9);
  border-radius: 12px;
  padding: 15px 25px !important;
  color: white;
  margin-left: 90px !important;
  width: 500px !important;
  /* max-width: 500px; */
  width: 90%; /* Ensure responsiveness */
  font-size: 18px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.angel-message-display .icon-circle {
  background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(255,255,255,0));
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.angel-message-display h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}



.btn-purple {
  background-color: #4d3cc1 !important;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(77, 60, 193, 0.4);
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background-color: #3b2ca7;
}

.btn-grey {
  background-color: #44425b !important;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.btn-grey:hover {
  background-color: #333144;
}
.angel-message-display .journey-button {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 10px;
  color: white;
}

.angel-message-display .journey-button:first-child {
  background: linear-gradient(135deg, #5a42f5, #8b67ff);
}

.angel-message-display #revealBtn {
  background: #888;
}
.crystal-subtitle1 {
  font-size: 1.25rem;
  color: #ccccff;
  margin-bottom: 20px !important;
}
/* ================mobile view section code====== */
/* =========== mobile view part of the section====== */
.mobile-menu-toggler {
  display: none !important;
  position: absolute !important;
  top: 25px;
  right: 25px;
  font-size: 26px;
  color: rgb(214, 210, 210);
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 768px) {
      .mobile-hide-br {
    display: none !important;
  }
  .mobile-menu-toggler {
    display: block !important;
     position: absolute !important;
  }
   .header-section {
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px !important;
     background-color: #150a2e
 !important;
    /* background: url('/img/backgroung_img3.png') no-repeat center center; */
    background-size: cover;
  }
.navbar-custom a::after {
  display: none !important;
  text-decoration: underline !important;
}
  .navbar-custom {
    flex-direction: column;
    text-align: left !important;
    gap: 5px;
    padding: 10px 0;
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    display: none;
    z-index: 1000;
    background: none; /* No background */
    backdrop-filter: none;
    background-color: #1E1B4B !important;
  }

  .navbar-custom.active {
    display: flex;
  }

  .navbar-custom a {
    font-size: 1rem; /* Smaller font size */
    padding: 6px 18px;
    
  }
  .angel-section {
    padding: 60px 15px;
  }

  .icon-circle {
    width: 70px !important;
    height: 70px !important;
    font-size: 1.8rem !important;
  }

  .angel-heading {
    font-size: 1.8rem !important;
    padding-top: 5px !important;
  }

  .crystal-subtitle1 {
    font-size: 0.95rem !important;
    line-height: 1.5;
    text-align: center !important;
  }

  .journey-button {
    font-size: 0.95rem !important;
    padding: 8px 25px !important;
    border-radius: 12px !important;
     margin-top: 10px !important;
  margin-bottom: 15px !important;
  }

  .back-link {
    margin-top: 15px;
  }

  .back-link a {
    font-size: 0.9rem;
  }
    .angel-cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin: 30px 0 30px;
    }

    .angel-cards img {
      width: 180px !important;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
      .angel-section, .message-section {
      /* background-color: #170A36 !; */
      padding: 40px 20px 20px !important;
      display: none;
    }
     .message-section h2 {
      font-size: 1.15rem !important;
      margin-bottom: 20px;
      color: white;

    }
      .angel-cards {
    flex-direction: column;
    align-items: center;
  }

  .angel-card.selected {
    transform: scale(1.1);
  }
   
}   
/*================== 3)angel content dispalyed section=============== */
@media (max-width: 768px) {
.angel-message-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px ;
}

.angel-message-box {
     background: linear-gradient(to right, #3c32a8, #622fb9);
  border-radius: 12px;
  padding: 15px 15px 10px !important;
  color: white;
  margin-left: 20px !important;
  margin-right: 20px !important;
  width: 320px !important;
  /* max-width: 500px; */
  width: 90%; /* Ensure responsiveness */
  font-size: 18px;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.angel-message-display .icon-circle {
  background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(255,255,255,0));
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.angel-message-display h2 {
  color: white;
  font-size: 1.6rem !important;
  margin-bottom: 20px;
}
#angelMessage{
  font-size: 0.99rem !important;
}
.btn-section{
  display: flex;
  flex-direction: row !important;
  /* padding-left: 10px !important; */
}
 .btn-purple {
  background-color: #4d3cc1 !important;
  color: white;
  border: none;
  padding: 10px 15px !important;
  border-radius: 8px;
  font-size: 0.95rem !important;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(77, 60, 193, 0.4);
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background-color: #3b2ca7;
}

.btn-grey {
  background-color: #44425b !important;
  color: white;
  border: none;
  padding: 10px 15px !important;
  border-radius: 8px;
  font-size: 0.95rem !important;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.btn-grey:hover {
  background-color: #333144;
}
.angel-message-display .journey-button {
  padding: 10px 10px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 10px;
  color: white;
}
}
/* =========4)footer section======= */
/* ====== last section====== */
@media (max-width: 768px) {
  .modal-content {
    padding: 25px 20px;
    max-width: 95%;
    width: 95%;
    font-size: 0.9rem;
    overflow-y: auto;
    max-height: 80vh;
  }

  .modal-content h3 {
    font-size: 1.5rem;
  }

  .modal-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    
  }

  .insight-box {
    font-size: 0.9rem;
    padding: 12px 15px;
      margin: 10px 0 !important;
  }

  .btn-primary,
  .book-now-btn {
    font-size: 0.95rem !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
  }

  .close-btn {
    font-size: 22px;
    top: 10px;
    right: 15px;
  }

  .icon-circle.purple {
    margin-bottom: 15px;
  }
  .test-para{
    margin: 10px 0;
  }
}

