/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/* Variables */
:root {
    --main-color: #1E90FF;
    --second-color: #87CEEB;
    --accent-color: #0056b3;
    --text-color: #444;
    --gradient: linear-gradient(135deg, #1E90FF, #87CEEB);
    --hover-gradient: linear-gradient(135deg, #0056b3, #1E90FF);
    --card-gradient: linear-gradient(to bottom right, #ffffff, #f0f8ff);
    --shadow: 0 4px 15px rgba(30, 144, 255, 0.2);
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --light-color: #666;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Scroll Bar */
html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

section {
    padding: 20px 40px;
}

body {
    background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%);
    color: var(--text-color);
}

/* Header Styles */
header {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 100px;
}

.logo img {
    width: 180px;
    height: 50px;
}

.navbar {
    display: flex;
}

.navbar li {
    position: relative;
}

.navbar a {
    font-size: 1rem;
    color: var(--text-color);
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 4px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.navbar a:hover {
    color: var(--main-color);
    transform: translateY(-2px);
}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    display: none;
}

.header-btn a {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
}



/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1C1E32, #2b2e4a);
    color: #f6f6f6;
    border-top: 2px solid var(--main-color);
    padding: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-box .logo {
    margin-bottom: 1rem;
    display: block;
}

.footer-box .logo img {
    width: 180px;
    height: 50px;
}

.social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social a {
    font-size: 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.social a:hover {
    transform: translateY(-3px);
    color: var(--main-color);
}

.footer-box h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-box a {
    color: #818181;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-box a:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

.contact-detais {
    flex: 1;
    min-width: 250px;
}

.contact-detais h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-detais .cnt {
    color: #818181;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-detais .cnt i {
    margin-right: 0.5rem;
    color: var(--main-color);
}

.contact-detais .cnt a {
    color: #818181;
    transition: all 0.3s ease;
}

.contact-detais .cnt a:hover {
    color: var(--main-color);
}

.copyright {
    background: #1C1E32;
    color: #818181;
    text-align: center;
    padding: 20px;
}

.copyright-link {
    color: var(--main-color);
    transition: all 0.3s ease;
}

.copyright-link:hover {
    text-decoration: underline;
}

/* Navigation Active State */
.navbar a.active {
    color: var(--main-color);
    font-weight: 600;
}

.navbar a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn i {
    font-size: 30px;
    color: var(--white);
    transition: all 0.3s ease;
}

.floating-btn .btn-text {
    position: absolute;
    right: 70px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    color: var(--text-color);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp specific styles */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Contact specific styles */
.contact-btn {
    background: var(--main-color);
}

.contact-btn:hover {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 15px 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s;
        z-index: 999;
    }

    .navbar.active {
        left: 0;
    }

    .navbar li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }

    .navbar a {
        padding: 1rem;
        width: 100%;
        display: block;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-box,
    .contact-detais {
        min-width: 100%;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 25px;
    }

    .floating-btn .btn-text {
        display: none;
    }
}

/* Mobile Bottom Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4B0082;
    padding: 10px;
    z-index: 1000;
}

.mobile-action-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.mobile-action-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    gap: 8px;
}

.mobile-action-button.whatsapp {
    background-color: #25D366;
}

.mobile-action-button.enquire {
    background-color: #FF1493;
}

.mobile-action-button i {
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .mobile-action-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .floating-buttons {
        display: none;
    }
}