body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    display: flex;
    justify-content: center;
}

nav {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    margin-right: 20px;
    color: #0056d2;
    font-family: sans-serif;
}

.explore-btn {
    background: none;
    border: 1px solid #0056d2;
    color: #0056d2;
    padding: 8px ;
    cursor: pointer;
    margin-right: 15px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #fff;
}
.explore-btn span{
    margin-left: 10px;
}

.search-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px 15px;
    flex-grow: 1;
    width: 400px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 40px; /* Ensure uniform height */
}

.search-container input[type="text"] {
    border: none;
    outline: none;
    padding: 5px;
    width: 100%;
    font-size: 14px;
    background: transparent;
    color: #333;
}

.search-container input::placeholder {
    color: #777;
    font-size: 14px;
}

.search-btn {
    background: #0f51ad;
    border-radius:20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    padding: 5px;
    display: flex;
    align-items: center;
}

.search-btn .material-icons {
    font-size: 25px;
    color: #fff;
} 
.nav-right a {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}
.nav-right a:hover{
    color: #0056d2;
}
.join-btn {
    background-color: #0056d2;
    color: white !important;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}
.join-btn:hover{
    background-color: #fff;
    color: #0056d2 !important;
    border: 2px solid #0056d2;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f6ff;
    min-height: 55vh; /* Ensure proper height coverage */
}

.hero-text {
    max-width: 40%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text h1 {
    font-size: 45px; /* Increase heading size */  
    color: #1f1f1f;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.trial-btn {
    background-color: #0056d2;
    color: white;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 25px !important;
}

.trial-btn:hover {
    background-color: #0041a3;
}

.guarantee {
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
    color: #0056d2 !important;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 50%;
}

.hero-image img {
    width: 90%; /* Increase image size */
    max-height: 85vh; /* Ensure better height coverage */
    object-fit: cover;
}


.partners {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background-color: #ffffff;
}

.partners h2 {
    font-size: 25px;
    color: #1f1f1f;
    width: 100%; /* Ensures the text stays to the left of the logos */
    text-align: left;
}

.logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; /* Ensures proper spacing between logos */
    width: 100%; /* Ensures logos stay beside the heading */
}

.logos img {
    width: auto;
    height: 120px; /* Increase logo size */
    object-fit: contain;
}


.career-section {
    background-color: #f5f9ff;
    text-align: center;
    padding: 40px 0;
}

.career-section h2 {
    font-size: 25px;
    margin-bottom: 40px;
}

.career-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px; /* Prevents overflowing */
    margin: auto;
    gap: 40px;
    padding: 0 20px; /* Ensures it stays within boundaries */
    box-sizing: border-box;
}

.feature {
    text-align: center;
    flex: 1;
    padding: 10px;
    min-width: 250px; /* Ensures all features take enough space */
}

.feature .material-icons {
    font-size: 40px;
    color: black;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.career-benefits {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    width: 100%;
}


.career-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px; /* Proper spacing */
    box-sizing: border-box;
}

.carrer-benefits-left {
    
    max-width: 55%;
    justify-content: flex-start;
}

.carrer-benefits-left p {
    font-size: 30px;
    color: #3d3b3b;
    line-height: 1.4;
    margin-bottom: 20px;
}

.trial-btn {
    background-color: #0056d2;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}

.carrer-benefits-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.carrer-benefits-right img {
    max-width: 90%;
    height: auto;
    border-radius: 10px; /* Optional rounded corners */
}





.career-skills {
    display: flex;
    align-items: center;
    justify-content: center;  /* Center content */
    background-color: #f5f9ff;
    padding: 50px 5%;
    flex-direction: column;
    width: 100%;
    max-width: 1300px; /* Prevents exceeding screen width */
    overflow: hidden; /* Ensures no overflow */
}
.career-sub-skills{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.career-skills-left {
    flex: 1;
    max-width: 300px;
}

.career-skills-left h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.trial-btn {
    background-color: #0056d2;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.trial-btn:hover {
    background-color: white;
    color: #0056d2;
    border: 1px solid #0056d2;
}

.career-skills-right {
    flex: 2;
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap instead of overflowing */
    gap: 10px;
    justify-content: space-between; /* Ensures even spacing */
    width: 100%; /* Takes full width */
}

.course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    width: 30%;
    text-align: left;
    min-width: 250px;
    width: calc(33.33% - 20px); /
}

.course-card img {
    width: 100%;
    border-radius: 8px;
}

.course-info {
    padding: 10px 0;
}

.course-provider {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.course-provider img {
    width: 18px;
    height: auto;
    margin-right: 5px;
}

.course-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.degree-link a {
    color: #0056d2;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.course-level {
    font-size: 14px;
    color: #666;
}

.show-more {
    text-align: left;
    margin-top: 20px;
    margin-left: 5%;
}

.show-more-btn {
    background: white;
    color: #0056d2;
    border: 1px solid #0056d2;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.show-more-btn:hover {
    background: #0056d2;
    color: white;
}




/* ===== SEARCH SECTION ===== */
.search-section {
    text-align: center;
    padding: 50px 5%;
}
.search-section h2{
    font-size: 30px;
    margin-bottom: 30px;
}
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding-left: 10px;
}

.search-bar input {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-bar button {
    background: #0056d2;
    color: white;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
}

.search-bar button i {
    font-size: 16px;
}

.category-filters {
    margin-top: 20px;
}

.category-filters span {
    font-weight: bold;
    margin-right: 10px;
}

.category-filters button {
    background: #f2f2f2;
    border: none;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.category-filters button:hover {
    background: #0056d2;
    color: white;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    text-align: center; /* Centers inline elements like h2 */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers block elements inside */
    justify-content: center;
    width: 100%;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.testimonials h2 {
    width: 80%; 
    text-align: left;
    font-size: 28px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    text-align: left;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.testimonial-content p {
    font-size: 14px;
    color: #444;
}






.pricing-section {
    background-color: #f5f9ff;
    padding: 50px 5%;
    text-align: center;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.toggle-btn {
    background: white;
    border: 2px solid #0056d2;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.toggle-btn.active {
    background: #0056d2;
    color: white;
}
.toggle-btn:hover{
    background-color: #dcd7d7;
    color: #0056d2;
}
.pricing-plans {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: fit-content;
    text-align: center;
    position: relative;
}

.popular {
    border: 2px solid #0056d2;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0056d2;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 span {
    font-size: 16px;
    color: #666;
}

.pricing-note {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

ul li {
    font-size: 14px;
    padding: 5px 0;
}

.primary-btn, .secondary-btn {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
    margin-top: 10px;
}

.primary-btn {
    background: #0056d2;
    color: white;
    border: none;
}

.primary-btn:hover {
    background: white;
    color: #0056d2;
    border: 1px solid #0056d2;
}

.secondary-btn {
    background: white;
    color: #0056d2;
    border: 1px solid #0056d2;
}

.secondary-btn:hover {
    background: #0056d2;
    color: white;
}



.faq-section {
    background-color: #ffffff;
    padding: 40px 5%;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-container {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
}

.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.faq-question:hover {
    color: #0056d2;
}

.faq-more {
    text-align: center;
    margin-top: 20px;
}

.faq-show-all {
    text-decoration: none;
    color: #0056d2;
    font-weight: bold;
}

.faq-show-all:hover {
    text-decoration: underline;
}




.coursera-plus-banner {
    background-color: #0056d2; /* Coursera blue */
    text-align: center;
    padding: 10px;
    color: white;
    min-height: 280px;
}

.coursera-logo {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.plus-badge {
    background-color: white;
    color: #0056d2;
    font-size: 40px;
    margin-left: 5px;
}

.subtext {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: white;
    color: #0056d2;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.cta-button:hover {
    background-color: #e0e0e0;
}

.pricing {
    font-size: 14px;
    font-weight: bold;
    opacity: 0.8;
}


.footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    width: 22%;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding-top: 30px;
}

.footer-links {
    width: 22%;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-apps img {
    width: 140px;
    margin-bottom: 10px;
}

.footer-end {
    background-color: #f8f8f8;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-end hr {
    border: none;
    border-top: 1px solid #ccc;
    width: 90%;
    margin: 0 auto 15px;
}

.footer-end-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-end-container p {
    font-size: 14px;
    color: #333;
}

.social-icons a {
    display: inline-block;
    margin-left: 10px;
    color: #000;
    font-size: 18px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0073e6;
}

a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the original text color */
}