    /* Responsive adjustments */
 /*!
 * Custom CSS Framework
 * Developed by: ApexPlanet Software Pvt Ltd
 * Version: 1.0.0
 */
/* Logo Container Styles */
.logo-container {
    position: relative;
    width: 80px;
    height: 80px;
    top: 20px;
    border-radius: 50%;
    background: #5e2b2e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: border-glow 4s infinite alternate;
}

.dark .logo-container {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.logo-image {
    width: 95%;
    height: 95%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Neon Hover Effects */
.logo-container:hover {
    transform: rotate(12deg) scale(1.05);
    animation: none;
    box-shadow: 
        0 0 2px #fff,
        0 0 5px #fff,
        0 0 10px #46191c,
        0 0 20px #46191c,
        0 0 30px #46191c;
    filter: drop-shadow(0 0 2px #46191c) brightness(1.1);
}

.light .logo-container:hover {
    box-shadow: 
        0 0 2px #fff,
        0 0 5px #fff,
        0 0 15px #5c2428,
        0 0 25px #5c2428,
        0 0 40px #5c2428;
    filter: drop-shadow(0 0 3px #5c2428) brightness(1.15);
}

.dark .logo-container:hover {
    box-shadow: 
        0 0 2px #fff,
        0 0 5px #fff,
        0 0 15px #805459,
        0 0 25px #805459,
        0 0 40px #805459;
    filter: drop-shadow(0 0 5px #805459) brightness(1.2);
}

/* Navigation Link Effects */
.nav-link {
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active Menu Item */
.nav-link.active {
    color: #46191c;
    font-weight: 600;
}

.dark .nav-link.active {
    color: #805459;
}

.nav-link.active::after {
    width: 100%;
}

/* Header Animation */
@keyframes headerSlide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Sticky Header */
header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dark header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #46191c, #d97706);
    top: 10%;
    left: 5%;
    animation-name: float;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0f172a, #464e77);
    top: 60%;
    right: 10%;
    animation-name: floatReverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d97706, #f59e0b);
    bottom: 10%;
    left: 15%;
    animation-name: float;
    animation-delay: 1s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #805459, #46191c);
    top: 30%;
    right: 20%;
    animation-name: floatReverse;
    animation-delay: 2s;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .logo-container {
        width: 100px;
        height: 100px;
    }
    
    .nav-link {
        padding: 12px 0;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        width: 130px;
        height: 130px;
        top: 45px;
    }
    
    .floating-shape {
        opacity: 0.15;
    }
}

/* Mobile Menu Animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

#mobile-menu.show {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

/* Theme Toggle Animation */
#theme-toggle i {
    transition: transform 0.5s ease;
}

#theme-toggle:hover i {
    transform: rotate(180deg) scale(1.2);
}

#actionButtons {
  cursor: grab;
  touch-action: none;
}

#actionButtons:active {
  cursor: grabbing;
}

#closeActionBtn {
  transition: opacity 0.2s ease;
  z-index: 60;
}

#expandedButtons {
  z-index: 55;
}

@media (max-width: 768px) {
  #actionButtons {
    left: 1rem;
    bottom: 1rem;
  }
  
  #expandedButtons {
    flex-direction: column-reverse;
    left: 0;
    right: unset;
    bottom: calc(100% + 0.5rem);
    top: unset;
    margin-bottom: 0;
    margin-right: 0;
    gap: 0.75rem;
  }
  
  #expandedButtons a span {
    bottom: unset;
    left: 50%;
    transform: translateX(-50%);
    top: -1.5rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  #actionButtons {
    left: 0.5rem;
    bottom: 0.5rem;
  }
  
  #mainActionBtn {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  #expandedButtons a {
    width: 2.75rem;
    height: 2.75rem;
  }
  
  #closeActionBtn {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.6rem;
  }
}