@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,700,700i');

 body{
    height: 100%;
    display: flex;
    flex-direction: column;
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;
    font-size:16px;
    font-weight:300;
    color: #333;
    letter-spacing:0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
    margin: 0;
    padding: 0;
    background-color: #cac9c754;

    }
    a {
        color: #6c4c35;
    }
    .wrapper {
        width: 100%;
    }





        /* Header and Footer Styling */
        header {
            display: flex;
            justify-content: center;
            align-items: center; /* Centers items vertically */
            padding: 10px 20px; /* Adds padding */
            margin: 0;
            padding: 0;
            max-height: 100px;

        }

         /* Apply Open Sans for headings and Georgia as a fallback */
        h1, h2, h3, h4, h5, h6 {

            font-weight: 700; /* Adjust weight as needed */
            color: #333; /* Adjust color to match your design */
            line-height: 1.6; /* Good line height for readability */
            margin: 0;
            padding: 0;
        }

        .logo img {
            height: 80px; /* Set logo height */
            width: auto; /* Maintain aspect ratio */
        }

        .title {
            font-size: 24px; /* Title font size */
            color: #333; /* Title text color */
            padding: 10px;
        }

         .footer {
            background: rgba(0,0,0,0.2);
            background-color: #085cb0;
            color: white;
            text-align: center;
            padding: 10px 0;

            /*position: fixed; */
            bottom: 0;
            left: 0;
            width: 100%;
        }



      /* Navbar container */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #333;
     background: radial-gradient(circle, #085cb0, #085cb0) !important;
      height: 50px !important;
      color: #fff;
      z-index: 3;
    }



    /* Navbar brand/logo */
    .navbar .brand {
      font-size: 20px;
      font-weight: bold;
    }

    /* Navbar links */
    .navbar ul {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }

    .navbar ul li {
      margin: 0 10px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: white;
      padding: 8px 12px;
      transition: background 0.3s ease;
    }

    .navbar ul li a:hover {
      background-color: #575757;
      border-radius: 4px;
    }

    /* Hamburger menu (hidden by default) */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: #fff;
      margin: 3px 0;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
      }

      .navbar ul.show {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }
        .contentarea{

        min-height: 100vh;
         padding: 30px;
        }


        /* Left-side content styling */
        .left-content {
            background-color: #fff;
            color: #343a40;
            box-shadow: 20px  rgba(0, 0, 0, 0.87);
            border: 1px solid #ddd;
            border-radius: 8px;
            text-align: center;


         }

        /* Login card styling */
        .login-card {
            background-color: #9fb8d2;
            color: #031d37;

            padding: 10px;
            border-radius: 8px;

           box-shadow: 20px  rgba(0, 0, 0, 0.87);

        }

        /* Footer Styling */
        .footer p {
            margin: 0;
        }

        /* Notification bar styles */
        .notification-bar {
            position: fixed;
            right: -300px;
            top: 0;
            height: 100%;
            width: 300px;
            background-color: #343a40;
            z-index: 1;
            overflow-y: auto;
            padding: 20px;
            transition: right 0.3s ease;
        }
        .notification-bar.active {
            right: 0;
        }
        .notification-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #555;
        }
        .notification-content {
            margin-top: 20px;
        }
        /* Advanced styling for small devices */
        @media (max-width: 768px) {
            .container {
                margin-top: 30px;
            }
        }
        .sticky-top{
        z-index: auto !important;
        }

       .navbar-collapse{
        flex-grow: 0 !important;

        }

         .card {
            background-color: #ffffff; /* White background for the card */
            border-radius: 10px; /* Rounded corners */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
            padding: 10px; /* Padding inside the card */
            text-align: center; /* Center text */
            transition: transform 0.3s; /* Animation effect */
            width: 200px; /* Fixed width */
        }

        .card:hover {
            transform: scale(1.05); /* Slightly enlarge the card on hover */
        }

        .count {
            font-size: 48px; /* Large font size for count */
            color: #007BFF; /* Blue color for count */
            font-weight: bold; /* Bold font */
        }

        .description {
            font-size: 18px; /* Font size for description */
            color: #555; /* Dark gray color */
            margin-top: 10px; /* Margin above description */
        }

        /* Mobile view: Reorder the columns */
        @media (max-width: 768px ) {
            .first-div {
                order: 2; /* Move the first div (col-md-8) after the second div */
            }

            .second-div {
                order: 1; /* Move the second div (col-md-4) above the first div */
            }
        }


   /* Popup overlay styles */
    #loadingPopup {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    /* Popup content styles */
    .popup-content {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        text-align: center;
        font-size: 1.2rem;
    }

    /* Optional: Progress bar styles */
    .progress-bar {
        width: 100%;
        background-color: #ddd;
        border-radius: 5px;
        margin-top: 10px;
        overflow: hidden;
    }

    .progress {
        width: 0;
        height: 10px;
        background-color: #4caf50;
        border-radius: 5px;
    }

    .slider-container {
      height: 100%;
      justify-content: center;
      align-items: center;

      margin: auto;
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

     /* Carousel Section */
        .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel-item-next,
        .carousel-item-prev,
        .carousel-item.active {
            opacity: 0.8 !important;
            transform: scale(1.5);

            transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
        }

        .carousel-item.active {
            animation: fadeIn 1s ease-out;
        }

        /* Animation for carousel items */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 5px;
        }

    .accordion-button:not(.collapsed){

    background-color: #085cb0 !important;
    color: #fff;

    }

    .accordion-button{
    background-color: #a7b9eeb2 !important;


    }

.sidebar-background {
  background-color: #dfb291;
}
