body {
    margin: 0;
    padding: 0;
    font-family: "poppins";
}

h1, h2, h3, h4, h5, h6 {
    font-family: "outfit";
}

/* TOOL SECTION START'S */
/* Main Styles */
.calculator-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.calculator-section h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.calculator-section p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

/* CALCULATOR CONTAINER */
.calculator-container {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calculator-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

/* FORM STYLES */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.input-group input {
    width: 90%;
    padding: 12px;
    font-size: 16px;
    font-family: "open sans";
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border 0.3s;
}

.input-group input:focus {
    outline: none;
}

/* BUTTON STYLES */
button {
    padding: 12px;
    font-size: 16px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

/* RESULT DISPLAY */
#result {
    margin-top: 20px;
    text-align: center;
}

#result p {
    font-size: 20px;
    font-weight: bold;
}

#roiResult {
    color: #e74c3c;
}

/* COMPARISON SECTION */
h3 {
    font-size: 20px;
    margin-top: 30px;
    color: #000;
}

#comparisonSection {
    margin-top: 20px;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */

/* Mobile (small devices) */
@media (max-width: 480px) {
    .calculator-section {
        padding: 15px;
        margin-top: 20px;
    }

    .calculator-section h1 {
        font-size: 20px;
    }

    .calculator-container {
        padding: 15px;
    }

    .calculator-container h2 {
        font-size: 20px;
    }

    .input-group label {
        font-size: 12px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
    }

    button {
        padding: 10px;
    }

    #result p {
        font-size: 18px;
    }

    h3 {
        font-size: 18px;
    }
}

/* Tablet (medium devices) */
@media (max-width: 768px) {
    .calculator-section {
        padding: 20px;
        /* margin-top: 30px; */
        margin: 30px;
    }

    .calculator-section h1 {
        font-size: 22px;
    }

    .calculator-section p {
        font-size: 14px;
    }
    

    .calculator-container h2 {
        font-size: 22px;
    }

    .input-group label {
        font-size: 13px;
    }

    .input-group input {
        width: 90%;
        padding: 12px;
    }

    button {
        padding: 12px;
    }

    #result p {
        font-size: 18px;
    }

    h3 {
        font-size: 18px;
    }
}

/* Desktop (larger devices) */
@media (min-width: 1024px) {
    .calculator-section {
        max-width: 800px;
        margin-top: 50px;
    }

    .calculator-section h1 {
        font-size: 24px;
    }

    .calculator-container h2 {
        font-size: 24px;
    }

    .input-group input {
        width: 90%;
        padding: 12px;
    }

    button {
        padding: 12px;
    }

    #result p {
        font-size: 20px;
    }

    h3 {
        font-size: 20px;
    }
}

  

  /* TOOL SECTION END'S */


/* HOW TO USE SECTION START'S */

.how-to-use-section {
    background-color: #f8f8f8;
    margin-top: 50px;
    padding: 100px;
}

.how-to-use-container {
    display: flex;
    gap: 20px;

}

.how-to-use-section h2 {
    text-align: center;
    font-size: 24px;
}

.how-to-use-section .paragraph {
    text-align: center;
    margin-bottom: 80px;
}

.how-to-use-section .box {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
}

.how-to-use-section .box i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0a2472;
    color: #fff;
    font-size: 28px;
}

.how-to-use-section h3 {
    font-size: 18px;
    color: #000;
}

.how-to-use-section p {
    font-size: 16px;
}

/* RESPONSIVE DESIGN */
@media (max-width : 768px) {
    .how-to-use-section {
        padding: 30px;
    }

    .how-to-use-container {
        display: flex;
        flex-direction: column;
    }

    .how-to-use-section .paragraph {
        margin-bottom: 50px;
        font-size: 14px;
    }

    .how-to-use-section h2 {
        font-size: 20px;
    }

    .how-to-use-section .box i {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }

    .how-to-use-section p {
        font-size: 14px;
    }
}

/* HOW TO USE SECTION END'S */


/* TOOL INTRODUCTION SECTION START'S */
.tool-intro {
    background: #f8f9fa;
    padding: 100px;
    /* text-align: center; */
}

.intro-container h1 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.intro-text {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}


.feature-box i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 28px;
    background-color: #0a2472;
    color: #fff;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE DESIGN */

@media (max-width : 768px ) {
    .tool-intro {
        margin-top: 50px;
        padding: 30px;
    }

    .intro-container h1 {
        font-size: 20px;
    }

    .intro-container .intro-text {
        font-size: 14px;
    }

    .features {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .feature-box i {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }

    .feature-box p {
        font-size: 14px;
    }
}
/* TOOL INTRODUCTION SECTION END'S */


/* USER FEEDBACK SECTION START'S */
.user-feedback-section {
    text-align: center;
    padding: 25px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    margin: 50px;
    margin-left: 400px;
}

.rating-container {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    margin: 10px 0;
}

.star {
    transition: color 0.3s, transform 0.2s;
}

.star:hover, .star.active {
    color: #FFB30D;
    transform: scale(1.2);
}

#ratingText {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

textarea {
    width: 90%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    font-size: 14px;
    outline: none;
}

button {
    background: #0a2472;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-family: "poppins";
    margin-top: 10px;
}

#feedbackResponse {
    color: #28a745;
    font-weight: bold;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#feedbackResponse i {
    font-size: 22px;
    margin-right: 5px;
}

.hidden {
    display: none !important; /* Ensure it remains hidden */
}

/* RESPONSIVE DESIGN */

@media (max-width : 768px )  {
    .user-feedback-section {
        margin: 30px;
        max-width: 400px;
    }
}

/* USER FEEDBACK SECTION END'S */

/* FAQ SECTION START'S */
.faq-section {
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
}

.faq-container {
    text-align: left;
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-item:hover {
    background-color: #f8f8f8;
}

.faq-question {
    background: none;
    color: #000;
    border: none;
    font-size: 18px;
    font-weight: 600;
    font-family: "outfit";
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    font-size: 14px;
    color: #555;
    padding: 10px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* RESPONSIVE DESIGN */

@media (max-width : 768px) {
    .faq-section {
        padding: 30px;
    }

    .faq-section h2 {
        font-size: 20px;
    }

    .faq-section p {
        font-size: 14px;
    }

    .faq-section .faq-question {
        font-size: 16px;
    }

    .faq-section .faq-answer {
        font-size: 14px;
    }
}
/* FAQ SECTION END'S */

/* RELATED TOOLS SECTION START */
.related-tools-section {
    background-color: #f8f8f8;
    margin-top: 50px;
    padding: 100px;
}

.related-tools-container {
    display: flex;
    gap: 20px;
}

.related-tools-section h2 {
    text-align: center;
    font-size: 24px;
}

.related-tools-section .paragraph {
    text-align: center;
    margin-bottom: 80px;
}

.related-tools-section .box {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
}

.related-tools-section .box i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0a2472;
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.related-tools-section h3 {
    font-size: 18px;
    color: #000;
}

.related-tools-section p {
    font-size: 16px;
}

.related-tools-section .box a {
    text-decoration: none;
    background-color: #0a2472;
    color: #fff;
    padding: 7px 15px;
    font-size: 14px;
    border-radius: 4px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .related-tools-section {
        padding: 30px;
    }

    .related-tools-container {
        display: flex;
        flex-direction: column;
    }

    .related-tools-section .paragraph {
        margin-bottom: 50px;
        font-size: 16px;
    }

    .related-tools-section .box i {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }

    .related-tools-section .box p {
        font-size: 14px;
    }
}
/* RELATED TOOLS SECTION END */


/* FOOTER STYLES */
.footer {
    background-color: #001542;
    color: #ffffff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.footer-logo p {
    font-size: 16px;
    color: #ddd;
    margin-top: 10px;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #FFB30D;
}

/* CONTACT INFO */
.footer-contact p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 8px;
}

/* NEWSLETTER FORM */
.footer-newsletter input {
    /* width: 100%; */
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-bottom: 10px;
    font-family: "poppins";
}

.footer-newsletter button {
    background: #FFB30D;
    color: #001542;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: #ffa000;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}

/* SOCIAL ICONS */
.footer-social .social-icons {
    margin-top: 10px;
}

.footer-social .social-icons a {
    display: inline-block;
    background: #ffffff1a;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    background: #FFB30D;
    color: #001542;
}

.footer-bottom p a {
    text-decoration: none;
    color: #fff;
}

.footer-bottom p a:hover {
    color: #ffb30d;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-links,
    .footer-contact,
    .footer-newsletter {
        margin-top: -30px;
        font-size: 14px;
    }
}
