/* Global Styles */
body {
    background-color: #eef2ff;
    min-height: 100vh;
   
    font-family: "Poppins", sans-serif;
}

/* Hero Section Styles */
.ai-homework {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);

    padding: 80px 60px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.ai-homework::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: heroPulse 15s infinite;
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.ai-homework-wrapper {
    position: relative;
    z-index: 1;
}

.ai-homework-title {
    font-size: 56px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.ai-homework-description {
    font-size: 1.1em;
    color: #ffff !important;
    margin-bottom: 30px;
    line-height: 26px;
    padding-right: 100px;
    padding-left: 100px;

    text-align: center;
}

.ai-homework-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.ai-button {
    display: inline-block;
    padding: 13px 15px;
    background: white;
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ai-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

/* submission-section Section Styles */
.submission-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.submission-image-container {
    width: 500px;
    height:380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 8px 5px rgba(0, 0, 0, 0.15); */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}


/* Custom content area for submission */

.submission-content-area ul li {
    list-style: none;
    line-height: 30px;
    color: #555;

}

.submission-content-area ul li::before {
    content: "✔";
    color: rgb(22, 163, 74);
    font-size: 14px;
    margin-top: 2px;
    margin-right: 10px;
    margin-left: -20px;
    /* Custom content area for learning */
}

.submission-heading {
    font-size: 44px !important;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.submission-text {
    font-size: 1em;
    color: #555;
    line-height: 26px;
    text-align: start;
}

/* instantly-section Section Styles */
.instantly-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.instantly-image-container {
    width: 500px;
    height: 380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
    /* background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); */
}


/* Custom content area for instantly */

.instantly-content-area ul li {
    list-style: none;
    line-height: 30px;
    color: #555;

}

.instantly-content-area ul li::before {
    content: "✔";
    color: rgb(22, 163, 74);
    font-size: 14px;
    margin-top: 2px;
    margin-right: 10px;
    margin-left: -20px;
    /* Custom content area for learning */
}

.instantly-heading {
    font-size: 44px !important;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.instantly-text {
    font-size: 1em;
    color: #555;
    line-height: 28px;
    text-align: start;
}

/* reduces-section Section Styles */
.reduces-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.reduces-image-container {
    width: 500px;
    height: 380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
    /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
}

.reduces-content-area ul li {
    list-style: none;
    line-height: 30px;
    color: #555;
}

.reduces-content-area ul li::before {
    content: "✔";
    color: rgb(22, 163, 74);
    font-size: 14px;
    margin-top: 2px;
    margin-right: 10px;
    margin-left: -20px;
    /* Custom content area for reduces */
}

.reduces-heading {
    font-size: 44px !important;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.reduces-text {
    font-size: 1em;
    color: #555;
    line-height: 1.8;
    text-align: start;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ai-homework {
        padding: 60px 40px;
    }

    .ai-homework-title {
        font-size: 2.5em;
    }

    .ai-homework-description {
        font-size: 1.2em;
    }

    .submission-image-container,
    .instantly-image-container,
    .reduces-image-container {
        width: 400px;
        height: 400px;
        font-size: 150px;
        margin: 0 auto 30px;
    }

    .submission-heading,
    .instantly-heading,
    .reduces-heading {
        font-size: 2em;
    }

    .submission-text,
    .instantly-text,
    .reduces-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .ai-homework {
        padding: 40px 25px;
    }

    .ai-homework-title {
        font-size: 1.8em;
    }

    .ai-homework-description {
        font-size: 1em;
          padding-right: 10px !important;
    padding-left: 10px !important;
    text-align:center;
    }

    .ai-homework-icon {
        font-size: 60px;
    }

    .ai-button {
        font-size: 1em;
        padding: 12px 30px;
    }

    .submission-image-container,
    .instantly-image-container,
    .reduces-image-container {
        width: 100%;
        height: 100%;
        font-size: 120px;
    }

    .submission-heading,
    .instantly-heading,
    .reduces-heading {
        font-size: 30px !important;
    }

    .submission-text,
    .instantly-text,
    .reduces-text {
        font-size: 1em;

    }

    .submission-section,
    .instantly-section,
    .reduces-section {
        padding: 30px 20px;
    }
}
img.services-img {
    height: -webkit-fill-available;
}