/* Navbar styling */
.navbar-connect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    background-color: white;
    border-bottom: 1px solid #eee;
    height: 75px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

/* Add shadow when the page is scrolled */
.navbar-connect.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .navbar-connect {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Logo styling */
.navbar-logo img {
    height: 230px; /* Logo size for larger screens */
    display: block;
    margin: 0;
    padding: 0;
    max-width: 1500px;
}

/* Center Menu Styling */
.navbar-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center; /* Center the menu items */
    flex-grow: 1; /* Makes the menu grow to fill available space */
}

.navbar-menu li {
    margin: 0 15px; /* Space between menu items */
}

.navbar-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.navbar-menu li a:hover {
    color: #2c9ec6;
}

/* Login Button */
.navbar-login a {
    text-decoration: none;
    color: white;
    background-color: #62975f;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}

.navbar-login a:hover {
    background-color: #005b33;
    color: white;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu li {
        margin: 15px 0;
    }

    /* Logo size adjustment for mobile */
    .navbar-logo img {
        height: 130px; /* Logo size for mobile */
    }

    /* Place the login button above the menu */
    .navbar-login {
        display: flex;
        justify-content: center;
        /* margin-bottom: 20px; */
    }

    .navbar-menu.active .navbar-login {
        order: -1; /* Moves the login button above the menu items */
    }
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .navbar-connect {
        padding: 0 20px;
    }

    .navbar-login a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .navbar-logo img {
        height: 130px;
    }
}

/* navbar end
 */


/* banner */
/* Main banner container */
/* banner */
/* Main banner container */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #299dc6; /* Light green background */
    border-radius: 20px; /* For rounded corners */
    padding: 20px 40px; /* Adjust the padding for space */
    max-width: 85%; /* Set the banner to take full width of the page */
    height: 300px; /* Adjust the height to make it more compact */
    margin: 0 auto; /* Center the banner horizontally */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
    /* margin-top: 20px; */
}

/* Left-side content styling */
.banner-content {
    flex: 1;
    padding-right: 20px; /* Add some spacing between text and image */
}

.banner-content h1 {
    font-size: 2rem; /* Reduce font size */
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff; /* Text color */
}

.banner-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff; /* Text color */
}

.banner-btn {
    background-color: #005b33; /* Button color */
    color: #fff;
    padding: 8px 16px; /* Smaller padding */
    border-radius: 20px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.banner-btn:hover {
    background-color: #333; /* Darken on hover */
    color: #fff;
}

/* Right-side image styling */
.banner-image {
    flex: 1;
    text-align: center; /* Align image to the right */
    max-width: 500px; /* Set a maximum width for the image */
}

.banner-image img {
    max-width: 100%; /* Ensure image scales correctly */
    border-radius: 20px; /* Optional: if you want a rounded image */
    height: 300px; /* Maintain image aspect ratio */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        height: auto; /* Let height adjust on smaller screens */
    }

    .banner-content {
        padding-right: 0;
    }

    .banner-image {
        margin-top: 20px;
    }
}


/* end banner */


.privacy-policy-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
  }
  
  h2 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  p, ul {
    margin: 0.5rem 0;
  }
  
  ul {
    padding-left: 20px;
  }
  
  ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #eee;
    font-size: 0.9rem;
    color: #666;
  }