/* General Setup */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    overflow-x: hidden;
}


/* Hero Section Container */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden; /* Taaki video section se baahar na nikle */
    
    /* Content ko center me rakhne ke liye */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Video Styling */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ye video ko background-size: cover jaisa kaam karta hai */
    z-index: -1; /* Isko text ke piche bhejne ke liye */
}

/* Dark Overlay (Taaki white text video par saaf padhne me aaye) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 0.5 ka matlab 50% black shadow */
    z-index: 0; 
}

/* Content jo video ke upar rahega */
.hero-content {
    position: relative;
    z-index: 1; /* Isko video aur overlay se upar laane ke liye */
    text-align: center;
    color: white; /* Text ka color white */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
}


/* ================= HERO SECTION ================= */


.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.letter-spacing-1 {
    letter-spacing: 2px;
}

.btn-hover-warning:hover {
    background-color: #d89f0f !important;
    border-color: #d89f0f !important;
    color: #fff !important;
}

/* ================= VERTICAL BARS (Trending Design) ================= */
/* Left Side - Social Icons */
.vertical-bar-left {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vertical-bar-left .follow-text {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 20px;
}

.vertical-bar-left a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.vertical-bar-left a:hover {
    color: #d89f0f;
}

/* Right Side - Contact Info */
.vertical-bar-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.vertical-bar-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    writing-mode: vertical-rl;
    transition: 0.3s;
    letter-spacing: 1px;
}

.vertical-bar-right a:hover {
    color: #d89f0f;
}

.vertical-bar-right .divider {
    height: 60px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
}



/* ================= ABOUT PROPERTY SECTION ================= */
.about-property {
    background-color: #121212; /* Deep dark background matching the image */
}

/* Image Wrapper with White Border */
.property-img-wrapper {
    border: 12px solid #ffffff; 
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background-color: #fff;
}

/* Feature Boxes Setup */
.feature-box {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Active Feature Box (Yellow) */
.feature-box.active {
    background-color: #d89f0f;
    color: #ffffff;
}

.feature-box.active .zigzag-icon {
    color: #ffffff;
}

/* Dark Feature Box */
.feature-box.dark {
    background-color: #1c1c1c; 
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover Effect on Dark Boxes (Turns Yellow just like Active Box) */
.feature-box.dark:hover {
    background-color: #d89f0f;
}

.feature-box.dark:hover h5, 
.feature-box.dark:hover .transition-icon,
.feature-box.dark:hover .zigzag-icon {
    color: #ffffff !important;
}

.feature-box.dark:hover small {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Zigzag SVG Icon Container */
.zigzag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}




/* ================= SMART LIVING SECTION ================= */
.smart-living-section {
    background-color: #f9f9f9; /* Light grey background for counters */
}

/* --- Counter Design (Text cutting numbers) --- */
.counter-box {
    position: relative;
    display: inline-block;
}

.counter-number {
    font-size: 5rem; /* Large Numbers */
    font-weight: 800;
    color: #d89f0f;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.counter-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9; /* Same as section background to create the cut effect */
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111111;
    white-space: nowrap;
}

/* Responsive adjustment for counters */
@media (max-width: 768px) {
    .counter-number { font-size: 4rem; }
    .counter-label { font-size: 10px; }
}

/* --- Features Check-List Grid --- */
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 15px 10px;
}

.features-list-grid span {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.features-list-grid i {
    color: #d89f0f;
    font-size: 13px;
    margin-right: 10px;
}

@media (max-width: 576px) {
    .features-list-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Mobile */
    }
}

/* --- Overlapping Play Button with Pulse Effect --- */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%); /* Centers it exactly on the left edge */
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
    text-decoration: none;
    transition: 0.3s;
}

.video-play-btn:hover {
    color: #d89f0f;
}

/* White Pulsing Animation behind the button */
.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Adjust Play button position for Mobile */
@media (max-width: 991px) {
    .video-play-btn {
        left: 50%;
        top: 0;
        /* Centers it on the top edge of the image for mobile layout */
    }
}

/* ================= SCHEDULE VISIT CTA SECTION ================= */
.schedule-visit-section {
    background-color: #d89f0f; /* Primary Yellow/Mustard Color */
    /* Niche di gayi line me aap apne wavy background pattern wali image ka link daal sakte hain */
    background-image: url('https://www.transparenttextures.com/patterns/maze-white.png'); 
    background-size: auto;
    background-position: center;
    background-blend-mode: soft-light; /* Ye background image ko yellow color ke sath blend kar dega */
    position: relative;
}

/* Custom Black Button */
.btn-dark-custom {
    background-color: #111111;
    color: #ffffff;
    border: 2px solid #111111;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-dark-custom:hover {
    background-color: transparent;
    color: #111111; /* Text black on hover */
    border-color: #111111;
}

.btn-dark-custom i {
    font-size: 12px; /* Plus icon thoda chota dikhne ke liye */
}


/* ================= OVERVIEW SLIDER SECTION ================= */
.overview-slider-section {
    overflow: hidden; /* Important so Swiper doesn't cause horizontal scrollbar on page */
}

/* --- Overlapping Avatars Effect --- */
.avatar-group img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    margin-left: -15px; /* Pulls images to the left to overlap */
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar-group img:first-child {
    margin-left: 0; /* First image shouldn't have negative margin */
}

.avatar-group img:hover {
    z-index: 10;
    transform: translateY(-5px); /* Hop up on hover */
}

/* --- Animated Progress Line --- */
.custom-slider-progress {
    width: 100%;
    max-width: 250px;
    height: 2px;
    background-color: #e0e0e0;
    position: relative;
}

.custom-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #111111;
    width: 33%; /* Controlled dynamically by JS */
    transition: width 0.4s ease-in-out;
}

/* --- Custom Arrow Buttons --- */
.slider-btn-prev, .slider-btn-next {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Square with slight roundness */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: none;
}

.slider-btn-prev:hover, .slider-btn-next:hover {
    border-color: #111111;
    color: #111111;
    background-color: #fcfcfc;
}

.slider-btn-prev:active, .slider-btn-next:active {
    transform: scale(0.95); /* Click effect */
}

/* --- Swiper Configuration CSS --- */
.luxurySwiper {
    width: 100%;
    padding-right: 50px; /* Space on the right edge */
}

.luxurySwiper .swiper-slide {
    width: 75%; /* Slide takes 75% space, 25% shows the next slide */
    transition: 0.4s ease;
}

.luxurySwiper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Mobile Responsiveness for Slider */
@media (max-width: 991px) {
    .luxurySwiper .swiper-slide {
        width: 85%; /* Shows a smaller peek of the next slide on mobile */
    }
    .luxurySwiper img {
        height: 350px;
    }
}



/* ================= APARTMENT PLANS SECTION ================= */
.apartment-plans-section {
    background-color: #f8f9fa; /* Light grey background similar to the image */
}

/* --- Custom Nav Tabs Styling --- */
.custom-plan-tabs {
    border-bottom: none; /* Removes default bootstrap line */
    gap: 15px;
}

.custom-plan-tabs .nav-link {
    border: none;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    background: transparent;
    position: relative;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-plan-tabs .nav-link:hover {
    color: #d89f0f;
    background: transparent;
    border: none;
}

/* Active Tab Styles */
.custom-plan-tabs .nav-link.active {
    color: #d89f0f !important;
    background: transparent !important;
    border: none !important;
}

/* Zig-Zag Underline for Active Tab */
.custom-plan-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    width: 30px;
    height: 6px;
    /* Drawing the Zig-Zag directly via CSS SVG background */
    background-image: url('data:image/svg+xml;utf8,<svg width="30" height="8" viewBox="0 0 40 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5L5 1L10 5L15 1L20 5L25 1L30 5L35 1L40 5" stroke="%23d89f0f" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    animation: fadeInSlideRight 0.4s ease forwards;
}

@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Plan Details White Card --- */
.plan-details-card {
    border-radius: 4px;
}

.plan-details-card ul li {
    font-size: 15px;
}

.plan-details-card ul li:last-child {
    border-bottom: none !important;
}

.plan-details-card .text-secondary {
    color: #999999 !important; /* Slightly lighter gray for the values (e.g. 01, 05) */
}

/* --- Beauty Animation (Fade & Slide Up) on Tab Change --- */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .custom-plan-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
    }
    .custom-plan-tabs::-webkit-scrollbar {
        height: 4px;
    }
    .custom-plan-tabs::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 4px;
    }
}


/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-section {
    background-color: #c48e0b; /* Rich Mustard/Yellow Color to match your image */
    overflow: hidden;
}

/* Feature Square Box Styling */
.feature-square {
    border: 1px solid rgba(255, 255, 255, 0.25); /* Thin transparent white border */
    border-radius: 6px;
    padding: 35px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-square i {
    font-size: 38px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.feature-square span {
    font-size: 14px;
}

/* Hover Effect for the Boxes */
.feature-square:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px); /* Lifts the box up */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Soft shadow */
}

.feature-square:hover i {
    transform: scale(1.15); /* Slightly zooms the icon */
}

/* Custom White Button */
.btn-light-custom {
    background-color: #ffffff;
    color: #111111;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-light-custom:hover {
    background-color: #f1f1f1;
    color: #000000;
}

.btn-light-custom i {
    font-size: 12px;
}

/* Base states for JS scroll animation */
.animate-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-box.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================= USER FEEDBACK SECTION ================= */
.feedback-section {
    position: relative;
    overflow: hidden;
}

/* Quote Icon Styling */
.quote-icon-wrapper svg {
    width: 70px;
    height: 70px;
    opacity: 0.9;
}

/* Typography for the Review Text */
.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: #888888; /* Light gray text as seen in the image */
    font-weight: 300; /* Thin font weight */
    margin: 0 auto;
}

/* User Avatar Styling */
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ================= CUSTOM NAVIGATION ARROWS ================= */
.feedback-nav-prev,
.feedback-nav-next {
    position: absolute;
    top: 60%; /* Vertically aligns with the text */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5; /* Very thin gray border */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888; /* Arrow color */
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Position them far left and far right of the container */
.feedback-nav-prev {
    left: 15px;
}

.feedback-nav-next {
    right: 15px;
}

/* Hover effect on arrows */
.feedback-nav-prev:hover,
.feedback-nav-next:hover {
    border-color: #d89f0f;
    color: #d89f0f;
    box-shadow: 0 5px 15px rgba(216, 159, 15, 0.1);
}

/* Move arrows below text on Mobile devices */
@media (max-width: 768px) {
    .feedback-nav-prev, .feedback-nav-next {
        top: auto;
        bottom: -20px;
        transform: translateY(0);
    }
    .feedback-nav-prev {
        left: 35%;
    }
    .feedback-nav-next {
        right: 35%;
    }
    .review-text {
        font-size: 16px;
    }
}


/* ================= SCHEDULE FORM SECTION ================= */

/* Form Right Side Background */
.dark-form-section {
    background-color: #202020; /* Dark grey similar to image */
    min-height: 600px;
}

/* Limit form width on extra large screens so it doesn't stretch too much */
.form-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Custom Input Styling */
.custom-input {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    box-shadow: none !important;
}

.custom-input::placeholder {
    color: #888;
}

.custom-input:focus {
    outline: none;
    border: 1px solid #d89f0f; /* Yellow border on click */
}

/* Custom Yellow Button */
.btn-warning {
    background-color: #c08d0b;
    border-color: #c08d0b;
    transition: 0.3s;
}

.btn-warning:hover {
    background-color: #a37609;
    color: #fff;
}


/* ================= CONTINUOUS LOGO MARQUEE ANIMATION ================= */

.logo-marquee-section {
    /* Niche url('') me apne background bed/room ki image ka link daal dein */
    background: url('https://images.unsplash.com/photo-1505691938895-1758d7def511?w=1600&h=400&fit=crop') center/cover no-repeat;
    position: relative;
    border-top: 1px solid #333;
}

.marquee-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(20, 20, 20, 0.9); /* Dark tint */
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* The Scrolling Track */
.logo-track {
    display: inline-flex;
    white-space: nowrap;
    animation: infiniteScroll 20s linear infinite; /* 20s is speed, linear makes it smooth */
}

.logo-group {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%; /* Ensures each group takes full container width */
    padding-right: 50px;
}

/* Logo Image Styling */
.logo-group img {
    height: 40px; /* Adjust logo size */
    object-fit: contain;
    /* This filter makes colored/black logos completely WHITE */
    filter: brightness(0) invert(1); 
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo-group img:hover {
    opacity: 1;
}

/* Vertical Separator Line between logos */
.logo-divider {
    height: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 40px;
}

/* The Magic Animation Keyframes */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
    /* Moves exactly by 50% because we have two identical logo-groups */
}

/* Pause animation on hover (Optional, but looks premium) */
.logo-track:hover {
    animation-play-state: paused;
}





/* ================= BLOG & INSIGHTS SECTION ================= */

/* Card Setup */
.blog-card {
    transition: all 0.3s ease;
    background-color: #f7f7f7; /* Very light grey matching the image */
}

/* Add Shadow on Hover */
.blog-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Image Hover Zoom Animation */
.blog-img-wrapper img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

/* Floating Date Badge Styling */
.date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ffffff;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2; /* Keeps badge above the image zoom */
}
.custom-container {
    max-width: 1480px;
}
/* Blog Content Box */
.blog-content {
    background-color: #f5f5f5; /* Box bottom color */
   
}

/* Blog Title Hover Effect */
.blog-card h4 {
    transition: color 0.3s ease;
    cursor: pointer;
}

.blog-card h4:hover {
    color: #d89f0f !important; /* Turns Yellow on Hover */
}

/* Read More Link */
.read-more-link {
    font-size: 14px;
    transition: 0.3s;
}

.read-more-link:hover {
    color: #d89f0f !important;
}

/* Base 3D Button Style */
.social-box {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 16px; /* Smooth rounded square shape */
    text-decoration: none !important;
    font-size: 28px;
    
    /* Smooth Bouncy Animation ke liye cubic-bezier use kiya hai */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    
    /* Default 3D Shadow (Grey color ki base) */
    box-shadow: 0 6px 0 #d9d9d9,
                0 15px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

/* Jab koi button par click karega (Pressing Effect) */
.social-box:active {
    transform: translateY(6px) !important;
    box-shadow: 0 0px 0 transparent,
                0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

/* Smooth Icon transition */
.social-box i {
    transition: color 0.3s ease;
}


/* =========================================
   Har Icon ke liye alag Brand Colors & Hover 
============================================ */

/* 1. Facebook */
.social-box.facebook { color: #1877F2; }
.social-box.facebook:hover {
    background: #1877F2;
    color: #ffffff;
    transform: translateY(-5px);
    /* 3D shadow niche se dark blue hogi */
    box-shadow: 0 10px 0 #0d5bbd, 
                0 20px 25px rgba(24, 119, 242, 0.4);
}

/* 2. Twitter */
.social-box.twitter { color: #1DA1F2; }
.social-box.twitter:hover {
    background: #1DA1F2;
    color: #ffffff;
    transform: translateY(-5px);
    /* 3D shadow dark light-blue */
    box-shadow: 0 10px 0 #0c85d0,
                0 20px 25px rgba(29, 161, 242, 0.4);
}

/* 3. Pinterest */
.social-box.pinterest { color: #E60023; }
.social-box.pinterest:hover {
    background: #E60023;
    color: #ffffff;
    transform: translateY(-5px);
    /* 3D shadow dark red */
    box-shadow: 0 10px 0 #b3001b,
                0 20px 25px rgba(230, 0, 35, 0.4);
}

/* 4. Instagram (Gradient Color) */
.social-box.instagram { color: #E1306C; }
.social-box.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    transform: translateY(-5px);
    /* 3D shadow dark pink */
    box-shadow: 0 10px 0 #a0135b,
                0 20px 25px rgba(225, 48, 108, 0.4);
}

/* 5. YouTube */
.social-box.youtube { color: #FF0000; }
.social-box.youtube:hover {
    background: #FF0000;
    color: #ffffff;
    transform: translateY(-5px);
    /* 3D shadow dark pure red */
    box-shadow: 0 10px 0 #cc0000,
                0 20px 25px rgba(255, 0, 0, 0.4);
}





/* Container jo Icon aur Text ko ek line me rakhega */
.contact-info-block {
    display: flex;
    align-items: center;
    gap: 20px; /* Icon aur text ke beech ka gap */
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    position: relative;
    
    /* Bouncy aur smooth animation ke liye */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ======== Hover Effect On Entire Block ======== */
.contact-info-block {
    background: rgba(255, 255, 255, 0.04); /* Halka sa glass background */
    transform: translateX(12px); /* Block ko aage ki taraf slide karna */
    box-shadow: -4px 0 0 #d4af37; /* Left side par Gold color ki border line */
}
.contact-info-block:hover {
    background: rgba(255, 255, 255, 0.04); /* Halka sa glass background */
    transform: translateX(12px); /* Block ko aage ki taraf slide karna */
    box-shadow: -4px 0 0 #fdc200; /* Left side par Gold color ki border line */
}

/* ======== Icon Box Style ======== */
.info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    
    /* Default Colors */
    color: goldenrod; /* Premium Gold Color */
    background: rgba(212, 175, 55, 0.1); /* Halka gold background */
    border: 1px solid rgba(212, 175, 55, 0.3);
    
    transition: all 0.4s ease;
}

/* Icon Animation on Hover */
.contact-info-block:hover .info-icon {
    background: goldenrod; /* Solid gold background */
    color: #1a1a1a; /* Icon black ho jayega */
    transform: scale(1.15) rotate(-10deg); /* Bada hoga aur thoda tilt hoga */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); /* Bahar ki taraf glowing effect */
}

/* ======== Text Style ======== */
.info-text {
    display: flex;
    flex-direction: column;
}

.info-text h6 {
    color: #d89f0f;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.info-text p {
    color: #a0a0a0; /* Secondary grey text */
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Text Highlight on Hover */
.contact-info-block:hover .info-text h6 {
    color: #fcb900; /* Heading ka color change hoke gold ho jayega */
}

.contact-info-block:hover .info-text p {
    color: #030303; /* Padhne mein aur clear karne ke liye white ho jayega */
}

.fs-20{
    font-size: 20px !important;
}

/* Scroll to Top Button Styling */
.scroll-top-footer {
    position: fixed;
    bottom: 30px;     /* Niche se 30px upar */
    right: 30px;      /* Right side se 30px dur */
    width: 50px;
    height: 50px;
    background-color: #d4af37; /* The Aroma Hub ka Premium Gold Color */
    color: #ffffff;
    border-radius: 50%; /* Gol (Circle) banane ke liye */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 999; /* Sabse upar dikhane ke liye */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); /* Gold Shadow */
    
    /* === Hide state (Shuruat mein chhipa rahega) === */
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px); /* 50px niche ki taraf duba rahega */
        border: 1px solid white;
    box-shadow: 0 0 5px;
    /* Smooth Bouncy Animation */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover karne par effect */
.scroll-top-footer:hover {
    background-color: #b5952f; /* Thoda dark gold */
    color: #ffffff;
    transform: translateY(-5px); /* Hover par thoda upar jump karega */
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* === Show state (Jab JS isme class add karegi) === */
.scroll-top-footer.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Wapis apni normal jagah par aa jayega */
}