/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: #fff;
   
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-login {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sign-up {
    font-weight: bold;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    color: #333;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav ul li a:hover {
    color: #001689;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.quote {
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
}

.quote h1 {
    font-size: 32px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.3;
}

.quote h1 strong {
    color: #001689;
}

.author {
    text-align: right;
    font-style: italic;
    color: #666;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: linear-gradient(45deg, #001689, #00a0c6);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* CTA Buttons Section */
.cta-section {
    padding: 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-button {
    width: 300px;
    height: 150px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
}

.cta-button.blue {
    background-color: #001689;
}

.cta-button.gray {
    background-color: #666;
}

.cta-button h3 {
    text-align: center;
    font-size: 18px;
}

.proceed-btn {
    background-color: #001689;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.proceed-btn i {
    margin-left: 5px;
}

.cta-button.gray .proceed-btn {
    background-color: #666;
}

/* Search Section */
.search-section {
    padding: 30px 0;
    text-align: center;
}

.search-bar {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    padding: 5px 15px;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 16px;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    color: #666;
}

.search-button {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* Write Better Section */
.write-better {
    background-color: #001689;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.write-better-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.write-better h2 {
    font-size: 36px;
    max-width: 50%;
}

.laptop-image {
    max-width: 300px;
}

/* Courses Section */
.courses-section {
    padding: 50px 0;
}

.section-title {
    color: #001689;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.courses-columns {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.courses-column ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.courses-column ul li::before {
    content: "•";
    color: #001689;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.features-columns {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.features-column ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.features-column ul li::before {
    content: "•";
    color: #001689;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Footer Styles */
footer {
    background-color: #444;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    width: 40%;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.copyright {
    font-size: 14px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    color: #001689;
    border-radius: 50%;
    font-size: 18px;
}

.newsletter p {
    margin-bottom: 10px;
}

.newsletter input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
}

.footer-right {
    width: 55%;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.links-column {
    width: 48%;
}

.links-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.links-column ul li {
    margin-bottom: 10px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    
    .header-right {
        align-items: center;
        margin-top: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .quote {
        max-width: 90%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .write-better-content {
        flex-direction: column;
        text-align: center;
    }
    
    .write-better h2 {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .courses-columns, .features-columns {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-left, .footer-right {
        width: 100%;
    }
    
    .footer-right {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        gap: 10px;
    }
    
    .main-nav ul li a {
        font-size: 12px;
    }
    
    .quote h1 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .links-column {
        width: 100%;
        margin-bottom: 30px;
    }
}


.sub-header{display:none;}
    .ellipsis-line-1 {
        display: -webkit-box!important; 
        -webkit-line-clamp: 1; 
        -webkit-box-orient: vertical; 
        overflow: hidden; 
        text-overflow: ellipsis; 
        white-space: normal
    }
    .course-item-one .content .title:has(~ .info) {
        padding-bottom: 5px;
    }
    .menubar{background:none;}
    
    .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    color: #333;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav ul li a:hover {
    color: #001689;
}
header {

    padding: 10px 0;
    display:relative;
    z-index:1;
}

.main-nav {
    display: flex;
    justify-content: center; /* Centers the menu */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Adjusts spacing between menu items */
    padding: 0;
    margin: 0;
}

.main-nav ul li {
    display: inline-block;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
}
ul.navbar-nav.main-nav-wrap.mb-2.mb-lg-0.align-items-center,.header-search,.search-input,.header-dropdown {
    display: none;
}

a#navbarDropdown {
    display: none !important;
}

.banner-image {
    display: flex;
    justify-content: center; /* Centers the row */
    align-items: center; /* Centers vertically if needed */
    text-align: center; /* Ensures images align properly */
}

.row {
    display: flex;
    justify-content: center; /* Centers the columns inside */
    gap: 20px; /* Adjusts spacing between images */
}

.menubar .logo img {
    width: auto;
    height: 67px;
}
