/* Body Reset */

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefae0;
}


/* ===== Navbar General ===== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: black;
    position: fixed;
    width: 100%;
    height: 15%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}


/* Logo */

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    font-weight: bold;
}

.navbar .logo img.nav-logo {
    height: 45px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: yellow;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-link:hover {
    opacity: 0.85;
    transform: scale(1.02);
}


/* Social Bar (desktop on right) */


/* Navigation Links */

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #FDE047;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #FFD700;
    text-shadow: 0 0 8px #FFD700;
}


/* Dropdown */

.nav-links li.dropdown {
    position: relative;
}

.nav-links li.dropdown>a::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown.active>a::after,
.nav-links li.dropdown:hover>a::after {
    transform: rotate(-180deg);
}

.nav-links li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-links li.dropdown:hover .dropdown-menu,
.nav-links li.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #222;
    color: #FFD700;
}


/* Hamburger hidden on desktop */

.hamburger {
    display: none;
}


/* ===== Mobile Styles ===== */

@media screen and (max-width: 768px) {
    /* Navbar: logo left, hamburger right */
    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        position: fixed;
        width: 100%;
        top: 0;
        background: #000;
        z-index: 1003;
    }
    /* Hamburger */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1007;
        /* on top of everything */
    }
    .hamburger span {
        height: 3px;
        width: 30px;
        background: #FFD700;
        border-radius: 2px;
        transition: 0.3s;
    }
    /* Sidebar nav links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 280px;
        background: #000;
        flex-direction: column;
        padding: 100px 25px 40px;
        gap: 28px;
        /* more breathing room */
        transition: right 0.35s ease;
        z-index: 1006;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        box-shadow: -8px 0 20px rgba(0, 0, 0, 0.4);
    }
    .nav-links.active {
        right: 0;
    }
    /* Close button in sidebar */
    .nav-links .close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1008;
        /* above sidebar */
    }
    .nav-links .close-btn span {
        font-size: 2rem;
        color: #FFD700;
        cursor: pointer;
        transition: 0.3s;
    }
    .nav-links .close-btn span:hover {
        color: #FF4500;
        transform: rotate(90deg);
    }
    /* Mobile dropdown menu */
    .nav-links li.dropdown .dropdown-menu {
        position: static;
        display: none;
        flex-direction: column;
        margin-top: 10px;
        padding-left: 15px;
        gap: 10px;
        border-left: 2px solid rgba(255, 215, 0, 0.4);
    }
    .nav-links li.dropdown.active .dropdown-menu {
        display: flex;
    }
    .nav-links li.dropdown .dropdown-menu a {
        font-size: 15px;
        padding: 10px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
    }
    .nav-links li.dropdown .dropdown-menu a:hover {
        background: rgba(255, 215, 0, 0.25);
        color: #000;
    }
}


/* ===== Contact Stack on the Left ===== */

.contact-stack {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* move to left */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    align-items: center;
}


/* Phone Button with better design */

.phone-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, );
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.phone-button img {
    width: 28px;
    height: 28px;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}


/* WhatsApp Button */

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    /* WhatsApp green */
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.whatsapp-button img {
    width: 28px;
    height: 28px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}


/* WhatsApp Popup */

.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    /* align with left side */
    width: 280px;
    background-color: #008000;
    /* dark green */
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    font-family: 'Poppins', sans-serif;
}


/* WhatsApp Header */

.whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFD700;
    /* gold */
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
}

.whatsapp-header .close-chat {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
}


/* WhatsApp Body */

.whatsapp-body {
    padding: 15px;
}

.whatsapp-body p {
    margin: 0 0 10px 0;
}


/* Start Chat Button */

.whatsapp-body .start-chat {
    display: block;
    text-align: center;
    background-color: #FFD700;
    /* gold */
    color: #000;
    font-weight: bold;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-body .start-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


/* Content in the Body*/

.entrepreneurship-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.entrepreneurship-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.entrepreneurship-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Programs Grid */

.entrepreneurship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.entrepreneurship-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.entrepreneurship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.entrepreneurship-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.entrepreneurship-card p {
    font-size: 0.95rem;
}

.entrepreneurship-card button {
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.entrepreneurship-card button:hover {
    background-color: #e6c200;
}


/* Success Stories */

.entrepreneurship-success h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.success-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.success-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.success-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.success-card h4 {
    font-weight: 600;
    color: #333;
}