/* Main Banner */
.main-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/*Heading Tabs (Navigation) */
.heading-tab {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #000099;
}

.active-tab {
    color: #fd6400;
    font-weight: bold;
}

.heading-tab:hover {
    color: #fd6400;
}

/*Dynamic Line & Icon  */
.dynamic-line-container {
    position: relative;
    height: 4px;
    background: #ddd;
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
}

.dynamic-line {
    position: relative;
    height: 4px;
    background: #fd6400;
    width: 33.3%;
    transition: width 0.3s ease;
}

.tree-icon {
    position: absolute;
    top: -24px;
    right: -0.7rem;
    width: 25px;
    height: auto;
    transition: right 0.3s ease;
}

/*  Tabbed Content  */
.tab-content {
    margin-top: 20px;
    padding-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.tab-content h3 {
    margin-top: 12px;
    margin-bottom: 5px; 
    font-size: 1rem; 
    line-height: 1.4;
    font-weight: 1000;
    padding-bottom: 2px;
    color: #000099;
}

.tab-content p {
    margin-top: -0.5rem;
    padding-top: 0px;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    margin-left: 1.9rem; 
}

.tab-content li {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.tab-content h3:first-of-type {
    margin-top: 0 !important;
}

/* Scroll-In Animation */
.scroll-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */

/* Extra Large Screens (Above 2400px) */
@media (min-width: 2400px) {
    .heading-tab {
        font-size: 2rem;
    }

    .tree-icon {
        width: 30px;
    }

    .tab-content h3 {
        font-size: 1.8rem;
    }

    .tab-content p {
        font-size: 1.4rem;
    }
}

/*  Large Screens (1920px - 2399px) */
@media (max-width: 2399px) {
    .heading-tab {
        font-size: 1.7rem;
    }

    .tree-icon {
        width: 28px;
    }

    .tab-content h3 {
        font-size: 1.6rem;
    }

    .tab-content p {
        font-size: 1.3rem;
    }
}

/*  Medium-Large Screens (1600px - 1919px) */
@media (max-width: 1919px) {
    .heading-tab {
        font-size: 1.6rem;
    }

    .tree-icon {
        width: 25px;
    }

    .tab-content h3 {
        font-size: 1.5rem;
    }

    .tab-content p {
        font-size: 1.2rem;
    }
}

/*  Standard Desktop (1200px - 1599px) */
@media (max-width: 1599px) {
    .heading-tab {
        font-size: 1.4rem;
    }

    .tree-icon {
        width: 23px;
    }

    .tab-content h3 {
        font-size: 1.3rem;
    }

    .tab-content p {
        font-size: 1.1rem;
    }
}

/*  Laptops & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .heading-tab {
        font-size: 1.3rem;
    }

    .tree-icon {
        width: 20px;
    }

    .tab-content h3 {
        font-size: 1.2rem;
    }

    .tab-content p {
        font-size: 1rem;
    }
}

/*  Tablets (768px - 991px) */
@media (max-width: 991px) {
    .heading-tab {
        font-size: 1.2rem;
    }

    .tree-icon {
        width: 18px;
    }

    .tab-content h3 {
        font-size: 1.1rem;
    }

    .tab-content p {
        font-size: 0.95rem;
    }
}

/*  Small Tablets & Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .heading-tab {
        font-size: 1.1rem;
    }

    .tree-icon {
        width: 17px;
    }

    .tab-content h3 {
        font-size: 1rem;
    }

    .tab-content p {
        font-size: 0.9rem;
    }
}

/*  Large Phones (480px - 575px) */
@media (max-width: 575px) {
    .heading-tab {
        font-size: 1rem;
    }

    .tree-icon {
        width: 15px;
    }

    .tab-content h3 {
        font-size: 0.95rem;
    }

    .tab-content p {
        font-size: 0.85rem;
    }
}

/*  Small Phones (320px - 479px) */
@media (max-width: 479px) {
    .heading-tab {
        font-size: 0.9rem;
    }

    .tree-icon {
        width: 13px;
    }

    .tab-content h3 {
        font-size: 0.9rem;
    }

    .tab-content p {
        font-size: 0.8rem;
    }
}

/*  Very Small Devices (Below 320px) */
@media (max-width: 320px) {
    .heading-tab {
        font-size: 0.85rem;
    }

    .tree-icon {
        width: 12px;
    }

    .tab-content h3 {
        font-size: 0.85rem;
    }

    .tab-content p {
        font-size: 0.75rem;
    }
}
