/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling for the fieldset */
fieldset {
    border: 2px solid black; /* Light blue border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Add padding inside the fieldset */
    margin: 20px 0; /* Margin around the fieldset */
    background-color: #f9f9f9; /* Light grey background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Styling for the legend */
fieldset legend {
    font-size: 1.5em; /* Larger font size */
    font-weight: bold; /* Bold font */
    color: #3498db; /* Matching border color */
    padding: 0 10px; /* Padding around the text */
    background-color: #ffffff; /* White background */
    border: 1px solid #3498db; /* Border to match the fieldset */
    border-radius: 5px; /* Rounded corners for legend */
    margin-bottom: 10px; /* Space below the legend */
}

/* Styling for form groups within the fieldset */
fieldset .form-group {
    margin-bottom: 15px; /* Space between form groups */
}

/* Styling for labels */
fieldset label {
    display: block; /* Block display to separate from input fields */
    margin-bottom: 5px; /* Space below the label */
    font-weight: bold; /* Bold font for labels */
    color: #333; /* Dark grey color for text */
}

/* Styling for input fields */
fieldset input[type="file"] {
    display: block; /* Full width of the container */
    margin-top: 5px; /* Space above the input */
    color: black;
}

/* Styling for select elements */
fieldset select {
    display: block; /* Full width of the container */
    margin-top: 5px; /* Space above the select */
    width: 100%; /* Full width of the container */
    padding: 10px; /* Padding inside the select */
    border: 1px solid #ddd; /* Light border */
    border-radius: 5px; /* Rounded corners */
    color: black;
}

/* Styling for submit button */
fieldset input[type="submit"] {
    background-color: #32BFFF; /* Blue background */
    color: #fff; /* White text */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Padding inside the button */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 1em; /* Font size */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

fieldset input[type="submit"]:hover {
    background-color: #2980b9; /* Darker blue on hover */
}


/* Basic styling for the input field */
        #city-state {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            margin-bottom: 10px;
            box-sizing: border-box; /* Make sure padding doesn't affect width */
        }

        /* Suggestions box */
        .suggestions {
            border: 1px solid #ddd;
            max-height: 150px; /* Limit the height of the dropdown */
            overflow-y: auto; /* Scroll if the list is too long */
            background-color: white;
            position: relative; /* Make sure it's positioned below the input */
            width: 100%; /* Match the input width */
            z-index: 100; /* Ensure it appears above other elements */
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
            display: none; /* Hide by default */
        }

        /* Visible when there are suggestions */
        .suggestions.visible {
            display: block;
        }

        /* Style for each suggestion */
        .suggestion-option {
            padding: 10px;
            cursor: pointer;
        }

        /* Hover effect for suggestions */
        .suggestion-option:hover {
            background-color: #f0f0f0; /* Highlight when hovering */
        }

 /* Profile Sections */

section {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
   
}

section h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
   text-align: center;
}

/* Update Profile Form */
#update-profile-form input[type="text"],
#update-profile-form input[type="email"],
#update-profile-form textarea {

  position: relative;

display: flex;
            flex-direction: column;

font-size: 16px; /* Ensure text is easily readable */
    padding: 10px 15px; /* Add padding for better spacing */
    border: 2px solid #dcdcdc; /* Light border for subtle definition */
    border-radius: 8px; /* Rounded corners for a modern look */
    background-color: #f9f9f9; /* Light background for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for focus effect */
    width: 100%; /* Make the input take full width of its container */
    max-width: 400px; /* Optional max-width for a more controlled size */
    margin-bottom: 15px; /* Space between inputs */

}

#update-profile-form label {
    display: block; /* Ensure labels are on their own line */
    margin-bottom: 5px; /* Space between label and input */
    font-weight: bold; /* Make label text bold */
    color: #333; /* Dark color for labels */
    text-align: left;
}

/* Main container layout */

main {
flex: 1;
padding-top: 80px; /* Adjust margin-top to create space below the header */

    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: white; /* White background for the main content */
   
}

/* CSS for Profile Sections Layout */

/* Container for profile sections - no more flex */
.profile-container {
    display: block; /* Make it block to stack sections vertically */
    margin: 0 auto;
    padding: 20px;
    max-width: 800px; /* Adjust the max width of the container */
}

/* Profile Photo Section */
#profile-photo-section {
    text-align: center; /* Center content in the section */
    margin: 30px auto; /* Space around the section */
    padding: 20px; /* Padding inside the section */
    border: 1px solid #ddd; /* Optional border around the section */
    border-radius: 10px; /* Rounded corners for the section */
    background-color: #f9f9f9; /* Light background color */
    max-width: 100%; /* Make section full width */
}

/* Update Profile Section */
#update-profile-section {
    margin: 20px auto; /* Space around the section */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background color */
    max-width: 100%; /* Make section full width */
}

/* Profile Photo */
#profile-photo, #photo-preview {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    border-radius: 50%; /* Makes the photo circular */
    object-fit: cover; /* Ensures the image covers the circle without distortion */
    border: 3px solid #ddd; /* Optional: adds a border around the photo */
    background-color: #e0e0e0; /* Background color if the image is not loaded */
    margin-bottom: 20px; /* Space below the photo */
}

/* File Upload Form */
#upload-photo-form {
    margin-bottom: 20px; /* Space below the form */
    text-align: center; /* Center the form */
}

/* Hide the actual file input */
#upload-photo-form input[type="file"] {
    display: none;
}

/* Style the label to look like a button */
.custom-upload-button {
    padding: 10px 20px;
    background-color: #32BFFF; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
}

/* Upload Button */
#upload-photo-form button {
    padding: 10px 20px;
    background-color: #0088cc; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

/* Optional: Add some hover effects */
.custom-upload-button:hover,
#upload-photo-form button:hover {
    background-color: #006699; /* Darker blue on hover */
}

/* Message Below Upload Button */
#photo-message {
    color: #007bff; /* Message color */
    margin-top: 10px; /* Space above the message */
}

/* Update Profile Form */
#update-profile-form {
    display: block;
    text-align: center;
    max-width: 100%; /* Full width for form */
}

/* Form Fields */
#update-profile-form input[type="text"],
#update-profile-form input[type="email"],
#update-profile-form textarea {
    background-color: white;
    width: 100%; /* Adjust the input fields' width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px; /* Add space between fields */
}

/* Textarea Styling */
#update-profile-form textarea {
    resize: vertical;
    height: 100px;
}

/* Update Profile Button */
#update-profile-form button {
    padding: 10px 20px;
    background-color: #32BFFF; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

/* Update Profile Button Hover */
#update-profile-form button:hover {
    background-color: #0088cc; /* Darker blue on hover */
}


/* Create Post Form */
#create-post-form textarea {

  

display: flex;
            flex-direction: column;

    font-size: 16px; /* Ensure text is easily readable */
    padding: 10px 15px; /* Add padding for better spacing */
    border: 2px solid #dcdcdc; /* Light border for subtle definition */
    border-radius: 8px; /* Rounded corners for a modern look */
    background-color: #f9f9f9; /* Light background for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for focus effect */
    width: 100%; /* Make the input take full width of its container */
    max-width: 400px; /* Optional max-width for a more controlled size */
    margin-bottom: 15px; /* Space between inputs */
}

#create-post-form button {

  

display: flex;
            flex-direction: column;

    margin-top: 20px;
            padding: 15px;
            background-color: #32BFFF; /* Sky blue */
            border: none;
            color: white;
            font-size: 18px;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
}

#create-post-form button:hover {
    background-color: #00BFFF;
}

/* Display User Posts */
#posts-container {
    margin-top: 20px;
}

.post {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.post p {
    margin-bottom: 10px;
    font-size: 16px;
}

.post small {
    display: block;
    color: #666;
    font-size: 14px;
}

.delete-post-form {
    margin-top: 10px;
}

.delete-post-form button {
    background-color: #dc3545;
    border: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.delete-post-form button:hover {
    background-color: #c82333;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 15px;
        margin: 10px;
    }
}
  
   /* License Type Dropdown */
select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
   
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

select:focus {
    border-color: #32BFFF; /* Sky blue border on focus */
    outline: none;
}

/* File Upload Input */
input[type="file"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
   
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: #32BFFF; /* Sky blue border on hover */
}
   
    /* Compliance Section */
#compliance-section {
    padding: 20px;
    background-color: #ffffff;
   
}



select, input[type="file"] {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
   
    border-radius: 4px;
}

/* Uploaded Documents Section */
#uploaded-documents {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

legend {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: #32BFFF; /* Sky blue button background */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

input[type="submit"]:hover {
    background-color: #00BFFF; /* Darker sky blue on hover */
}

   
    body {
    margin-top: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
font-family: Arial, sans-serif;


  
}


@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) translateX(20px) rotate(15deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}





/* Header styling */
header {
    background-color: #32BFFF; /* Sky blue */
    padding: 5px 20px; /* Reduced padding for a slimmer header */
    position: fixed; /* Keep header fixed at the top */
    width: 100%; /* Full width */
    top: 0; /* Stick to the top */
    left: 0; /* Stick to the left */
    z-index: 1000; /* Ensure it stays above other content */
    margin-bottom: 10px; /* Add space below header to separate from content */
    display: flex; /* Ensure header content is aligned properly */
    justify-content: space-between; /* Space out the logo and navigation */
    align-items: center; /* Center align items vertically */
}

/* Navbar container */
.navbar {
    display: flex;
    align-items: center; /* Center align items vertically */
    background-color: transparent; /* Transparent background for navbar */
    padding: 0; /* No extra padding inside the navbar */
    position: relative; /* Position relative for the dropdown menu */
    width: 100%; /* Ensure it takes full width */
}

/* Logo image */
.logo-img {
    height: 50px; /* Adjust height to fit the slimmer header */
    width: auto; /* Maintain aspect ratio */
}

/* Dropdown toggle button */
.dropdown-toggle {
    background-color: #32BFFF;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden by default */
    position: absolute; /* Absolute positioning relative to header */
    right: 0; /* Align to the right with some margin */
    top: 50%; /* Center vertically within the header */
    transform: translateY(-50%); /* Center vertically */
    z-index: 1100; /* Ensure it stays above the dropdown menu */
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-grow: 1; /* Allow navigation links to grow and fill space */
    justify-content: right; /* Center the navigation links */
  
    
}

.nav-links li {
    margin: 0 15px; /* Increased margin for better spacing */
    position: relative; /* Position relative for underline effect */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold; /* Slightly lighter weight for modern look */
    position: relative; /* Position relative for underline effect */
    padding: 5px 0; /* Added padding for consistent underline positioning */
    justify-content: right;
    
}

.nav-links a:hover {
    color: #0088cc; /* Highlight on hover with the main blue color */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0088cc; /* A slightly darker blue that complements the main color */
    left: 0;
    bottom: -5px; /* Adjusted to place underline below text */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; /* Underline effect on hover */
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute; /* Absolute positioning relative to header */
    top: calc(100%); /* Align it directly below the dropdown toggle with a slight margin */
    right: 0;  /* Align it to the right side of the header */
    background-color: #32BFFF;
    width: 200px; /* Fixed width for the dropdown menu */
    z-index: 1000;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    overflow: hidden; /* Ensure children are clipped within the rounded corners */
}

/* Dropdown menu items */
.dropdown-menu li {
    border-bottom: 1px solid #444;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px; /* Padding for consistent spacing */
    display: block;
    font-weight: bold;
    position: relative; /* Position relative for underline effect */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.dropdown-menu a:hover {
    color: #0088cc; /* Highlight on hover with the main blue color */
    background-color: rgba(0, 0, 0, 0.1); /* Light background on hover for better visibility */
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0088cc; /* A slightly darker blue that complements the main color */
    left: 0;
    bottom: 5px; /* Ensure consistent positioning with nav-links */
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::after {
    width: 100%; /* Underline effect on hover */
}

/* Show dropdown menu */
.dropdown-menu.show {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }



    .dropdown-toggle {
        display: block;
    }

    .dropdown-menu {
        position: absolute;
        right: 0; /* Attach to the left edge */
        top: 100%; /* Ensure it appears directly below the dropdown toggle */
        width: 50%; /* Force the dropdown to span the full viewport width */
        border-radius: 10; /* Remove rounded corners */
        box-shadow: none; /* Remove shadow */
        padding: 0; /* Ensure no padding */
        margin: 0; /* Ensure no margin */
    }
}




/* Main Content */


.form-section {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
   
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* About Page Styles */
.about {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
   
}

.about h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.mission {
    margin-bottom: 30px;
}

.mission h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.team {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100px; /* Adjust size as needed */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-info p {
    margin: 5px 0;
    color: #555;
}

/* Contact Page Styles */
.contact {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
   
}

.contact h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
}

 .contact-form {
            display: flex;
            flex-direction: column;
        }
        .contact-form label {
            margin: 10px 0 5px;
            font-weight: bold;
        }
        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s ease-in-out;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #00aaff; /* Sky blue */
            outline: none;
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 150px; /* Increase initial height */
            max-height: 400px; /* Optional max height */
            line-height: 1.6;
        }
        .contact-form button {
            margin-top: 20px;
            padding: 15px;
            background-color: #32BFFF; /* Sky blue */
            border: none;
            color: white;
            font-size: 18px;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .contact-form button:hover {
            background-color: #00BFFF;
        }

/* Form Styles */
form {
    margin-bottom: 20px;
}

form h2 {
    margin-top: 0;
    color: #007BFF; /* Sky blue heading */
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Base styles for input fields */
input[type="text"], 
input[type="email"], 
input[type="password"] {
    font-size: 16px; /* Ensure text is easily readable */
    padding: 10px 15px; /* Add padding for better spacing */
    border: 2px solid #dcdcdc; /* Light border for subtle definition */
    border-radius: 8px; /* Rounded corners for a modern look */
    background-color: #f9f9f9; /* Light background for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for focus effect */
    width: 100%; /* Make the input take full width of its container */
    max-width: 400px; /* Optional max-width for a more controlled size */
    margin-bottom: 15px; /* Space between inputs */
}

/* Styles for focused state */
input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus {
    border-color: #3A8FB7; /* Change border color on focus */
    box-shadow: 0 0 8px rgba(58, 143, 183, 0.3); /* Enhanced shadow for focus effect */
    outline: none; /* Remove default outline */
}

/* Styles for placeholder text */
input[type="text"]::placeholder, 
input[type="email"]::placeholder, 
input[type="password"]::placeholder {
    color: #a0a0a0; /* Subtle placeholder text color */
    opacity: 1; /* Ensure placeholder text is fully visible */
}

/* Label styles */
label {
    display: block; /* Ensure labels are on their own line */
    margin-bottom: 5px; /* Space between label and input */
    font-weight: bold; /* Make label text bold */
    color: #333; /* Dark color for labels */
}


/* Button Styles */
form button {
    background-color: #32BFFF; /* Sky blue button */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #00BFFF; /* Darker blue on hover */
}
p button {
    background-color: #32BFFF; /* Sky blue button */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
/* Image Slider */
 /* Image Slider */
 
 
 .index-section {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
   
}

.index-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.slider-container {
    position: relative;
     width: 100%; /* Full width for mobile */
    max-width: 500px; /* Maximum width for larger screens */
    margin: 0 auto; /* Center the slider */
    overflow: hidden;
}


.slider {
    display: flex;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
}

.slide img {
    width: 100%;
    border-radius: 10px; /* Adds rounded corners to images */
    height: auto; /* Automatically scale height based on the image’s width */
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
}

/* Media query for larger screens */
@media screen and (min-width: 1024px) {
    .slider-container {
        max-height: 400px; /* Adjust this value as needed */
    }
    .slide img {
        max-height: 400px; /* Limit the image height on larger screens */
    }
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

/* Description Section */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.description {
    text-align: center;
    margin-bottom: 40px;
}

.description h1 {
    font-size: 2.5em;
    color: #32BFFF; /* Sky blue */
    margin-bottom: 10px;
}

.description p {
    font-size: 1.2em;
    color: #555;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Center aligns items horizontally */
}

.feature {
    background-color: #f7f9fc;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px); /* 3 columns layout with gap consideration */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px; /* Prevents excessive width on larger screens */
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature {
        flex: 1 1 calc(45% - 20px); /* Two columns layout on medium screens */
    }
}

@media (max-width: 600px) {
    .feature {
        flex: 1 1 100%; /* Stacks items on small screens */
    }
}

/* Footer */

/* Footer Styling */

/* Footer styles */


    .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    background-color: #32BFFF;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    margin: 0;
    
}

/* Footer content */
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px; /* Spacing between links */
}

.footer-links li {
    display: inline-block;
}

.footer-link {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0088cc; /* Highlight on hover with the main blue color */
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0088cc; /* A slightly darker blue that complements the main color */
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%; /* Underline effect on hover */
}

.footer-bottom {
    font-size: 14px;
    margin-top: 20px;
    color: white;
    border-top: 1px solid #444;
    padding-top: 10px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-link {
        font-size: 14px;
    }
}



/* Hidden Class */
.hidden {
   display: none;
}


/* Animation for showing and hiding sections */
.fade-in {
    opacity: 1;
    
}

.fade-out {
    opacity: 1;
    
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar nav {
        flex-direction: row;
        align-items: flex-start;
    }

    .navbar nav a {
        margin: 5px 0;
    }

    
}