* {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.charcoal {
    color: #1a1a1a;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.8s ease-out 0.2s both;
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 8px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slider-item {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: #FFD700;
    width: 32px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background-color: rgba(255, 215, 0, 0.9);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: bold;
    border-radius: 4px;
}

.slider-arrow:hover {
    background-color: rgba(255, 215, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.container-85 {
    width: 80%;
    margin: 0 auto;
}


/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 40;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu a:hover {
    background-color: #f9fafb;
}

.mobile-menu .cta-button {
    margin: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #FFD700;
    color: #1a1a1a;
    border: 2px dashed #FFD700;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu .cta-button:hover {
    background-color: #FFC700;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .navbar-container {
        padding: 0.15rem 0rem !important;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* media queries */

@media (max-width: 768px) {
    .container-85 {
        width: 85%;
    }
}