:root {
    --primary-color: #333333;
    --secondary-color: #555555;
    --accent-color: #E87A3D;
    --accent-hover: #D06529;
    --light-bg: #F5F5F5;
    --dark-bg: #222222;
    --white: #FFFFFF;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    --container-padding: clamp(1rem, 5%, 2rem);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        color: var(--accent-color);
    }

.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

    .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

    .btn-secondary:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.section-padding {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--accent-color);
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.muted {
    opacity: 0.8;
}

/* Navbar Styles */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: white;
}

    .navbar.scrolled {
        padding: 1rem 0;
        background-color: white;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    height: 32px;
    width: 32px;
    background-color: #E87A3D;
    border-radius: 50%;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #333333 !important;
}

    .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #E87A3D;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #E87A3D !important;
    }

/* Logo Styles */
.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Adjust logo size when navbar is scrolled */
.navbar.scrolled .navbar-logo {
    height: 40px;
}

/* Mobile responsive logo */
@media (max-width: 576px) {
    .navbar-logo {
        height: 38px;
        max-width: 180px;
    }

    .navbar.scrolled .navbar-logo {
        height: 35px;
    }
}

@media (max-width: 380px) {
    .navbar-logo {
        height: 35px;
        max-width: 160px;
    }
}

/* Remove the old brand-icon styles if not needed elsewhere */
.navbar-brand {
    padding: 0;
    margin-right: 1rem;
}

    .navbar-brand:hover .navbar-logo {
        transform: scale(1.05);
        filter: brightness(0.95);
    }

/* Dark version for footer (if needed) */
.footer .navbar-logo-footer {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
    opacity: 0.9;
}

    .footer .navbar-logo-footer:hover {
        opacity: 1;
    }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Decorative Elements */
.shape {
    position: absolute;
    z-index: -1;
    opacity: 0.6;
    transition: transform 0.5s ease-out;
}

.shape-1 {
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    border-radius: 50%;
    filter: blur(150px);
}

.shape-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    opacity: 0.4;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
}

/* Project/Portfolio Cards */
.project-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
}

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.card-img-container {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

.project-card .card-body {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
    padding: 2rem;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size:1.3rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Testimonial Cards */
.testimonial-card {
    border: none;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
    position: relative;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

    .client-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.client-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.client-details p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

    .experience-box h3 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .experience-box p {
        margin-bottom: 0;
        font-weight: 500;
    }

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--light-bg);
}

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: none;
    }

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(232, 122, 61, 0.1);
    color: var(--accent-color);
    font-size: 1.25rem;
    border-radius: var(--border-radius);
    margin-right: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--accent-color);
        }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white);
        transition: var(--transition);
    }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }

    .hero-section {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .shape-1, .shape-2 {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

        .hero-buttons .btn {
            width: 100%;
            margin-bottom: 1rem;
        }

    .experience-box {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1.5rem;
    }
}

/* Animation Classes for AOS.js */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    transform: translateY(0) translateX(0) scale(1);
}


/* ============================================
   FLOATING ACTION BUTTONS - COMPLETE CSS
   Order: Back to Top (top), Contact (middle), WhatsApp (bottom)
   ============================================ */

/* Remove any existing floating button styles first */
.floating-actions {
    display: none !important;
}

/* Individual Button Positioning - Explicit Positions */

/* Back to Top Button - TOP POSITION */
.action-btn.back-to-top {
    position: fixed !important;
    bottom: 140px !important; /* Highest position */
    right: 30px !important;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E87A3D 0%, #D2691E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 122, 61, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-size: 20px;
    z-index: 1022; /* Highest z-index */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .action-btn.back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Contact Us Button - MIDDLE POSITION */
.action-btn.contact-btn {
    position: fixed !important;
    bottom: 80px !important; /* Middle position */
    right: 30px !important;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E87A3D 0%, #D2691E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 122, 61, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-size: 20px;
    z-index: 1021; /* Middle z-index */
}

/* WhatsApp Button - BOTTOM POSITION */
#chatbutton-wa,
.floating-wpp {
    position: fixed !important;
    bottom: 20px !important; /* Lowest position */
    right: 30px !important;
    left: auto !important;
    z-index: 1020 !important; /* Lowest z-index */
}

    .floating-wpp-button,
    .floating-wpp .floating-wpp-button {
        width: 50px !important;
        height: 50px !important;
        position: relative !important;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(232, 122, 61, 0.3) !important;
        transition: all 0.3s ease;
        cursor: pointer;
        overflow: hidden;
        background: linear-gradient(135deg, #E87A3D 0%, #D2691E 100%) !important;
    }

/* Common Hover Effects */
.action-btn:hover,
.action-btn.back-to-top.show:hover,
.action-btn.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 122, 61, 0.4);
    color: white;
}

.floating-wpp-button:hover,
.floating-wpp:hover .floating-wpp-button {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232, 122, 61, 0.4) !important;
}

/* Active States */
.action-btn:active {
    transform: scale(0.95);
}

/* WhatsApp Icon/SVG Positioning */
.floating-wpp-button img,
.floating-wpp-button svg,
.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
}

/* WhatsApp Popup */
.floating-wpp .floating-wpp-popup {
    border-radius: 8px;
    background-color: #e5ddd5;
    position: absolute;
    overflow: hidden;
    padding: 0;
    box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
    width: 0px;
    height: 0px;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
    transform-origin: bottom right;
}

    .floating-wpp .floating-wpp-popup.active {
        padding: 0 15px 12px 15px;
        width: 300px;
        height: auto;
        bottom: 0px !important;
        right: 55px !important;
        opacity: 1;
        z-index: 1030 !important;
    }

    .floating-wpp .floating-wpp-popup .floating-wpp-message {
        background-color: white;
        padding: 8px;
        border-radius: 7.5px;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transition: opacity 0.2s;
        max-width: 100%;
    }

    .floating-wpp .floating-wpp-popup.active .floating-wpp-message {
        opacity: 1;
        transition-delay: 0.2s;
        line-height: normal;
    }

    .floating-wpp .floating-wpp-popup .floating-wpp-head {
        text-align: left;
        color: white;
        margin: 0 -15px 15px -15px;
        padding: 15px 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        background: #39847a;
    }

        .floating-wpp .floating-wpp-popup .floating-wpp-head .close {
            position: absolute;
            top: 14px;
            right: 8px;
            color: #ffffff;
            text-shadow: none;
            opacity: 1;
            font-size: inherit;
        }

.floating-wpp .floating-wpp-input-message {
    background-color: #e5ddd5;
    margin: 5px -15px -15px -15px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

    .floating-wpp .floating-wpp-input-message textarea {
        border: 1px solid #ffffff;
        border-radius: 21px;
        box-shadow: none;
        padding: 8px 12px;
        margin: 10px 0 15px 0;
        width: 100%;
        max-width: 100%;
        font-family: inherit;
        font-size: inherit;
        resize: none;
        outline: none;
        color: #4a4a4a;
        box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
    }

.floating-wpp .floating-wpp-btn-send {
    margin: 10px 0 15px 12px;
    font-size: 0;
    cursor: pointer;
    box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
    border-radius: 50%;
}

/* Ensure icons are centered */
.action-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse animation for contact button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 122, 61, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(232, 122, 61, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 122, 61, 0);
    }
}

.action-btn.contact-btn {
    animation: pulse 2s infinite;
}

    .action-btn.contact-btn:hover {
        animation: none;
    }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .action-btn.back-to-top {
        bottom: 130px !important;
        right: 25px !important;
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .action-btn.contact-btn {
        bottom: 75px !important;
        right: 25px !important;
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    #chatbutton-wa,
    .floating-wpp {
        right: 25px !important;
        bottom: 18px !important;
    }

        .floating-wpp-button,
        .floating-wpp .floating-wpp-button {
            width: 48px !important;
            height: 48px !important;
        }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .action-btn.back-to-top {
        bottom: 120px !important;
        right: 20px !important;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .action-btn.contact-btn {
        bottom: 70px !important;
        right: 20px !important;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    #chatbutton-wa,
    .floating-wpp {
        right: 20px !important;
        bottom: 15px !important;
    }

        .floating-wpp-button,
        .floating-wpp .floating-wpp-button {
            width: 45px !important;
            height: 45px !important;
        }

        .floating-wpp .floating-wpp-popup.active {
            bottom: 0px !important;
            font-size: 13px !important;
            width: 275px;
        }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .action-btn.back-to-top {
        bottom: 110px !important;
        right: 15px !important;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .action-btn.contact-btn {
        bottom: 60px !important;
        right: 15px !important;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    #chatbutton-wa,
    .floating-wpp {
        right: 15px !important;
        bottom: 12px !important;
    }

        .floating-wpp-button,
        .floating-wpp .floating-wpp-button {
            width: 42px !important;
            height: 42px !important;
        }

        .floating-wpp .floating-wpp-popup.active {
            bottom: 0px !important;
            font-size: 12px !important;
            width: 250px;
        }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .action-btn.back-to-top {
        bottom: 100px !important;
        right: 12px !important;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .action-btn.contact-btn {
        bottom: 60px !important;
        right: 12px !important;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    #chatbutton-wa,
    .floating-wpp {
        right: 12px !important;
        bottom: 10px !important;
    }

        .floating-wpp-button,
        .floating-wpp .floating-wpp-button {
            width: 40px !important;
            height: 40px !important;
        }
}

/* Ensure proper stacking */
.action-btn,
.floating-wpp,
#chatbutton-wa {
    pointer-events: auto;
}

/* Hide during print */
@media print {
    .action-btn,
    .floating-wpp,
    #chatbutton-wa {
        display: none !important;
    }
}

#chatbutton-wa .floating-wpp-button,
#chatbutton-wa .floating-wpp-button-image,
.floating-wpp .floating-wpp-button {
    background: linear-gradient(135deg, #E87A3D 0%, #D2691E 100%) !important;
    box-shadow: 0 4px 15px rgba(232, 122, 61, 0.3) !important;
}

    /* Hide the green SVG background and show only the icon */
    #chatbutton-wa .floating-wpp-button-image svg g:first-child path,
    .floating-wpp-button svg g:first-child path {
        fill: transparent !important; /* Remove green background */
    }

/* REMOVE pulse animation from Contact Us button */
.action-btn.contact-btn {
    animation: none !important;
}

/* ADD pulse animation to WhatsApp button */
#chatbutton-wa .floating-wpp-button,
.floating-wpp .floating-wpp-button {
    animation: pulse 2s infinite;
}

    /* Stop pulse animation on WhatsApp hover */
    #chatbutton-wa .floating-wpp-button:hover,
    .floating-wpp:hover .floating-wpp-button {
        animation: none;
    }

/* Keep the same pulse keyframes (already in your CSS) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 122, 61, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(232, 122, 61, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 122, 61, 0);
    }
}

/*  Add subtle shadow to popup for depth */
.floating-wpp .floating-wpp-popup.active {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}


/* ============================================
   FOOTER LOGO WITH SPECIAL EFFECTS - BIGGER SIZE
   ============================================ */
/* Logo Wrapper */
.footer-logo-wrapper {
    text-align: left;
}

/* Logo Container with effects */
.footer-logo-container {
    position: relative;
    display: inline-block;
    padding: 20px; /* Padding for glow effect */
}

/* Main Logo Image - BIGGER SIZE */
.footer-logo-img {
    height: 65px;
    width: auto;
    max-width: 350px; /* Increased from 280px */
    filter: brightness(0) invert(1); /* Makes black logo white */
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1024px){
    .footer-logo-img {
        height: 55px !important;
    }
}

    /* Glowing Effect Behind Logo - Adjusted for bigger logo */
    .logo-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px; /* Increased size */
        height: 140px; /* Increased size */
        background: radial-gradient(ellipse, rgba(232, 122, 61, 0.4) 0%, rgba(232, 122, 61, 0.2) 40%, transparent 70%);
        filter: blur(30px);
        animation: pulseGlow 3s ease-in-out infinite;
        z-index: 1;
    }

    /* Floating Particles */
    .logo-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

        .logo-particles span {
            position: absolute;
            width: 5px; /* Slightly bigger particles */
            height: 5px;
            background: linear-gradient(135deg, #E87A3D, #FFD700);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(232, 122, 61, 0.6);
            opacity: 0;
        }

            .logo-particles span:nth-child(1) {
                top: 10%;
                left: 10%;
                animation: particle1 4s linear infinite;
            }

            .logo-particles span:nth-child(2) {
                top: 50%;
                right: 5%;
                animation: particle2 4s linear infinite 1.3s;
            }

            .logo-particles span:nth-child(3) {
                bottom: 10%;
                left: 50%;
                animation: particle3 4s linear infinite 2.6s;
            }

    /* Hover Effects */
    .footer-logo-container:hover .footer-logo-img {
        transform: scale(1.05);
        filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(232, 122, 61, 0.7));
    }

    .footer-logo-container:hover .logo-glow {
        animation-duration: 1.5s;
        width: 240px;
        height: 160px;
    }

    .footer-logo-container:hover .logo-particles span {
        animation-duration: 2s;
    }

    /* Animations */
    @keyframes pulseGlow {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.4;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.7;
        }
    }

    @keyframes particle1 {
        0% {
            transform: translate(0, 0) scale(0);
            opacity: 0;
        }

        10% {
            transform: scale(1);
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translate(-70px, -70px) scale(0.5);
            opacity: 0;
        }
    }

    @keyframes particle2 {
        0% {
            transform: translate(0, 0) scale(0);
            opacity: 0;
        }

        10% {
            transform: scale(1);
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translate(70px, -50px) scale(0.5);
            opacity: 0;
        }
    }

    @keyframes particle3 {
        0% {
            transform: translate(0, 0) scale(0);
            opacity: 0;
        }

        10% {
            transform: scale(1);
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translate(50px, 70px) scale(0.5);
            opacity: 0;
        }
    }

    /* Optional: Rainbow glow effect for special occasions */
    .footer-logo-container.rainbow .logo-glow {
        background: radial-gradient(ellipse, rgba(255, 0, 0, 0.3) 0%, rgba(255, 127, 0, 0.3) 14%, rgba(255, 255, 0, 0.3) 28%, rgba(0, 255, 0, 0.3) 42%, rgba(0, 0, 255, 0.3) 56%, rgba(75, 0, 130, 0.3) 70%, rgba(148, 0, 211, 0.3) 84%, transparent 100%);
        animation: rainbowPulse 4s ease-in-out infinite;
    }

    @keyframes rainbowPulse {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
        }

        50% {
            transform: translate(-50%, -50%) scale(1.3) rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .footer-logo-img {
            height: 100px; /* Still bigger than before */
            max-width: 300px;
        }

        .logo-glow {
            width: 170px;
            height: 120px;
        }
    }

    @media (max-width: 768px) {
        .footer-logo-wrapper {
            text-align: center;
        }

        .footer-logo-container {
            display: block;
            text-align: center;
        }

        .footer-logo-img {
            height: 90px;
            max-width: 280px;
        }
    }

    @media (max-width: 576px) {
        .footer-logo-img {
            height: 80px;
            max-width: 250px;
        }

        .logo-particles span {
            width: 4px;
            height: 4px;
        }

        .logo-glow {
            width: 150px;
            height: 100px;
        }
    }

    @media (max-width: 400px) {
        .footer-logo-img {
            height: 70px;
            max-width: 220px;
        }
    }

    /* Dark Mode Support */
    @media (prefers-color-scheme: dark) {
        .footer-logo-img {
            filter: brightness(0) invert(1);
        }
    }

    /* Print styles */
    @media print {
        .logo-glow,
        .logo-particles {
            display: none;
        }

        .footer-logo-img {
            filter: none;
        }
    }