.svc-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;

}

.svc-subtitle {
    color: #5be0e6;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.svc-title {
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.4;
}

/* Cards */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.svc-card {
    background: transparent;
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid transparent;
    text-align: left;
}

.svc-card h3 {
    margin-top: 15px;
    color: #ffffff;
    font-size: 1.1rem;
}

.svc-card:hover {
    box-shadow: 0 0 10px #61dafb;
}

.svc-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Glow effect follow */
.svc-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, #5e29ff55, transparent 60%);
    transform: translate(-50%, -50%);
    left: var(--x);
    top: var(--y);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 0;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

/* Scroll animation */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

[data-animate].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .svc-title {
        font-size: 1.8rem;
    }


    .svc-card {
        text-align: center;
    }

    .svc-icon img {
        margin: auto;
    }
}

.service-section {
    color: #f1f1f1;
    padding: 80px 20px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.service-subtitle {
    text-transform: uppercase;
    color: #ff6ec4;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.service-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #62D6E5;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.2);
}

.service-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-points li {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1rem;
    color: #f1f1f1;
}

.service-image {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 255, 224, 0.15);
    transition: transform 0.5s ease;
}

@media only screen and (max-width:768px) {
    .service-image {
        flex: 1 1 280px;
        max-width: 280px;
    }
}

.service-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Scroll Animation Classes */
.animate-on-scroll-left,
.animate-on-scroll-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll-left {
    transform: translateX(-60px);
}

.animate-on-scroll-right {
    transform: translateX(60px);
}

.animate-on-scroll-left.visible,
.animate-on-scroll-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media only screen and (max-width:768px) {
    .service-title {
        font-size: 22px;
    }

    .service-description {
        font-size: 14px;
    }

    .svc-section {
        padding: 20px;
    }

    .svc-title {
        font-size: 22px;
        margin: 2px;
    }

    .svc-card {
        padding: 8px;
    }

}

.faq-section {
    padding: 60px 20px;
}

.faq-container-x1u9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1300px;
    margin: auto;
}

.faq-left-x1u9 {
    flex: 1 1 300px;
    min-width: 250px;
}

.faq-left-x1u9 h3 {
    color: #00D0FF;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-left-x1u9 h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-right-x1u9 {
    flex: 2 1 600px;
    min-width: 300px;
}

.faq-item-x1u9 {
    border-bottom: 1px solid #333;
    padding: 15px 0;
    cursor: pointer;
}

.faq-item-x1u9 h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #eee;
    transition: color 0.3s ease;
}

.faq-item-x1u9.open h4 {
    color: #58a6ff;
}

.faq-item-x1u9 .faq-answer-x1u9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    padding-left: 10px;
}

.faq-item-x1u9.open .faq-answer-x1u9 {
    max-height: 400px;
    opacity: 1;
    margin-top: 8px;
}

.faq-arrow-x1u9 {
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-item-x1u9.open .faq-arrow-x1u9 {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-container-x1u9 {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .faq-left-x1u9 h2 {
        font-size: 26px;
    }

    .faq-item-x1u9 h4 {
        font-size: 17px;
    }

    .faq-item-x1u9 .faq-answer-x1u9 {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-left-x1u9 {
        flex: 1 1 60px;
    }

    .faq-left-x1u9 h2 {
        font-size: 22px;
    }

    .faq-left-x1u9 h3 {
        font-size: 10px;
    }

    .faq-item-x1u9 h4 {
        font-size: 14px;
    }

    .faq-item-x1u9 .faq-answer-x1u9 {
        font-size: 12px;
    }

}

.course-tab-section {
    margin: 20px auto;
    max-width: 1200px;
    /* You asked for 1300px */
    width: 100%;
}

/* Layout */
.course-tab-body {
    color: #fff;
    display: flex;
    overflow: hidden;
    border-radius: 16px;

}

/* Left Sidebar (Desktop) */
.course-tabs {
    width: 300px;
    backdrop-filter: blur(12px);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tab-btn {
    padding: 14px 18px;
    margin: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: #ccc;
    border: none;
    background: transparent;
    text-align: left;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    /* Prevent text break */
    overflow: hidden;
}

.tab-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F49F0E, #F49F0E);
    transition: left 0.4s ease;
    z-index: -1;
}

.tab-btn:hover::before {
    left: 0;
}

.tab-btn:hover {
    color: #fff;
    transform: translateX(6px);
}

.tab-btn.active {
    background: linear-gradient(90deg, #F49F0E, #F49F0E);
    color: #fff;
}

/* Right Content */
.tab-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    animation: fadeIn 0.6s ease;
    min-height: 100%;
    /* fix shrinking */
}

.tab-pane {
    display: none;
    animation: slideIn 0.6s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffb347;
}

.tab-pane p {
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ddd;
}

/* Button */
.apply-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0cc9e1, #0cc9e1);
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apply-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px #0cc9e1;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .course-tab-body {
        flex-direction: column;
        height: auto;
    }

    .course-tabs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding: 10px;
        gap: 10px;
    }

    .tab-btn {
        flex: 0 0 auto;
        /* don’t shrink */
        text-align: center;
        font-size: 14px;
        padding: 12px 18px;
        margin: 0;
    }

    .tab-content {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .tab-pane h2 {
        font-size: 20px;
    }

    .tab-pane p {
        font-size: 14px;
    }

    .apply-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .course-tabs {
        gap: 6px;
    }

    .tab-btn {
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* Unique namespace for tab component */
.development-tabs {
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 1300px;
    margin: auto;
}

.development-tabs h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;

}

/* Tab Buttons */
.development-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.development-tab-btn {
    background: transparent;
    border: 2px solid #00e0ff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #00e0ff;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.development-tab-btn.active,
.development-tab-btn:hover {
    background: #00e0ff;
    color: #0b0e1a;
    box-shadow: 0 0 20px #00e0ff80;
    transform: scale(1.05);
}

/* Tab Content */
.development-tab-content {
    position: relative;
    min-height: 200px;
}

.development-tab-panel {
    display: none;
    animation: fadeInUp 0.8s ease forwards;
}

.development-tab-panel.active {
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .development-tab-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* Container */
.development-ai-container {
    padding: 25px;
    border-radius: 14px;

    animation: fadeInUp 1s ease;
    box-shadow: 0 0 20px #00e0ff25;
}

/* Header */
.development-ai-header {
    text-align: center;
    margin-bottom: 20px;
}

.development-ai-header h3 {
    font-size: 26px;
    color: #00e0ff;
    margin-bottom: 12px;
}

.development-ai-header p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Body */
.development-ai-body p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

/* Industries */
.development-ai-industries h4 {
    text-align: center;
    font-size: 20px;
    color: #00e0ff;
    margin-bottom: 15px;
}

.development-ai-industries ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.development-ai-industries ul li {
    background: #1a1f36;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.development-ai-industries ul li:hover {
    background: #00e0ff20;
    box-shadow: 0 0 15px #00e0ff50;
    transform: translateY(-6px) scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.development-services-container {
    padding: 25px;
    border-radius: 14px;
    animation: fadeInUp 1s ease;
    box-shadow: 0 0 20px #00e0ff25;
}

.development-services-header {
    text-align: center;
    margin-bottom: 25px;
}

.development-services-header h3 {
    font-size: 26px;
    color: #00e0ff;
    margin-bottom: 12px;
}

.development-services-header p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

.development-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.development-service-card {
   
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 0 12px #00e0ff25;
    transform: translateY(0);
    cursor: pointer;
}

.development-service-card h4 {
    font-size: 18px;
    color: #00e0ff;
    margin-bottom: 10px;
}

.development-service-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.development-service-card:hover {
    background: #00e0ff15;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 25px #00e0ff60;
}