﻿body, html {
    height: 100%;
    margin: 0;
}

.content {
    background-image: url('/images/strag_background.jpg'); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    height: 80.1vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.nav-login-btn {
    background: linear-gradient(135deg, #351352 0%, #764ba2 100%);
    color: #fff !important;
    border-radius: 30px;
    padding: 8px 28px;
    font-weight: 500;
    border: none;
    margin-left: 10px;
}

.content-features {
    background-image: none !important;
    color: #351352 !important;
    height: 70vh;
}

.ft-hr-text{
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.login-btn {
    color: #ffffff !important;
    border-radius: 30px;
    padding: 6px 24px !important;
    font-size: 14px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #351352 0%, #764ba2 100%);
    border-color: #6f42c1 !important;
}

.btn {
    border-radius: 30px;
    padding-left: 60px;
    padding-right: 60px;
    color: #fff !important;
    border: none !important;
    font-family: 'Lexend';
}



.btn-white-purple {
    background: #fff !important;
    color: #351352 !important;
}

.btn-white-purple:hover {
        background: linear-gradient(135deg, #351352 0%, #764ba2 100%) !important;
        border-color: #6f42c1 !important;
        color: #fff !important;
    }

.mean-container a.meanmenu-reveal span {
    background: #351352 !important;
}

.main-nav nav .navbar-nav .nav-item a {
    color: #351352;
}


.features-section {
    background-color: #fff;
    /*max-width: 1700px;
    margin: 0 auto;*/
}

/* "FEATURES" label with line */
.features-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6f42c1;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0px;
    font-family: 'Lexend'
}

    .features-label::before {
        content: '';
        display: inline-block;
        width: 40px;
        height: 3px;
        background-color: #6f42c1;
    }

    .noto-sans-font {
        font-family: 'Noto Sans';
    }

    .lexend-font{
        font-family:'Lexend';
    }

/* Heading */
.features-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Description */
.features-description {
    color: #555;
    text-align: justify;
    line-height: 1.7;
    font-size: 1.1rem;
}

.feature-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* Scale up on hover */
    .feature-card:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Default bottom label */
.feature-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px 15px;
    background: linear-gradient(to top, rgba(80, 20, 120, 0.85), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-overlay {
    opacity: 0;
}

/* Full purple overlay - slides in from left */
.feature-card-hover {
    position: absolute;
    top: 0;
    left: -100%; /* start off screen to the left */
    width: 100%;
    height: 100%;
    background: rgba(70, 15, 110, 0.92);
    color: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: left 0.4s ease; /* slide on left property */
}

.feature-card:hover .feature-card-hover {
    left: 0; /* slide into view */
}

.feature-card-hover h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.feature-card-hover p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}


.feature-card-text {
    color: #fff !important;
}


/* About US */
.about-section {
    background-color: #faf8fd;
    
}

.about-img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.uuu {
    max-width: 1700px;
    margin: 0 auto;
}

/*FAQ*/

.faq-section {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    min-height: 600px;
}

.faq-heading {
    font-weight: 700;
    font-size: 2rem;
    color: #1a1a1a;
    z-index: 1;
    position: relative;
}

.faq-list {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
    position: relative;
}

/* Each FAQ row */
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.3s ease;
}

    .faq-item.active {
        background-color: #ebe8f5;
        border-color: #ebe8f5;
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    color: #1a1a1a;
    user-select: none;
}

.faq-icon {
    font-size: 20px;
    color: #764ba2;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
    background-color: white;
}

    .faq-answer p {
        color: #555;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
        padding-bottom: 18px;
    }

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 4px;
}

/* Decorative blobs */
.faq-blob-left-pointy {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 400px;
    background: #edeaf7;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 0;
}

.faq-blob-left {
    position: absolute;
    left: 0;
    top: 30%;
    transform: translateY(-50%);
    width: 130px;
    height: 300px;
    object-fit: cover;
    z-index: 0;
}

    .faq-blob-right {
        position: absolute;
        right: -40px;
        top: 50%;
        width: 160px;
        height: 300px;
        object-fit: cover;
        z-index: 0;
    }

    .faq-list {
        position: relative;
        z-index: 1;
    }
    /* Footer */
.footer-section {
    background: linear-gradient(135deg, #764ba2 0%, #351352 100%);
}

    .footer-logo {
        max-width: 300px;
    }
    /* Column Headings */
    .footer-heading {
        color: #ffffff;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 16px;
    }
    /* Links List */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-links li {
            margin-bottom: 10px;
            font-size: 14px;
            color: #ccc;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .footer-links a:hover {
                color: #ffffff;
            }

    .footer-label {
        color: #ccc;
        font-size: 14px;
    }
    /* Bottom copyright bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    color: #ffffff !important;
}

.footer-tts {
    color: #ffffffcc !important;
}


