/* Custom Premium Styles */

:root {
    --primary-red: #D62227;
    /* லோகோவில் உள்ள சிவப்பு நிறம் */
    --dark-color: #1A1A1A;
    /* லோகோவின் அவுட்லைன் கருப்பு நிறம் */
    --light-bg: #F8F9FA;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    overflow-x: hidden !important;
}

/* Red Color Utilities */
.text-red {
    color: var(--primary-red);
}

.bg-red {
    background-color: var(--primary-red);
}

/* ==========================================
   NAVBAR & HEADER CUSTOM STYLES
   ========================================== */

:root {
    --primary-red: #D62227;
    --dark-color: #1A1A1A;
    --transition-speed: 0.3s;
}

/* Topbar Styles */
.top-bar {
    background-color: var(--dark-color);
    font-size: 0.85rem;
    border-bottom: 2px solid var(--primary-red);
}

.top-bar .social-links a {
    transition: color var(--transition-speed);
}

.top-bar .social-links a:hover {
    color: var(--primary-red) !important;
}

/* Navbar & Brand Styles */
.navbar {
    transition: all var(--transition-speed) ease-in-out;
}

.brand-text {
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
}

.brand-logo {
    object-fit: contain;
}

/* Desktop Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #555555;
    padding: 8px 16px !important;
    position: relative;
    transition: color var(--transition-speed);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

/* Link Underline Hover Effect for Premium Desktop Look */
@media (min-width: 992px) {
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 16px;
        background-color: var(--primary-red);
        transition: width var(--transition-speed);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: calc(100% - 32px);
    }
}

/* Responsive Menu Customizations */
.navbar-toggler:focus {
    box-shadow: none;
}

/* Premium Red Button */
.btn-red {
    background-color: var(--primary-red);
    color: #ffffff;
    border: 2px solid var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.btn-red:hover {
    background-color: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE STYLE (WHITE CARD)
   ========================================== */
@media (max-width: 991.98px) {

    /* Collapsed menu converted to a beautiful hanging white card */
    .navbar-collapse {
        background-color: #ffffff !important;
        padding: 20px !important;
        border-top: 1px solid #f1f1f1 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        border-radius: 16px !important;
        /* Soft card curves */
        margin-top: 12px;
    }

    /* Left align nav links for better mobile UX readability */
    .navbar-nav {
        align-items: flex-start !important;
        width: 100% !important;
    }

    /* Mobile Links styling on White Background */
    .navbar-nav .nav-link {
        margin-left: 0 !important;
        padding: 12px 10px !important;
        width: 100%;
        color: #212529 !important;
        /* Rich contrast dark charcoal text */
        border-bottom: 1px solid #f8f9fa;
        /* Soft thin border between menu items */
        transition: all var(--transition-speed) ease;
    }

    /* Remove divider from the last link item before Call Button */
    .navbar-nav .nav-item:nth-last-child(2) .nav-link {
        border-bottom: none !important;
    }

    /* Premium mobile hover effect (Slide right) */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-red) !important;
        padding-left: 18px !important;
        /* Smooth right shift on active */
        background-color: rgba(214, 34, 39, 0.03);
        /* Soft red touch highlight */
    }

    /* Call button mobile fit */
    .navbar-nav .nav-item.ms-lg-3 {
        margin-top: 15px !important;
        width: 100% !important;
    }
}

/* ==========================================
   SLIDER HERO SECTION CUSTOM STYLES
   ========================================== */

#home {
    --primary-red: #D62227;
    --dark-color: #1A1A1A;
    --transition-speed: 0.3s;
}

.hero-slider {
    position: relative;
    background-color: #110e0c;
}

.carousel-item {
    height: 600px;
    /* Default height for large screens */
    min-height: 450px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Dark gradient overlay to make text highly readable */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 14, 12, 0.85) 0%, rgba(17, 14, 12, 0.4) 100%);
    z-index: 1;
}

.carousel-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-content {
    color: #ffffff;
    max-width: 650px;
    text-align: left;
}

/* Red Themed Badge */
.slider-badge {
    background-color: rgba(214, 34, 39, 0.15);
    color: var(--primary-red);
    border: 1px solid rgba(214, 34, 39, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Highlight text in Red */
.slider-title span {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(214, 34, 39, 0.35);
}

.slider-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.slider-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

/* Primary Button in Red Theme */
.slider-btns .btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}

.slider-btns .btn-primary:hover {
    background-color: #be181d;
    /* Slightly darker red */
    border-color: #be181d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 34, 39, 0.4);
    color: #ffffff;
}

.slider-btns .btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

/* Modern Slide Transitions */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Custom slide-up animation for text inside active slides */
.carousel-item.active .slider-badge {
    animation: slideUp 0.6s ease-out 0.2s both;
}

.carousel-item.active .slider-title {
    animation: slideUp 0.6s ease-out 0.4s both;
}

.carousel-item.active .slider-description {
    animation: slideUp 0.6s ease-out 0.6s both;
}

.carousel-item.active .slider-btns {
    animation: slideUp 0.6s ease-out 0.8s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Customized Carousel Indicators (Red active indicator) */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* Custom Prev/Next Arrows - Desktop */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(17, 14, 12, 0.5);
    border-radius: 50%;
    padding: 22px;
    background-size: 50%;
    transition: background-color var(--transition-speed) ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-red);
}

/* Mobile & Tablet Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-red);
        /* Mobile Menu Background in Primary Red */
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 15px;
    }

    .navbar-nav .nav-link:not(.active)::after {
        display: none;
    }

    .navbar-brand h1 {
        font-size: 1.3rem;
    }

    .carousel-item {
        height: 500px;
    }

    .slider-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 15px;
    }

    .slider-title {
        font-size: 2.2rem;
    }

    .slider-btns {
        justify-content: center;
    }

    /* Shrink Carousel Control Arrows on Tablets */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 14px !important;
        /* Shrunk padding */
        background-size: 40% !important;
        /* Smaller arrow size icon */
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 8% !important;
        /* Touch friendly width bounds */
    }
}

/* Mobile Specific Tweaks for Small Screens */
@media (max-width: 575.98px) {
    .carousel-item {
        height: 480px;
        /* Comfortable mobile viewport height */
    }

    .slider-title {
        font-size: 1.8rem !important;
        /* Prevents awkward line wraps on small screens */
    }

    .slider-description {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }

    .slider-btns .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Shrunk Carousel Control Arrows further for very small screens */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 11px !important;
        /* Keeps the circle balanced and non-intrusive */
        background-size: 35% !important;
    }
}

/* ==========================================
   ABOUT SECTION CUSTOM STYLES
   ========================================== */

.about-section {
    background-color: #ffffff;
    position: relative;
}

/* Light background highlights matching the theme */
.bg-red-light {
    background-color: rgba(214, 34, 39, 0.08) !important;
}

.bg-dark-light {
    background-color: rgba(26, 26, 26, 0.05) !important;
}

.border-red {
    border-color: var(--primary-red) !important;
}

/* Decorative background frame around image */
.about-image-wrapper {
    padding: 15px;
    z-index: 5;
}

.about-image-wrapper img {
    border-radius: 16px !important;
    border: 5px solid #ffffff;
    z-index: 2;
}

.about-image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border: 4px solid var(--dark-color);
    border-radius: 16px;
    z-index: 1;
    transition: all var(--transition-speed) ease;
}

/* Hover Animation for Interactive Image frame */
.about-image-wrapper:hover .about-image-border {
    transform: translate(-8px, -8px);
    border-color: var(--primary-red);
}

/* Overlapping Experience Stats Badge */
.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    z-index: 3;
    max-width: 260px;
    background-color: var(--primary-red);
    border-left: 5px solid var(--dark-color);
    border-radius: 12px !important;
    transition: transform var(--transition-speed) ease;
}

.about-image-wrapper:hover .experience-badge {
    transform: translateY(-5px);
}

/* Utility icons styling inside details */
.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    transition: transform var(--transition-speed) ease;
}

.about-content:hover .feature-icon {
    transform: scale(1.08);
}

/* Z-Index Helper Class */
.z-index-2 {
    z-index: 2;
}

/* Responsive Custom Adjustments */
@media (max-width: 991.98px) {
    .about-image-wrapper {
        margin-bottom: 40px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-badge {
        bottom: 5px;
        right: 5px;
    }
}

/* ==========================================
   PRODUCTS SECTION CUSTOM STYLES
   ========================================== */

.products-section {
    overflow: hidden;
}

/* Product Card Design */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    border: 1px solid #eaeaea;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(214, 34, 39, 0.12);
    border-color: var(--primary-red);
}

/* Floating Tags */
.discount-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
    text-uppercase: uppercase;
}

/* Product Image Frame */
.product-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #f9f9f9;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

/* Content & Typography */
.product-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    max-width: 75%;
    /* பட்டனுடன் முட்டாமல் இருக்க தகுந்த அகலம் */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* WhatsApp Button */
.enquire-btn {
    width: 44px;
    height: 44px;
    background-color: #25D366;
    /* Official WhatsApp green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.enquire-btn:hover {
    background-color: #128C7E;
    color: #ffffff;
    transform: scale(1.1);
}

/* Custom bullet colors for Swiper */
.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
    width: 20px !important;
    border-radius: 5px !important;
}

/* ==========================================
   DESKTOP VIEW (992px and up):
   Destroy Swiper & Force 4x2 Layout
   ========================================== */
@media (min-width: 992px) {
    .products-swiper {
        overflow: visible !important;
    }

    .products-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        /* 4 Columns */
        gap: 24px !important;
        /* Gap between cards */
        transform: none !important;
        width: 100% !important;
    }

    .products-swiper .swiper-slide {
        width: auto !important;
        height: auto !important;
        margin-right: 0 !important;
    }

    /* Hide swiper controls on Desktop */
    .products-swiper .swiper-pagination {
        display: none !important;
    }
}

/* ==========================================
   DESKTOP VIEW (992px and up):
   Destroy Swiper & Force 4x2 Layout
   ========================================== */
@media (min-width: 992px) {
    .products-swiper {
        overflow: visible !important;
    }

    .products-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        /* 4 Columns */
        gap: 24px !important;
        /* Gap between cards */
        transform: none !important;
        width: 100% !important;
    }

    .products-swiper .swiper-slide {
        width: auto !important;
        height: auto !important;
        margin-right: 0 !important;
    }

    /* Hide swiper controls on Desktop */
    .products-swiper .swiper-pagination {
        display: none !important;
    }
}

/* ==========================================
   CALL TO ACTION CUSTOM STYLES
   ========================================== */

.cta-section {
    background-color: #ffffff;
}

/* Base card wrapper in default 'Dark/OFF' mode */
.cta-card {
    background: linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.8s ease-in-out, box-shadow 0.6s ease-in-out;
}

/* Background radial gradient glow (inactive state) */
.glow-effect {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 90%;
    height: 190%;
    background: radial-gradient(circle, rgba(214, 34, 39, 0.1) 0%, rgba(214, 34, 39, 0) 70%);
    transition: background 0.8s ease-in-out;
    pointer-events: none;
}

/* Lit-Up states triggered by JavaScript when switch toggled to ON */
.cta-card.lit-up {
    background: linear-gradient(135deg, #150203 0%, #29080b 100%);
    box-shadow: 0 15px 45px rgba(214, 34, 39, 0.25) !important;
}

.cta-card.lit-up .glow-effect {
    background: radial-gradient(circle, rgba(214, 34, 39, 0.4) 0%, rgba(214, 34, 39, 0) 65%);
}

/* Custom badges */
.bg-red-light-cta {
    background-color: rgba(214, 34, 39, 0.22);
}

/* Custom styling for standard dark/switch block */
.bg-dark-card {
    background-color: #161616;
    border-color: rgba(255, 255, 255, 0.08) !important;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.lit-up .bg-dark-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(214, 34, 39, 0.3) !important;
}

/* Premium White Outline button */
.btn-outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--dark-color);
}

/* Customized HTML Switch Toggle button */
.custom-switch-wrapper {
    width: 60px;
    height: 30px;
    position: relative;
}

.custom-switch-input {
    width: 60px !important;
    height: 30px !important;
    cursor: pointer;
    background-color: #444444 !important;
    border: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    transition: background-position 0.25s ease-in-out, background-color 0.25s ease-in-out !important;
}

.custom-switch-input:checked {
    background-color: var(--primary-red) !important;
}

/* Lightbulb Interactive icon changes */
#interactive-bulb {
    transition: color 0.5s ease, filter 0.5s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lit-up #interactive-bulb {
    color: #ffc107 !important;
    /* Golden lighting effect */
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.85));
    transform: scale(1.15);
}

/* Animating hidden offer with clean entry dynamics */
#hidden-offer {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#hidden-offer.show-offer {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   BENTO GALLERY CUSTOM STYLES (NO TEXT, NO RADIUS)
   ========================================== */

.gallery-section.bg-black {
    background-color: #000000 !important;
    /* Pitch Black Background */
}

/* Red Outline Badge Style */
.bg-red-outline {
    background: transparent;
    border: 1px solid var(--primary-red);
}

/* Common style for all bento cards */
.bento-card {
    position: relative;
    overflow: hidden;
    background-color: #111111;
    border-radius: 20px !important;
    /* Sharp corners as requested */
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px !important;
    /* Force remove all image curves */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dynamic height values - mathematically aligned with Bootstrap's gap-4 */
.card-tall {
    height: 500px;
}

.card-standard {
    height: 238px;
    /* Two standards (238px * 2) + Bootstrap gap (24px) = 500px height */
}

/* Creative Hover Shimmer Animation (Light Sweep Effect) */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 5;
}

/* Hover Micro-interactions: Zoom image & Trigger Shimmer sweep */
.bento-card:hover img {
    transform: scale(1.05);
}

.bento-card:hover .shimmer-effect {
    left: 150%;
    /* Smooth light sweep across the card */
}


/* ==========================================
   CONTACT SECTION CUSTOM STYLES
   ========================================== */

.contact-section {
    background-color: #f8f9fa !important;
    /* Slightly off-white background for the section to make the white card stand out */
    --transition-speed: 0.3s;
}

/* Start Project Badge styling */
.badge-pill {
    background-color: transparent;
    border: 1px solid #eaeaea;
    color: var(--dark-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-red);
}

/* Info circle details on the left side */
.info-icon-circle {
    width: 48px;
    height: 48px;
    background-color: var(--dark-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform var(--transition-speed) ease;
}

.info-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-speed);
}

.info-link:hover {
    color: var(--primary-red);
}

.info-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* Hover rotation effect for details icons */
.contact-info-list>div:hover .info-icon-circle {
    transform: scale(1.08) rotate(-10deg);
}

/* Elegant WHITE Form Box with Soft Depth Shadow */
.contact-form-box {
    background-color: #ffffff !important;
    border-radius: 36px !important;
    /* Kept the exact curves */
    border: 1px solid #f1f1f1 !important;
    /* Extremely light border for crisp definition */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08) !important;
    /* Perfect modern soft shadow */
}

/* Grayish-White inputs inside the white container */
.custom-form-input {
    background-color: #f9f9f9 !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 16px !important;
    /* Soft corners for inputs */
    padding: 14px 20px !important;
    color: var(--dark-color) !important;
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
}

.custom-form-input::placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
}

/* Focus glow with Theme Red Outline on the white card */
.custom-form-input:focus {
    background-color: #ffffff !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 4px rgba(214, 34, 39, 0.1) !important;
}

/* Clean transparent dark arrow inside select */
select.custom-form-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

select.custom-form-input option {
    background-color: #ffffff;
    color: var(--dark-color);
}

/* Pictured Red Pill Submit Button (Contrasts beautifully on white card) */
.btn-submit-pill {
    background-color: var(--primary-red) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    border: none !important;
    padding: 8px 32px 8px 8px !important;
    /* Left padding is tight to fit the dark circle */
    transition: all var(--transition-speed) ease;
}

.btn-submit-pill:hover {
    background-color: #be181d !important;
    /* Slightly darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 34, 39, 0.35) !important;
}

.submit-icon-circle {
    width: 44px;
    height: 44px;
    background-color: var(--dark-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Responsive adjustment for Mobile view */
@media (max-width: 991.98px) {
    .contact-form-box {
        margin-top: 30px;
        border-radius: 28px !important;
    }

    .heading-text {
        font-size: 2.2rem !important;
    }
}

/* ==========================================
   MAP & LOCATION SECTION CUSTOM STYLES
   ========================================== */

.map-section {
    background-color: #ffffff;
    --transition-speed: 0.3s;
}

/* Red Outline Badge Style */
.bg-red-outline {
    background: transparent;
    border: 1px solid var(--primary-red);
}

/* Timings Card Style */
.working-hours-card {
    border-radius: 0px !important;
    /* Sharp corners matching Bento gallery */
    border: 1px solid #eaeaea !important;
}

/* Map Frame Container (Perfect Responsive with Sharp Corners) */
.map-iframe-container {
    width: 100% !important;
    position: relative !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 0px !important;
    /* Forced sharp corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    line-height: 0 !important;
    /* Removes gap at bottom of iframe */
}

.map-iframe-container iframe {
    display: block !important;
    width: 100% !important;
    height: 450px !important;
    border-radius: 0px !important;
    /* Forced sharp corners on the map embed */
}

/* Responsive adjustment for Mobile view */
@media (max-width: 991.98px) {
    .map-iframe-container {
        margin-top: 30px;
    }

    .map-iframe-container iframe {
        height: 350px !important;
        /* Shorter height on smaller screens for better comfort */
    }
}

/* ==========================================
   FOOTER SECTION CUSTOM STYLES
   ========================================== */

.footer-section {
    background-color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #eaeaea !important;
}

.footer-section .footer-title {
    font-size: 1.1rem;
    position: relative;
}

.footer-section .text-red {
    color: var(--primary-red) !important;
}

.footer-section .brand-text {
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
}

/* Rounded Social Media Icons */
.footer-section .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    border: 1px solid #eaeaea;
}

.footer-section .social-icon:hover {
    background-color: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

/* Quick Links lists styles */
.footer-links-list a {
    color: #6c757d;
    text-decoration: none;
    transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.footer-links-list a:hover {
    color: var(--primary-red);
    padding-left: 6px;
    /* Smooth padding slide animation */
}

/* Email & Phone link hovered */
.footer-section .hover-red:hover {
    color: var(--primary-red) !important;
}

/* Bottom Legal Links hover effect */
.footer-bottom-links a {
    transition: color var(--transition-speed);
}

.footer-bottom-links a:hover {
    color: var(--primary-red) !important;
}