/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #343a40; /* Darker text for better readability */
    line-height: 1.6;
}

/* Custom Colors (adjust as needed to match your brand) */
:root {
    --bs-primary: #6f42c1; /* A shade of purple for primary actions */
    --bs-primary-rgb: 111,66,193;
    --bs-primary-subtle: #e9d8fd; /* Lighter shade for backgrounds */
}

/* Overriding Bootstrap Primary Button */
.btn-primary {
    background-color: #c403f3;
    border-color: #77007e;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #59066d;
    border-color: #59066d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: #f3c3ff !important;
    border-color: #f3c3ff !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #c403f3;
    border-color: #c403f3 !important;
    color: #ecc3ff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navbar Enhancements */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Subtle shadow for depth */
}

.navbar-brand img {
    width: 220px;
    object-fit: contain;
}

.navbar-brand span {
    font-size: 1.5rem;
    color: var(--bs-primary);
}

.nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--bs-primary);
}
/* dropdown */
.profile {
    position: relative;
    text-align: center;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #c403f3;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition:all 2s;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block
}

.dropdown-content a:hover {
    background-color: #ddd
}

.dropdown:hover .dropdown-content {
    display: block
}

.profile ul {
    background-color: #fff;
    width: 200px;
    height: 110px;
    border-radius: 10px;
    right: 0px;
    top: 7px;
    position: absolute;
    padding: 8px;
    transition: all 0.5s;
    z-index: 1
}

.profile ul::before {
    content: '';
    position: absolute;
    background-color: #fff;
    height: 10px;
    width: 10px;
    top: -5px;
    transform: rotate(45deg)
}

.profile ul li {
    list-style: none;
    text-align: left;
    font-size: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    cursor: pointer;
    border-radius: 4px
}

.profile ul li:hover {
    background-color: #eee
}

.profile ul li i {
    margin-right: 7px
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); Subtle gradient background */
    padding-top: 3rem; /* Adjust for navbar height */
    padding-bottom: 3rem;
    background-image: url(../images/COVER2.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* min-height: calc(100vh - 70px); Fill most of the viewport height */
}

.hero-section h1 {
    font-size: 54px; /* Responsive font size */
    color: #fff;
}

.hero-section p.lead {
    font-size: clamp(1rem, 2vw, 1.25rem); /* Responsive font size */
    max-width: 700px;
    margin-left: auto;
    color: #f3c3ff !important;
    margin-right: auto; /* Center text on small screens */
}

.app-buttons img.app-badge {
    height: 50px; /* Standard height for app badges */
    width: auto;
    transition: transform 0.2s ease;
}

.app-buttons img.app-badge:hover {
    transform: translateY(-3px);
}
.store img{
        width: 150px;
}
.app-mockup {
    max-width: 400px; /* Max width for the mockup */
    height: auto;
    border: 8px solid #fff; /* White border for cutout effect */
    box-shadow: 0 60px 120px rgb(199 2 249 / 60%) !important;
    transition: transform 0.3s ease;
}

.app-mockup:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.features-section h2 {
    color: #212529;
}

.feature-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
}
.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgb(155 64 179 / 74%) !important;
}

/* Footer */
.footer {
    background-color: #370444 !important; /* Darker footer */
    position: relative;
}


.footer h5 {
    color: #f8f9fa;
    font-size: 26px;
    font-weight: 600 !important;
}
.mail{
    color: #c403f3 !important;
}
.gray{
color: #f3c3ff !important
}
.footer p{
    color: #f8f9fa !important;
    margin-bottom: 10px;
}
.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--bs-primary) !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .hero-section .app-buttons {
        justify-content: center;
    }
    .app-mockup {
        margin-top: 3rem;
        max-width: 80%; /* Smaller on mobile */
    }
    .navbar-collapse {
        text-align: center;
    }
    .navbar-nav .btn {
        width: 80%; /* Make buttons full width in mobile menu */
        margin: 0.5rem auto;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .app-buttons {
        flex-direction: column; /* Stack app buttons on very small screens */
        align-items: center;
    }
    .app-buttons a {
        margin: 0.5rem 0 !important;
    }
    .app-badge {
        height: 45px;
    }
}



.faqholder {
  background: var(--color1);
  margin-bottom: 2px;
  border-radius: 5px;
 
}

.faq {
  width: 100%;
  font-size: 16px;
  text-align: left;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: var(--color3);
  padding: 12px 40px 12px 20px;
  box-sizing: border-box;
  border-bottom:rgba(var(--color2rbg), 0.2);
  margin-bottom: 2px;
  position: relative;
  cursor: pointer;
}

.faq span {
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 5px;
  color: rgba(var(--color2rbg), 0.5);
  text-align: center;
}

.faq span::after {
  font-size: 20px;
  content: "\25be";
  color:var(--color3);
}

input.check {
  display: none;
}

.faqsub {
  display: none;
  font-size: 14px;
  padding: 0px 20px 10px;
}

/* .faqsub p {
  font-size: 14px;
  line-height: 18px;
  text-align: justify;
  margin-top: 0px;
  color:var(--color3);
} */

input:checked~.faq span::after {
  font-size: 20px;
  content: "\25b4";
}

input:checked~div.faqsub {
  display: block;
}

.container-fluid
{
    background: #fbedff;
}


.faq {
    width: 100%;
    font-size: 16px;
    text-align: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    color: var(--color3);
    padding: 14px 20px 14px 20px;
    box-sizing: border-box;
    margin-bottom: 4px;
    position: relative;
    cursor: pointer;
    background: #f0bdff;
    border-bottom: 1px solid #cf91e194;
}

@media (max-width: 767px) {
    .navbar-collapse {
        text-align: left;
    }
    .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.mb-5 {
    margin-bottom: 2rem !important;
}
    .app-mockup {
        margin-top: 3rem;
        max-width: 80%;
        display: none;
    }
.offset-2 {
    margin-left: 0;
}
.nav-link {
    border-bottom: 1px solid #fbedff;
}
    .hero-section p.lead {
        text-align: left;
    }
        .hero-section h1 {
        text-align: left;
        }
        .app-buttons {
        flex-direction: row;
        justify-content: flex-start !important;
        grid-gap: 10px;
    }
}

.faqsub p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
    color: var(--color3);
}







   /* profile image style */
     .profile-dropdown-container {
            position: relative;
            display: inline-block;
            margin-right: 50px; /* Adjust as needed for spacing from the right edge */
        }
        .profile-image {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid #ff7f50; /* Orange border */
            box-sizing: border-box;
            background-color: #ff7f50; /* Orange background */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* To ensure the inner icon/image is contained */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for the profile image */
        }
        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        /* Example for a custom icon if not using an image */
        .profile-image .custom-icon {
            font-size: 24px;
            color: white; /* White icon color */
            /* You would replace this with an actual icon (e.g., Font Awesome) */
        }

        .dropdown-menu-custom {
            display: none;
            position: absolute;
            top: 60px; /* Position below the profile image */
            right: 0;
            background-color: #fff;
            border-radius: 8px; /* Rounded corners */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Softer shadow */
            min-width: 180px; /* Adjust width as needed */
            z-index: 1000;
            padding: 8px 0; /* Padding inside the dropdown */
        }
        .dropdown-menu-custom.show {
            display: block;
        }
        .dropdown-item-custom {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        .dropdown-item-custom:hover {
            background-color: #f5f5f5;
        }
        .dropdown-item-custom i {
            margin-right: 12px; /* Space between icon and text */
            color: #6c757d; /* Icon color */
        }