/* UI/UX Page Specific Styles */
.uiUx {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    min-height: 100vh;
}

.uiUx .hero-section {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.pinimg.com/736x/22/89/3e/22893ee52b505782cc46a99ba0444757.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 60px;
}

.uiUx .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,255,157,0.1) 0%, rgba(0,0,0,0) 70%);
    /* z-index: 0; */
}

.uiUx .hero-section .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.uiUx .hero-section .col-50 {
    width: 45%;
}

.uiUx .hero-text {
    position: relative;
    z-index: 2;
}

.uiUx .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.uiUx .hero-text h1 span {
    color: #00ff9d;
    display: block;
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
    background: linear-gradient(45deg, #00ff9d, #00cc7e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.uiUx .hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #00ff9d;
}

.uiUx .hero-image {
    position: relative;
    z-index: 2;
}

.uiUx .hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Course Highlights Section */
.course-highlights {
    padding: 5rem 0;
    background: #1a1a1a;
}

.course-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.course-highlights h2 span {
    color: #00ff9d;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.highlight-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: #333;
}

.highlight-card i {
    font-size: 2.5rem;
    color: #00ff9d;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

/* What You'll Learn Section */
.what-you-learn {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 28, 46, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.what-you-learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/faq-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.what-you-learn h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.what-you-learn h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ff9d, #00cc7e);
    margin: 15px auto 0;
    border-radius: 2px;
}

.term-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.term-tab {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.term-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.term-tab.active {
    background: #00ff9d;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.term-content {
    position: relative;
    z-index: 2;
}

.term {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.5s ease;
}

.term.active {
    display: block;
}

.term h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.term h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00ff9d;
    border-radius: 2px;
}

.term ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.term ul li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 15px 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.term ul li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.term ul li::before {
    content: '•';
    color: #00ff9d;
    position: absolute;
    left: 10px;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-right: 10px;
}

.term ul li span {
    margin-left: 25px;
    flex: 1;
}

/* Term Content Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .term ul {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .what-you-learn {
        padding: 80px 0;
    }
    
    .what-you-learn h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .term-tab {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .term {
        padding: 30px;
    }
    
    .term h4 {
        font-size: 1.6rem;
    }
    
    .term ul li {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .what-you-learn {
        padding: 60px 0;
    }
    
    .what-you-learn h2 {
        font-size: 2rem;
    }
    
    .term-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .term-tab {
        width: 100%;
        max-width: 250px;
    }
    
    .term {
        padding: 25px;
    }
    
    .term h4 {
        font-size: 1.4rem;
    }
    
    .term ul li {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles for Hero Section */
@media (max-width: 992px) {
    .uiUx .hero-section {
        padding: 100px 0 40px;
    }

    .uiUx .hero-text h1 {
        font-size: 3rem;
    }

    .uiUx .hero-text h1 span {
        font-size: 3.5rem;
    }

    .uiUx .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .uiUx .hero-section {
        padding: 140px 0 40px;
    }

    .uiUx .hero-section .flex {
        flex-direction: column;
        gap: 40px;
    }

    .uiUx .hero-section .col-50 {
        width: 100%;
        text-align: center;
    }

    .uiUx .hero-text {
        padding-top: 20px;
    }

    .uiUx .hero-text h1 {
        font-size: 2.5rem;
        margin-top: 20px;
    }

    .uiUx .hero-text h1 span {
        font-size: 3rem;
    }

    .uiUx .hero-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 20px;
        text-align: center;
        border-left: none;
        border-bottom: 3px solid #00ff9d;
        padding-bottom: 15px;
    }

    .uiUx .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .uiUx .hero-image img {
        animation: float 4s ease-in-out infinite;
    }
}

@media (max-width: 576px) {
    .uiUx .hero-section {
        padding: 160px 0 30px;
    }

    .uiUx .hero-text {
        padding-top: 30px;
    }

    .uiUx .hero-text h1 {
        font-size: 2rem;
        margin-top: 30px;
    }

    .uiUx .hero-text h1 span {
        font-size: 2.5rem;
    }

    .uiUx .hero-text p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .uiUx .hero-image {
        max-width: 90%;
    }
} 