  /* Reset Styles */


  :root {
    /* Primary Colors */
    --primary-orange: #FF7043;
    --primary-green: #4CAF50;

    /* Secondary Colors */
    --secondary-orange: #FF9E80;
    --secondary-green: #81C784;

    /* Neutral Colors */
    --neutral-100: #FFFFFF;
    --neutral-200: #F5F7FA;
    --neutral-300: #E4E7EB;
    --neutral-400: #CBD2D9;
    --neutral-500: #9AA5B1;
    --neutral-600: #616E7C;
    --neutral-700: #3E4C59;
    --neutral-800: #1F2933;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--neutral-800);

    font-family: 'Poppins', sans-serif;
}


/* Header Enhancements */
.header-container {
    /* Light gray */
    padding: 3px 0;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
}

.header-section {
    position: relative;
    background-color: var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.header-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-green));
}



.sidebar {
    height: 100vh;
    width: 283px;
    position: fixed;
    /* background: whitesmoke; */
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    border-right: 2px solid #ccc;
    background-color: var(--neutral-100);
    transition: transform var(--transition-normal);
    /* Subtle divider */
}


/* Sidebar Buttons */
.nav-link {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 12px;
    margin: 6.5px 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    /* background: #e0e0e0; */
    /* Soft neutral gray */

    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    /* Light shadow for depth */
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.nav-link:hover {
    background:rgb(241, 187, 155);
    /* Light warm beige */
    color: #000;
    transform: translateY(-2px);
}

/* Active Link */
.nav-link.active {
    /* Orange highlight */
    color: black !important;
    font-weight: bold;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

/* Left Sidebar */

.left-sidebar {
    left: 0;
    border-right: 4px solid var(--primary-orange);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

/* Right Sidebar */
.right-sidebar {
    right: 0;
    border-left: 4px solid var(--primary-green);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
}

/* Logo */
.sidebar .logo {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    color: #333;
}


.sidebar-header {
    padding: var(--space-2);
    margin-bottom: var(--space-5);
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.left-sidebar .sidebar-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange));
    color: var(--neutral-100);
}

.right-sidebar .sidebar-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green));
    color: var(--neutral-100);
}

.sidebar-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.sidebar-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.nav-link i {
    font-size: 18px;
    color: #555;
}

/* Sidebar Active Link Styling */
/* .nav-link.active {
    color: black !important;
    background: #f5f0ed !important;
    color: white !important;
    font-weight: bold;
} */

.nav-link.active i {
    color: rgb(0, 0, 0) !important;
}



/* Bottom Help Link */
.bottom-link {
    margin-top: auto;
}

/* Content */
.content {
    margin-left: 200px;
    margin-right: 200px;
    padding: 10px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 80px;
        /* Collapse sidebar */
        padding: 10px;
    }

    .sidebar .nav-link span {
        display: none;
        /* Hide text on small screens */
    }

    .content {
        margin-left: 90px;
        margin-right: 90px;
    }
}

/* 🎬 VIDEO STYLING */
.video-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gallery Hover Effect (Soft Lift) */
.gallery-image {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    will-change: transform, box-shadow;
}

.gallery-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.12);
}


video {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}


.btn-x {
    z-index: 1050;
    /* Higher than overlay & image */
}

/* Image Wrapper */
.image-container {
    position: relative;
    display: inline-block;
}

/* Dark Overlay (Initially Hidden) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark semi-transparent */
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* View Requirements Button (Initially Hidden) */
.hover-button {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Overlay & Button on Hover */
.image-container:hover .overlay {
    opacity: 1;
}

.image-container:hover .hover-button {
    opacity: 1;
}

@property --border-rotate {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --border-rotate {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.video-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: visible;
    /* Ensure animations are visible */
    padding: 4px;
    /* Small padding to avoid clipping */
}

/* Video itself */
.video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.video-container::before {
    content: "";
    position: absolute;
    inset: -1px;
    /* Reduce this value to make the border thinner */
    border-radius: 18px;
    background: linear-gradient(var(--border-rotate), #E9762B, #5CB338);
    z-index: 0;
    animation: border-glow 3s linear infinite;
    pointer-events: none;
}

/* Blurred glow effect outside */
.video-container::after {
    content: "";
    position: absolute;
    inset: -1px;
    /* Reduce this for a thinner glow */
    border-radius: 18px;
    background: linear-gradient(var(--border-rotate), rgba(233, 118, 43, 0.5), rgba(92, 179, 56, 0.5));
    filter: blur(3px);
    /* Reduce blur to match thinner border */
    z-index: -1;
    animation: border-glow 3s linear infinite;
    opacity: 0.8;
    pointer-events: none;
}


/* Animation to rotate colors smoothly */
@keyframes border-glow {
    0% {
        --border-rotate: 0deg;
    }

    100% {
        --border-rotate: 360deg;
    }
}

.sidebar-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    position: relative;
    z-index: 1;
}