a{
    color: #fa9805;
    text-decoration: none;
}
p{
    text-align: justify;
}
.why-choose-fullstack-section{
   background: #ffffff;
}
.why-choose-fullstack-wrapper{
    background:#dae2eb;
}
.main-banner p{
    text-align:center;
}

/* Python Course Hero */
.python-course-hero {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.python-course-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.python-course-content {
    flex: 1;
    max-width: 650px;
}

.python-course-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.python-course-content h1 {
    margin: 0 0 22px;
    color: #0a0e27;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}
.python-course-content h3 {
    margin: 0 0 22px;
    color:#fa9805;
    
}


.python-course-content p {
    margin: 0;
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
}

/* Buttons */
.python-course-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.fullstack-course-btn-primary,
.fullstack-course-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fullstack-course-btn-primary {
    background: #fa9805;
    color: #ffffff;
    border: 1px solid #fa9805;
}

.fullstack-course-btn-primary:hover {
    background: #e48700;
    border-color: #e48700;
    color: #ffffff;
}

.fullstack-course-btn-secondary {
    background: #ffffff;
    color: #0a0e27;
    border: 1px solid #0a0e27;
}

.fullstack-course-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
}

/* Right Image */
.python-course-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.python-course-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
    .python-course-hero {
        padding: 60px 20px;
    }

    .python-course-container {
        gap: 40px;
    }

    .python-course-content h1 {
        font-size: 34px;
    }

    .python-course-content p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .python-course-hero {
        padding: 45px 18px;
    }

    .python-course-container {
        flex-direction: column;
        gap: 35px;
    }

    .python-course-content {
        max-width: 100%;
        text-align: left;
    }

    .python-course-content h1 {
        font-size: 29px;
        line-height: 1.3;
    }

    .python-course-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .python-course-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .fullstack-course-btn-primary,
    .fullstack-course-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .python-course-image {
        width: 100%;
    }

    .python-course-image img {
        max-width: 100%;
    }
}



/* =========================================
   Why Learn Python in Trichy
========================================= */

.why-python-section {
    width: 100%;
    padding: 75px 20px;
    background: #ffffff;
}

.why-python-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* Section Header */

.why-python-header {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.why-python-badge {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 16px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.why-python-header h2 {
    margin: 0 0 18px;
    color: #0a0e27;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.why-python-header p {
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   Benefits Grid
========================================= */

.why-python-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* Benefit Card */

.why-python-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #dae2eb;
    border-radius: 12px;
    border: 1px solid rgba(10, 14, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-python-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(10, 14, 39, 0.08);
}


/* Number */

.why-python-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}


/* Card Content */

.why-python-card-content h3 {
    margin: 0 0 8px;
    color: #0a0e27;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.why-python-card-content p {
    margin: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .why-python-section {
        padding: 60px 20px;
    }

    .why-python-header h2 {
        font-size: 32px;
    }

    .why-python-grid {
        gap: 18px;
    }

    .why-python-card {
        padding: 24px;
    }
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .why-python-section {
        padding: 50px 18px;
    }

    .why-python-header {
        margin-bottom: 32px;
    }

    .why-python-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .why-python-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .why-python-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-python-card {
        gap: 15px;
        padding: 22px;
    }

    .why-python-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .why-python-card-content h3 {
        font-size: 18px;
    }

    .why-python-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}



.python-details-section {
    width: 100%;
    padding: 80px 20px;
    background: #dae2eb;
}

.python-details-container {
    max-width: 1150px;
    margin: 0 auto;
}


/* Heading */

.python-details-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.python-details-badge {
    display: inline-block;
    padding: 7px 17px;
    margin-bottom: 15px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.python-details-heading h2 {
    margin: 0 0 14px;
    color: #0a0e27;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.python-details-heading p {
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}


/* Main Box */

.python-details-box {
    display: grid;
    grid-template-columns: 34% 66%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(10, 14, 39, 0.08);
}


/* Left Highlight */

.python-details-highlight {
    position: relative;
    padding: 45px 35px;
    background:#fff6ea;
    overflow: hidden;
}

.python-details-highlight::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 35px solid rgba(250, 152, 5, 0.15);
    border-radius: 50%;
}

.python-details-highlight-small {
    display: block;
    margin-bottom: 22px;
    color: #fa9805;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.python-details-highlight h3 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
}

.python-details-highlight p {
    margin: 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.75;
}

.python-details-line {
    width: 50px;
    height: 3px;
    margin: 30px 0 15px;
    background: #fa9805;
    border-radius: 10px;
}

.python-details-highlight-text {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}


/* Right Details */

.python-details-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
}


/* Detail */

.python-detail {
    padding: 22px 20px;
    border-bottom: 1px solid #e9edf1;
}

.python-detail:nth-child(odd) {
    border-right: 1px solid #e9edf1;
}

.python-detail:nth-child(7),
.python-detail:nth-child(8) {
    border-bottom: none;
}

.python-detail-title {
    display: block;
    margin-bottom: 7px;
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
}

.python-detail strong {
    display: block;
    color: #0a0e27;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .python-details-section {
        padding: 65px 20px;
    }

    .python-details-box {
        grid-template-columns: 1fr;
    }

    .python-details-highlight {
        padding: 35px;
    }

    .python-details-highlight h3 {
        font-size: 25px;
    }
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .python-details-section {
        padding: 50px 18px;
    }

    .python-details-heading {
        margin-bottom: 30px;
    }

    .python-details-heading h2 {
        font-size: 28px;
    }

    .python-details-heading p {
        font-size: 15px;
    }

    .python-details-box {
        border-radius: 12px;
    }

    .python-details-highlight {
        padding: 30px 24px;
    }

    .python-details-highlight h3 {
        font-size: 23px;
    }

    .python-details-list {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .python-detail,
    .python-detail:nth-child(odd) {
        padding: 18px 16px;
        border-right: none;
        border-bottom: 1px solid #e9edf1;
    }

    .python-detail:last-child {
        border-bottom: none;
    }

    .python-detail-title {
        font-size: 12px;
    }

    .python-detail strong {
        font-size: 14px;
    }
}



 /* =========================================
    Python Curriculum Section
 ========================================= */
.python-curriculum-section {
    width: 100%;
    padding: 75px 20px;
    background: #dae2eb;
}

.python-curriculum-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Header */

.python-curriculum-header {
    max-width: 700px;
    margin-bottom: 45px;
}

.python-curriculum-badge {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 12px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.python-curriculum-header h2 {
    margin: 0;
    color: #0a0e27;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
}

.python-curriculum-header p {
    margin: 12px 0 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Main Layout */

.python-curriculum-wrapper {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 45px;
    align-items: center;
}

/* Image */

.python-curriculum-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 14px;
}

.python-curriculum-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Modules */

.python-curriculum-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.python-module {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.python-module span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    min-width: 34px;

    background: #fff3e0;
    color: #fa9805;
    border-radius: 6px;

    font-size: 11px;
    font-weight: 700;
}

.python-module h3 {
    margin: 0;
    color: #0a0e27;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.python-module:hover {
    border-color: #fa9805;
    transform: translateX(4px);
}

.python-module:hover span {
    background: #fa9805;
    color: #ffffff;
}


/* Tablet */

@media (max-width: 900px) {

    .python-curriculum-section {
        padding: 60px 18px;
    }

    .python-curriculum-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .python-curriculum-image {
        height: 380px;
    }

    .python-curriculum-header h2 {
        font-size: 30px;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .python-curriculum-section {
        padding: 50px 15px;
    }

    .python-curriculum-header {
        margin-bottom: 30px;
    }

    .python-curriculum-header h2 {
        font-size: 26px;
    }

    .python-curriculum-header p {
        font-size: 14px;
    }

    .python-curriculum-wrapper {
        gap: 28px;
    }

    .python-curriculum-image {
        height: 280px;
        border-radius: 10px;
    }

    .python-module {
        gap: 12px;
        padding: 14px;
    }

    .python-module span {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 10px;
    }

    .python-module h3 {
        font-size: 14px;
    }
}


/* =========================================
   Python - Who Should Join
========================================= */

.python-join-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.python-join-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Heading */

.python-join-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.python-join-badge {
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.python-join-heading h2 {
    margin: 0;
    color: #0a0e27;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.python-join-line {
    width: 55px;
    height: 3px;
    margin: 18px auto;
    background: #fa9805;
    border-radius: 10px;
}

.python-join-heading p {
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

/* Main List */

.python-join-list {
    border-top: 1px solid #dae2eb;
}

.python-join-row {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    min-height: 100px;
    border-bottom: 1px solid #dae2eb;
    transition: all 0.3s ease;
}

.python-join-row:hover {
    background: #dae2eb;
}

/* Category */

.python-join-category {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
}

.python-join-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid #fa9805;
    border-radius: 50%;
    color: #fa9805;
    font-size: 12px;
    font-weight: 700;
}

.python-join-category h3 {
    margin: 0;
    color: #0a0e27;
    font-size: 18px;
    font-weight: 700;
}

/* Description */

.python-join-description {
    padding: 20px 30px;
    border-left: 1px solid #dae2eb;
}

.python-join-description strong {
    display: block;
    margin-bottom: 4px;
    color: #fa9805;
    font-size: 13px;
    font-weight: 600;
}

.python-join-description p {
    margin: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

/* Bottom Highlight */

.python-join-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 650px;
    margin: 40px auto 0;
    padding: 20px 25px;
    background: #dae2eb;
    border-left: 4px solid #fa9805;
    border-radius: 8px;
}

.python-join-bottom-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #fa9805;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.python-join-bottom h3 {
    margin: 0 0 4px;
    color: #0a0e27;
    font-size: 16px;
}

.python-join-bottom p {
    margin: 0;
    color: #4a5568;
    font-size: 14px;
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 768px) {

    .python-join-section {
        padding: 60px 18px;
    }

    .python-join-heading {
        margin-bottom: 35px;
    }

    .python-join-heading h2 {
        font-size: 30px;
    }

    .python-join-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .python-join-category {
        padding: 18px 20px 8px;
    }

    .python-join-description {
        padding: 8px 20px 20px 82px;
        border-left: none;
    }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 480px) {

    .python-join-section {
        padding: 50px 15px;
    }

    .python-join-heading h2 {
        font-size: 26px;
    }

    .python-join-heading p {
        font-size: 15px;
    }

    .python-join-category {
        gap: 14px;
        padding: 17px 15px 7px;
    }

    .python-join-icon {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .python-join-category h3 {
        font-size: 16px;
    }

    .python-join-description {
        padding: 7px 15px 18px 65px;
    }

    .python-join-description p {
        font-size: 14px;
    }

    .python-join-bottom {
        align-items: flex-start;
        gap: 12px;
        padding: 18px;
        margin-top: 30px;
    }

    .python-join-bottom-mark {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .python-join-bottom h3 {
        font-size: 15px;
    }
}




/* =========================================
   Python Institute - What to Look For
========================================= */

.python-institute-check-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.python-institute-check-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Header */

.python-institute-check-header {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.python-institute-check-badge {
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.python-institute-check-header h2 {
    margin: 0;
    color: #0a0e27;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.python-institute-check-divider {
    width: 55px;
    height: 3px;
    margin: 18px auto;
    background: #fa9805;
    border-radius: 10px;
}

.python-institute-check-header p {
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

/* Checklist */

.python-institute-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.python-institute-check-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #dae2eb;
    border-radius: 12px;
    transition: all 0.3s ease;
     border-color: #fa9805;
}

.python-institute-check-item:hover {
    border-color: #fa9805;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(10, 14, 39, 0.07);
}

/* Number */

.python-institute-check-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
     background: #fa9805;
    color: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.python-institute-check-item:hover .python-institute-check-number {
    background: #fa9805;
    color: #ffffff;
}

/* Content */

.python-institute-check-content h3 {
    margin: 0 0 12px;
    color: #0a0e27;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.python-institute-check-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.python-institute-check-content li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 19px;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.python-institute-check-content li:last-child {
    margin-bottom: 0;
}

.python-institute-check-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fa9805;
    font-weight: 700;
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 768px) {

    .python-institute-check-section {
        padding: 60px 18px;
    }

    .python-institute-check-header {
        margin-bottom: 35px;
    }

    .python-institute-check-header h2 {
        font-size: 30px;
    }

    .python-institute-check-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .python-institute-check-item {
        padding: 22px;
    }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 480px) {

    .python-institute-check-section {
        padding: 50px 15px;
    }

    .python-institute-check-header h2 {
        font-size: 26px;
    }

    .python-institute-check-header p {
        font-size: 15px;
    }

    .python-institute-check-item {
        gap: 14px;
        padding: 18px;
    }

    .python-institute-check-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 7px;
        font-size: 11px;
    }

    .python-institute-check-content h3 {
        font-size: 16px;
        margin-bottom: 9px;
    }

    .python-institute-check-content li {
        font-size: 13px;
        padding-left: 17px;
    }
}



/* =========================================
   Python Career Opportunities Section
========================================= */

.python-career-section {
    width: 100%;
    padding: 80px 20px;
    background:white;
}

.python-career-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Header */

.python-career-header {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.python-career-badge {
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.python-career-header h2 {
    margin: 0;
    color: #0a0e27;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.python-career-divider {
    width: 55px;
    height: 3px;
    margin: 18px auto;
    background: #fa9805;
    border-radius: 10px;
}

.python-career-header p {
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

/* Table */

.python-career-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(10, 14, 39, 0.07);
}

.python-career-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.python-career-table th {
    padding: 18px 22px;
    background: #0a0e27;
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}

.python-career-table th:first-child {
    border-radius: 12px 0 0 0;
}

.python-career-table th:last-child {
    border-radius: 0 12px 0 0;
}

.python-career-table td {
    padding: 17px 22px;
    border-bottom: 1px solid #dae2eb;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
}

.python-career-table tbody tr:last-child td {
    border-bottom: none;
}

.python-career-table tbody tr:hover {
    background: #fffaf3;
}

.python-career-table td:first-child {
    color: #0a0e27;
    font-weight: 700;
}

.python-career-table td:nth-child(2) {
    color: #fa9805;
    font-weight: 700;
}

.python-career-table td:nth-child(3) {
    color: #0a0e27;
    font-weight: 600;
}

/* Salary Note */

.python-career-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px auto 0;
    padding: 20px 25px;
    max-width: 900px;
    background: #ffffff;
    border-left: 4px solid #fa9805;
    border-radius: 8px;
}

.python-career-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #fa9805;
    color: #ffffff;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

.python-career-note strong {
    display: block;
    margin-bottom: 5px;
    color: #0a0e27;
    font-size: 15px;
}

.python-career-note p {
    margin: 0;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 768px) {

    .python-career-section {
        padding: 60px 18px;
    }

    .python-career-header {
        margin-bottom: 35px;
    }

    .python-career-header h2 {
        font-size: 30px;
    }

    .python-career-table-wrapper {
        border-radius: 10px;
    }

    .python-career-table th,
    .python-career-table td {
        padding: 15px 18px;
    }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 480px) {

    .python-career-section {
        padding: 50px 15px;
    }

    .python-career-header h2 {
        font-size: 26px;
    }

    .python-career-header p {
        font-size: 15px;
    }

    .python-career-table {
        min-width: 600px;
    }

    .python-career-table th,
    .python-career-table td {
        padding: 13px 15px;
        font-size: 13px;
    }

    .python-career-note {
        gap: 12px;
        padding: 17px;
    }

    .python-career-note-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .python-career-note p {
        font-size: 13px;
    }
}


.cta-course-section {
    background:white;
    padding: 40px 60px;
    position: relative;
}



/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background:#dae2eb;
    padding: 40px 60px;
    position: relative;
}

.faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background:white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fa9805;
}

.faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fa9805;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fa9805;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-style: normal;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}
 .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease;

 }
.faq-item.active .faq-answer {
    opacity: 1;
}


/* .faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
} */

.faq-answer-inner {
    padding: 0 25px 0 25px;
    transform: translateY(-10px);
    transition: transform 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
    padding: 0 25px 25px 25px;
    transform: translateY(0);
}

.faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    animation: fadeInContent 0.5s ease;
}

.faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-inner p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 13px;
        padding: 12px 12px;
    }
    
    .faq-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}