﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}



nav a {
    color: #f1c40f;
    font-weight: 600;
    font-size: 1.5rem; /* ⬅️ make this bigger if needed */
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

    nav a:hover {
        color: #ffffff;
    }




.navbar-nav .nav-link {
    padding: 12px 16px;
    font-size: 1.2rem;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler-icon {
    width: 32px;
    height: 32px;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #000;
        width: 100%;
        padding: 1rem 0;
    }

    .navbar-nav {
        align-items: center;
    }

        .navbar-nav .nav-link {
            display: block;
            width: 100%;
            text-align: center;
            padding: 15px 0;
            font-size: 1.3rem;
            border-bottom: 1px solid #333;
        }
}

footer a:hover {
    text-decoration: underline;
    color: #ffffff;
}


.hero-section {
    background: linear-gradient(to right, #111111, #1c1c1c);
    padding: 80px 0;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p {
            font-size: 1.1rem;
        }

        .hero-section .btn {
            font-size: 1rem;
            padding: 10px 24px;
        }
}


body {
    background-color: #000000 !important;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
}

/* Optional: make sure containers don’t override the dark background */
.container {
    background-color: transparent !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Optional: override Bootstrap’s default background for any cards or sections */
.bg-light,
.bg-white {
    background-color: #000000 !important;
}

.text-dark {
    color: #ffffff !important;
}


.swiper-pagination-bullet {
    background-color: #ffc107 !important; /* Bright yellow for contrast */
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: #ff9800 !important; /* Highlight active bullet */
}
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    z-index: 10;
}



