/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FAFAFA;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.text-center {
    text-align: center;
}

/* Section Background */
#learnmore {
    background-image: linear-gradient(rgba(250, 250, 250, 0.65), rgba(250, 250, 250, 0.65)), url('../assets/images/features-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Header Styles */
.se-head {
    margin-bottom: 50px;
}

.se-title-1 {
    font-family: 'Poppins', sans-serif;
    color: #1b5ff8;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.se-title-2 {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-line {
    width: 60px;
    height: 4px;
background: linear-gradient(135deg, #4F46E5, #06B6D4);
  margin: 0 auto 24px;
    border-radius: 4px;
}

.se-subtitle {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.5;
}

/* Grid Layout */
.row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Box (Card) Styles */
.box {
    background: #FFFFFF;
    border: 1.5px solid #F3E8FF;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.box:hover {
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.08);
    transform: translateY(-4px);
    border-color: #4338CA;
}



/* Icon Styles */
.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Specific Icon Colors */
.color-1 .icon { background: #EEF2FF; }
.color-2 .icon { background: #F3E8FF; }
.color-3 .icon { background: #EFF6FF; }
.color-4 .icon { background: #FDF2F8; }
.color-5 .icon { background: #ECFDF5; }
.color-6 .icon { background: #FFFBEB; }
.color-7 .icon { background: #F0FDF4; }
.color-8 .icon { background: #FEF2F2; }

/* Box Text Styles */
.box-title {
    font-family: 'Roboto', sans-serif;
    color: #111827;
    font-size: 17.6px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.box-para {
    color: #4b5563;
    font-size: 16.8px;
    line-height: 1.6;
    flex-grow: 1;
}



@media (max-width: 1024px) {
    .row {
        grid-template-columns: repeat(2, 1fr);
    }
    .se-title-2 {
        font-size: 32px;
    }
    #learnmore {
        background-size: auto 100%;
        background-position: center top;
    }
}

@media (max-width: 640px) {
    .row {
        grid-template-columns: 1fr;
    }
    .se-title-2 {
        font-size: 28px;
    }
    #learnmore {
        background-size: 1000px auto;
        background-position: top center;
        background-color: #FAFAFA;
    }
}
