.nav-link {
    color: white !important; /* Default color for links */
}

.nav-link.active {
    color: black !important; /* Change active link color to black */
    font-weight: bold;       /* Optional: make the active link bold */
}


.landing{
    width: 100%;
    height: 110vh;
    background-image: url("../images/bg_homepage.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hover-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-card:hover {
    transform: scale(1.08);
    box-shadow: 0px 0px 10px 2px #5a5a5a;
  }

.feature-card {
    border: none;
    padding: 20px;
    border-radius: 8px;
    background-color: #e8eaf6; /* Light blue background */
    text-align: center;
}
.feature-card img {
    max-width: 50px;
    margin-bottom: 15px;
}
.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-description {
    font-size: 0.9rem;
    color: #333;
}

.image-container {
    position: absolute; /* Allow images to float */
    top: 7%; /* Adjust this value as needed to place the images */
    right: 11em; /* Adjust this value for positioning */
    display: flex; /* Flex container for vertical alignment */
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images */
    max-width: 100px; /* Set a max width for images */
    height: auto; /* Maintain aspect ratio */
    margin: 5px -45px; /* Space between images */
}

.card {
    height: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
                rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.custom-col {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    flex-direction: column;
  }
  
  /* For mobile (less than 576px) */
  @media (max-width: 575.98px) {
    .custom-col {
      flex: 0 0 100%; /* Full width on mobile */
      max-width: 100%;
    }
  }

  .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Adjust based on the height of the Premium card */
}
/* Responsive adjustments */
@media (max-width: 767.98px) {
    .card-body {
        min-height: auto; /* Allow cards to shrink on smaller devices */
    }
}
  

.image-container-two{
    position: absolute; /* Allow images to float */
    top: 10%; /* Adjust this value as needed to place the images */
    right: -1em; /* Adjust this value for positioning */
    display: flex; /* Flex container for vertical alignment */
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images */
    max-width: 100px; /* Set a max width for images */
    height: auto; /* Maintain aspect ratio */
    margin: 17px 24px; /* Space between images */
}


.mobile-logo, .playstore-logo {
    max-width: 450px; /* Example size for mobile */
}

@media (max-width: 1200px) {
    .mobile-logo, .playstore-logo {
        max-width: 100%; /* Full width for small screens */
    }
}

.bg-logo {
    max-width: 100%; /* Adjust as necessary */
    opacity: 0.1; /* Make it semi-transparent */
    position: absolute; /* Position it absolutely */
    z-index: 1; /* Behind other elements */
    top: 50%; /* Center it vertically */
    left: -2%; /* Center it horizontally */
    transform: translate(-50%, -50%); /* Centering the element */
}

.text-section {
    z-index: 2; /* Bring text in front */
    position: relative; /* Ensure it stays in place */
}

.mobile-logo,
.playstore-logo {
    z-index: 3; /* Bring images in front */
}

.container {
    position: relative; /* For absolute positioning of background logo */
    overflow: hidden; /* Hide overflow */
}

/* CSS OF PLAN IN MOBILE */
.plan {
  border-radius: 16px;
  padding: 10px;
  background-color: #fff;
  color: #697e91;
  max-width: 300px;
  display: none;
}

.plan strong {
  font-weight: 600;
  color: #425275;
}

.plan .inner {
  align-items: center;
  padding: 20px;
  padding-top: 40px;
  background-color: #ecf0ff;
  border-radius: 12px;
  position: relative;
}

.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #bed6fb;
  border-radius: 24px 16px 0 24px;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #425475;
}

.plan .pricing small {
  color: #707a91;
  font-size: 0.75em;
  margin-left: 0.25em;
}

.plan .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #425675;
}

.plan .title + * {
  margin-top: 0.75rem;
}

.plan .info + * {
  margin-top: 1rem;
}

.plan .features {
  display: flex;
  flex-direction: column;
}

.plan .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan .features li + * {
  margin-top: 0.75rem;
}

.plan .features .fa {
  color: #1FCAC5;
  background-color: white;
}

.plan .features .icon svg {
  width: 14px;
  height: 14px;
}

.plan .features + * {
  margin-top: 1.25rem;
}

.plan .action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.plan .button {
  background-color: #6558d3;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0.625em 0.75em;
  text-decoration: none;
}

.plan .button:hover, .plan .button:focus {
  background-color: #4133B7;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .carousel-indicators,
    .our-pricing-title {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .bg-logo {
        max-width: 100%;
        
    }

    .mobile-logo {
        max-width: 70%;
    }

    .text-section p {
        font-size: 1.25rem;
    }

    #subscriptions {
        display: none;
    }

    .plan {
        display: block;
    }
}

@media (max-width: 576px) {
    .bg-logo {
        max-width: 100%;
        opacity: 0.2;
    }

    .mobile-logo {
        max-width: 70%;
    }

    .text-section p {
        font-size: 1rem;
    }
}

/* More specific button styles */
#custom-btn {
    background-color: #a594f9 !important; /* Ensure background color is applied */
    color: white !important;              /* Ensure text color is white */
    border: none;                         /* Remove border */
    padding: 10px 20px;                   /* Padding inside button */
    border-radius: 5px;                   /* Rounded corners */
    display: inline-flex;                 /* Flex to align text and image */
    align-items: center;                  /* Vertical alignment of text and image */
    text-decoration: none !important;     /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Hover state */
#custom-btn:hover {
    background-color: #755cf3!important; /* Hover color */
    color: #ffffff !important;            /* Hover text color */
}

/* Image alignment */
#custom-btn .playstore-logo {
    margin-left: 10px;  /* Space between text and image */
    max-width: 30px;    /* Adjust image size */
    height: auto;
}


/* .img-bg{
    background-image: url(/images/LogoAurelion.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 500px;
    opacity: 0.2;
    margin: -10rem;
} */

.max-height{
    height: 80vh;
}

.btn-primary {
    background-color: #ff5722; /* Change this to your desired color */
    border-color: #ff5722; /* Ensure the border matches */
}

.btn-primary:hover {
    background-color: #e64a19; /* Adjust the hover color */
    border-color: #e64a19;
}


/* .playstore-logo{
    margin: -7rem 5.5rem;
    position: absolute;
    width: 10rem;
    height: 5rem;
} */

.carousel{
    width: 100%;
}

.first-card{
    width: 100px;
}

body {
    margin-top:20px;
}
/*========================
=====Pricing Table CSS====
=========================*/

#pricing-tables {
    overflow: hidden;
	margin-bottom:25px;
}

.pricing-table-one {
	margin-top:1rem;
}

.single-table {
	background-color: #fafafa;
}

.single-table h2 {
	background-color: #f2f2f2;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.price {
	font-size: 14px;
	background-color: #dedede;	
	padding:9px 23px;
	margin-bottom: 0;
}

.price span {
	font-size: 24px;
	font-weight: 700;
}

.price span.dollar-icon {
	font-size: 16px;
	font-weight: 400;
	position: relative;
	top: -5px;
}

/* .single-table ul {
	padding: 15px 123px;
}

.single-table ul li {
	margin-top: 0;
} */

.single-table .btn.btn-primary {
	background-color: #dedede;
	border: none;
	border-radius: 0;
	color: #454545;
	display: block;
	margin-bottom: 0;
	font-weight: 700;
	padding: 10px 0;	
	margin-top:40px;
}

.single-table.featured-table {	
	background-color: #f2f2f2;
}

.single-table.featured-table h2  { 
	color: #fff;
}

.single-table.featured-table .price {
	color: #fff;
}

.hidden-item {
    display: none;
}

.toggle-btn {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #a594f9;;
    cursor: pointer;
}

.card-footer .btn-primary {
    background-color: #a594f9; /* Default color */
    border-color: #a594f9;
}

.card-footer .btn-primary:hover {
    background-color:#7960f7; /* Darker shade */
    border-color:#7960f7;
}

.toggle-btn.btn-link {
    color: #a594f9; /* Default color */
    text-decoration: none;
}

.toggle-btn.btn-link:hover {
    color: #7a5ce8; /* Darker shade */
    text-decoration: underline; /* Optional */
}



.pricing-table-one  .single-table h2{	
	font-size: 28px;
	font-weight: 700;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
	border-bottom:1px solid #fff;
	color:#fff;
	border-radius:3px 3px 0 0;
}

.pricing-table-one .price span.dollar-icon {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  top: 0;
}

.pricing-table-one .price span {
	font-size:28px;
	font-weight:700;
}

.pricing-table-one .price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 2px;
  text-align: center;
  color:#222020;
}

.pricing-table-one .single-table .btn.btn-primary  {
	color:#000;
	padding:15px 0;
	border-radius:0 0 10px 10px;
	margin-top:0;
}

.pricing-table-one .card-header {
    background-color: #a594f9; /* Same as price */
    color: #fff; /* Set text color */
    padding: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.pricing-table-one .card-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}



.pricing-table-one .single-table.featured-table .btn.btn-primary{
	color:#111111;

}

.single-table .btn.btn-primary:hover, 
.single-table.featured-table .btn.btn-primary:hover{
	color:#020202;
}

.single-table .btn.btn-primary:hover:after, 
.single-table .btn.btn-primary:hover:before {
	background-color:#f4c216;;
}

.pricing-table-one .single-table ul li {
	line-height: 16px;
	margin-top: 0;
    padding-top: 5px;
    background-color:#ffff;
}

.pricing-table-one .single-table ul li:nth-child(even) {
    background-color:#ffff;
    padding-top: 5px;
}

.pricing-table-one .single-table ul {
  margin: 0;
  padding:0;
}
.pricing-table-one .single-table.featured-table, .pricing-table-one .single-table {
	background-color:#ffffff;
}

#pricing-tables .section-title h2:before {
    background-image: url("../images/home/icons/pricing-title-icon.png");
}

.single-table.featured-table h2, .single-table.featured-table, .pricing-table-one .price {
    background-color: #a594f9;  
}

/* .single-table.featured-table .price, */
.pricing-table-one  .single-table h2, .pricing-table-one .single-table.featured-table  {
    background-color: #a594f9;
    border-radius:10px 10px 0 0;
}


ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
ul li {
    padding: 5px 0; /* Adjust as needed */
  }

.ul li {
    margin: 0;
    padding: 0;
    list-style-type: none; /* Removes any bullets */
  }
  
.single-table ul li {
    margin-top: 15px;
}

.single-table.featured-table {
    background-color: #f2f2f2;
}

.single-table.featured-table .btn.btn-primary {
    background-color: #a594f9;
}
.single-table.featured-table .btn.btn-primary, .single-table:hover .btn.btn-primary:hover {
    color: #fff;
    
}
.paymentLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    z-index: 9999;
}
.spinner-border {
    width: 4rem;
    height: 4rem;
}
