:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #000000; /* Black */
    --light-color: #FFFFFF; /* White */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --text-light: #f8f9fa;
    --text-dark: #333;
    --text-muted: #666;
    --accent-color: #8B4513; /* Brown */
    --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60s384,115,740,0,380-115,720,0v120H0Z" fill="%23ffffff" opacity="0.05"/></svg>');
    background-repeat: repeat-x;
    animation: shine 3s infinite;
}

@keyframes shine {
    from { background-position: -100px; }
    to { background-position: 100px; }
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-info i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info span:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.top-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--light-color);
    transition: width 0.3s ease;
}

.top-links a:hover::after {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.header.scrolled {
    top: 0;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav {
    margin-left: 30px;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav ul li {
    margin: 0 15px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 100%;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav ul li a.active,
.nav ul li a:hover {
    color: var(--primary-color);
}

.nav ul li a.active::after,
.nav ul li a:hover::after {
    width: 100%;
}

.book-now-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-left: 15px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.book-now-btn i {
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    margin-left: 20px;
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 992px) {
    .nav ul li {
        margin: 0 10px;
    }

    .book-now-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .top-bar,
    .book-now-btn {
        display: none !important;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
    }

    .nav.active {
        max-height: 100vh;
    }

    .nav .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        cursor: pointer;
        color: var(--secondary-color);
    }

    .nav ul {
        flex-direction: column;
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav ul li {
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li a {
        display: block;
        padding: 18px;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--secondary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav ul li a:hover {
        background-color: var(--primary-color);
        color: #fff;
    }
}

 

        .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/services_banner.jpg') center/cover no-repeat;
    /* Rest of your styles */

    height: 60vh;
             display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-color);
            margin-top: 90px;
            position: relative;
}


        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

.page-header h1 {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 10px;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tab-button {
    padding: 12px 25px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== CATEGORY CONTENT ===== */
.category {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.category.active {
    display: block;
}

.category-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.product-card-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.03);
}

.product-card-content {
    padding: 25px;
    text-align: center;
    background-color: var(--light-color);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.product-card-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.product-card:hover .product-card-content h3 {
    color: var(--primary-color);
}

.product-card-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.product-link:hover::before {
    left: 100%;
}

.product-link:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), #1a1a1a);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="0.8" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="20" r="0.6" fill="%23ffffff" opacity="0.1"/></svg>');
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    opacity: 0;
}

.cta-btn:hover::after {
    transform: translateX(100%);
    opacity: 1;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60s384,115,740,0,380-115,720,0v120H0Z" fill="%23000000"/></svg>');
    background-repeat: repeat-x;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.contact-details p {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-float::after {
    content: 'Chat with us';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    right: 60px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



















