.py_5{
    padding: 100px 0px 50px;
}
.py_2{
    padding: 0 0 70px 0;
}

.menu_list li a.active, .menu_list li .nav-link.active {
    background: #fff;
    color: #0255b8 !important;
    font-weight: 700 !important;
}
.faq-section img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    max-height: 600px;
    object-fit: cover;
}
.privacy-card ul li {
    list-style: disc;
    margin-bottom: 11px;
}
.refund-card ul li{
       list-style: disc;
    margin-bottom: 11px;
}
.terms-card ul li{
    list-style: disc;
    margin-bottom: 11px;   
}
.wdp-form-box h2 {
    color: #fc5707;
    font-weight: 700;
}
/*Animated button css */
.glow-on-hover {
    width: 150px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #161765;
    left: 0;
    top: 0;
    border-radius: 10px;
}
.heading_about p {
    color: #555;
    text-align: justify;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


/* ========= Header/Navbar CSS Start ========= */

.main_navbar {
    background: #ffffff;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 0;
}
span.text-primary {
    color: #fc5707 !important;
}
.heading_accent_color{
    color: #fc5707 !important;
}
/* Logo */
.main_navbar .header_logo img {
    width: 100%;
    max-width: 250px;
}

/* Desktop Menu */
.main_navbar .menu_items {
    display: flex;
    justify-content: center;
}
.main_navbar .menu_list li a {
    padding: 0px 9px !important;
}
.main_navbar .menu_list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.main_navbar .menu_list li a {
    text-decoration: none;
    font-weight: 500;
    color: #11204e;
    font-size: 15px;
    transition: 0.3s;
}

.main_navbar .menu_list li a:hover {
    color: #0d6efd;
}

/* Social Icons */
.main_navbar .social_icons a {
    color: #11204e;
    font-size: 18px;
    margin-left: 18px;
    transition: 0.3s;
}

.main_navbar .social_icons a:hover {
    color: #0d6efd;
}

/* Mobile Toggle Button */
.main_navbar .mobile-toggle {
    border: none;
    background: none;
    font-size: 32px;
    color: #11204e;
}

/* Mobile Menu */
.main_navbar .mobile_menu {
    display: none;
    background: #ffffff;
    padding: 15px;
    border-top: 1px solid #e3e3e3;
}

.main_navbar .mobile_menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.main_navbar .mobile_menu ul li {
    padding: 10px 0;
}

.main_navbar .mobile_menu ul li a {
    text-decoration: none;
    color: #11204e;
    font-size: 18px;
}

.main_navbar .mobile_social a {
    font-size: 22px;
    margin: 0 10px;
    color: #11204e;
    transition: 0.3s;
}

.main_navbar .mobile_social a:hover {
    color: #0d6efd;
}

/* ========= Header/Navbar CSS End ========= */

section.about_breadcrump_banner {
    padding: 120px 0;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
}







.service_section {
    background: #f8f9fc;
}

/* Service Box */
.service_section .service_box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.06); */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
}

/* Delayed animations for each box */
.service_section .col-lg-3:nth-child(1) .service_box { animation-delay: 0.2s; }
.service_section .col-lg-3:nth-child(2) .service_box { animation-delay: 0.4s; }
.service_section .col-lg-3:nth-child(3) .service_box { animation-delay: 0.6s; }
.service_section .col-lg-3:nth-child(4) .service_box { animation-delay: 0.8s; }

/* Hover Effect */
.service_section .service_box:hover {
   /* transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border: 1px solid #007bff1a; */
}

/* Icon Styling */
.service_section .service_box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.service_section .service_box:hover img {
    transform: scale(1.07);
}

/* Headings */
.service_section .service_box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Paragraph */
.service_section .service_box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Fade-Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================
    RESPONSIVE
============================= */
@media (max-width: 991px) {
    .service_section .service_box {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .service_section .service_box h2 {
        font-size: 18px;
    }
    .service_section .service_box img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575px) {
    .service_section {
        padding: 40px 0;
    }
}



/*---------------------------------------------------------contact us-----------------------------------------------------*/
/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items:center;
}

/* Form */
.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.sub-title {
    color: #555;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #4ee3c1;
    color: #fff;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #3fd3b1;
}

/* Right Info */
.contact-info {
    flex: 1;
}

.contact-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 15px;
}

.contact-info a {
    color: #1aa7a1;
    text-decoration: none;
    font-weight: 500;
}

/* Bottom Details */
.contact-details {
    padding: 40px 0;
    background: #f9f9f9;
}

.details-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.detail-box {
    flex: 1;
}

.detail-box h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.detail-box p,
.detail-box a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .details-wrapper {
        flex-direction: column;
    }
}
/* ================Service Section Css End============  */
/* =====================================================
   PACKAGE SECTION
===================================================== */

.package_section {
    text-align: center;
}

/* Title */
.package_section h2 {
       font-weight: 800;
    margin-bottom: 10px;
    /*opacity: 0;*/
    /*transform: translateY(20px);*/
    /*animation: fadeUp 1s ease-out forwards, gradientFlow 4s ease infinite;*/
    
    /* Gradient Text */
    /*background: linear-gradient(90deg, #142B4F, #A86EF8, #FF7AD9, #142B4F);*/
    background-size: 300% 300%;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
}

/* Fade-up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flowing Gradient Animation */
@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.package_section p {
    font-size: 16px;
    color: #555;
    text-align: center;
}

/* Package Card */
.package_section .package_div {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

/* Delay animation for each card */
.package_section .col-md-4:nth-child(2) .package_div {
    animation-delay: 0.25s;
}

.package_section .col-md-4:nth-child(3) .package_div {
    animation-delay: 0.45s;
}

/* Hover Effect */
.package_section .package_div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image */
.package_section .package_div img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
}

/* Heading */
.package_section .package_div h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Price Line */
.package_section .package_div p span:first-child {
    font-weight: 700;
    color: #333;
}

.package_section .package_div p span:nth-child(2) {
    font-size: 20px;
    font-weight: 700;
    color: #1e90ff;
}

.package_section .package_div p span:nth-child(3) {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

/* List Items */
.package_section .package_div ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.package_section .package_div ul li {
    padding: 8px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
}

.package_section .package_div ul li::before {
    content: "✔";
    margin-right: 8px;
    color: #1e90ff;
    font-weight: bold;
}



/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}


/* Tablet */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
section.services-section {
    background: #f5f5f5;
}
/* Footer section css start */


.payment-wrapper {
    display: flex;
    gap: 30px;
}

/* Form Card */
.payment-form {
    flex: 1.2;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.payment-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #2f54c6;
}

/* Form */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 11px;
    border: 1px solid #dcdfe6;
    border-radius: 5px;
}

/* Rows */
.form-row {
    display: flex;
    gap: 15px;
}

.two-col .form-group {
    flex: 1;
}

.three-col .form-group {
    flex: 1;
}

/* Button */
.pay-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(90deg, #3b6be3, #2f54c6);
    border: none;
    color: #fff;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

/* Right Info */
.payment-info {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.payment-info h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1e3fa9;
}

.payment-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-details {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .payment-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .form-row {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 18px;
    }
}



.payment-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.payment-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.payment-logo {
  max-height: 70px;
  margin-bottom: 20px;
}

.payment-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
}

.payment-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-poynt {
  background-color: #1a8f4b;
}

.btn-poynt:hover {
  background-color: #15753e;
}

.btn-paypal {
  background-color: #0a58ff;
}

.btn-paypal:hover {
  background-color: #084ad6;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ✅ Mobile */
@media (max-width: 576px) {
  .payment-card {
    padding: 30px 20px;
  }

  .payment-card h3 {
    font-size: 20px;
  }

  .btn {
    width: 100%;
  }
}


/* MAIN FOOTER SECTION */
/* ================================
   MAIN FOOTER SECTION
================================ */
.footer_section {
  background: #0e1a3a;
  color: #e4e4e4;
  position: relative;
  overflow: hidden;
  
}

/* ================================
   ANIMATION
================================ */
.footer_section .footer_col {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.footer_section .footer_col:nth-child(2) {
  animation-delay: 0.2s;
}
.footer_section .footer_col:nth-child(3) {
  animation-delay: 0.4s;
}
.footer_section .footer_col:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   LOGO & DESCRIPTION
================================ */
.footer_section .footer_logo img {
  width: 100%;
  margin-bottom: 15px;
  max-width: 250px;
}

.footer_section .footer_logo p {
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}

/* ================================
   HEADINGS
================================ */
.footer_section h4 {
  font-size: 20px;
  margin-bottom: 18px;
  /*color: #ffffff;*/
  position: relative;
  display: inline-block;
}

.footer_section h4::after {
  content: "";
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #142B4F, #A86EF8, #FF7AD9, #142B4F);
  display: block;
  margin-top: 5px;
  border-radius: 3px;
}

/* ================================
   LIST LINKS
================================ */
.footer_section ul {
  padding: 0;
  list-style: none;
}

.footer_section ul li {
  margin: 8px 0;
}

.footer_section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer_section ul li a:hover {
  color: #038ed1;
  padding-left: 5px;
}

/* ================================
   CONTACT INFO + ICONS
================================ */
.footer_section .footer_info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.footer_section .footer_info p i {
  color: #A86EF8;
  font-size: 18px;
  background: #0255b8;
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.footer_section .footer_info p a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    margin-left: 4px;
}

/* Hover Effect */
.footer_section .footer_info p:hover i {
  background: #A86EF8;
  color: #038ed1;
  transform: scale(1.15);
}

.footer_section .footer_info p:hover a {
  color: #038ed1;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .footer_section .footer_row {
    text-align: center;
  }
  .footer_section h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .footer_section {
    padding: 40px 0;
  }
  .footer_section .footer_col {
    /*margin-bottom: 30px;*/
  }

  .footer_section .footer_info p {
    justify-content: center;
  }
}

.overview-section p {
    text-align: justify;
}

/*----------------------------animation-------------------------------------------------*/

/* Initial Hidden State */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s ease;
}

/* Left Content Animation */
.reveal-left {
    transform: translateX(-80px);
}

/* Right Image Animation */
.reveal-right {
    transform: translateX(80px);
}

/* Visible State */
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Optional Hero Styling */
.hero-modern {
    overflow: hidden;
}

/* Mobile Responsive Animation */
@media (max-width: 991px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(50px);
    }

    .reveal-left.active,
    .reveal-right.active {
        transform: translateY(0);
    }
}


/*---------------------------------second animation-------------------------------------*/
/* Common Animation Section */
.service_scroll_animation {
    overflow: hidden;
}

/* Heading Initial State */
.service_scroll_animation .service_heading_animation {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Heading Visible State */
.service_scroll_animation .service_heading_animation.heading-show {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards + Package Cards Initial State */
.service_scroll_animation .row > .col-lg-3,
.service_scroll_animation .row > .col-lg-4 {
    opacity: 0;
    transform: translateY(75px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    margin-bottom: 28px;
}

/* Cards Visible State */
.service_scroll_animation .row > .col-lg-3.service-animate-show,
.service_scroll_animation .row > .col-lg-4.service-animate-show {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 991px) {
    .service_scroll_animation .row > .col-lg-3,
    .service_scroll_animation .row > .col-lg-4 {
        transform: translateY(55px);
    }

    .service_scroll_animation .row > .col-lg-3.service-animate-show,
    .service_scroll_animation .row > .col-lg-4.service-animate-show {
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .service_scroll_animation .row > .col-lg-3,
    .service_scroll_animation .row > .col-lg-4 {
        transform: translateY(40px);
    }

    .service_scroll_animation .row > .col-lg-3.service-animate-show,
    .service_scroll_animation .row > .col-lg-4.service-animate-show {
        transform: translateY(0);
    }
}