/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e6f5c;
    --primary-dark: #16554a;
    --secondary: #e9a178;
    --accent: #f4a261;
    --light: #f8f9fa;
    --dark: #1b3b35;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn-primary, .btn-explore, .btn-view-all, .btn-login {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover, .btn-explore:hover, .btn-view-all:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-explore {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-view-all {
    margin-top: 2rem;
}

.btn-login {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-login:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-logo i {
    margin-right: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: var(--transition);
}

 /*Hero Section */
/*.hero {*/
/*    height: 100vh;*/
/*   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */
/*                url('/tourist2/assets/images/lake-danao.jpeg') no-repeat center center/cover;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-align: center;*/
/*    color: var(--white);*/
/*    padding: 0 20px;*/
/*    position: relative;*/
/*}*/

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/lake-danao.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    position: relative;
}



.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
}




 .hero-search {
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
} 

    .hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}
.hero-search button {
    padding: 0 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background-color: var(--primary-dark);
} 
/* For Mobile Screens */
/* For Mobile Screens */
@media (max-width: 600px) {
 

 .hero-search {
    display: flex;
    max-width: 100px;
    width: 50%;
    margin: 0 auto;
} 

    .hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}
.hero-search button {
    padding: 0 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}
 .hero-search {
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Add spacing BELOW search bar */
.hero-buttons {
    margin-top: 10px;
}

}



.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Destinations */
.destinations {
    background-color: var(--light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .card-overlay {
    opacity: 1;
}

.location {
    display: flex;
    align-items: center;
    color: var(--white);
}

.location i {
    margin-right: 5px;
    color: var(--secondary);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    color: var(--secondary);
}

.rating i {
    margin-right: 5px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Experiences */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.experience-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 111, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

/* About */
.about {
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    margin: 30px 0;
}

.stat {
    margin-right: 40px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 0 30px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #d48965;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light-gray);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3, .footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu .nav-link {
        margin-left: 10px; /* Adjust this value as needed */
    }


    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    .nav-name {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* For Mobile Screens (Max width: 768px) */
@media (max-width: 768px) {

    /* Ensure the user menu container allows horizontal alignment */
    .user-menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center; /* Center the user avatar and name */
    }

    /* Dropdown menu positioning */
    .dropdown-menu {
        display: none; /* Hidden by default */
        position: absolute; /* Position relative to user-menu */
        top: 100%; /* Position the dropdown directly below the user avatar */
        left: 50%; /* Center it horizontally */
        transform: translateX(-50%); /* Adjust for perfect centering */
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        width: 200px;
        z-index: 1000;
        list-style-type: none;
        padding: 0;
    }

    /* Show the dropdown when toggled */
    .dropdown-menu.show {
        display: block;
    }

    /* Dropdown item styling */
    .dropdown-item {
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    /* Icon styling inside dropdown items */
    .dropdown-item i {
        margin-right: 10px;
        color: var(--primary);
    }

    /* Hover effect for dropdown items */
    .dropdown-item:hover, .dropdown-item:focus {
        background-color: var(--primary);
        color: white;
    }
}

    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 50px;
        padding: 20px;
    }
     .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    /* Show the menu when it is active */
    .nav-menu.active {
        left: 0;
    }

    /* Ensure the dropdown menu is above other content */
    .dropdown-menu {
        position: absolute;
        right: 0;
        top: 100%;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        width: 200px;
        z-index: 1000;
        list-style-type: none;
        padding: 0;
    }

    /* Ensure the dropdown items are displayed */
    .dropdown-menu.show {
        display: block;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .destinations-grid, .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* User menu styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}



/* Center the Hi! Provider */

.nav-item {
    display: flex;
    align-items: center; /* Vertically center the items */
}

.nav-link {
    display: flex;
    align-items: center; /* Align the circle and text on the same line */
    text-decoration: none; /* Remove underlines on the link */
}

.user-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color:  #1e6f5c;;; /* Or any other color */
    color: white;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px; /* Space between the circle and the text */
}

.user-welcome {
    font-size: 14px; /* Adjust size as needed */
    color: #333; /* Color for the user name */
}


/* Add to Cart Butoon Style */

/* .btn-explore {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #2c5530;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: #1e3a24;
    transform: translateY(-2px);
}
 */


 .btn-explore {
    display: inline-flex; /* Keeps the content in one line */
    align-items: center;
    gap: 0.5rem; /* Adds space between the icon and text */
    padding: 0.5rem 1.5rem; /* Adjust padding to make the button smaller */
    font-size: 0.8rem; /* Adjust font size to reduce text size */
    background-color: #2c5530;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    white-space: nowrap; /* Prevents text from wrapping */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-explore:hover {
    background-color: #1e3a24;
    transform: translateY(-2px);
}






/* Price to the right side of location marker */

.cart-badge {
    position: flex;
    top: -6px;
    right: -10px;
    background: #ff4b4b;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    /* display: none;       */
    align-items: center;
    justify-content: center;
}

/* basic css for the modal */
.cart-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none; /* controlled by JS */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    margin-top: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-remove {
    border: none;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total {
    font-weight: bold;
}

.btn-checkout {
    background: #1e6f5c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

/* The message or toast */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1e6f5c;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    z-index: 999999;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.35s forwards;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Hero space styles */
/* Space between search bar and hero buttons */
.hero-search {
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Add spacing BELOW search bar */
.hero-buttons {
    margin-top: 10px;
}

/* Mobile adjustments */
/* @media (max-width: 600px) {
    .hero-search {
        flex-direction: column;
    }

    .hero-search input,
    .hero-search button {
        width: 100%;
    }

    .hero-buttons {
        margin-top: 18px;
        flex-direction: column;
        gap: 10px;
    }
} */


/* Search Toast Styles  */
.search-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e6f5c;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.search-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}



/* rating in index style */
.rating-count {
    font-size: 0.85rem;
    color: #666;
    margin-left: 4px;
}

/* Custom CSS for Contact Form */
.contact-form {
    background-color: #f7f7f7; /* Light background color */
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    box-shadow: none; /* Removed card-like shadow */
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #1e6f5c; /* Green color for title */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 1px solid #1e6f5c; /* Green border on focus */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    display: inline-block;
    background-color: #1e6f5c;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #155a45; /* Darker green on hover */
}

/* Contact Information Styling */
.contact-info {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
    color: #1e6f5c;
}


.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}

.stat {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.stat i {
    font-size: 30px;
    color: #1e6f5c;
    margin-bottom: 10px;
}

.stat h3 {
    font-size: 17px;
    color: #333;
    margin: 10px 0;
}

.stat p {
    color: #666;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        margin-bottom: 20px;
        text-align: center;
    }
}


/* Design for Dropdown */

/* Basic styling for the dropdown */
/* Apply default font */
body {
    font-family: 'Poppins', sans-serif;
}

/* Basic styling for the dropdown */
.nav-item.dropdown {
    position: relative;
}

.user-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary); /* Add color to the avatar */
    color: white;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 10px;
}

.user-welcome {
    font-weight: 500;
    color: #333;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    list-style-type: none;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Set default font for dropdown */
}

/* Dropdown items */
.dropdown-item {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center; /* Align icons with text */
}

/* Icons styling */
.dropdown-item i {
    margin-right: 10px; /* Space between icon and text */
    color: var(--primary); /* Color of the icons */
}

/* Hover and Focus Styles */
.dropdown-item:hover, .dropdown-item:focus {
    background-color:  var(--primary);
    color: white;
}

.dropdown-divider {
    margin: 5px 0;
    border-top: 1px solid #e9ecef;
}

/* Display the dropdown when toggled */
.dropdown-menu.show {
    display: block;
}

/* Add styles to the arrow icon */
.user-welcome i {
    margin-left: 5px;
    font-size: 0.8rem; /* Slightly smaller than text */
    transition: transform 0.3s ease; /* Smooth rotation */
}

/* Rotate the arrow when dropdown is active */
.nav-item.dropdown .dropdown-menu.show + .nav-link .user-welcome i {
    transform: rotate(180deg); /* Flip the arrow */
}


/* 
.action-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 2px 8px;
            border-radius: 999px;
            background: #e11d48;
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 6px;
} */

/* Action Badge Styling */
.action-badge {
    position: absolute;
    top: -5px; /* Adjusts the badge position */
    right: -10px; /* Adjusts the badge position */
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    min-width: 20px; /* Ensures minimum size */
    height: 20px; /* Keeps the circle height constant */
    text-align: center;
    line-height: 20px; /* Vertically centers the number */
    transition: all 0.3s ease; /* Smooth transition */
}

/* For 2-digit and 3-digit notifications */
.action-badge {
    padding-left: 6px;
    padding-right: 6px;
}
/* 
.action-badge span {
    display: inline-block;
    width: 100%; /* Makes*
} */