@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-primary: #071c23;
    --color-lightblue: #f1f7ff;
    --color-white: #ffffff;
    --color-logocolor: #d52b1e;
    --color-logo: #009b01;
}

body {
scroll-behavior: smooth;
    font-family: "Poppins", system-ui;
    font-weight: 400;
    font-style: normal;

    color: #333;
    margin: 0;
    padding: 0;
}

main {
    background-color: white;
    border-radius: 8px;
}

main h1 {
    color: #fff;
}

main h2 {
    color: var(--color-primary);
    font-size: 2rem;
    text-align: left;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

footer {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 10px;
}


.banner {
    position: relative;
    background-image: url('assets/images/background.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.banner .btn {
    display: inline-block;
    /* Ensure it behaves like a button */
    padding: 15px 30px;
    /* Slightly larger for emphasis */
    background: linear-gradient(45deg, #184757, #071c23);
    /* Gradient background for depth */
    color: white;
    /* Text color */
    border: none;
    border-radius: 25px;
    /* More rounded corners for a modern look */
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    /* Makes the text stand out */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    /* Shadow for depth */
    text-decoration: none !important;
    /* Force removal of underline */
    transition: transform 0.3s ease, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.banner .btn:hover {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary));
    /* Reverse the gradient on hover */
    transform: translateY(-5px);
    /* Adds a lift-up effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    /* Intensifies shadow on hover */
}


.container {
    margin: 0 auto;
}

.header h1 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.header p {
    font-size: 1.2rem;
    color: #555;
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.feature {
    width: 48%;
    text-align: left;
    margin-bottom: 40px;
}

.feature h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature img {
    float: left;
    margin-right: 20px;
    width: 80px;
    height: 80px;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

@media screen and (max-width: 768px) {
    .feature {
        width: 100%;
    }

    .feature img {
        width: 60px;
        height: 60px;
    }
}

.ananya-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 2rem;
}

.gautam-section-heading {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
}

.priya-text,
.ajay-list-item {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.rahul-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ajay-list-item {
    position: relative;
    padding-left: 20px;
}

.ajay-list-item::before {
    content: '✔';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 4px;
}

.deepika-highlight {
    font-weight: bold;
    color: var(--color-primary);
}

.arjun-cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin: 20px auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.arjun-cta-button:hover {
    background-color: #004499;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.ravi-section {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.ravi-section:last-child {
    border-bottom: none;
}

.guide-header {
    text-align: center;
    margin-bottom: 30px;
}

.guide-header h1 {
    font-size: 2rem;
    color: var(--color-primary);
}

.guide-header p {
    font-size: 1.1rem;
    color: #34495e;
}

.instruction-block {
    border-left: 5px solid var(--color-primary);
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
}

.step-indicator {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-right: 10px;
}

.step-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: bold;
}

.step-details {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
    text-align: left;
}

.important-highlight {
    font-weight: bold;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .guide-header h1 {
        font-size: 2rem;
    }

    .step-indicator {
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-details {
        font-size: 0.9rem;
    }
}

.app-container {
    margin: 20px auto;
    border-radius: 10px;
    padding: 20px;
}

.app-title {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.app-instructions {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.app-section {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.section-title {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.app-steps {
    list-style: none;
    padding: 0;
    margin: 0;

}

.step-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #0078d7;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.step-item:hover {
    background-color: #d0e7ff;
}

.step-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #0078d7;
}

.step-item span {
    display: inline-block;
}


.NEW-container {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between cards */
}

.fix-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    padding: 20px;
    transition: transform 0.2s;
}

.fix-card:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

.fix-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.fix-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Specific background colors for cards */
.fix-card:nth-child(1) {
    background-color: #f9f9f9;
    /* Light Blue */
}

.fix-card:nth-child(2) {
    background-color: var(--color-primary);
    /* Light Green */

}

.fix-card:nth-child(3) {
    background-color: #f9f9f9;
    /* Light Yellow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .fix-card h3 {
        font-size: 1.4rem;
    }

    .fix-card p {
        font-size: 0.9rem;
    }
}

/* 
=======================================
======================================= 
*/
.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 50px;
    background-color: var(--color-lightblue);
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq {
    margin-bottom: 10px;
    text-align: left;
}

.faq-question {
    padding: 15px;
    background-color: var(--color-lightblue);
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: white;
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
    padding-left: 15px;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.teddy {
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

h1.turbotax-title {
    text-align: center;
    color: var(--color-primary);
}

h2.turbotax-subtitle {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}

.turbotax-requirements-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.turbotax-req-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.turbotax-req-table th,
.turbotax-req-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.turbotax-req-table th {
    background-color: #2E86C1;
    color: white;
}

ul.turbotax-list {
    list-style-type: square;
    margin-left: 20px;
}







.tt-heading {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 25px;
}

.tt-subheading {
    color: #2c3e50;
    font-size: 20px;
    margin-top: 20px;
    text-align: left;
}

.tt-ol {
    margin-left: 20px;
    text-align: left;
}

.tt-ul {
    margin-left: 20px;
    text-align: left;
}

.tt-li {
    margin-bottom: 10px;
}

.tt-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tt-button:hover {
    background-color: #1f6394;
}

.tt-troubleshooting {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tt-highlight {
    background-color: #d9edf7;
    padding: 5px;
    border-radius: 5px;
}




.tt-install-heading {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.tt-install-subheading {
    color: #2c3e50;
    margin-top: 20px;
    text-align: left;
}

.tt-install-ol {
    margin-left: 20px;
    text-align: left;
}

.tt-install-li {
    margin-bottom: 10px;
    text-align: left;
}

.tt-install-tip {
    background-color: #f9f9f9;
    border-left: 5px solid var(--color-primary);
    padding: 10px;
    margin-top: 20px;
}






/* New CSS Class Names */
.header-title {
    color: var(--color-primary);
    /* Dark red color for main heading */
}

.sub-header {
    margin-top: 30px;
    /* Spacing above subheadings */
    color: var(--color-primary);
    /* Dark red color for subheadings */
    font-size: 20px;
    text-align: left;
}

.list-container {
    margin-left: 20px;
    /* Indentation for bullet points */
    text-align: left;
}

.list-item-style {
    margin-bottom: 10px;
    /* Spacing between list items */
    text-align: left;
}

.note-box {
    background-color: #f5f5f5;
    /* Light gray background for notes */
    border-left: 5px solid var(--color-primary);
    /* Dark red left border */
    padding: 10px;
    /* Padding for comfort */
    margin-top: 20px;
    /* Spacing above the note */
    text-align: left;
}






.header-title {
    color: var(--color-primary);
}

.sub-header {
    color: #333;
    text-align: left;
    font-size: 20px;
}

.step-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.info-box {
    background-color: #f5f5f5;
    border-left: 5px solid var(--color-primary);
    padding: 10px;
    margin: 20px 0;
    text-align: left;
}

.info-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}




.tax-overview {
    max-width: 750px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.highlight-message {
    background-color: #f5f5f5;
    /* Light pink background */
    padding: 12px;
    border-left: 5px solid var(--color-primary);
    /* Matching border color */
    margin-bottom: 20px;
    text-align: left;
}

h1 {
    color: var(--color-primary);
}

h2 {
    color: #333;
    margin-top: 20px;
    text-align: left;
}

h3 {
    color: var(--color-primary);
    /* Updated color */
    text-align: left;
}

p {
    margin: 10px 0;
}

.custom-resolution {
    background-color: #f9f9f9;
    /* Updated background color */
    border-left: 4px solid var(--color-primary);
    /* Updated border color */
    padding: 10px 15px;
    margin: 10px 0;
    text-align: left;
}

.custom-issue {
    background-color: #f9f9f9;
    /* Updated background color */
    border-left: 4px solid var(--color-primary);
    /* Updated border color */
    padding: 10px 15px;
    margin: 10px 0;
    text-align: left;
}

@media (max-width: 850px) {
    .banner {
        background-image: url('assets/images/bac2.png') !important;
    }
    .banner h1 {
        font-size: 20px !important;
    }

    main h2 {
        font-size: 18px !important;
    }
    
    .banner p {
        font-size: 12px !important;
    }
    .section{
        padding: 30px 20px !important;
    }
}
h4{
    border-bottom: 2px solid var(--color-logo);
    display: inline-block;
}
.strong1 {
    color: var(--color-logocolor);
}
.section{
    padding: 50px 2rem;
    margin: 30px 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px #c4c4c4;
}

.animate-section {
    opacity: 0;
    transform: translateY(200px);
    transition: all 1s ease-in-out;
}

/* Active state when in view */
.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* .sectionBgWhite {
    background-color: var(--color-white);
}

.sectionBgBlue {
    background-color: var(--color-lightblue);
} */
strong {
    color: #071c23 !important;
}