@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
body {
    padding-top: 70px; /* Prevent content from hiding behind fixed navbar */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-family: "Inter", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
}
a {text-decoration: none !important;}
/* Navbar Styles */
.header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
    box-shadow: 0px 6px 20px 4px rgb(22 56 65 / 10%);
    background-color: #ffffff;
}


.navbar-light .navbar-brand {
    color: #333333 !important; /* Dark text color */
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}

.navbar-light .navbar-nav .nav-link {
    color: #333333 !important; /* Dark text color */
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover effect with line animation */
.navbar-light .navbar-nav .nav-link:hover {
    color: #292929 !important; /* Highlight color on hover */
}

/* Underline animation on hover */
.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%; /* The line will expand to full width on hover */
}

/* Navbar Toggler for Mobile */
.navbar-toggler-icon {
    background-color: rgba(51, 51, 51, 0);
}

/* Dropdown Styles */
.navbar-light .navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-light .navbar-nav .dropdown-item {
    color: #333333;
    font-size: 15px;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-light .navbar-nav .dropdown-item:hover {
    background-color: #080808;
    color: #ffffff;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 991px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .navbar-collapse {
        text-align: center;
    }
}

/* Active Menu Styling */
.navbar-nav .nav-item.active .nav-link {
    color: #000000 !important; /* Active link color */
}

/* Shadow Effect on Hover */
.navbar-light .navbar-nav .nav-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Adding Darker Color When Scrolled */
.navbar.scrolled {
    background-color: #f0f0f0; /* Lighter gray when scrolled */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}