/* Reset and Base Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f6f5;
} */

/* Calculator Section */
.calculator {
    padding: 2rem 1rem;
    background: #ffffff;
    margin: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    padding: 50px;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.calculator h1 {
    font-size: 2rem;
    color: #d81c38;
    margin-bottom: 1rem;
}

.calculator p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.input-section {
    margin-bottom: 1.5rem;
}

.input-section label {
    display: block;
    font-size: 1.1rem;
    color: #d81c38;
    margin-bottom: 0.5rem;
    text-align: left;
}

input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.cta-btn {
    background: #f58220;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Progress Bar Animation */
.animation {
    margin-top: 2rem;
}

.animation.hidden {
    display: none;
}

#animationText {
    font-size: 1.3rem;
    color: #d81c38;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeText 1s infinite alternate;
}

@keyframes fadeText {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.progress-bar {
    width: 100%;
    max-width: 600px;
    height: 20px;
    background: #f5f6f5;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.progress {
    width: 0;
    height: 100%;
    background: #f58220;
    transition: width 0.1s linear;
}

/* Confetti Animation */
.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confetti 2s linear infinite;
}

@keyframes confetti {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

/* Results */
.results {
    margin-top: 2rem;
    text-align: left;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.results.hidden {
    display: none;
}

.results h2 {
    font-size: 1.8rem;
    color: #d81c38;
    margin-bottom: 1rem;
}

.results p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Media Queries */
@media (max-width: 600px) {
    .calculator {
       width: 85vw;
       padding: 30px;
       
    }
}

/* Introduction */

/* IELTS Band Score Calculator Section */
.band-calculator {
    background: #ffffff;
    padding: 2rem 1rem;
}

.band-calculator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.band-calculator h1 {
    font-size: 2rem;
    color: #d81c38;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.band-calculator p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.band-calculator .disclaimer {
    font-size: 0.95rem;
    color: #333;
    background: #f5f6f5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.band-why, .band-how-to-use, .band-features, .band-sample, .band-trends, .band-tips, .band-cta {
    margin-bottom: 2rem;
}

.band-calculator h2 {
    font-size: 1.6rem;
    color: #d81c38;
    margin-bottom: 1rem;
    text-align: center;
}

.features-list, .steps-list, .feedback-list {
    list-style: none;
    padding-left: 0;
}

.features-list li, .steps-list li, .feedback-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before, .feedback-list li:before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f58220;
    position: absolute;
    left: 0;
    top: 2px;
}

.steps-list li:before {
    content: counter(step) '.'; /* Numbered list */
    counter-increment: step;
    color: #f58220;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.steps-list {
    counter-reset: step;
}

.band-sample .feedback-list {
    background: #f5f6f5;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

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

.band-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.band-cta .cta-btn {
    background: #f58220;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .band-calculator h1 {
        font-size: 2.5rem;
    }

    .band-calculator h2 {
        font-size: 1.8rem;
    }

    .features-list, .feedback-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .steps-list {
        max-width: 600px;
        margin: 0 auto;
    }

    .band-cta .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .band-calculator {
        padding: 3rem 1rem;
    }

    .band-calculator h1 {
        font-size: 3rem;
    }
}