/* Sankalp Section Styles */
.sankalp-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sankalp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,107,53,0.03)" d="M0,160L48,170.7C96,181,192,203,288,202.7C384,203,480,181,576,186.7C672,192,768,224,864,218.7C960,213,1056,171,1152,165.3C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.sankalp-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.sankalp-quote {
    text-align: center;
    margin: 30px 0;
    padding: 40px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.sankalp-quote::before,
.sankalp-quote::after {
    content: '"';
    position: absolute;
    font-size: 80px;
    color: rgba(255, 107, 53, 0.1);
    font-family: 'Playfair Display', serif;
}

.sankalp-quote::before {
    top: 10px;
    left: 20px;
}

.sankalp-quote::after {
    bottom: -30px;
    right: 20px;
}

.sankalp-quote p {
    font-size: 24px;
    line-height: 1.8;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.sankalp-quote .meaning {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 20px;
    font-style: italic;
}

.sankalp-footer {
    margin-top: 40px;
    text-align: center;
}

.sankalp-footer p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sankalp-content {
        padding: 40px;
    }
    
    .sankalp-quote {
        padding: 30px;
    }
    
    .sankalp-quote p {
        font-size: 22px;
    }
    
    .sankalp-quote .meaning {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .sankalp-content {
        padding: 30px;
    }
    
    .sankalp-quote {
        padding: 25px;
    }
    
    .sankalp-quote p {
        font-size: 20px;
    }
    
    .sankalp-quote .meaning {
        font-size: 16px;
    }
    
    .sankalp-footer p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .sankalp-content {
        padding: 20px;
    }
    
    .sankalp-quote {
        padding: 20px;
    }
    
    .sankalp-quote p {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .sankalp-quote .meaning {
        font-size: 15px;
    }
    
    .sankalp-footer p {
        font-size: 16px;
    }
}
