/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0a0a0a; /* Deep black background */
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background-color: #000000;
    padding: 20px 0;
    border-bottom: 2px solid #FFB300; /* Golden Tiger Yellow */
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* This creates perfect spacing between the tiger and your text */
}

.logo-img {
    height: 60px;
    width: auto;
    /* This tells the browser to smoothly animate any transform over 0.3 seconds */
    transition: transform 0.3s ease; 
}

/* This triggers when the user's mouse pointer hovers over the image */
.logo-img:hover {
    /* This scales the image up by 10% */
    transform: scale(1.1); 
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0; /* Ensures the text doesn't shift out of alignment with the image */
}

.logo span {
    color: #FFB300;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a, .lang-toggle {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: #FFB300;
}

.phone-btn {
    background-color: #FFB300;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.phone-btn:hover {
    background-color: #e6a200;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 120px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    color: #FFB300;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.hero-subtext {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #cccccc;
}

.cta-btn {
    display: inline-block;
    background-color: transparent;
    color: #FFB300;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    border: 2px solid #FFB300;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #FFB300;
    color: #000000;
}

/* Pillars Section */
.pillars {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 0;
}

.card {
    background-color: #141414;
    border-top: 4px solid #FFB300;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFB300;
}

.card p {
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #000000;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #222;
}

footer p {
    color: #666666;
    font-size: 0.9rem;
}

/* Mobile Responsiveness (The magic that FrontPage didn't have) */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .pillars {
        flex-direction: column;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}