/* --- THEME VARIABLES --- */
        :root {
            --creme-bg: #fdfae7;
            --dark-green-bg: #0c2b16;
            --text-dark: #333;
            --text-light: #fdfae7;
            --marquee-bg: #000;
            --marquee-text: #fff;
            --dark-orange: #d35400;
            --white: #ffffff;
            --border-color: #eee;
            --border-color-dark: #222;

            --bg-color: var(--creme-bg);
            --text-color: var(--text-dark);
            --card-bg: var(--white);
            --border-active: var(--border-color);
            --profile-bg: #6c757d; 
            
            /* Dock Variables */
            --dock-bg-resting: rgba(255, 255, 255, 0.25);
            --dock-bg-hover: rgba(255, 255, 255, 0.98);
        }

        .dark-mode {
            --bg-color: var(--dark-green-bg);
            --text-color: var(--text-light);
            --card-bg: #1a3c1f; 
            --border-active: var(--border-color-dark);
            --profile-bg: #2c2c2c;
            
            /* Dock Variables for Dark Mode */
            --dock-bg-resting: rgba(0, 0, 0, 0.4);
            --dock-bg-hover: rgba(15, 35, 20, 0.98);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; -webkit-tap-highlight-color: transparent; }
        body {     background: var(--bg-color) !important;
    color: var(--text-color);
    transition: background 0.3s, color 0.3s;
    padding-bottom: 140px;
    overflow-x: hidden; }
	
	.card_loader_back {
           display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: #ffffffeb;
    backdrop-filter: blur(6px);
    border-radius: 8px;
    overflow: hidden;
    position: fixed;
    z-index: 333;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loader:before,
.loader:after {
    content: "";
    flex: 1;
    background: #e53236; /* Using your signature red color */
    transform-origin: 0% 100%;
    animation: rtr-x 1s infinite linear;
}

	.loader {
        width: 48px;
        height: 48px;
        display: flex;
        transform-origin:50% 125%;
        animation: mov-y 1s infinite linear;
      }
      
      .loader:before {
        transform-origin: 100% 100%;
        animation-name: rtr-rx;
      }

      @keyframes mov-y {
        0%,25%   {transform:translateY(0)     scaleY(1)}
        49%   {transform:translateY(-75%)  scaleY(1)}
        50%      {transform:translateY(-75%)  scaleY(-1)}
        75%,100% {transform:translateY(-150%) scaleY(-1)}
      }
      @keyframes rtr-x {
        25%,75% {transform: rotate(0deg)}
        50%     {transform: rotate(90deg)}
      }
      @keyframes rtr-rx {
        25%,75% {transform: rotate(0deg)}
        50%     {transform: rotate(-90deg)}
      }
    
	
	
        
        .container {    width: 100%;
    min-height: 70vh;}


/* Carousel Container */
.gallery-wrapper {
    padding: 20px 0;
    position: relative;
}


.owl-carousel .item {
        display: block !important;
    min-height: 200px;
    max-height: 55vh;
    width: 100%;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
}
/* Style the Navigation Arrows */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e53236 !important; /* Your signature red */
    color: #fff !important;
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.owl-nav .owl-prev { left: -15px; }
.owl-nav .owl-next { right: -15px; }

.owl-nav button:hover {
    background: #b01e22 !important; /* Darker red on hover */
    transform: translateY(-50%) scale(1.1);
}

/* Style the Pagination Dots */
.owl-dots .owl-dot span {
    background: #ccc !important;
}

.owl-dots .owl-dot.active span {
    background: #e53236 !important;
}

/* Image rounding */
.owl-carousel .item img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: auto;
}

#main-gallery .owl-nav button {
    background: #e53236 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
}
        /* =========================================
           1. TOP HEADER (Icons & Buttons)
           ========================================= */
        .top-header-bar {
            background: #111;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            border-bottom: 1px solid #333;
        }

        /* Quick Actions (Left) */
        .quick-actions { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
        .qa-btn { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: white; font-size: 10px; font-weight: normal; gap: 4px; }
        .qa-icon { width: 35px; height: 35px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; transition: 0.2s; }
        .qa-btn:hover .qa-icon { transform: translateY(-3px); }
        .bg-call { background: #3498db; } .bg-wa { background: #25d366; } .bg-map { background: #555; } .bg-mail { background: #f39c12; } .bg-web { background: #2980b9; }

        /* Action Buttons (Center) */
        .action-grid { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
        .action-btn { background: #222; color: white; padding: 8px 15px; border-radius: 6px; border: 1px solid #444; font-size: 12px; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: 0.2s; }
        .action-btn:hover { background: #444; }
        .btn-rating { background: var(--dark-orange); border: none; }

        /* Social Icons (Right) */
        .social-grid { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
        .social-icon { width: 35px; height: 35px; border-radius: 6px; display: flex; justify-content: center; align-items: center; color: white; font-size: 16px; text-decoration: none; transition: 0.2s; }
        .social-icon:hover { transform: translateY(-3px); }
       
.social-icon img {    width: 100%;
    border: 0px solid;
    border-radius: 6px;}

/* Primary Socials */
.c-fb { background: #1877F2; } 
.c-yt { background: #FF0000; } 
.c-x  { background: #000000; }
 
.c-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); } 
.c-in { background: #0A66C2; } 
.c-pn { background: #BD081C; } /* Pinterest */

/* Messaging & Apps */
.c-wa { background: #25D366; } /* WhatsApp */
.c-tg { background: #0088cc; } /* Telegram */
.c-sc { background: #FFFC00; color: #000 !important; } /* Snapchat (Yellow needs dark icon) */
.c-ad { background: #3DDC84; } /* Android */
.c-ap { background: #000000; } /* Apple */

/* Business & Search */
.c-gmap { background: #34A853; } 
.c-gd   { background: #4285F4; } /* Google Drive */
.c-jd   { background: #112d5d; } /* JustDial Blue */

/* Shopping & Food */
.c-az { background: #FF9900; } /* Amazon */
.c-fk { background: #2874f0; } /* Flipkart */
.c-im { background: #2e3192; } /* IndiaMart */
.c-zo { background: #cb202d; } /* Zomato */
.c-sw { background: #fc8019; } /* Swiggy */
.c-ms { background: #f43397; } /* Meesho */

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            .top-header-bar { flex-direction: column; justify-content: center; padding: 15px 10px; gap: 15px; }
            .quick-actions, .action-grid, .social-grid { width: 100%; justify-content: center; }
            .action-btn { font-size: 11px; padding: 8px 10px; }
        }

        /* =========================================
           2. MARQUEE & VIEWS BAR
           ========================================= */
        .marquee-bar {
            background: #000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 20px;
            color: white;
            border-bottom: 2px solid #222;
        }
        .running-text { flex-grow: 1; overflow: hidden; white-space: nowrap; font-size: 13px; font-weight: bold; margin-right: 15px; }
        .running-text p { display: inline-block; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .view-counter { font-size: 12px; font-weight: bold; white-space: nowrap; display: flex; align-items: center; gap: 5px; }

        /* =========================================
           3. MIDDLE SLIDER SECTION
           ========================================= */
        .slider-section { width: 100%; height: 400px; position: relative; overflow: hidden; background: #111; }
        .slider-container { display: flex; width: 500%; height: 100%; animation: slideAnimation 20s infinite; }
        .slider-container img { width: 20%; height: 100%; object-fit: cover; }
        @keyframes slideAnimation {
            0%, 15% { transform: translateX(0); }
            20%, 35% { transform: translateX(-20%); }
            40%, 55% { transform: translateX(-40%); }
            60%, 75% { transform: translateX(-60%); }
            80%, 95% { transform: translateX(-80%); }
            100% { transform: translateX(0); }
        }
        @media (max-width: 600px) { .slider-section { height: 250px; } }

        /* =========================================
           4. PROFILE FOOTER BAR
           ========================================= */
        .profile-banner { background: var(--profile-bg); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; color: white; flex-wrap: wrap; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
        .profile-info { display: flex; align-items: center; gap: 20px; }
        .hero-logo {     width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid var(--dark-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: #333; }
        .hero-text h1 { font-size: 26px; margin-bottom: 2px; text-transform: uppercase; }
        .hero-text p { font-size: 14px; opacity: 0.9; line-height: 1.4; }
        .theme-btn { background: var(--dark-orange); color: white; border: none; padding: 10px 20px; border-radius: 20px; cursor: pointer; font-weight: bold; transition: 0.2s; font-size: 14px; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
        .theme-btn:active { transform: scale(0.95); }
        
        @media (max-width: 600px) { .profile-banner { flex-direction: column; text-align: center; } .profile-info { flex-direction: column; gap: 10px; } }

        /* =========================================
           PAGE SECTIONS & COMPONENTS
           ========================================= */
        .page-section { display: none; padding: 40px 20px; width: 100%; animation: fadeIn 0.4s ease-in-out; }
        .page-section.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .page-title { font-size: 26px; margin-bottom: 25px; border-left: 5px solid var(--dark-orange); padding-left: 15px; }

        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
        .product-card { background: var(--card-bg); border: 2px solid var(--border-active); border-radius: 12px; padding: 25px; text-align: center; cursor: pointer; transition: 0.3s; }
        .product-card:hover { border-color: var(--dark-orange); box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-5px); }
        .product-img { width: 100%; height: 150px; background: rgba(128,128,128,0.1); border-radius: 8px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; color: #777; }
		
		
		img {width:100%;height:100%;}
		.product-img img {    width: 100%;
    height: 100%;
    object-fit: cover;}
        .buy-btn { display: inline-block; padding: 12px 20px; background: var(--dark-orange); color: white; text-decoration: none; border-radius: 8px; font-size: 16px; font-weight: bold; width: 100%; border: none; transition: 0.2s; cursor: pointer; margin-top: 15px; }
        
        .contact-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; margin-bottom: 40px; }
        .contact-box { display: flex; align-items: center; background: var(--card-bg); border: 1px solid var(--border-active); border-radius: 12px; padding: 15px; text-decoration: none; color: var(--text-color); transition: 0.2s; }
        .contact-box i { background: #2c3e50; color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 18px; margin-right: 15px; }

        /* Form styling for feedback */
        .feedback-form input, .feedback-form textarea { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid var(--border-active); border-radius: 8px; background: var(--card-bg); color: var(--text-color); }

        /* =========================================
           5. BOTTOM DOCK MENU
           ========================================= */
        .dock-container { position: fixed; bottom: 10px; left: 0; width: 100%; display: flex; justify-content: center; padding: 0 10px; z-index: 1000; }
        .bottom-nav {     display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    background: var(--dock-bg-resting);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px 15px;
    width: 100%;
    max-width: 1200px;
    transition: all 0.4s ease-in-out;
    justify-content: center;}
	@media screen and  (max-width:900px){
		.bottom-nav {
		justify-content: left;	
		}
		.owl-carousel .item img {
    
    height: 100%;
    object-fit: cover;
}
	
	}
        .bottom-nav:hover { background: var(--dock-bg-hover); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .bottom-nav::-webkit-scrollbar { display: none; }
        
        .nav-item {     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    padding: 6px;
    border-radius: 10px;
    transition: 0.3s;
    transform-origin: center bottom; }
        .nav-item i { font-size: 18px; margin-bottom: 5px; transition: 0.3s; }
        
        /* Light Mode Hover/Active (Kept Orange) */
        .bottom-nav .nav-item:hover { transform: scale(1.15) translateY(-5px); color: var(--dark-orange); }
        .nav-item.active { color: var(--dark-orange); background: rgba(211, 84, 0, 0.1); }

        /* DARK MODE - METALLIC GOLDEN COLOR OVERRIDES (#D4AF37) */
        .dark-mode .bottom-nav .nav-item:hover { color: #D4AF37; } /* Updated */
        .dark-mode .bottom-nav .nav-item:hover i { color: #D4AF37; } /* Updated */
        .dark-mode .nav-item.active { color: #D4AF37; background: rgba(212, 175, 55, 0.15); } /* Updated color & background */
        .dark-mode .nav-item.active i { color: #D4AF37; } /* Updated */
		
		.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
           margin: auto;
    display: flex;
    width: 98%;
    height: auto;
    max-width: 700px;
    border-radius: 10px;
    justify-content: center;
    animation: zoom 0.3s;
    align-items: baseline;
    top: 41%;
    position: relative;
    transform: translate(0,-50%);
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    cursor: pointer;
}

.modal-prev, .modal-next {
       cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    z-index: 3;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(229, 50, 54, 0.5);
}

.modal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prev:hover, .modal-next:hover {
    background-color: #e53236; /* Your Signature Red */
}


.youtube_gallery {
    padding: 20px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    color: #222;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid #e53236; /* Your Signature Red */
    padding-left: 12px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #e53236;
}

/* 16:9 Aspect Ratio Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 12px 15px;
}

.video-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-info i {
    color: #e53236; /* YouTube Red matching your theme */
    font-size: 18px;
}


/* Payment Section Container */
#payment {
        padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    background: var(--card-bg);
}

#payment h3 {
       font-size: 18px;
    margin: 20px 0 10px 0;
    color: var(--text-color);
    border-left: 4px solid #e43737;
    padding-left: 10px;
}

/* Info Rows */
.payment-info, .bank-info {
       display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--text-light);
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.2s;
}

.payment-info:hover, .bank-info:hover {
    border-color: #e43737;
    background: #fff;
}

.payment-info h2, .bank-info h2 {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
    flex: 0 0 100px;
}

.payment-info p, .bank-info p {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
    flex-grow: 1;
    word-break: break-all;
    padding: 0 10px;
}

/* Copy Button Styling */
.copy-btn {
    background: #e43737; /* Matching your theme */
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.copy-btn:hover {
    background: #000;
    transform: scale(1.1);
}

/* QR Code Section */
.qr-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 300px));
    gap: 15px;
    margin-top: 20px;
    text-align: center;
}

.qr-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 12px;
}

.qr-card img {
    width: 100%;
	
}



.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    gap: 15px;
    text-align: center;
}

.client-card {
        display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.client-img-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* Circular look */
    overflow: hidden;
    border: 2px solid #f0f0f0;
    margin-bottom: 10px;
    background: #fafafa;
}

.client-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.client-card h4 {
        font-size: 14px;
    margin: 5px 0;
    color: var(--text-color);
    font-weight: 600;
}

.client-card p {
        font-size: 11px;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

.client-card:hover .client-img-wrapper {
    border-color: #e43737; /* Your signature red */
    transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 400px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on very small screens */
    }
}




.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* 2 per row on mobile */
    gap: 15px;
}

.team-card {
          padding: 20px 10px;
    text-align: center;
    border-radius: 15px;
    background: var(--card-bg);
    color: var(--text-color);
    max-width: 300px;
}

.team-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.team-placeholder {
    background: #f8f8f8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.team-card h4 {
       font-size: 15px;
    margin: 0;
    color: var(--text-color);
}

.team-designation {
    font-size: 12px;
    color: #e53236; /* Accent color */
    font-weight: 600;
    margin: 5px 0 15px;
}

/* Round Action Buttons */
.team-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.t-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.t-call { background: #e53236; color: #fff; }
.t-wa { background: #25D366; color: #fff; }
.t-mail { background: #444; color: #fff; }

.t-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}


#feedback {
        background: var(--bg-color);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Toggle Button */
.feed_btn {
       background: #e43737;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
    width: fit-content;
}
.feed_btn:hover { background: #000; }
.rating-box {
             background: white;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 0 auto;
    display: block;
    width: -webkit-fill-available;
    max-width: 600px;
}

.rating-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-group {
    display: flex;
    flex-direction: row-reverse; /* Secret to making left stars light up */
    justify-content: flex-end;
}

.star-group input {
    display: none; /* Hide the actual radio dots */
}

.star-group label {
    font-size: 28px;
    color: #ddd; /* Default grey stars */
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0 2px;
}

/* Hover & Checked Logic */
.star-group label:hover,
.star-group label:hover ~ label,
.star-group input:checked ~ label {
    color: #e53236; /* Your Signature Red */
}

.star-group label:active {
    transform: scale(0.9);
}

/* Label on the right */
.rating-label {
    border-left: 2px solid #eee;
    padding-left: 15px;
}

.rating-label small {
    color: #e53236;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Form Groups & Inputs */
#feedback_form { display: none; margin-top: 15px; }

.form-group {
        position: relative;
    max-width: 600px;
    margin: 15px auto;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 5;
}

.form-group input, .form-group textarea {
           width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: black;
    font-size: 15px;
    transition: 0.3s;
    max-width: 600px;
    margin: 0px;
}

.form-group input:focus, .form-group textarea:focus {
    background: #fff;
    border-color: #e43737;
    box-shadow: 0 0 0 4px rgba(228, 55, 55, 0.1);
    outline: none;
}

#submitBtn {
       background: #e43737;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    border: none;
    cursor: pointer;
    max-width: 600px;
    margin: 10px auto;
    display: block;
}

#submitBtn:disabled { background: #ccc; cursor: not-allowed; }


/* Container and Wrapper */
.av_stars {
      display: inline-block;
    padding: 15px;
    background: white;
    width: 200px;
    border-radius: 7px;
}

.r_hold {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* Big Rating Number */
.av_num {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

/* Star Container */
.av_star_mock {
    color: #e0e0e0; /* Faint grey for empty stars */
    font-size: 18px;
    letter-spacing: 2px;
}

.av_star {
    position: absolute;
    top: 0;
    left: 0;
    color: #e53236; /* Premium Red Accent */
    font-size: 18px;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
}

/* Review Count Text */
.tl_feed {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.3px;
}


.feedback_row {
    display: flex;
    overflow-x: auto;
    /* Essential for the "Snap" effect */
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    
    padding: 20px 19px;
    gap: 15px; /* Spacing between cards */
}

/* Hide scrollbar for a cleaner look while keeping functionality */
.feedback_row::-webkit-scrollbar {
    display: none;
}
.feedback_row {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}.feedback_block {
    flex: 0 0 240px; /* Fixed width for the scroll-snap */
    scroll-snap-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.star-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars-gold .star.active { color: #f1c40f; } /* Gold stars */
.stars-gold .star.inactive { color: #ddd; } /* Grey stars */

.star_rate {
    font-size: 11px;
    font-weight: 700;
    color: #e53236; /* Your Signature Red */
    background: rgba(229, 50, 54, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.feed_back {
    font-size: 13px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1; /* Pushes the footer to the bottom */
    margin: 10px 0;
}

.feed_footer {
    border-top: 1px solid #f9f9f9;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed_by { font-size: 12px; color: #222; }
.feed_date { font-size: 10px; color: #999; }

.opening_hours {    max-width: 900px;
    margin: 10px auto;
    padding: 20px;}
/* Opening Hours Styling */
.oh_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #eee;
}

.oh_btn:hover { border-color: #e43737; }

.oh_container {
    margin-top: 15px;
    padding: 10px;
}

.oh_row {
        display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    color: var(--text-color);
}

.oh_row:last-child { border: none; }

.day_name { font-weight: 500; }

.time_range { font-weight: 600;  }
.is_today {
        background: rgb(229 50 54 / 13%);
    border-left: 4px solid #e53236;
   
    padding-left: 10px;
}

.is_today .day_name {
    color: #e53236;
}

.is_today .time_range {
    font-weight: 700;
}


.status_closed {
    color: #e43737;
    background: #fff5f5;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Appointment Styling */
.book_appointment {
    padding: 20px;
    text-align: left; /* Better for SaaS forms */
}

.book_appointment h3 { text-align: center; }

.saas-btn {
    width: 100%;
    padding: 14px;
    background: #4CAF50; /* Keep green for WhatsApp success */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.saas-btn:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.alertApp {
    background: #fff5f5;
    color: #e43737;
    font-size: 13px;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}