* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: #000000;
    height: 100%;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    box-sizing: border-box;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 100px;
    width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
    flex-grow: 1;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

.btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 20px;
    flex-shrink: 0;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    color: #f8f8f8;
    padding-top: 250px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 1) 100%), 
                url('Images/hero-bg.png') no-repeat center center/cover;
    margin-bottom: -50px;
}

.hero-content {
    position: relative;
    color: #f8f8f8;
    max-width: 1000px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 80px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: 25px;
    padding: 20px;
    margin-bottom: 50px;
}

.card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background-color: transparent;
    position: relative;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    width: calc(50% - 20px);
    min-height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
    margin-bottom: 20px;
}

.card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: #dbb620;
    border-radius: 20%;
}

.card h3 {
    font-size: 18px;
    color: #f8f8f8;
    margin: 0;
    font-weight: bold;
}

.card p {
    font-size: 14px;
    color: #aaa;
    margin-top: 110px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
    background-color: #FFD700;
    border: 2px solid #ffcc00;
    color: #111;
}

.card:hover h3, .card:hover p {
    color: #111;
}

.interactive-section {
    background: linear-gradient(to bottom, #312017, #6F3C1C);
    padding: 70px 50px;
    position: relative;
    border-radius: 50px;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    max-width: calc(100% - 100px);
    text-align: center;
    color: #ffffff;
    transition: background 1s ease, color 1s ease;
}

.interactive-content {
    max-width: 90%;
    margin: 0 auto;
}

.interactive-content h1 {
    font-size: 60px;
    margin-bottom: 60px;
    transition: color 1s ease;
}

.interactive-text {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #ffcc00;
    letter-spacing: 1px;
    font-weight: bold;
    transition: color 1s ease;
}

.interactive-section:hover {
    background: linear-gradient(to bottom, #ffd901, #dfc800);
    color: #000000;
}

.interactive-section:hover h1,
.interactive-section:hover .interactive-text {
    color: #000000;
}

.footer {
    background-color: #222222;
    color: #ffffff;
    padding: 60px 50px 20px;
    position: relative;
    margin-top: 20px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

.footer-warning-section {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.048);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-warning {
    display: inline-block;
    text-align: center;
}

.footer-warning h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer-warning p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

.footer-warning-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-warning-logo {
    width: 80px;
    height: auto;
    display: block;
}

.footer-warning-logo-2 {
    width: 250px;
    height: auto;
    display: block;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo-img {
    max-height: 100px;
    width: 150px;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1600px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer-btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
}

.language-switcher {
    display: inline-block;
    position: relative;
}

#google_translate_element {
    display: inline-block;
}

.goog-te-combo {
    background: transparent;
    color: #fff;
    border: 1px solid #ffcc00;
    padding: 8px 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 10px;
    background-color: #222;
    transition: all 0.3s ease;
}

.goog-te-combo:hover {
    background: #ffcc00;
    color: #111;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .header {
        padding: 8px 30px;
    }
    .nav-links {
        gap: 40px;
    }
    .logo-img {
        max-height: 80px;
        width: 130px;
    }
    .nav-links a {
        font-size: 18px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    .hero {
        height: 70vh;
        padding-top: 120px;
    }
    .hero-content h1 {
        font-size: 60px;
    }
    .hero-content p {
        font-size: 20px;
        padding: 15px;
    }
    .card-section {
        padding: 100px 20px;
    }
    .card {
        width: calc(50% - 20px);
        min-height: 250px;
    }
    .card p {
        margin-top: 80px;
    }
    .interactive-section {
        padding: 60px 40px;
        margin-left: 30px;
        margin-right: 30px;
        max-width: calc(100% - 60px);
    }
    .interactive-content h1 {
        font-size: 50px;
    }
    .footer {
        padding: 40px 40px 20px;
    }
    .footer-content {
        gap: 30px;
    }
    .footer-logo-img {
        max-height: 80px;
        width: 120px;
    }
    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 20px;
    }
    .footer-warning-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    .footer-warning h3 {
        font-size: 20px;
    }
    .footer-warning-logo {
        width: 50px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 8px 20px;
        flex-direction: column;
        align-items: center;
        background: rgba(0, 0, 0, 0.9);
    }
    .logo {
        margin-bottom: 10px;
    }
    .logo-img {
        max-height: 80px;
        width: 120px;
    }
    nav {
        width: 100%;
        margin: 10px 0;
    }
    .nav-links {
        gap: 20px;
        justify-content: center;
        padding: 0;
    }
    .nav-links a {
        font-size: 16px;
    }
    .btn {
        padding: 8px 15px;
        font-size: 14px;
        margin-left: 0;
        margin-top: 10px;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        display: none;
        width: 100%;
    }
    .header-btn {
        display: none;
    }
    nav.active {
        display: block;
    }
    .header.active {
        height: auto;
        padding-bottom: 20px;
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .language-switcher {
        margin-top: 10px;
    }
    .goog-te-combo {
        padding: 6px 12px;
        font-size: 14px;
    }
    .hero {
        height: 60vh;
        padding-top: 100px;
        margin-bottom: -50px;
    }
    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .hero-content p {
        font-size: 18px;
        padding: 10px;
        margin-bottom: 30px;
    }
    .card-section {
        padding: 100px 15px;
    }
    .card-container {
        flex-direction: column;
        gap: 30px;
    }
    .card {
        width: 100%;
        min-height: 200px;
    }
    .card p {
        margin-top: 60px;
    }
    .interactive-section {
        padding: 40px 20px;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
        border-radius: 30px;
    }
    .interactive-content h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .footer {
        padding: 30px 20px 15px;
        border-radius: 30px 30px 0 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .footer-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    .footer-warning-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    .footer-warning-logo {
        width: 45px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 8px 15px;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .logo-img {
        max-height: 80px;
        width: 120px;
    }
    .goog-te-combo {
        padding: 5px 10px;
        font-size: 12px;
    }
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 100px 10px 50px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .card-section {
        padding: 80px 10px;
    }
    .card {
        min-height: 180px;
    }
    .card .card-header {
        flex-direction: column;
        gap: 5px;
    }
    .card h3 {
        font-size: 16px;
        text-align: center;
    }
    .card p {
        font-size: 12px;
        margin-top: 50px;
    }
    .interactive-section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
        border-radius: 20px;
    }
    .interactive-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .footer {
        padding: 20px 15px 10px;
        border-radius: 20px 20px 0 0;
    }
    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 18px;
    }
    .footer-links a, .footer-contact p {
        font-size: 14px;
    }
    .social-icon img {
        width: 25px;
        height: 25px;
    }
    .footer-bottom p {
        font-size: 12px;
    }
    .footer-warning-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    .footer-warning h3 {
        font-size: 18px;
    }
    .footer-warning p {
        font-size: 14px;
    }
    .footer-warning-logo {
        width: 40px;
    }
}