/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */
body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 85px; /* match exact navbar height */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    background-color: white;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Logo */
.logo {
    height: 80px;
}

.nav-center {
    display: flex;
    gap: 25px;
}

.nav-center a {
    text-decoration: none;
    color: #c62828;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.nav-center a:hover {
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: white;
}

/* Active Page */
.nav-center a.active {
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: white;
}

.nav-center a.active:hover {
    transform: none;
}

/* Call Button */
.call-btn {
    padding: 10px 22px;
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

/* Hero Layout */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* Floating Images */
.floating-img {
    width: 300px;
    height: 400px;
    object-fit: contain; /* better for PNG */
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.25);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Delay second image */
.floating-img:last-child {
    animation-delay: 3s;
}

/* Hover Lift */
.floating-img:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 50px rgba(229, 57, 53, 0.4);
}

/* Button Styling (extra spacing if needed) */
.center-btn {
    white-space: nowrap;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}


/* Primary Button */
.primary-btn {
    padding: 18px 40px;
    font-size: 18px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: white;
    font-weight: bold;
    transition: 0.3s ease;
    text-decoration: none;
}



.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
}





/* Footer */
.footer {
    background: #ffffff;
    padding: 20px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Social Links */
.marketing-links {
    margin-bottom: 20px;
}

.marketing-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    font-size: 18px;
    color: #c62828;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Proper Hover Effect */
.marketing-links a:hover {
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
}


/* Query Section */
.query {
    margin: 15px 0;
    font-size: 14px;
    color: #444;
}

.query a {
    color: #c62828;
    text-decoration: none;
    font-weight: 500;
}

.query a:hover {
    text-decoration: underline;
}

/* Legal Links */
.legal-links {
    margin: 15px 0;
    font-size: 14px;
}

.legal-links a {
    color: #c62828;
    text-decoration: none;
    margin: 0 5px;
}

.legal-links a:hover {
    color: #e53935;
}

/* Copyright */
.copyright {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

.mobile-call {
       
        color: white !important;
    
    }

    .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}





/* ========================================= */
/*              RESPONSIVE DESIGN            */
/* ========================================= */

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {

    .navbar {
        padding: 15px 30px;
    }

    .hero-content {
        gap: 40px;
    }

    .floating-img {
        width: 220px;
        height: 300px;
    }
}


/* ---------- Mobile ---------- */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        
        padding: 15px 20px;
    }

    .logo {
        height: 65px;
    }

    /* Hamburger */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 30px;
        font-size: 26px;
        color: #c62828;
        cursor: pointer;
        z-index: 1001;
        transition: 0.3s ease;
    }

    .menu-toggle i {
        transition: 0.3s ease;
    }

    /* Mobile Menu */
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 18px;
        display: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .nav-center.show {
        display: flex;
    }

    .nav-center a {
        font-size: 15px;
        padding: 8px 18px;
     
    }

    /* Mobile Call Button */
    .mobile-call {
        margin-top: 15px;
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 30px;
        color: white !important;
        display: inline-block;
    }

    /* Hero */
    .hero-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .floating-img {
        width: 180px;
        height: 240px;
        animation: none;
    }

    .primary-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    /* Footer */
    .marketing-links a {
        width: 40px;
        height: 40px;
        margin: 0 6px;
    }

    .query {
        font-size: 13px;
        padding: 0 15px;
        text-align: center;
    }
}


/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {

    .logo {
        height: 55px;
    }

    .nav-center a {
        font-size: 14px;
    }

    .floating-img {
        width: 150px;
        height: 200px;
    }

    .primary-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}


