﻿/* ===== Dev Genius Institute Software Page ===== */
body {
    font-family: "Livvic", sans-serif;
}
/* Container Padding */
.container.my-5 {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Hero Section */
.instituteh1 {
    font-size: 2.8rem;
    color: #252525;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px !important;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 15px;
    text-align: center;
}

/* Features Section */
.featureh2 {
    font-size: 2rem !important;
    color: #252525;
    margin-bottom: 30px;
    font-weight: 600;
}

.feature-box {
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .feature-box i {
        color: #007bff;
        margin-bottom: 10px;
    }

.institute-para {
    font-weight: 400;
    color: #444444;
    font-size: 16px;
}

/* Screenshots / Demo */
.img-fluid.shadow {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .img-fluid.shadow:hover {
        transform: scale(1.05);
    }

/* Book a Trial Button */
.btn-booking {
    background: #EE3F59;
    border: none;
    padding: 15px 30px;
    color: white !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 400px;
    margin: auto;
    text-align: center;
    justify-content: center;
}

    .btn-booking:hover {
        background: linear-gradient(135deg, #ff6ec4, #7873f5);
        transform: scale(1.05);
    }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 8% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px !important;
    position: relative;
}

.modal-title {
    font-size: 1.8rem;
    color: #252525;
    margin-bottom: 20px;
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

    .close:hover {
        color: #000;
    }

/* Enquiry Form */
.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 15px;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.enquiry-form button {
    background: #ff6b81;
    border: none;
    padding: 15px 30px;
    color: white !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 400px;
    margin: auto;
    text-align: center;
    justify-content: center;
}

    .enquiry-form button:hover {
        background: linear-gradient(135deg, #ff6ec4, #7873f5);
        transform: scale(1.05);
    }

.enquiry-form .nice-select {
    line-height: 25px !important;
}

/* Responsive */


@media (max-width: 540px) {
    .hero h1 {
        font-size: 32px !important;
        font-weight: 700 !important;
    }
}

    @media (max-width: 768px) {
        .page-title {
            font-size: 2rem;
        }

        .page-subtitle {
            font-size: 1rem;
        }

        .feature-box {
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 36px !important;
            font-weight: 700 !important;
        }


    }

    @media (max-width: 992px) {
        .hero-img {
            margin-top: 15px;
        }

        .features .feature-left {
            width: 245px;
            margin: auto;
        }

        .feature-box {
            height: auto !important;
        }

        .school-btn {
            margin: auto !important;
        }

        .feature-btn {
            margin: auto !important;
            margin-top: 10px !important;
        }

        .modul-height {
            padding: 20px !important;
        }

        .hero h1 {
            font-size: 40px !important;
            font-weight: 700 !important;
            margin-bottom: 28px !important;
        }
    }

    /*  school erp */

    .height {
        height: 280px;
    }


    .hero {
        background: linear-gradient(120deg, var(--primary-color), var(--accent-color));
        color: #ffffff;
        padding: 100px 0;
        text-align: center;
    }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

.school-btn {
    background: #EE3F59;
    border: #ff6b6b;
    padding: 15px 30px;
    color: white !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 350px;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
}

        .school-btn:hover,
        .feature-btn:hover {
            background: linear-gradient(135deg, #ff6ec4, #7873f5);
            transform: scale(1.05);
            color:  white !important;
            border-color: transparent;
        }

    .feature-btn {
        background: transparent;
        border: 1px solid #ff6b6b;
        padding: 15px 30px;
        color: #ff6b6b !important;
        font-weight: 700;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        opacity: 0;
        animation: fadeIn 1s ease forwards;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 350px;
        /*    margin: auto;*/
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-weight: 700;
        margin-bottom: 2.5rem;
        text-transform: none !important;
        color: var(--primary-color);
    }

    .section-title {
        font-weight: 700;
        margin-bottom: 2.5rem;
        text-transform: none !important;
        color: var(--primary-color);
    }


    .features {
        padding: 5rem 0;
        background-color: #fff;
    }

        .features .feature-left {
            text-align: left !important;
        }

    .feature-box {
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
        text-align: center;
        border: 3px solid transparent; /* Initial border */
        position: relative;
        height: 325px;
    }

        /* Gradient border on hover */
        .feature-box::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 15px;
            background: linear-gradient(135deg, #ff6ec4, #7873f5);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-box:hover::before {
            opacity: 1;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            color: white !important;
        }

        .feature-box i {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }

        .feature-box:hover h5,
        .feature-box:hover i {
            color: #fff !important;
        }


    .modul-height {
        height: 200px;
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
        text-align: center;
        border: 3px solid transparent; /* Initial border */
    }

        .modul-height i {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }


    .modules {
        padding: 5rem 0;
    }

        .modules .feature-box {
            margin-bottom: 2rem;
        }

            .modules .feature-box:hover {
                margin-bottom: 2rem;
            }


.modul-height:hover h5,
.modul-height:hover p,
.modul-height:hover,
.modul-height:hover i {
    color: #fff !important;
    background-color: #EE3F59;
}


    .accordion-button {
        font-weight: 500;
    }

.color-pink {
    color: #EE3F59 !important;
}


    /* school erp open */


