body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

/* Sticky Transparent Navbar */
.navbar {
    padding-top: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent !important;
    z-index: 1000;
    transition: background 0.5s ease;
    font-family: "Segoe UI";
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7) !important;
}

.navbar-brand {
    font-family: "Viga", sans-serif;
    font-size: 32px;
    color: #fe5b01 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation Links */
.nav-link {
    color: #fff !important;
    text-transform: uppercase;
    margin-right: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1.25rem;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}


.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    display: block;
    border-bottom: 3px solid #0B63DC;
    margin: auto;
    margin-bottom: -8px;
    width: 50%;
    padding-top: 5px;
}

/* Hover effect for non-active links */
.nav-link:hover {
    /* color: #ffc107 !important; */
    font-weight: 500;
}



/* Ensure toggler icon visible on transparent background */
.navbar-dark .navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

.navbar-dark .navbar-toggler {
    border: none;
}

/* navigation bar background change */
.navbar.white-bg {
    background: #fff !important;
}

.navbar.white-bg .nav-link {
    color: #000 !important;
    /* dark text for contrast */
    text-shadow: none;
    /* remove shadow for clarity */
}

.navbar.white-bg .navbar-brand {
    color: #fe5b01 !important;
    text-shadow: none;
}

h1,
h2,
.navbar-brand {
    font-family: "Bitter", sans-serif !important;
}

.btn-brand {
    background-color: #fe5b01 !important;
    color: #fff;
}

.btn-brand:hover {
    background-color: #d94a00 !important;
}

.navbar.white-bg {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.navbar img {
    height: 80px;
    width: auto;
    margin-top: -8px;
}


.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: bold;
    color: #fe5b01;
}

.hero-content p {
    font-size: 1rem;
    /* margin-top: 15px; */
}

.hero-content .btn {
    margin-top: 25px;
}

html {
    scroll-behavior: smooth;
}


#features h2 {
  font-family: "Viga", sans-serif;
  font-size: 2.5rem;
}

#features .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-content > p{
    font-size: 2rem !important;
    font-weight: 500;
}

.hero-content > .h_logo{
    width:150px; 
    height:auto;
}