/* Fonts */
:root {
    --color-primary: #8A2BE2;
    /* Changed from Orange to Purple */
    --color-secondary: #00BFFF;
    /* Blue */
    --color-accent: #FF0055;
    /* Red/Pink for accents instead of yellow/orange */

    --color-yellow: #FFD700;
    --color-blue: #00BFFF;
    --color-red: #FF0000;
    --color-purple: #8A2BE2;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    overflow-x: hidden;
    padding-bottom: 60px;
    /* Space for mobile sticky bar */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Utilities */
/* Renaming text-orange to generic or new primary */
.text-primary-theme {
    color: var(--color-primary) !important;
}

.bg-primary-theme {
    background-color: var(--color-primary) !important;
}

/* Keep these for specific brand colors loop interaction, but remove pure orange usage */
.text-purple {
    color: var(--color-purple) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.border-white-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.backdrop-blur {
    backdrop-filter: blur(5px);
}

/* Rebranding Light Backgrounds */
.bg-primary-light {
    background-color: #f3e6ff;
}

/* Was orange-light, now purple-ish */
.bg-blue-light {
    background-color: #e6f7ff;
}

.bg-red-light {
    background-color: #ffe6e6;
}

.bg-secondary-light {
    background-color: #e6ffff;
}

/* Navbar */
.navbar-brand {
    font-size: 1.25rem;
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

.logo {
    height: 130px;
    position: absolute;
    top: 10px;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    background: #f8f9fa;
    padding-top: 80px;
}

.splash-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/logo.jpg') no-repeat center center;
    opacity: 0.05;
    background-size: cover;
    z-index: 1;
}

/* Creating splash blobs with CSS */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.15;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.15;
    z-index: 1;
}

.hero-img {
    max-width: 80%;
    margin-top: 2rem;
}

/* About Section */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Why Choose Us */
.bg-why-us {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card {
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Gallery Styles */
.gallery-item-wrapper {
    position: relative;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.7);
    /* Using primary color with opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-wrapper img {
    transition: transform 0.5s ease;
}

.gallery-item-wrapper:hover img {
    transform: scale(1.1);
}

/* Clients & Consultation */
.ls-2 {
    letter-spacing: 2px;
}

/* Enhanced Card Shadow for White-on-White contrast */
.client-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Stronger default shadow */
    transition: all 0.3s ease;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.shape-blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: var(--color-secondary);
}

.shape-blob-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: var(--color-accent);
}


/* Footer */
footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: var(--color-primary) !important;
}

/* Floating Buttons */
.floating-enquiry {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--color-dark);
    /* Changed from purple to dark to standout differently */
    color: white;
    width: 40px;
    height: 140px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1000;
    text-decoration: none;
    transition: width 0.3s;
}

.floating-enquiry:hover {
    width: 50px;
    color: white;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: bold;
    letter-spacing: 2px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    background: white;
}

.mobile-sticky-bar .btn {
    padding: 15px 0;
    font-size: 1rem;
}

/* Animation */
.animation-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 767.98px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}