

        body {
            font-family: 'Montserrat', 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        #section-1 {
  margin-top: 50px;
  height: 100vh;
  min-height: 700px;
  color: #000000;
  background-color: #ffffff;
  position: relative;
}
#section-1 .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
#section-1 .content-slider input {
  display: none;
}
#section-1 .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}

        /* Navbar Container */
        .header-area {
            background-color: white;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .background-header {
            background-color: #ffffff !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            color: black;
        }

        /* Navbar Layout */
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
            height: 70px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo img {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
        }

        /* Navigation Links */
        .nav {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav li {
            position: relative;
            padding: 0 10px;
        }

        .nav li a {
            color: #2a2a2a;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .background-header .nav li a {
            color: rgb(0, 0, 0);
        }

        .nav li a:hover {
            color: orange;
        }

        .background-header .nav li a:hover {
            color: white;
            opacity: 0.8;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background: #ffffff;
            color: #000000;
        }

        /* Buttons */
        .btn {
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid;
        }

        .btn-outline-warning {
            color: #ffc107;
            border-color: #ffc107;
            background: transparent;
        }

        .btn-outline-warning:hover {
            background: #ffc107;
            color: white;
        }

        .btn-warning {
            background: #ffc107;
            color: white;
            border-color: #ffc107;
        }

        .btn-warning:hover {
            background: #e0a800;
            border-color: #e0a800;
        }

        .w-100 {
            width: 100%;
        }

        .ms-3 {
            margin-left: 1rem;
        }

        /* Mobile Menu Toggle */
        .menu-trigger {
            display: none;
            width: 30px;
            height: 24px;
            position: relative;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-trigger span {
            position: absolute;
            width: 100%;
            height: 3px;
            background: #2a2a2a;
            left: 0;
            transition: all 0.3s ease;
        }

        .background-header .menu-trigger span {
            background: white;
        }

        .menu-trigger span:nth-child(1) {
            top: 0;
        }

        .menu-trigger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .menu-trigger span:nth-child(3) {
            bottom: 0;
        }

        .menu-trigger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 50%;
        }

        .menu-trigger.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-trigger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 50%;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            #section-1 {
            margin-top: 100px; /* Reduced margin for mobile */
            min-height: 500px; /* Smaller minimum height for mobile */
            height: auto; /* More flexible height */
            padding-bottom: 20px; /* Add some padding at bottom */
        }

        #section-1 .content-slider {
            height: auto; /* Flexible height for mobile */
        }

        #section-1 .content-slider .slider {
            overflow: visible; /* Might need to adjust based on your content */
        }
            .menu-trigger {
                display: block;
                background-color: #f1751d;
            }

            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav.show {
                max-height: 650px;
            }

            .nav li {
                width: 100%;
                padding: 10px 0;
            }

            .nav li a {
                display: block;
                padding: 10px 15px;
                color: #2a2a2a !important;
                text-align: center;
            }

            .nav li button{
                width: 100%;
            }

            .nav li a:hover{
                background-color: orange;
                color: #ffffff;
                width: 100%;

            }

            .background-header .nav {
                background: #ffffff;
            }

            .background-header .nav li a {
                color: rgb(0, 0, 0) !important;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                border-radius: 0;
                padding-left: 20px;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .dropdown-menu.show {
                display: block;
            }
        }
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full height of viewport */
}

footer {
  background-color:rgb(255, 255, 255);
  text-align: center;
  padding: 25px 0px;
}

footer p {
  color: black;
}

footer p a {
  color: black;
  font-weight: 500;
  transition: all .3s;
}

footer p a:hover {
  color: black;
  opacity: 0.75;
}



