/* Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

/* Nav */
.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar {
    width: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 1000;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(85, 38, 255, 0.2), 0 6px 20px 0 rgba(97, 53, 255, 0.19);
}

.navbar-nav {
    padding: 0.5rem 5rem !important;
    /* background-color: #E2D0FF; */
    border-radius: 30px;
}

/* .navbar-nav:hover {
    background: #a99aff;
    background: linear-gradient(144deg, rgba(169, 154, 255, 1) 0%, rgba(104, 25, 230, 1) 50%, rgba(169, 154, 255, 1) 100%);
    border: none;
}

.navbar-nav:hover .dropdown-menu li a {
    color: #000 !important;
}

.navbar-nav:hover a {
    color: #fff;
} */

.apply-btn {
    color: #000;
    background-color: #E2D0FF;
    border-radius: 30px;
    transition: smooth 0.5s ease-in-out;
}

.navbar-nav li{
    font-size: 1.1rem;
}

.apply-btn:hover {
    background: #a99aff;
    background: linear-gradient(144deg, rgb(169, 154, 255) 0%, rgba(104, 25, 230, 0.582) 50%, rgba(169, 154, 255, 1) 100%);
    border: none;
    color: #fff !important;
}

/* position both icons exactly on top of one another */
.navbar-toggler {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
}

.toggler-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--bs-dark);
}

/* when collapsed (menu CLOSED), show hamburger, hide X */
.navbar-toggler.collapsed .open-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.navbar-toggler.collapsed .close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* when expanded (menu OPEN), show X, hide hamburger */
.navbar-toggler:not(.collapsed) .open-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.navbar-toggler:not(.collapsed) .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* .navbar-nav .dropdown-toggle.show {
    color: #fff !important;
} */

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 0 !important;
        background-color: transparent;
        border-radius: 0;
    }

    /* Keep nav item spacing consistent */
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .navbar-nav {
        gap: 10px !important;
    }

    .navbar-nav:hover {
        background: #fff;
        background: none;
        border: none;
        color: #000 !important;
    }

    .navbar-nav .dropdown-toggle.show {
        color: #000 !important;
    }

    .navbar-nav:hover a {
        color: #000 !important;
    }
}

/* Banner */
.bnr-txt {
    font-size: 4rem !important;
}

.bnr-txt span {
    color: #6819E6 !important;
}

@media (min-width: 768px) {
    .max-w-500 {
        max-width: 500px;
    }

    .w-lg-60 {
        width: 60% !important;
    }
}

/* User */
.user-value {
    font-size: 3rem !important;
    font-weight: bolder !important;
}

.user-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -10px;
    padding: 2rem;
    flex-wrap: wrap;
}

.usr-circle {
    width: 250px;
    height: 250px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 10px 30px rgba(104, 25, 230, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.usr-circle:nth-child(2) {
    margin-left: -1.5rem;
    z-index: 1;
}

.usr-circle:nth-child(3) {
    margin-left: -1.5rem;
}

.usr-circle:hover {
    transform: scale(1.05);
    z-index: 999;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
}

.usr-label {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .usr-circle {
        margin-left: 0 !important;
    }

    .usr-circle:nth-child(2) {
        margin-top: -1.8rem !important;
    }

    .usr-circle:nth-child(3) {
        margin-top: -1.8rem !important;
    }
}

/* future */
.ftre-mn-txt h2 {
    padding-bottom: 10px;
    font-size: 1.6rem !important;
    color: #6819E6;
    border-bottom: 1px solid #6819E6;
}

.future-img img {
    display: block;
    margin: 0 auto;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        /* move up */
    }

    100% {
        transform: translateY(0);
        /* back to original */
    }
}

@media (width <=767.99px) {
    .future {
        padding: 0 !important;
        margin: 0 !important;
    }

    .ftre-mn-txt span {
        font-size: 1.2rem !important;
    }

    .ftre-txt p {
        font-size: 1.2rem !important;
    }
}

/* product */
.prdct-crd {
    background-color: #E2D0FF;
    border: none !important;
    border-bottom: 4px solid #6819E6 !important;
    border-radius: 30px !important;
    transition: smooth 0.5s ease-in-out !important;
}

.prdct-crd:hover {
    border-top: 2px solid #6819E6 !important;
    border-bottom: none !important;
}

.prdct-icn {
    font-size: 2.5rem;
    background-color: #fff;
    font-weight: 800 !important;
    color: transparent;
    -webkit-text-stroke: 1px #7C3AED;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    border: none;
    line-height: 1;
}

/* footer */
footer {
    width: 100%;
    position: relative;
    color: #fff;
    background-color: #000;
}

.newsletter-dsg {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #949494;
}

.newsletter-img {
    width: 100%;
}

.newsletter-img img {
    width: 40% !important;
    height: 40% !important;
}

.primary-ftr-info-dtls {
    /* padding: 1.5rem 0; */
    display: flex;
    flex-direction: column;
    gap: 40px !important;
}

.nwsltr-form {
    width: 100%;
    display: block;
    /* Suvam */
}

.input-area {
    position: relative;
    width: 100%;
}

.frm-info {
    padding: 15px !important;
    width: 100% !important;
    background-color: #282E3D;
    border-radius: 30px !important;
    color: #fff;
    border: 1px solid #fff !important;
    box-shadow: 0px 0px 15px 1px rgba(255, 255, 255, 0.5) !important;
}

.input-area .ftr-submit {
    position: absolute;
    padding: 10px 15px;
    bottom: 10% !important;
    transform: translate(0% -50%);
    right: 10px;
    border-radius: 50%;
    border: none;
    color: #fff;
    background-color: #6819E6;
    cursor: pointer;
}

.primary-footer {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.primary-ftr-info-hdln {
    display: flex;
    align-items: center;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
}

/* .primary-ftr-info-hdln {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #949494;
} */

.primary-ftr-info-hdln i {
    padding: 0.3rem 0.5rem;
    border: 1px solid #858585;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.5) !important;
}

.primary-ftr-list li {
    list-style: none;
}

.primary-ftr-list {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
}

.primary-ftr-list a {
    font-size: 1rem !important;
    text-decoration: none !important;
    /* color: #fff; */
    color: #b6b6b6 !important;
    transition: all 0.2s ease-in-out !important;
}

.primary-ftr-list a:hover {
    color: #fff !important;
}

.secondary-ftr-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.secondary-ftr-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.secondary-ftr-list li {
    list-style: none;
}

.secondary-ftr-list a {
    padding: 0.4rem 0.6rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.5) !important;
}

.copyright {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright p {
    font-size: 1rem;
    font-weight: 300;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}

.footer-secure {
    position: relative !important;
    display: flex !important;
    gap: 10px !important;
    border-bottom: 1px solid #797979 !important;
}

.footer-secure::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background-color: #fff;
}

.primary-ftr-info-dtls {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease;
}

.primary-ftr-info-dtls.active {
    /* Optional: For visual effect */
}


/* responsive */
@media (width <=767.99px) {
    .newsletter-dsg {
        padding-bottom: 3.5rem;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .secondary-ftr-list {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-secure {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .footer-secure::before {
        bottom: 162px;
        rotate: 90deg;
    }

    .secure-grp {
        padding-bottom: 10rem !important;
    }

    .secure-grp:nth-child(2) {
        padding-bottom: 0 !important;
    }

    .newsletter-img a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .primary-footer {
        display: flex;
        flex-direction: column;
        gap: 0 !important;
    }

    .primary-ftr-info-hdln {
        display: flex;
        align-items: center;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
    }

    .secondary-ftr-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .secondary-ftr-info {
        display: flex !important;
        flex-direction: column !important;
    }

    .primary-ftr-list>i {
        display: none;
    }

    .copyright {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .copyright p {
        text-align: center !important;
    }
}

/* Feedback Form */
.feeback {
    background: #FFFF;
    background: linear-gradient(1deg, rgb(255, 255, 255) 0%, rgb(243, 222, 255) 100%);
}

.fdbk-frm-info {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-form {
    background: #e6d1fb;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.feedback-form input,
.feedback-form textarea {
    border-radius: 2rem;
    border: none;
    padding: 0.75rem 1rem;
}

.feedback-form textarea {
    border-radius: 1.5rem;
    resize: none;
}

.btn-gradient {
    background: linear-gradient(to right, #6819E6, #B484FF);
    color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-gradient:hover {
    color: #fff;
}

.form-label {
    font-weight: 600;
}

/* Contact Us */
.cntct-frm {
    background: #e6d1fb;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.get {
    background: #e6d1fb;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.get h3 {
    font-size: 3rem;
}

.hd-dtls {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    gap: 20px;
}

.head {
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 30px;
}

.head span {
    padding: 0.5rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 35px;
    font-size: 1.5rem;
    color: #fff;
    background-color: #6819E6;
}

@media (width <=767.99px) {
    .cntct-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .cntct-frm {
        width: 100% !important;
    }

    .get h3 {
        font-size: 2.5rem !important;
    }

    .get>p {
        padding-bottom: 30px !important;
        font-size: 1.1rem !important;
    }

    .hd-dtls{
        gap: 15px;
    }

    .head {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
    }

    .head span{
        width: 100% !important;
        text-align: center;
    }
}

/* map */
.map-info iframe {
    border-radius: 30px;
    border: none !important;
}