body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}




/* <!-- information about Beadi --> */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f4f4f4;
    flex-wrap: wrap; /* Added for responsiveness */
}

.info-content {
    flex: 1;
    max-width: 600px;
    margin: 20px; /* Added margin for small screens */
}

/* Responsive images and sections */
.info-image {
    flex: 1;
    width: 100%;
    margin-right: 30px; 
    display: flex;
    justify-content: flex-end;
}



.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.info-image img:hover {
    transform: scale(0.9); /* Zoom effect on hover */
    transition: transform 0.8s; /* Smooth zoom effect */
}




/* featured section */
.features-section {
    padding: 50px;
    background-color: #ffffff; /* Adjust to match your design */
    text-align: center;
}

.features-section h2 {
    font-size: 28px;
    color: #333; /* Consistent text color */
    margin-bottom: 20px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.feature-item {
    padding: 20px;
    border: 1px solid #ccc; /* Optional: Add a border */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Shadow for a slight lift effect */
    transition: transform 0.3s; /* Smooth hover effect */
}

.feature-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.feature-item h3 {
    font-size: 20px;
    color: #555; /* Consistent text color */
    margin-bottom: 10px;
}

.feature-item p {
    color: #777; /* Consistent text color */
    line-height: 1.5;
}

.banner-section {
    height: 400px; /* Adjust height as needed */
    background-image: url('/img/5.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white; /* Text color */
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 20px;
    border-radius: 10px;
}

.banner-content h1 {
    font-size: 36px; /* Adjust size as needed */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds a shadow effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-section {
        height: 250px; /* Adjust for smaller screens */
    }
    
    .banner-content h1 {
        font-size: 24px; /* Adjust text size for smaller screens */
    }
}

@media (max-width: 768px) {
    .banner-section {
        height: 250px; /* Adjust for smaller screens */
    }
    .banner-content h1 {
        font-size: 36px; /* Adjust text size for smaller screens */
    }
}



strong{
    font-weight: bold;
    color: #333;
}




/* FOOTER SECTION STYLES */


.custom-footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-column h3 {
    font-size: 18px;
    color: #e8b52e;
    margin-bottom: 15px;
}

.footer-column p, 
.footer-column ul, 
.footer-column ul li {
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #e8b52e;
}

.subscribe-form .form-group {
    margin-bottom: 15px;
}

.subscribe-form label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.subscribe-form input,
.subscribe-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 16px;
}

.subscribe-form button {
    background-color: #e8b52e;
    color: #333;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.subscribe-form button:hover {
    background-color: #fff;
    color: #333;
}

.phone-input {
    display: flex;
}

.phone-input select {
    max-width: 100px;
    margin-right: 10px;
}



/* MEDIA QUERIES */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center; 
    }
    
    .footer-column {
        text-align: center; 
        margin-bottom: 20px;
    }
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack navbar items on small screens */
        align-items: flex-start; 
    }
}

.additional-info {
    margin-top: 10px; /* Adds some space above the new text */
}

.hover-text {
    color: #ccc; /* Default text color */
    transition: color 0.3s; /* Smooth transition effect */
}

.hover-text:hover {
    color: #e8b52e; /* Change to this color on hover */
    cursor: pointer; /* Optional: Change cursor on hover */
}



/* Upload and download pdf section styling */

.pdf-section {
    padding: 40px 20px; /* Add padding for the section */
    background-color: #f9f9f9; /* Light background color */
    text-align: center; /* Center the text */
}

.pdf-section h2 {
    font-size: 28px;
    color: #333; /* Main heading color */
    margin-bottom: 20px; /* Space below the heading */
}

.pdf-container {
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space between items */
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Wrap items for responsiveness */
}

.upload-form {
    flex: 1; /* Allow form to take up available space */
    max-width: 400px; /* Set max width */
    margin-right: 20px; /* Space to the right */
}

.upload-form label {
    display: block; /* Block display for the label */
    margin-bottom: 10px; /* Space below the label */
    color: #555; /* Label color */
}

.upload-form input[type="file"] {
    width: 100%; /* Full width for the input */
    padding: 10px; /* Padding for input */
    border: 1px solid #ccc; /* Border for the input */
    border-radius: 4px; /* Rounded corners */
    margin-bottom: 10px; /* Space below the input */
}

.upload-form button {
    background-color: #e8b52e; /* Button background */
    color: #333; /* Button text color */
    padding: 10px 15px; /* Button padding */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    font-size: 16px; /* Font size */
}

.upload-form button:hover {
    background-color: #fff; /* Change background on hover */
    color: #333; /* Text color on hover */
}

.download-links {
    flex: 1; /* Allow download links to take up available space */
    max-width: 400px; /* Set max width */
}

.download-links h3 {
    font-size: 22px; /* Size for the header */
    color: #333; /* Main header color */
    margin-bottom: 15px; /* Space below the header */
}

.download-links ul {
    list-style: none; /* Remove list style */
    padding: 0; /* Remove padding */
}

.download-links ul li {
    margin-bottom: 10px; /* Space below each list item */
}

.download-links ul li a {
    color: #e8b52e; /* Link color */
    text-decoration: none; /* No underline */
    transition: color 0.3s; /* Smooth transition */
}

.download-links ul li a:hover {
    color: #333; /* Change color on hover */
}



/* LOGIN/SIGNUP SECTION */
.auth-section {
    background-color: #f4f4f4; /* Light background for contrast */
    padding: 50px 20px; /* Top and bottom padding */
    text-align: center; /* Center align text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.auth-container {
    max-width: 600px; /* Limiting width for better appearance */
    margin: 0 auto; /* Centering the container */
}

.auth-container h2 {
    font-size: 28px; /* Header size */
    color: #333; /* Dark color for text */
    margin-bottom: 10px; /* Space below the header */
}

.auth-container p {
    color: #777; /* Lighter tone for subtext */
    margin-bottom: 30px; /* Space below the paragraph */
}

.button-container {
    display: flex; /* Flex for horizontal alignment */
    justify-content: center; /* Center align buttons */
    gap: 20px; /* Space between buttons */
}

.button {
    padding: 15px 30px; /* Padding for buttons */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* No underline */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
    color: white; /* Text color */
    cursor: pointer; /* Pointer cursor for buttons */
}

.login-button {
    background-color: #495057; /* Dark gray for login */
}

.signup-button {
    background-color: #e8b52e; /* Bright color for signup */
}

.button:hover {
    transform: translateY(-3px); /* Lift effect on hover */
}

.login-button:hover {
    background-color: #343a40; /* Darker shade for hover */
}

.signup-button:hover {
    background-color: #d4a825; /* Slightly darker shade for hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column; /* Stack buttons on smaller screens */
    }
}
