



/* Toast Notification Styling */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745; /* Default: Green for success */
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 350px;
    display: flex;
    justify-content: space-between;     
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Error Message Style */
.toast-notification.error {
    background: #dc3545; /* Red for error */
}

/* Close Button */
.close-toast {
    margin-left: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}





/* ====== BUTTON STYLES ====== */
.custom-login {
    background-color: #000;
    color: white;
    border: 1px solid #000;
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.custom-login:hover {
    background-color: #333 !important;
}

.custom-signup {
    border-radius: 10px;
}

/* ====== FORM STYLES ====== */
@media (max-width: 768px) {
    form {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-input {
        width: 100% !important;
    }

    .custom-btn {
        width: 100%;
    }
}

/* Input Styling */
.custom-input {
    width: 250px !important;
    border: 1px solid white !important;
    border-radius: 5px;
    height: 45px !important;
    padding: 5px;
}

/* ====== HERO SECTION STYLES ====== */
.hero-section {
    padding: 50px 20px;
    text-align: left;
}

.hero-title {
    font-size: 40px;
    font-weight: bold;
    color: #D3FF19; /* Yellow Text */
}

.hero-text {
    color: #F1F1F1;
    font-size: 16px;
    max-width: 500px;
}

/* Mockup Image */
.mockup {
    max-width: 350px;
    border-radius: 15px;
}

/* ====== BUTTON HOVER EFFECTS ====== */
.custom-btn {
    height: 45px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}

.custom-btn:hover {
    background-color: #0056b3;
    box-shadow: 2px 2px 15px rgba(0, 86, 179, 0.4);
}




/* .hero,*/
/*.hero_2,*/
/*.hero_3 {*/
/*    height: 100vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: left;*/
/*    font-weight: bold;*/
/*    font-family: Verdana, Geneva, Tahoma, sans-serif;*/
/*    padding: 50px 0;*/
/*}*/

/*.hero {*/
/*    background-color: #ccb4dc;*/
/*    color: rgb(67, 8, 112);*/
/*}*/

/*.hero_2 {*/
/*    background-color: #591218;*/
/*    color: rgb(159, 107, 163);*/
/*}*/

/*.hero_3 {*/
/*    background-color: white;*/
/*    color: rgb(5, 6, 26);*/
/*}*/


/*.hero img,*/
/*.hero_2 img,*/
/*.hero_3 img {*/
/*    max-width: 80%;*/
/*    height: auto;*/
/*    border-radius: 10px;*/
/*}*/


/*.hero_btn,*/
/*.hero_2_btn,*/
/*.hero_3_btn {*/
/*    background-color: rgb(49, 6, 89);*/
/*    border: none;*/
/*    width: 100%;*/
/*    max-width: 300px;*/
/*    padding: 15px;*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*    border-radius: 60px;*/
/*}*/

/* Mobile Adjustments */
/*@media (max-width: 768px) {*/

/*    .hero,*/
/*    .hero_2,*/
/*    .hero_3 {*/
/*        text-align: center;*/
/*    }*/

/*    .get_st_btn,*/
/*    .hero_2_btn,*/
/*    .hero_3_btn {*/
/*        width: 80%;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/

/*    .hero h1,*/
/*    .hero_3 h1 {*/
/*        margin-top: 20px;*/

/*    }*/

/*    .hero_2 img {*/
/*        margin-top: 20px;*/
/*    }*/

/*    .claim_btn {*/
/*        margin-top: 20px;*/
/*    }*/

/*    .get_str {*/

/*        margin-top: 20px;*/
/*    }*/


/*}*/



.heading_1 {
    font-size: 50px;
    text-align: center;
    display: flex;
    justify-content: center;

}


/* Container Styling */
.image-slider-container {
    width: 100%;
    white-space: nowrap;
    position: relative;
}

/* Image Wrapper */
.image-slider {
    display: flex;
    gap: 25px;
    animation: moveLeft 25s linear infinite;
}

.image-slider img {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
}

/* Keyframes for continuous sliding effect */
@keyframes moveLeft {
    0% {
        transform: translateX(0);
        /* Starts from the first image */
    }

    100% {
        transform: translateX(-200%);
        /* Moves 50% of the images (half of the set) */
    }
}
/* Section Heading */
.btn_2 {
  font-size: 1.5rem;
  color: #430870; /* matches hero style */
}

.btn-custom {
  background-color: rgb(67, 8, 112);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #6a3671;
  transform: translateY(-2px);
}

/* Featured Section */
.featured-section {
  padding: 40px 0;
}

.card-group {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.plan-card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
}

.plan-card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.plan-card .card-body {
  background: #ffffff;
  padding: 20px;
}

.plan-card p {
  font-size: 1rem;
  color: #333;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .btn_2 {
    font-size: 1rem;
  }

  .card-group {
    flex-direction: column;
    gap: 20px;
  }

  .plan-card {
    max-width: 100%;
  }
}

.btn_2 {
    font-size: 40px;
    text-align: center;
}

.btn-custom {
    display: block;
    margin: 20px auto;

    background-color: #eb8de3;

    color: black;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    font-weight: bolder;
}


.brand_card {
    background-color: #f3f3f3;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 15px;
    margin: 15px;
}

.carousel-inner {
    text-align: center;
}

.carousel-item-home img {
    max-width: 50%;
    height: auto;
    border-radius: 200px;
}

.carousel-caption {
    position: static;
    color: #333;
    margin-top: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
}

.carousel-prev,
.carousel-next {
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: auto;
    bottom: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: white;
    padding: 10px;
    border-radius: 10%;
}

.faq-section {
    background-color: #595067;
    padding: 80px 20px;

}

.faq-container {
    max-width: 900px;
    width: 100%;
    padding: 30px;
    margin: auto;
}

.accordion-button {
    font-weight: bold;
    padding: 10px;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;


}

.accordion-button:focus {
    box-shadow: none;

}

.accordion-button:hover {
    background-color: #0092a9;
}

.accordion-item {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    /*padding: 10px;*/
    background-color: #fff;
    color: rgb(8, 8, 8);
    border: none;
    border: 1px solid black;
}


.accordion-header {
    background-color: white;
}

.accordion-body {
    font-family: 'Times New Roman', Times, serif;
}





  /* HERO SECTION STYLES */
.services-head-hero {
  background: linear-gradient(135deg, #063654, #0b5e8e);
  color: #fff;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 50px;
}

.services-head-hero-title {
  font-family: 'Times New Roman', serif;
  font-size: clamp(28px, 6vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-head-hero-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-head-hero-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.services-head-hero-input {
  max-width: 350px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  flex: 1 1 auto;
  min-width: 200px;
  border:0px;
}

.services-head-hero-btn {
  background: linear-gradient(90deg, #0d6efd, #66b2ff);
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-head-hero-btn:hover {
  background: linear-gradient(90deg, #0b5ed7, #4ca6ff);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  color: #fff;
  border: 2px solid #fff; /* Keep border white on hover */
}


.services-head-breadcrumb {
  margin-top: 20px;
}

.services-head-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  margin: 0 5px;
}

.services-head-breadcrumb span {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-head-hero {
    padding-top: 120px;
  }
  .services-head-hero-form {
    flex-direction: column;
    align-items: stretch;
  }
  .services-head-hero-input {
    width: 100%;
  }
  .services-head-hero-btn {
    width: 100%;
  }
}
