
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-color: #d97e6a;
            --secondary-color: #c55b5b;
            --accent-color: #3d82d5;
            --light-color: #f8f9fa;
            --dark-color: #333;
            --gray-color: #6c757d;
            --transition: all 0.3s ease;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #fff;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: #fff;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn:hover {
            background-color: #d18f0b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Header & Navigation */
        header {
            background-color: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 2.2rem;
        }
        .logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    color:#db502e;
}

.logo img{
    width:70px;      /* adjust size if needed */
    height:auto;
}

.logo span{
    white-space:nowrap;
}

        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            left: 0;
            bottom: -5px;
            transition: var(--transition);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .enquiry-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
        }
        
        .enquiry-btn:hover {
            background-color: var(--accent-color);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        /* Banner Section */
        .banner {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/img/banner5.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 20px;
            margin-bottom: 60px;
        }
        
        .banner-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .banner-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Welcome Section */
        .welcome-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .welcome-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .welcome-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .welcome-text h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .welcome-text p {
            margin-bottom: 20px;
            color: var(--gray-color);
            font-size: 1.1rem;
        }
        
        .welcome-image {
            flex: 1;
            min-width: 300px;
        }
        
        .welcome-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-item {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-item:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-info {
            padding: 25px;
        }
        
        .service-info h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .service-info p {
            color: var(--gray-color);
        }
        
        /* Trending Searches Section */
        .trending-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--gray-color);
            margin-top: 10px;
            font-size: 1.1rem;
        }
        
        .trending-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            background-color: #fff;
            color: var(--primary-color);
            padding: 10px 20px;
            border-radius: 50px;
            border: 2px solid var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .category-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .category-btn.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .trending-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            min-height: 300px;
        }
        
        .trending-item {
            background-color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            font-weight: 600;
            color: var(--primary-color);
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.95rem;
            border: 1px solid transparent;
        }
        
        .trending-item:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .trending-counter {
            text-align: center;
            margin-top: 40px;
            color: var(--gray-color);
            font-weight: 600;
        }
        
        .trending-counter span {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        /* Category-specific colors for visual distinction */
        .trending-item[data-category="interior"] {
            border-left: 4px solid #4CAF50;
        }
        
        .trending-item[data-category="wallpaper"] {
            border-left: 4px solid #FF9800;
        }
        
        .trending-item[data-category="waterproof"] {
            border-left: 4px solid #2196F3;
        }
        
        .trending-item[data-category="wood"] {
            border-left: 4px solid #795548;
        }
        
        .trending-item[data-category="paint"] {
            border-left: 4px solid #E91E63;
        }
        
        .trending-item[data-category="hardware"] {
            border-left: 4px solid #9C27B0;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-form h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
        }
        
        .map-container {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .qr-code {
            background-color: white;
            padding: 10px;
            border-radius: 8px;
            max-width: 150px;
            margin-top: 10px;
        }
        
        .qr-code img {
            width: 100%;
            height: auto;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #ddd;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .welcome-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: var(--transition);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .banner {
                padding: 80px 20px;
            }
            
            .welcome-text h2 {
                font-size: 2rem;
            }
        }
    



        /* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    /* Container padding fix */
    .container {
        padding: 0 15px;
    }

    /* Navbar Fix */
    .navbar {
        padding: 10px 0;
    }

    .logo img {
        width: 50px;
    }

    .logo {
        font-size: 18px;
    }

    /* Banner Fix */
    .banner {
        padding: 70px 15px;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .banner-content p {
        font-size: 15px;
        padding: 0 10px;
    }

    /* HERO BUTTON FIX */
    .hero-buttons {
        flex-direction: column;   /* stack buttons */
        gap: 12px;
        width: 100%;
    }

    .consult-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 15px;
    }

    /* Welcome Section */
    .welcome-content {
        flex-direction: column;
        text-align: center;
    }

    .welcome-text {
        padding-right: 0;
    }

    .welcome-text h2 {
        font-size: 22px;
    }

    /* Services Grid Fix */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        margin: 0 auto;
    }

    /* Contact Section Fix */
    .contact-container {
        flex-direction: column;
    }

    /* Footer Fix */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .banner-content h1 {
        font-size: 22px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .consult-btn {
        font-size: 14px;
        padding: 10px;
    }
}





/* ===== MOBILE NAVBAR FIX ===== */
@media (max-width: 768px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    /* LOGO FIX */
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 600;
    }

    .logo img {
        width: 45px;   /* smaller logo */
        height: auto;
    }

    .logo span {
        font-size: 16px;
        white-space: nowrap;
    }

    /* MENU ICON FIX */
    .mobile-menu {
        display: block;
        font-size: 22px;
        cursor: pointer;
        color: var(--primary-color);
    }

    /* NAV MENU (HIDDEN BY DEFAULT) */
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: 0.3s ease;
        z-index: 999;
    }

    /* SHOW MENU */
    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 18px;
    }
}


/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999; /* VERY IMPORTANT */
}

/* Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #fff;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;

    pointer-events: auto; /* FIX CLICK ISSUE */
}

/* Call Button */
.call-btn {
    background: #007bff;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Hover */
.float-btn:hover {
    transform: scale(1.1);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}