:root {
    --primary-color: #003366;
    --secondary-color: #ff9900;
    --font-main: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: var(--font-main);
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Home Section */
.home-image-section {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.home-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Footer Styling */
.footer-section {
    background: #fff;
    border-top: 1px solid #eee;
}

.copyright-text {
    font-size: 14px;
    color: #666;
}

.copyright-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.copyright-text a:hover {
    color: var(--secondary-color);
}

/* Floating Buttons (Creative Alternative) */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.cta-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-call {
    background: #007bff;
}

/* AOS Tweaks */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}
