/* Animated Learnify Logo */
.animated-learnify-logo .logo-gradient {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #0056d2 0%, #43cea2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    display: inline-block;
    animation: logoFadeIn 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
/* .small-search {
    width: 100px !important;
    font-size: 0.95rem !important;
    padding: 6px 8px !important;
}
.navbar-search-btn i {
    font-size: 0.6rem;
}
.navbar-link i,
.explore-btn i,
.dropdown-content a i,
.join-btn i {
    margin-right: 4px;
    font-size: 0.6rem;
    vertical-align: middle;
} */
/* 
/* Modern Animated Logo Styles */
/* .animated-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #0056d2 0%, #43cea2 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoFadeIn 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.logo-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    animation: logoBounce 1.2s infinite alternate;
}

.logo-text {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.logo8-accent {
    color: #43cea2;
    font-weight: 900;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(67,206,162,0.15);
    animation: accentPulse 1.5s infinite alternate;
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes accentPulse {
    0% { color: #43cea2; text-shadow: 0 2px 8px rgba(67,206,162,0.15); }
    100% { color: #0056d2; text-shadow: 0 4px 16px rgba(0,86,210,0.18); }
} */
/* 
 body {
    margin: 0;
    margin-top: 64px;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    overflow-x: unset !important;
}
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 10px 5%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        } */
    /* Coursera-like Navbar Styles */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,86,210,0.08);
        padding: 0 32px;
        min-height: 30px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .navbar-left {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .navbar-logo a {
        font-family: 'Segoe UI', Arial, sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #0056d2;
        text-decoration: none;
        letter-spacing: 2px;
    }

    .explore-dropdown {
        position: relative;
    }
    .explore-btn {
        background: #fff;
        border: 1.5px solid #0056d2;
        color: #0056d2;
        font-weight: 600;
        padding: 8px 22px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.2s, color 0.2s;
    }
    .explore-btn:hover {
        background: #e3f0ff;
    }
    .dropdown-arrow {
        font-size: 0.7em;
        margin-left: 6px;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        left: 0;
        top: 110%;
        background: #fff;
        min-width: 180px;
        box-shadow: 0 4px 16px rgba(0,86,210,0.10);
        border-radius: 8px;
        overflow: hidden;
        z-index: 10;
    }
    .explore-dropdown:hover .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        display: block;
        padding: 12px 18px;
        color: #0056d2;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s, color 0.2s;
    }
    .dropdown-content a:hover {
        background: #e3f0ff;
        color: #003e99;
    }

    .navbar-search-form {
        display: flex;
        align-items: center;
        background: #f1f5fa;
        border-radius: 24px;
        padding: 4px 16px;
        margin-left: 18px;
        box-shadow: 0 2px 8px rgba(0,86,210,0.07);
        min-width: 240px;
    }
    .navbar-search-input {
        border: none;
        outline: none;
        background: transparent;
        padding: 10px 12px;
        font-size: 1rem;
        width: 230px;
    }
    .navbar-search-btn {
        background: #0056d2;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-left: 8px;
        font-size: 1.2rem;
        transition: background 0.2s;
    }
    .navbar-search-btn:hover {
        background: #43cea2;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }
    .navbar-link {
        color: #444;
        font-weight: 600;
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
    }
    .navbar-link:hover {
        background: #e3f0ff;
        color: #0056d2;
    }
    .join-btn {
        background: #fff;
        color: #0056d2;
        border: 2px solid #0056d2;
        border-radius: 8px;
        font-weight: 700;
        padding: 8px 22px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        margin-right: 40px;
    }
    .join-btn:hover {
        background: #0056d2;
        color: #fff;
    }

    @media (max-width: 900px) {
        .navbar {
            flex-direction: column;
            align-items: stretch;
            padding: 0 12px;
        }
        .navbar-left {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }
        .navbar-search-form {
            min-width: 150px;
            width: 60%;
        }
        .navbar-search-input {
            width: 60%;
        }
        .navbar-right {
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }
    }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #0056D2;
        }

        .auth-buttons {
            display: flex;
        }

        .auth-buttons button {
            margin-left: 10px;
            padding: 8px 16px;
            border: 1px solid #0056D2;
            background-color: transparent;
            color: #0056D2;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s, color 0.3s;
        }

        .auth-buttons button:hover {
            background-color: #0056D2;
            color: #fff;
        }

        .search-bar {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }

        .search-bar input {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            width: 250px;
        }

        .search-bar button {
            margin-left: 10px;
            padding: 8px 16px;
            background-color: #0056D2;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        } 
   body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: white;
            position: fixed;
            width: 100%;
            top: 0;
            transition: background-color 0.3s;
        }

        .navbar.scrolled {
            background-color: black;
        }

        .navbar.scrolled .nav-links a,
        .navbar.scrolled .auth-buttons button {
            color: white;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #000;
            text-decoration: none;
        }

        .logo span {
            color: #4CAF50;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin: 0 10px;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
        }

        .search-bar {
            display: flex;
            align-items: center;
            margin: 0 10px;
        }

        .search-bar input {
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
            color: #000;
        }

        .auth-buttons button {
            margin: 0 5px;
            padding: 5px 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            background-color: #4CAF50;
            color: white;
        }

        .auth-buttons button:last-child {
            background-color: transparent;
            color: #000;
        }

        .hero {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: #f4f4f4;
            padding: 20px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
/* header{
    width: 100%;
} */
/*
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 0 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 64px;
    position: fixed;    
    top: 0;
    left: 0;
    width: 100%;        
    z-index: 1000;
}

.navbar-logo {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0056d2;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    user-select: none;
}

.navbar-logo .logo-accent {
    background: linear-gradient(135deg, #3b82f6 60%, #6ee7b7 100%);
    color: #fff;
    border-radius: 8px;
    padding: 2px 10px;
    margin-right: 4px;
    font-size: 2.2rem;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(59,130,246,0.12);
    letter-spacing: 0;
}

.navbar-logo:hover {
    color: #003e99;
    text-shadow: 0 2px 12px #cbe6ff;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    margin-left: 32px;
}

.navbar-menu li {
    display: flex;
    align-items: center;
   
}

.navbar-menu li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    font-size: 12px;
    }

.navbar-menu li a:hover {
    background: #e3f0ff;
    color: #0056d2;
}
div.a1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 150px;
}

.navbar-search {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 1rem;
    outline: none;
    background: #f5f5f5;
    transition: border 0.2s;
    margin-right: 8px;
    width: 300px;
}

.navbar-search:focus {
    border: 1.5px solid #0056d2;
    background: #fff;
}

.navbar-btn {
    padding: 10px 35px;
    border: 1px solid #0056d2;
    border-radius: 5px;
    background:  #fff;
    color:#0056d2;
     
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-right: 8px;
    box-shadow: 0 2px 6px rgba(0,86,210,0.08);
}

.navbar-btn:hover {
    background: #003e99;
    box-shadow: 0 4px 12px rgba(0,86,210,0.12);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-btn-left {
    order: -1;
}

.navbar-btn-right {
    order: 2;
    margin-right: 50px;
}

@media (max-width: 768px) {
    .navbar-menu {
        flex-direction: column;
        display: none;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
    }
}

.universities {
    padding: 48px 10vw 32px 10vw;
    background: #f8f9fa;
    text-align: center;
}

.universities h2 {
    font-size: 2rem;
    color: #003e99;
    margin-bottom: 8px;
    font-weight: 700;
}

.universities p {
    color: #333;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.university-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    justify-items: center;
}

.university {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,86,210,0.07);
    padding: 18px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}


.university img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,86,210,0.08);
}

.university span {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
}

.university:hover {
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
}

.invest-career {
    background: #eee8e8;
    padding: 56px 10vw 48px 10vw;
    text-align: center;
    z-index: 1;
    position: relative;
}

.invest-career h2 {
    font-size: 2.2rem;
    color: #003e99;
    margin-bottom: 36px;
    font-weight: 700;
   
}

.career-examples {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 32px;
}

.career-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 28px 28px;
    margin: 0 8px 24px 8px;
    min-width: 240px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0,86,210,0.08);
    transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
    text-align: center;
    position: relative;
    overflow: hidden;
   
}

.career-card:hover {
    background: linear-gradient(135deg, #e3f0ff 60%, #cbe6ff 100%);
    box-shadow: 0 8px 32px rgba(0,86,210,0.18);
    transform: translateY(-6px) scale(1.03);
}

.icon-circle {
    background: linear-gradient(135deg, #6ee7b7 0%, #3b82f6 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.12);
    transition: background 0.3s;
}

.career-card:nth-child(2) .icon-circle {
    background: linear-gradient(135deg, #fbbf24 0%, #f472b6 100%);
}
.career-card:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
}

.icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.career-card h3 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.career-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}*/

/* 
.company-logos img {
    height: 40px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}
/* .tesla{
    height: 400px;
    width: 500px;
} */
/* 
.company-logos img:hover {
    opacity: 1;
}  */

.logo8 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #0056d2;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    user-select: none;
    transition: color 0.2s;
   
}

.logo8-accent {
    background: linear-gradient(135deg, #3b82f6 60%, #6ee7b7 100%);
    color: #fff;
    border-radius: 10px;
    padding: 4px 14px;
    margin-right: 6px;
    font-size: 35px;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(59,130,246,0.12);
    letter-spacing: 0;
    transition: box-shadow 0.2s;
    
}

.logo8:hover {
    color: #003e99;
    text-shadow: 0 2px 12px #cbe6ff;
}

.logo8-accent:hover {
    box-shadow: 0 4px 16px #6ee7b7;
}
.hero-content .logo8 {
    margin-top: -30px; 
    margin-bottom: 4px;/* Decrease space below logo */
    line-height: 1;     /* Optional: tighten the logo line itself */
}

.career-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
    padding: 64px 10vw;
    border-radius: 22px;
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: 0 4px 24px rgba(0,86,210,0.10);
    gap: 48px;
    transition: box-shadow 0.3s, transform 0.3s;
    margin-top: 150px;
}

.career-benefits:hover {
    box-shadow: 0 8px 32px rgba(0,86,210,0.18);
    transform: translateY(-4px) scale(1.01);
}

.career-benefits-content {
    flex: 1;
    min-width: 260px;
    padding: 12px 0;
}

.career-benefits-content h2 {
    font-size: 2.3rem;
    color: #0056d2;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.career-benefits-content h2:hover {
    color: #003e99;
    text-shadow: 0 2px 12px #cbe6ff;
}

.career-benefits-content p {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.6;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(0,86,210,0.06);
    transition: background 0.2s;
}

.career-benefits-content p:hover {
    background: #e3f0ff;
}

.career-benefits-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.career-benefits-image img {
    max-width: 340px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,86,210,0.13);
    transition: box-shadow 0.3s, transform 0.3s;
}

.career-benefits-image img:hover {
    box-shadow: 0 8px 32px rgba(0,86,210,0.18);
    transform: scale(1.05) rotate(-2deg);
}

.career-skills {
    background: #f5faff;
    padding: 56px 10vw 48px 10vw;
    text-align: center;
    border-radius: 22px;
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: 0 2px 16px rgba(0,86,210,0.08);
}

.career-skills h2 {
    font-size: 2.2rem;
    color: #0056d2;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.career-skills-desc {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 36px;
    line-height: 1.6;
}

.career-skills-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.skill-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px 24px 24px;
    max-width: 300px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(0,86,210,0.08);
    transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.skill-card:hover {
    background: linear-gradient(135deg, #e3f0ff 60%, #cbe6ff 100%);
    box-shadow: 0 8px 32px rgba(0,86,210,0.18);
    transform: translateY(-6px) scale(1.03);
}

.skill-university {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.skill-university img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,86,210,0.08);
    margin-bottom: 0;
}
.skill-university .first{
    width: 500px;
    height: 200px;
    
}
.skill-slider img{
    border-radius: 20px
}
.skill-university .top{
    margin-top: 20px;
}

.skill-card .margin{
    margin-right: 400px;
    height: 200px;
    width: 300px;
     border-radius: 10px
     
}


.skill-university span {
    font-size: 1rem;
    color: #0056d2;
    font-weight: 700;
   
}

.skill-card h3 {
    font-size: 1.15rem;
    color: #222;
    /* margin-bottom: 12px; */
    font-weight: 700;
    /* letter-spacing: 0.01em; */
}

.skill-meta {
    margin-top: 8px;
}

.skill-level {
    font-size: 0.98rem;
    color: #444;
    background: #e3f0ff;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 500;
    display: inline-block;
}

.skill-badge {
    font-size: 0.98rem;
    color: #fff;
    background: linear-gradient(90deg, #0056d2 60%, #6ee7b7 100%);
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,86,210,0.10);
}

.career-skills-slider {
    background: #f5faff;
    padding: 56px 10vw 48px 10vw;
    border-radius: 22px;
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: 0 2px 16px rgba(0,86,210,0.08);
    text-align: left;
}

.career-skills-slider h2 {
    font-size: 2.2rem;
    color: #0056d2;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-align: left;
}

.skills-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #0056d2 #e3f0ff;
}

.skills-slider::-webkit-scrollbar {
    height: 8px;
}
.skills-slider::-webkit-scrollbar-thumb {
    background: #0056d2;
    border-radius: 8px;
}
.skills-slider::-webkit-scrollbar-track {
    background: #e3f0ff;
    border-radius: 8px;
}

 .trial-btn {
    margin: 18px 0 50px 0;
    padding: 14px 36px;
    background: linear-gradient(90deg, #0056d2 60%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,86,210,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-block;
       

} 
.trial-btn:hover {
    background: linear-gradient(90deg, #003e99 60%, #0056d2 100%);
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.03);
}
.skill-meta button {
    margin-top: 14px;
    padding: 10px 24px;
    background: linear-gradient(90deg, #0056d2 60%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,86,210,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-block;
}

.skill-meta button:hover {
    background: linear-gradient(90deg, #003e99 60%, #0056d2 100%);
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.04);
}
.skill-card button {
    margin-top: 16px;
    padding: 12px 32px;
    background: linear-gradient(90deg, #0056d2 60%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,86,210,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.skill-card button:hover {
    background: linear-gradient(90deg, #003e99 60%, #0056d2 100%);
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.04);
}
.search-programs {
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
    padding: 56px 10vw 48px 10vw;
    border-radius: 22px;
    margin:  auto;
    /* width: 60%%; */
    box-shadow: 0 2px 16px rgba(0,86,210,0.08);
    text-align: center;
}

.search-programs h3 {
    font-size: 2rem;
    color: #0056d2;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
    margin-right: 300px;
    
}

.search-desc {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.6;
     margin-right: 300px;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 90%;
     margin-right: 510px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 1.08rem;
    border: 1.5px solid #0056d2;
    /* border-radius: 24px 0 0 24px; */
    outline: none;
    background: #fff;
    transition: border 0.2s;
   width: 80%;
    box-shadow: 0 2px 8px rgba(0,86,210,0.06);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    
}

.search-input:focus {
    border-color: #003e99;
    background: #f5faff;
}

.search-btn {
    padding: 14px 32px;
    background: linear-gradient(90deg, #0056d2 60%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 0 24px 24px 0;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,86,210,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
    margin-right: 50px;
}

.search-btn:hover {
    background: linear-gradient(90deg, #003e99 60%, #0056d2 100%);
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.04);
}

.popular-buttons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    /* margin-left: 50px; */
}

@media (max-width: 900px) {
    .popular-buttons-row {
        gap: 12px;
        margin: 32px 0 18px 0;
    }
}

@media (max-width: 600px) {
    .popular-buttons-row {
        flex-direction: column;
        gap: 8px;
     }
  
    .popular-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    }

.career-skills-slider button {
    margin: 32px ;
    padding: 14px 38px;
    background: linear-gradient(90deg, #0056d2 60%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,86,210,0.10);
    transition: 
        background 0.2s, 
        box-shadow 0.2s, 
        transform 0.2s,
        letter-spacing 0.3s;
    letter-spacing: 0.5px;
    display: block;
    position: relative;
    overflow: hidden;

}

.career-skills-slider button:hover {
    background: linear-gradient(90deg, #003e99 60%, #0056d2 100%);
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.06);
    letter-spacing: 2px;
}

.career-skills-slider button::after {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-20deg);
    transition: left 0.4s;
    pointer-events: none;
}

.career-skills-slider button:hover::after {
    left: 110%;
}

.subscriber-achievements {
    text-align: center;
    padding: 60px 10vw;
    background: #fff;
}
.subscriber-achievements h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #333;
    margin-right: 200px;
}
.achievements-grid {
    display: flex;
    justify-content: center;
    gap: 55px;
    flex-wrap: wrap;
}
.achievement-card {
    background: blue;
    border-radius: 12px;
    padding: 32px 24px;
    min-width: 220px;
    max-width: 300px;
    box-shadow: 0 4px 16px rgba(0,86,210,0.07);
    text-align: center;
}
.achievement-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}
.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0056d2;
}
.achievement-card p {
    font-size: 15px;
    color: #555;
}
@media (max-width: 800px) {
    .achievements-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* --- PLANS SECTION (Coursera-like) --- */
.plans-toggle-section {
    text-align: center;
    padding: 60px 10vw 40px 10vw;
    background: #f8fafc;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,86,210,0.07);
    margin: 48px 0 0 0;
    position: relative;
}

.plans-toggle-section h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
    color: #222;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.icon-star {
    color: #ffd700;
    font-size: 1.5rem;
    vertical-align: middle;
}

.plans-toggle-desc {
    font-size: 1.15rem;
    margin-bottom: 36px;
    color: #555;
}

.plans-toggle {
    display: flex;
    justify-content: center;
    background: #e3e9f7;
    border-radius: 40px;
    box-shadow: 0 2px 16px rgba(0,86,210,0.07);
    padding: 6px;
    gap: 0;
}

.plans-toggle-btn {
    padding: 14px 38px;
    background: transparent;
    color: #0056d2;
    border: none;
    border-radius: 32px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: 
        background 0.25s, 
        color 0.25s, 
        box-shadow 0.25s, 
        transform 0.18s;
    letter-spacing: 0.5px;
    outline: none;
    position: relative;
    z-index: 1;
}

.plans-toggle-btn.active,
.plans-toggle-btn:focus,
.plans-toggle-btn:hover {
    background: linear-gradient(90deg, #0056d2 60%, #43cea2 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.04);
}

.plans-toggle-btn::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 3px;
    background: #43cea2;
    border-radius: 2px;
    transition: width 0.25s, left 0.25s;
}

.plans-toggle-btn.active::after {
    width: 60%;
    left: 20%;
}

@media (max-width: 600px) {
    .plans-toggle-capsule {
        margin-bottom: 24px;
    }
    .plans-toggle {
        flex-direction: column;
        padding: 4px;
    }
    .plans-toggle-btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px 0;
        margin-bottom: 4px;
    }
}

.plans-toggle-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin: 48px 0;
    flex-wrap: wrap;
}

.plan-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,86,210,0.10);
    padding: 36px 32px 32px 32px;
    min-width: 280px;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 24px;
}

.plan-card.popular {
    border: 2.5px solid #0056d2;
    box-shadow: 0 8px 32px rgba(0,86,210,0.18);
    transform: scale(1.04);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    /* background: linear-gradient(90deg, #0056d2 60%, #43cea2 100%); */
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,86,210,0.10);
    letter-spacing: 0.5px;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0056d2;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 18px;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 8px;
}

.plan-duration {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    margin-left: 4px;
}

.plan-guarantee {
    font-size: 0.98rem;
    color: #43cea2;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.plan-features li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    padding-left: 1.2em;
    position: relative;
}

.plan-features li::before {
    content: "✓";
    color: #43cea2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-btn {
    margin-top: auto;
    padding: 14px 32px;
    background: linear-gradient(90deg, #0056d2 60%, #43cea2 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,86,210,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
}

.plan-btn:hover {
    background: linear-gradient(90deg, #003e99 60%, #0056d2 100%);
    box-shadow: 0 6px 24px rgba(0,86,210,0.13);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
    .plans-toggle-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .plan-card {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
    }
}

/* Modern FAQ Section Styles */
.faq-section.modern-faq {
  background: linear-gradient(135deg, #e1f5fe 0%, #fff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,86,210,0.08);
  padding: 48px 10vw;
  margin: 48px 0;
}
.faq-section.modern-faq h2 {
  font-size: 2.3rem;
  color: #0056d2;
  margin-bottom: 32px;
  letter-spacing: 1px;
  font-weight: 700;
}
.faq-section.modern-faq .faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-section.modern-faq .faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,86,210,0.07);
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-section.modern-faq .faq-toggle:checked ~ .faq-question {
  background: #e1f5fe;
}
.faq-section.modern-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  padding: 22px 32px 22px 24px;
  transition: background 0.2s;
  width: 100%;
}
.faq-section.modern-faq .faq-question:hover {
  background: #e1f5fe;
}
.faq-section.modern-faq .faq-arrow {
  font-size: 1.2rem;
  color: #0056d2;
  transition: transform 0.2s;
}
.faq-section.modern-faq .faq-toggle:checked ~ .faq-question .faq-arrow {
  transform: rotate(180deg);
}
.faq-section.modern-faq .faq-answer {
  padding: 0 32px 22px 24px;
  font-size: 1rem;
  color: #555;
  background: #f7fbff;
  border-top: 1px solid #e1f5fe;
  display: none;
  animation: fadeInFaq 0.3s;
}
.faq-section.modern-faq .faq-toggle:checked ~ .faq-question ~ .faq-answer {
  display: block;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px);}
  to { opacity: 1; transform: translateY(0);}
}
.faq-section.modern-faq .show-all {
  text-align: center;
  margin: 24px 0 0 0;
}
.faq-section.modern-faq .show-all a {
  color: #0056d2;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}
.faq-section.modern-faq .show-all a:hover {
  color: #003e99;
}
.faq-section.modern-faq .footer-link {
  text-align: center;
  margin-top: 12px;
}
.faq-section.modern-faq .footer-link a {
  color: #333;
  font-size: 0.95rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.faq-section.modern-faq .footer-link a:hover {
  color: #0056d2;
}
@media (max-width: 700px) {
  .faq-section.modern-faq {
    padding: 32px 4vw;
  }
  .faq-section.modern-faq h2 {
    font-size: 1.5rem;
  }
  .faq-section.modern-faq .faq-list {
    max-width: 100%;
  }
  .faq-section.modern-faq .faq-question, .faq-section.modern-faq .faq-answer {
    padding-left: 12px;
    padding-right: 12px;
  }
}

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

/* For tablets and below */
@media (max-width: 900px) {
  .hero, .career-benefits {
    flex-direction: column;
    text-align: center;
    padding: 32px 5vw;
    gap: 24px;
  }
  .hero-image img, .career-benefits-image img {
    margin-top: 24px;
    max-width: 90vw;
  }
  .skills-slider, .career-examples {
    flex-direction: column;
    gap: 16px;
  }
  .plans-toggle-cards {
    grid-template-columns: 1fr;
  }
}

/* For mobile screens */
@media (max-width: 600px) {
  body, html {
    font-size: 15px;
    padding: 0;
    margin: 0;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4vw;
  }
  .navbar-menu {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .navbar-right {
    margin-top: 12px;
    width: 100%;
    text-align: right;
  }
  .hero, .career-benefits, .career-skills-slider, .universities, .trusted-companies, .subscriber-achievements, .plans-toggle-section, .search-programs {
    padding: 24px 3vw;
  }
  .hero-content h1, .universities h2, .career-benefits-content h2, .career-skills-slider h2, .trusted-companies h2, .subscriber-achievements h2, .plans-toggle-section h2, .search-programs h2 {
    font-size: 1.4rem;
  }
  .hero-content p, .universities p, .career-benefits-content p, .career-skills-slider p, .trusted-companies p, .subscriber-achievements p, .plans-toggle-desc, .search-desc {
    font-size: 1rem;
  }
  .skills-slider, .career-examples, .company-logos, .popular-buttons-row {
    flex-direction: column;
    gap: 10px;
  }
  .skill-card, .career-card, .plan-card, .achievement-card {
    min-width: 0;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .plan-title, .achievement-card h3, .career-card h3 {
    font-size: 1.1rem;
  }
  .plan-btn, .trial-btn, .popular-btn, .plans-toggle-btn, .search-btn {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .search-form {
    flex-direction: column;
    gap: 8px;
  }
  .search-input {
    font-size: 1rem;
    padding: 10px 12px;
  }
  .company-logos img, .career-benefits-image img, .hero-image img {
    max-width: 100%;
    height: auto;
  }
  .university-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .modern-faq {
    padding: 24px 3vw;
  }
  .modern-faq h2 {
    font-size: 1.2rem;
  }
  .modern-faq .faq-question, .modern-faq .faq-answer {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 1rem;
  }
}

/* Make images always fluid */
img {
  max-width: 100%;
  height: auto;
  display: block;
}








.search-programs {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.search-programs h3 {
    color: #333;
    font-size: 2em;
    margin-bottom: 10px;
}

.search-desc {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-input {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    width: 60%;
    outline: none;
}

.search-btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #0056b3;
}

.popular-buttons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #e9ecef;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.popular-btn:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
