   /* Main footer container */
        .footer-enhanced {
            background: #0f172a;
            position: relative;
            overflow: hidden;
            padding-top: 0rem !important;
            padding-bottom: 20px !important;
        }

        /* Animated background particles */
        .footer-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #5d5d8f;
            background-size: 300% 300%;
            animation: gradientShift 8s ease infinite;
        }

        .footer-enhanced::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 10%, rgba(30, 64, 175, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 20%);
            z-index: 0;
            pointer-events: none;
        }

        /* Container styling */
        .footer-container {
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-left: none;
            border-right: none;
            padding: 0px 8px !important;
            background: #0f172a;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin: 0 1rem;
        }

        /* Section headings */
        .section-heading1 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.8rem;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, #8b7902, #ffffff, #90853b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding-bottom: 8px;
        }

        .section-heading1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, #7f742b, #ffffff, #90853b);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .section-heading1:hover::after {
            width: 100%;
        }

        /* Contact info items */
        .contact-item1 {
            display: flex;
            align-items: flex-start;
            margin-bottom: -3px;
            transition: transform 0.3s ease;
            padding: 6px 15px;
            border-radius: 10px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .contact-item1:hover {
            background: rgba(59, 130, 246, 0.1);
            transform: translateX(5px);
        }

        .contact-icon1 {
            font-size: 1.2rem;
            color: #8e9b11;
            margin-right: 15px;
            min-width: 24px;
            text-align: center;
            padding-top: 4px;
            transition: all 0.3s ease;
        }

        .contact-item1:hover .contact-icon1 {
            transform: scale(1.2);
            color: #60a5fa;
        }

        .contact-text1 {
            color: #cbd5e1;
            line-height: 23px;
            transition: color 0.3s ease;
        }

        .contact-item1:hover .contact-text1 {
            color: #f8fafc;
        }

        .contact-text1 a {
            color: #f8fafc;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .contact-text1 a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }

        .contact-text1 a:hover {
            color: #60a5fa;
        }

        .contact-text1 a:hover::after {
            width: 100%;
        }

        /* Links list styling */
        .links-list1 {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .links-list1 li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 0;
            transition: padding-left 0.3s ease;
        }

        .links-list1 li:hover {
            padding-left: 10px;
        }

        .links-list1 a {
            color: #cbd5e1;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .links-list1 a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6, #1e40af, #60a5fa)
            opacity: 0.1;
            transition: left 0.5s ease;
            z-index: -1;
        }

        .links-list1 a:hover {
            color: #f8fafc;
            transform: translateX(5px);
        }

        .links-list1 a:hover::before {
            left: 0;
        }

        .link-icon {
            color: #8e9b11;
            margin-right: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .links-list1 a:hover .link-icon {
            color: #60a5fa;
            transform: rotate(90deg);
        }

        /* Floating animation for elements */
        @keyframes floatUpDown {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .float-animation {
            animation: floatUpDown 6s ease-in-out infinite;
        }

        /* Decorative elements */
        .footer-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .decoration-1 {
            top: 10%;
            left: 5%;
            animation: floatUpDown 8s ease-in-out infinite;
        }

        .decoration-2 {
            bottom: 10%;
            right: 5%;
            animation: floatUpDown 10s ease-in-out infinite reverse;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-container {
                margin: 0 0.5rem;
                padding: 2rem 1rem !important;
            }
            
            .contact-item1 {
                padding: 8px 10px;
            }
            
            .section-heading1 {
                font-size: 1.2rem;
            }
            
            .links-list1 a {
                padding: 6px 8px;
            }
        }

        /* Footer bottom section (if you want to add copyright) */
        .footer-bottom1 {
            margin-top: 5px;
            padding-top: 4px;
            /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
            text-align: center;
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        /* Social media icons (optional addition) */
        .social-links1 {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .social-icon1 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            color: #cbd5e1;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon1:hover {
            background: #ff962a;
            color: white;
            transform: translateY(-5px);
        }
        
        /**********************/
        .btn.btn-primary

 {
    border: none;
    border-radius: 8px !important;
    font-weight: normal;
    background: none;
    color: #818181;
}

.btn.btn-primary {
    border: none;
    border-radius: 8px !important;
    font-weight: normal;
    background: none;
    color: #818181;
    transition: 0.2s;
    display: block !important;
}
.back-to-top {
    height: 40px !important;
    width: 38px !important;
    background: #bba305 !important;
    border: 0px !important;
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    padding: 8px 7px !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    font-weight: bold !important;
}