@import './fonts.css';

* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
    font-family: 'Montserrat';
}

/* Loader */
body {
    overflow: hidden;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.introSlider__textoid-item {
    visibility: hidden;
}

.hero-section {
    height: 100vh;
}

/* Flex */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

/* Swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Feature Section */
.feature {
    visibility: hidden;
    /* opacity: 0; */
}

.whats-app-icon {
    background-color: rgba(41, 167, 26, 0.5);
    padding: 8px;
    border-radius: 50px;
    animation: whatsapp 2s ease-in-out infinite;
}

@keyframes whatsapp {
    from {
        background-color: transparent;
    }

    to {
        background-color: rgba(41, 167, 26, 0.5);
    }
}

hr.solid {
    border-top: 3px solid #bbb;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    /* 64 * 0.25rem = 16rem for w-64 */
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    top: 88px;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

li.dropdown.relative.active a svg {
    rotate: 180deg;
}

/* Ensure the navigation container has proper positioning */
nav {
    position: relative;
    z-index: 1000;
}

/* If you have a header/banner, make sure it has lower z-index */
.banner,
.header-banner {
    position: relative;
    z-index: 1;
}

#mobile-nav {
    position: fixed;
    height: calc(100vh - 80px);
    top: 80px;
}

#mobile-dropdown {
    display: none;
}

#mobile-dropdown.active {
    display: flex;
    flex-direction: column;
}

#mobile-services-dropdown.active svg {
    rotate: 180deg;
}

.social-icons {
    width: calc(100% - 40px);
}
.page-banner{
    position: relative;
}
.page-banner::after{
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 47, 41, 0.6); /* Dark overlay */
  /* z-index: ; */
}
.page-banner h1{
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}