* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@media (min-width: 768px) {
    .custom-navbar-container {
        padding-left: 80px!important;
        padding-right: 25px!important;
    }
    .mobile-menu-wrapper {
        display: contents; /* Acts like the wrapper doesn't exist */
        padding: 0 !important;
    }
}
@media (max-width: 767.98px) {
    .custom-toggle {
        padding-right: 20px!important;
    }

    .mobile-menu-wrapper {
        padding: 20px;
    }

    .section-subtitle {
        margin-bottom: 0px !important;
    }

    .overview-content {
        gap : 25px!important;
    }
}
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: #4a3aff !important; /* matches the blue */
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333 !important;
    margin-right: 1rem;
}

.nav-link:hover {
    color: #4a3aff !important;
}

.btn-enroll {
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #4a3aff;
    border-radius: 8px;
    padding: 6px 20px;
    color: white;
}

.btn-enroll:hover {
    background-color: #3a2be0;
}

.enroll-btn {
    padding: 8px 16px;
    background: #5c5cf4;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-shine {
    position: relative;
    overflow: hidden;
    color: #000;
    background-color: #ffc107;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 193, 7, 0.5);
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

.btn-shine:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 1);
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-20deg);
}

.btn-shine:hover::before {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}


/* Hero Section */
.hero {
    background: linear-gradient(to right, #6b6bfa, #9153d9);
    color: white;
    text-align: center;
    padding: 155px 20px 60px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #fbd100;
}

.subtext {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/*.btn-yellow {
    background-color: #fbd100;
    color: #111;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}*/

.btn-outline {
    padding: 14px 24px;
    border: 2px solid white;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.btn-outline:hover {
    background-color: white;
    color: black;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    font-size: 18px;
    font-weight: 500;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links li a {
        font-size: 16px;
    }

    .enroll-btn {
        align-self: flex-start;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .subtext {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

.course-overview {
    padding: 20px;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.overview-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
    flex-wrap: wrap;
}

.overview-left {
    flex: 1;
    min-width: 280px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.icon-box {
    background-color: #ecebff;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.icon-box img {
    width: 20px;
    height: 20px;
}

.overview-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.overview-item p {
    font-size: 15px;
    color: #444;
    margin: 0;
}

.overview-right {
    background: #f6f6f6;
    padding: 10px 35px;
    border-radius: 16px;
    flex: 1;
    min-width: 300px;
}

.overview-right h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.overview-right ul {
    list-style: none;
    padding-left: 0;
}

.overview-right li {
    font-size: 15.5px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
}

.green-check {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}


/*TECHNOLOGIES SECTION*/

.technologies-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.technologies-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.technologies-section .subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.tech-card {
    background-color: #f9f9fc;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 5px rgba(0,0,0,0.04);
}

.tech-card img {
    height: 40px;
    margin-bottom: 10px;
}

.tech-card span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.extra-note {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.curriculum-box {
    max-width: 950px;
    margin: 0 auto;
    background: #f3f3ff;
    border-radius: 16px;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.curriculum-box img {
    height: 36px;
}

.curriculum-box h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
}

.curriculum-box p {
    margin: 0;
    font-size: 15.5px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .curriculum-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .curriculum-box img {
        margin-bottom: 10px;
    }
}


/*
tools old section*/

.square-box {
    width: 100%;
    padding-top: 100%; /* makes it square */
    position: relative;
}
.square-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70%;
    width: 70%;
    object-fit: contain;
    transform: translate(-50%, -50%);
}
.tool-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.tool-logo {
    box-sizing: content-box !important;
}

.card {
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

img.tool-logo {
    object-fit: contain;
    max-width: 100%;
}

/*
why switch2auto*/

.cta-section {
    background: linear-gradient(to right, #6b73ff, #a258f4);
    text-align: center!important;
    padding-left: 8%;
}

.glow-btn {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.7);
    padding-left: 55px;
    transition: all 0.3s ease-in-out;
}
.glow-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 1);
}

.footer-blue {
    background: #191d31; /* blue-purple gradient */
}

.footer-link {
    color: rgba(203, 202, 202, 0.7);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff!important;
}
