:root {
    --primary-color: #bd1330;
    --dark-overlay: rgba(189, 19, 48, 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
}

/* Color Overrides */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 16px 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #9a0f27; /* Darker shade for hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(189, 19, 48, 0.2);
}

/* Modern Animated Card */
.bento-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    background: white;
    transition: all 0.4s ease;
}

.bento-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(189, 19, 48, 0.1);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* CTA Box Animations */
.cta-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Circles Background */
.cta-circle {
    position: absolute;
    border-radius: 50%;
    background:rgb(255 255 255 / 46%);
    z-index: 1;
    pointer-events: none;
}

.cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: floating 6s infinite ease-in-out;
}

.cta-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: floating 8s infinite ease-in-out reverse;
}

@keyframes floating {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
}

/* Button Pulse Animation */
.hover-pulse:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    background-color: white !important;
    color: #bd1330 !important;
}

.ls-2 { letter-spacing: 2px; }

.rounded-4 { 
    border-radius: 1.25rem !important; 
    transition: all 0.3s ease;
}

.bg-white.p-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(189, 19, 48, 0.1) !important; /* Subtle Red Glow */
}

/* Chinna extra styling for look */
.bg-light-danger { background-color: #fee2e2; }
.bg-light-warning { background-color: #fef3c7; }
.bg-light-primary { background-color: #e0e7ff; }

.transition-hover {
    transition: all 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    border-color: #bd1330 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

  /* Accordion Custom Styling */
    .accordion-button:not(.collapsed) {
        background-color: #fee2e2;
        color: #dc3545;
        box-shadow: none;
    }
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,.125);
    }
    .accordion-item:last-child {
        border-bottom: none;
    }

    section {
    scroll-margin-top: 80px; /* Idhu links click panni varum podhu sariyaana idathula nikkum */
}

.transition {
    transition: all 0.3s ease-in-out;
}
.hover-shadow-lg:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}
.catalog-card {
    height: 400px;
    cursor: pointer;
}
.catalog-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.1) 80%);
    transition: all 0.4s ease;
}
.catalog-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.catalog-card:hover .catalog-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}
.catalog-card img {
    transition: transform 0.6s ease;
}
.catalog-card:hover img {
    transform: scale(1.1);
}

/* Floating Container */
/* Container to hold everything */
.floating-contact-container {
    position: fixed;
    bottom: 25px;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
    /* Intha area mela click panna background work aagum */
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Individual Icon Styles */
.float-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    /* Buttons matum click aagum */
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.float-icon:hover {
    transform: scale(1.1);
}

/* Left & Right Groups */
.float-left-side {
    display: flex;
}

.float-right-side {
    display: flex;
    flex-direction: column;
}

/* Colors */
.phone-icon {
    background: #dc3545;
    /* Unga customized orange */
    animation: bounce 2s infinite;
}

.whatsapp-icon {
    background: #dc3545;
    animation: bounce 2s infinite;
}

.google-icon {
    background: #fff;
    padding: 2px;
    /* Logo theriya chinna padding */
    animation: bounce 2s infinite;
}

/* Animation for WhatsApp */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


