:root {
    --primary: #6366f1;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --dark: #1e293b;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: var(--light);
}

/* --- Uniiversal Button--- */

.btn-un {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-un::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.6s;
}

.btn-un:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    color: white;
}

.btn-un:hover::before {
    left: 100%;
}



/* Hero Section Styles */

/* Hero product */
.hero-section-row {
    display: flex;
    align-items: stretch;
}

.our-products-section-hero {
    background-color: var(--light);
    border-radius: 15px 0 0 15px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.products-title-hero {
    font-weight: 700;
    background: linear-gradient(150deg, #10b981 0%, #383be9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--gradient);
    padding-bottom: 10px;
}


.product-items-hero {
    list-style: none;
    padding: 0;
}

.product-item-hero {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(99, 102, 241, .10);
}

.product-item-hero:hover {
    background-color: rgba(99, 102, 241, 0.05);
    transform: translateY(-5px);
}

.product-item-hero i {
    margin-right: 15px;
    background: linear-gradient(150deg, #10b981 0%, #383be9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.product-item-hero span {
    font-weight: 500;
    color: var(--dark);
}

.hero-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Products Container */
.our-products-section {
    height: 400px;
    /* Maintain original height */
    overflow-y: auto;
    /* Add scroll for overflow */
}

.product-items-hero {
    display: flex;
    flex-direction: column;
    height: calc(100% - 50px);
    /* Account for title height */
}

@media (max-width: 768px) {

    .hero-section-row>.col-3,
    .hero-section-row>.col-9 {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .our-products-section {
        height: auto;
        border-radius: 15px 15px 0 0;
        margin-bottom: -1px;
    }

    .hero-carousel {
        border-radius: 0 0 15px 15px;
    }

    .product-items-hero {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-item-hero {
        margin-bottom: 0;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .product-items-hero {
        grid-template-columns: 1fr;
    }

    .product-item-hero i {
        font-size: 1rem;
    }

    .products-title-hero {
        font-size: 1.25rem;
        padding-bottom: 8px;
    }
}

.hero-carousel {
    position: relative;
    height: 400px;
    /* Increased height */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1; */
}

.hero-content {
    max-width: 800px;
    z-index: 15;
    position: relative;
    text-align: center;
    /* padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px); */
    border-radius: 0 10px 10px 0;
}

.animated-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: greenyellow;
    /* background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.animated-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: greenyellow;
}



.animated-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-slide.active .animated-title,
.hero-slide.active .animated-text,
.hero-slide.active .animated-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Animation Classes */
.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-slide.slide-in {
    animation: slideInEnhanced 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-slide.slide-out-left {
    animation: slideOutLeftEnhanced 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.hero-slide.slide-out-right {
    animation: slideOutRightEnhanced 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes slideInEnhanced {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOutLeftEnhanced {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.9);
    }
}

@keyframes slideOutRightEnhanced {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

/* Carousel Controls Enhancement */
.carousel-indicators {
    position: absolute;
    bottom: .35em;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators button.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    z-index: 20;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .animated-title {
        font-size: 2.8rem;
    }

    .hero-content {
        text-align: center;
        border-left: none;
        border-radius: 10px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 2.2rem;
    }

    .animated-text {
        font-size: 1.1rem;
    }

    .hero-carousel {
        height: 500px;
    }

    .btn-outline-light {
        padding: 5px 20px;
    }
}

@media (max-width: 576px) {
    .animated-title {
        font-size: 1.8rem;
        margin-bottom: 1.2em;
    }

    .animated-text {
        display: none;
    }

    .hero-carousel {
        height: 400px;
        border-radius: 10px;
    }

    .carousel-indicators {
        bottom: -5px;
    }
}

/* Auto-scrolling Text Styles */
        .auto-scroll-container {
            overflow: hidden;
            position: relative;
            background: linear-gradient(45deg, rgba(99, 102, 241, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            padding: 1rem 0;
            width: 100%;
        }

        .auto-scroll-content {
            display: flex;
            width: max-content;
            white-space: nowrap;
        }

        .scrolling-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            white-space: nowrap;
            padding: 0 2rem;
            position: relative;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .scrolling-text::after {
            content: "|";
            color: var(--primary);
            margin-left: 1rem;
        }

        @media (max-width: 768px) {
            .scrolling-text {
                font-size: 1rem;
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .scrolling-text {
                font-size: 0.9rem;
                padding: 0 1rem;
            }
        }

/* Search Bar After Hero Section */
.search-bar-section {
    padding: 10px 0px 0px 0px;
    position: relative;
    z-index: 100;
}

.global-search-container {
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    padding: 5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px groove #10b9816b;
}

.global-search-container:hover {
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

.search-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.global-search-form {
    display: flex;
    align-items: center;
    flex: 1;
}

.global-search-input {
    flex: 1;
    padding: 15px;
    font-size: 1.1rem;
    outline: none;
    border: none;
    border-radius: 50px;
    box-shadow: inset 0px 1px 25px #10b98183;
}

.search-categories {
    margin: 0 15px;
}

.global-search-button {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.global-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Search Icon in Navbar and Overlay */
.search-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.search-form {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.search-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .global-search-container {
        flex-direction: column;
        padding: 15px;
        border-radius: 15px;
    }

    .search-icon-wrapper {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .global-search-form {
        flex-direction: column;
        width: 100%;
    }

    .global-search-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-categories {
        width: 100%;
        margin: 10px 0;
    }

    .form-select {
        width: 100%;
        border-left: none;
        border-top: 1px solid #5f7c5c;
        padding-top: 10px;
        box-shadow: 0 5px 40px rgba(0, 0, 0, 0.452);
    }

    .global-search-button {
        width: 100%;
    }
} 

/* Products Section */
    .products-section {
        padding: 30px 0px 0px 0px;
        background: linear-gradient(135deg, #ffffff 0%, #bacae0 100%);
        position: relative;
        overflow: hidden;
    }

    .products-section h2 {
        text-align: center;
        margin-bottom: 40px;
        font-weight: 800;
        color: var(--dark);
        position: relative;
        font-variant: small-caps;
    }

    .products-section h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
    }

    /* Products container for positioning navigation */
    .products-container {
        padding: 0 50px;
    }

    /* Product item styles */
    .product-item {
        background: white;
        border-radius: 15px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 10px 15px rgba(90, 107, 180, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .product-image-container {
        height: 180px;
        background: #f8f9fa;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }

    .product-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .product-item:hover img {
        transform: scale(1.1);
    }

    .product-item h5 {
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark);
        font-size: 1.3rem;
        flex-grow: 1;
    }

    .btn-un {
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    /* Carousel nav buttons */
    .product-carousel-control-prev,
    .product-carousel-control-next {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        opacity: 0.8;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
    }

    .product-carousel-control-prev:hover,
    .product-carousel-control-next:hover {
        opacity: 1;
    }

    .product-carousel-control-prev {
        left: 10px;
    }

    .product-carousel-control-next {
        right: 10px;
    }

    .product-carousel-control-prev-icon,
    .product-carousel-control-next-icon {
        filter: none;
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Netflix-style scrolling row */
    .products-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0px 0 20px;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        justify-content: center; /* Center cards when fewer than screen width */
    }

    .products-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    .product-col {
        flex: 0 0 auto;
        width: 230px; /* Base width for desktop */
    }

    /* Button that appears disabled */
    .product-carousel-control-prev.disabled,
    .product-carousel-control-next.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .product-carousel-control-prev:hover,
.product-carousel-control-next:hover {
    cursor: pointer;
    scale: 1.1;
    transition: all 0.3s ease-in-out;
}


    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .product-col {
            width: 230px;
        }
    }

    @media (max-width: 992px) {
        .products-container {
            padding: 0 45px;
        }
        
        .product-col {
            width: 210px;
        }
    }

    @media (max-width: 768px) {
        .products-container {
            padding: 0 40px;
        }
        
        .product-col {
            width: 240px;
        }
        
        .product-carousel-control-prev,
        .product-carousel-control-next {
            width: 35px;
            height: 35px;
        }
        
        .product-image-container {
            height: 160px;
        }
        
        .product-item h5 {
            font-size: 1.1rem;
        }
        
        .btn-un {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .products-container {
            padding: 0 5px;
        }
        
        .product-col {
            width: 200px;
        }
        
        .product-carousel-control-prev {
            left: 5px;
        }
        
        .product-carousel-control-next {
            right: 5px;
        }
        
        .product-carousel-control-prev,
        .product-carousel-control-next {
            width: 30px;
            height: 30px;
        }
        
        .product-image-container {
            height: 140px;
        }
        
        .product-item {
            padding: 10px;
        }
        
        .product-item h5 {
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .btn-un {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
    }

    /* For very small screens */
    @media (max-width: 380px) {
        .product-col {
            width: 180px;
        }
        
        .product-image-container {
            height: 120px;
        }
    }

/* Benefits Section Styles */

.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #bacae0 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    color: var(--dark);
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 60px;
    font-variant: small-caps;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #6366f1;
    animation: lineFlow 2s infinite;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.benefit-item:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.3));
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.benefit-item:hover .icon-wrapper {
    animation: pulse 1.5s infinite;
    transform: scale(1.1);
}

.benefit-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    transition: transform 0.3s ease;
    font-variant: small-caps;
}

.benefit-item:hover h3 {
    animation: textFade 0.6s ease;
}

.benefit-item p {
    color: #5276a8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.hover-line {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            #585ad3 80%,
            transparent 100%);
    transition: width 0.1s ease;
}

.benefit-item:hover .hover-line {
    width: 80%;
    animation: lineFlow 1.5s infinite;
}

/* Particle Background Effect */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(99, 101, 241, 0.295);
    border-radius: 50%;
    animation: float 6s infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefit-item {
        padding: 30px 20px;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

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

    .benefit-item {
        margin-bottom: 30px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineFlow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Footer */
footer {
    color: white;
    padding: 80px 0 20px;
    background: linear-gradient(135deg, #111253 0%, #127957 100%);
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 20px;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {

    footer {
        text-align: center;
    }

    .footer-links {
        margin-top: 30px;
    }
}


/* Social contact Buttons*/

.social-contact-container {
    position: fixed;
    right: 20px;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;

}

.social-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-contact-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(145deg, #25D366, #128C7E);
    box-shadow: inset 2px 3px 10px #013615;
}

.social-contact-btn i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.social-contact-btn:hover {
    transform: scale(1.1) translateZ(20px);
}

@media (max-width: 768px) {
    .social-contact-container {
        right: 10px;
        top: 92%;
    }

    .social-contact-btn {
        width: 40px;
        height: 40px;
    }
}


