
  /* Main Navbar Styling */
.navbar {
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; 
    width: 100%;
    z-index: 1000; 
    padding: 10px ; /* Adjust padding as necessary */
 
    margin-bottom: 0; /* Remove margin */
    
}

.nav-links {
    display: flex;
}

.nav-link {
    color: black;
    font-weight: 800;
    text-decoration: none;
    margin: 0 1rem;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:hover i {
    color: green;
}

/* Dropdown Menu Styling */
.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 190px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    white-space: nowrap;
    padding: 20px;
}

.dropdown a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #f1f1f1;
}

.nav-link:hover .dropdown {
    display: block;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Fixed Sub Navbar */
.sub-navbar-container {
    display: flex;
    align-items: center;
    position: fixed; 
    top: 60px; /* Set this to the height of your navbar */
    background-color: white; 
    width: 100%; 
    z-index: 999; 
    margin-top: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

.sub-navbar {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    border-top:3px solid rgb(220, 218, 218)
    
}

.sub-navbar::-webkit-scrollbar {
    display: none;
}

.sub-navbar .nav-link {
    color: black;
    font-weight: 500;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    text-decoration: none;
    display: inline;
}

.sub-navbar .nav-link:hover {
    color: green;
    background-color: white;
    border-radius: 4px;
}

/* Sidebar styles */
.sidebar {
    width: 300px;
    height: calc(95vh - 120px); 
    position: fixed;
    background-color: #f8f9fa;
    padding-top: 20px;
    border-right: 1px solid #ddd;
    top: 90px; 
    overflow-y: auto; 
}

.sidebar ul {
    list-style-type: none;
    padding-left: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #ddd;
    color: #000;
}

.sidebar .section-title {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-left: 15px;
}

/* Go Premium section */
.go-premium {
    background-color: #ffcc00;
    color: #333;
    padding: 12px;
    font-weight: bold;
    position: fixed;
    z-index: 100;
    width: 17%;
}

/* Share Your Experiences section */
.fixed-section {
  
    position: fixed;
    width: 17%;
    background-color: #e5e8eb;
    z-index: 99;
    padding: 12px;
  
    margin-top: 40px;
}

/* Scrollable content */
.scrollable-section {
    margin-top: 65px;
    max-height: calc(80vh - 10px);
    overflow-y: auto;
}

.content {
    margin-left: 310px; 
    padding: 80px 20px 20px; 
    margin-top: 10px; 
}
.navbar-icons{
    padding-right:30px; /* Add padding to buttons */
}
.navbar-icons button
{
    padding: 5px;
  
}

.section {
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    background: white;
    padding-top: 0px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
 
}

.section h2 ,h4{
    color: #868d93;
}

.section ul, .section ol {
    padding-left: 20px;
}

.section p {
    color: #495057;
    font-size: 24px;
}
/* For screens up to 480px */
@media (max-width: 480px) {
.navbar {
display: none; /* Hide main navbar */
}

.sub-navbar-container {
top: 0; /* Move the sub-navbar to the top */
}

.content {
margin-left: 0; /* Adjust the content area */
padding-top: 60px; /* Adjust padding */
}

.sidebar {
display: none; /* Optional: Hide sidebar */
}
}

/* For screens up to 768px */
@media (max-width: 768px) {
.navbar {
display: none; /* Hide main navbar */
}

.sub-navbar-container {
top: 0; /* Move the sub-navbar to the top */
}

.content {
margin-left: 0; /* Adjust the content area */
padding-top:30px; /* Adjust padding */
}

.sidebar {
display: none; /* Optional: Hide sidebar */


}
}

footer {
    background-color: #f5f5f5;
    padding: 40px;
    display: block;
    position: sticky;
    
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    color: #666;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 180px;
}

.footer-section1,
.footer-section2 {
  padding-right:50px ;
    padding-left: 250px;
    text-decoration: none;
}

.footer-section1 ul li a,
.footer-section2 ul li a {
color: #666;
text-decoration: none;
font-size: 14px;
}

.footer-section1 ul li a:hover,
.footer-section2 ul li a:hover {
color: #333; /* Optionally, change color on hover */
}

.footer-section1 ul,
 .footer-section2 ul {
list-style-type: none; /* Remove bullets */
padding-left: 0; /* Remove default padding */
}

.footer-section1,
.footer-section2 h3
{
    color: green;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section h3 {
    color: green;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #333;
}

.company-info {
    text-align: center;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.company-logo img {
    width: 60px;
    height: auto;
}

.company-logo span {
    font-weight: bold;
    font-family: 'Work Sans';font-size: 22px;
    color: #333;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    color: #666;
    font-size: 28px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #333;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #ddd;
  
    color: white;
    font-size: 14px;
    text-align: center;
    background-color: rgb(76, 236, 76); 
    padding: 10px;
    width: 100%;
    font-family: 'Work Sans';font-size: 22px;
    
}



/* Media Queries */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
align-items: center;
}

.footer-section {
flex: 1 1 100%;
text-align: center;
padding-left: 0; /* Remove left padding */
}

.footer-section1,
.footer-section2 {
padding-left: 0; /* Remove left padding in mobile view */
padding-right: 0; /* Remove right padding in mobile view */
margin-bottom: 20px; /* Add some spacing between sections */
}

.social-icons {
justify-content: center;
}
}

@media (max-width: 480px) {
.footer-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px; /* Adjust gap between columns */

}
.footer-container .social-icons{
 width: auto;
 height: auto;
 gap:5%;
}
.footer-section1,
.footer-section2 {
padding-left: 0; /* Remove left padding for small screens */
padding-right: 0; /* Remove right padding for small screens */
margin-bottom: 20px; /* Space between sections */
text-align: center; /* Center-align text for better readability */
}

.footer-section h3 {
font-size: 16px;
}

.footer-section ul li a {
font-size: 12px;
}

.company-logo img {
width: 50px;
}

.social-icons a {
font-size: 24px;
}

.footer-bottom {
font-size: 12px;
padding: 10px;


}
.footer-bottom .p{
    width:auto;

}
}


    /* .navbar {
      background-color: #333;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
    } */

    .nav-links {
        display: flex;
        list-style: none;
        margin: 0;
      }
  
      .nav-links li {
        margin-right: 20px;
      }
  
      .nav-links li a {
        color: white;
        text-decoration: none;
        padding: 5px 10px;
      }
  
      /* Side Navigation (hidden by default) */
      .side-nav {
        height: 100%; /* Full-height */
        width: 0; /* Initially hidden */
        position: fixed; /* Fixed position */
        top: 0;
        left: 0;
        background-color: #333;
        overflow-x: hidden; /* Disable horizontal scroll */
        overflow-y: auto;
        padding-top: 60px; /* Add padding to the top */
        transition: 0.5s; /* Smooth width change */
      }
  
      .side-nav a {
        padding: 10px 15px;
        text-decoration: none;
        font-size: 18px;
        color: white;
        display: block;
        transition: 0.3s;
      }
  
      .side-nav a:hover {
        background-color: #575757;
      }
  
      /* Close button inside the side navigation */
      .side-nav .close-btn {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        color: white;
      }
  /* Hamburger menu icon */
.hamburger {
    display: none; /* Hidden on larger screens */
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    color: white;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

/* Side Navigation (hidden by default) */
.side-nav {
    height: 100%; /* Full-height */
    width: 0; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: auto;
    padding-top: 60px; /* Add padding to the top */
    transition: 0.5s; /* Smooth width change */
    z-index: 1001; /* Ensure it's above other elements */
}

.side-nav.open {
    width: 80%; /* Set width when open */
}

.side-nav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    background-color: #575757;
}

.side-nav .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
}

/* Media query for screens with max-width of 480px */
@media (max-width: 480px) {
    .navbar {
        display: none; /* Hide the top navbar */
    }
    .sub-navbar .nav-link {
        color: black;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        padding: 0.5rem 1.5rem;
        padding-top: 18px;
    }
    .hamburger {
        display: block; /* Show the hamburger menu */
        color: #333;
        font-size: 24px;
        position: fixed;
        top: 0%;
        left: 0%;
        cursor: pointer;
        z-index: 1001; /* Ensure it's above other elements */
    }

    .side-nav {
        width: 0; /* Keep it hidden initially */
    }

    .side-nav.open {
        width: 80%; /* Show the side navigation */
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
    }

    /* Section title styling */
    .section-title {
        padding: 10px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        border-bottom: 1px solid #444;
        margin-bottom: 10px;
    }
  
    /* Styling for scrollable section */
    .scrollable-section ul {
        padding-left: 0; /* Remove left padding */
        list-style-type: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .scrollable-section ul li {
        padding: 8px 10px; /* Reduce padding for smaller items */
        font-size: 16px; /* Reduce font size for smaller screens */
        border-bottom: 1px solid #444;
        color: #ccc;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    /* Hover effect for list items */
    .scrollable-section ul li:hover {
        color: #fff;
        background-color: #555;
    }
}

/* General sidebar list item styling */
.side-nav ul {
    padding: 0; /* Remove padding */
}

.side-nav ul li {
    list-style: none;
}
