*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-orange: #ff7a18;
    --text-dark: #1a1a1b;
    --white: #ffffff;
}

.main-header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-orange);
    margin-right: 4px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Hover underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Register Button */
.btn-register {
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 24, 0.2);
}

.btn-register:hover {
    background: #e66a12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.3);
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }

    /* Hide middle links on mobile */
    .nav-links {
        display: none; 
    }

    .logo {
        font-size: 20px;
    }

    .btn-register {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-register i {
        font-size: 14px;
    }
}

/*footer */

/* --- MAIN FOOTER SECTION --- */
.main-footer {
    background: #0b0f1a; /* Deep Charcoal for a premium look */
    color: #94a3b8; /* Muted text for better hierarchy */
    /* padding: 80px 0 0 0; */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Balanced 4-column layout */
    gap: 50px;
    padding-bottom: 60px;
}

/* Brand Section */
.footer-brand h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand h2 span {
    color: #ff7a18;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Typography & Links */
.footer-links h4, 
.footer-contact h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

/* Subtle orange underline for headings */
.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #ff7a18;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff7a18;
    transform: translateX(5px); /* Soft slide effect */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #ff7a18;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 122, 24, 0.3);
    border-color: #ff7a18;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
}

/* --- ALL SCREEN RESPONSIVE --- */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid for Tablets */
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding-top: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; /* Single column for Mobile */
        text-align: center;
        gap: 40px;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

/* Custom Language Switch */
.custom-lang {
    position: relative;
}

.lang-toggle {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.lang-menu button {
    background: none;
    border: none;
    padding: 10px 16px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}

.lang-menu button:hover {
    background: #f6f8fc;
}

/* Hover open */
.custom-lang:hover .lang-menu {
    display: block;
}

.goog-te-banner-frame.skiptranslate,
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

body {
    top: 0px !important;
}

.skiptranslate{
    display: none !important;
}

.custom-lang {
    position: relative;
}

/* Toggle Button */
.lang-toggle {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown Menu */
.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    overflow: hidden;
    display: none;
    z-index: 1000;
    min-width: 140px;
}

.lang-menu button {
    background: none;
    border: none;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}

.lang-menu button:hover {
    background: #f6f8fc;
}

/* Active state */
.lang-menu.active {
    display: block;
}
