/* IMPORT BASE STYLES */
@import url('base/_variables.css');
@import url('base/_base.css');
@import url('base/_typography.css');

/* IMPORT COMPONENTS */
@import url('components/_buttons.css');
@import url('components/_cards.css');

/* IMPORT LAYOUT */
@import url('layout/_header.css');
@import url('layout/_footer.css');

/* IMPORT SECTIONS */
@import url('sections/_hero.css');
@import url('sections/_about.css');
@import url('sections/_approach.css');
@import url('sections/_technologies.css');
@import url('sections/_case-studies.css');
@import url('sections/_partners.css');
@import url('sections/_services.css');
@import url('sections/_social-proof.css');
@import url('sections/_portfolio.css');
@import url('sections/_cta.css');
@import url('sections/_contact.css');

/* Any global overrides or utilities specific to your project after imports */
.section-padding {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }
    .navbar-nav{
        float: left;
    }
    #navbarNav .align-items-center{
        align-items: flex-start !important;
    }
}

/* css/_components.css or _base.css */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px; /* Adjust distance from bottom */
    right: 30px;  /* Adjust distance from right */
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFF; /* White icon */
    border-radius: 50%;
    text-align: center;
    font-size: 28px; /* Icon size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Softer shadow */
    z-index: 999; /* Ensure it's above most other content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline from link */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px); /* Slight lift and scale on hover */
    background-color: #128C7E; /* Darker WhatsApp green on hover */
    color: #FFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.whatsapp-float i {
    line-height: 1; /* Helps with vertical alignment of icon */
}

/* Adjustments if you also have a "Back to Top" button */
/* Ensure they don't overlap too much */
#back-to-top.active + .whatsapp-float {
    /* Example: If back-to-top is active and positioned bottom-right, move WhatsApp up */
    /* bottom: 100px; /* Or adjust right/left if they are on different sides */
}
/* OR, if WhatsApp is bottom-left and back-to-top is bottom-right, no conflict */
/* If WhatsApp is bottom-left: */
/*
.whatsapp-float {
    right: auto;
    left: 30px;
}
*/

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    /* If back-to-top is also present and on the same side */
    #back-to-top.active + .whatsapp-float {
        bottom: 80px;
    }
}