 body {
            /* font-family: "Inter", sans-serif; */
            font-family:  Helvetica;
            margin: 0;
            padding: 0 0px;
            background-color: #FFFFFF;
            color: #000;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        a{
            color: inherit;
            text-decoration: none;
        }

        /* Dark mode styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #ffffff;
        }

        body.dark-mode .navbar-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .logo {
            color: #ffffff;
        }

        body.dark-mode .cateagory-section {
            background-color: #1a1a1a;
            border-color: #333;
        }

        body.dark-mode .category {
            color: #ffffff;
        }

        body.dark-mode .category:not(:first-child) {
            border-left-color: #333;
        }

        body.dark-mode .mini-head-l,
        body.dark-mode .main-head,
        body.dark-mode .top-right-grid-l-head,
        body.dark-mode .top-section-r-head {
            color: #ffffff;
        }

        body.dark-mode .main-para,
        body.dark-mode .main-para.b,
        body.dark-mode .main-para.c,
        body.dark-mode .main-para.d {
            color: #cccccc;
        }

        body.dark-mode .four-grid-section,
        body.dark-mode .three-grid-section,
        body.dark-mode .bottom-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .h-line {
            border-color: #333;
        }

        body.dark-mode .v-line {
            background-color: #333;
        }

        body.dark-mode .newsletter-section {
            background-color: #2a2a2a;
        }

        body.dark-mode .newsletter-section h2 {
            color: #ffffff;
        }

        body.dark-mode .categories li a {
            color: #66b3ff;
        }

        body.dark-mode .categories li span {
            color: #ffffff;
        }

        body.dark-mode .footer {
            background-color: #1a1a1a;
            border-color: #333;
        }

        body.dark-mode .footer-top {
            border-color: #333;
        }

        body.dark-mode .footer-top-center a,
        body.dark-mode .footer-top-right,
        body.dark-mode .footer-middle p {
            color: #ffffff;
        }

        body.dark-mode .footer-middle h2 {
            color: #ffffff;
        }

        /* Theme toggle styles */
        .theme {
            height: 12px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .theme.b {
            display: none;
        }

        body.dark-mode .theme:not(.b) {
            display: none;
        }

        body.dark-mode .theme.b {
            display: block;
        }

        /* navbar section */
        .navbar-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0px;
            width: 85%;
            margin: 0 auto;
            position: relative;
        }

        .nav-option-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu {
            height: 12px;
            border: 1px solid #B2B0B2;
            padding: 7px 6px 4px;
            border-radius: 2px;
        }

        .search {
            height: 12px;
            cursor: pointer;
        }
        .search.b{
         display: none;
        }

        .logo {
            margin: 0;
            font-size: 45px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .subscribe-btn {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background-color: #0075FF;
            padding: 6px 15px;
            border-radius: 5px;
        }

        /* Search bar hidden by default */
        .search-bar {
            display: none;
            position: absolute;
            top: 60px;
            left: 10%;
            width: 250px;
            height: 35px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background: #fff;
            align-items: center;
            padding: 0 10px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            z-index: 9999;
        }

        .sidebar .search-bar {
            flex-shrink: 0;
            margin-bottom: 15px;
        }

        .search-bar input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 14px;
        }

        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
        }

        .search-bar button img {
            width: 14px;
            height: 14px;
        }

        /* Sidebar container */
        .sidebar {
            position: fixed;
            top: 0;
            left: -400px;
            width: 280px;
            height: 100%;
            background: #fff;
            box-shadow: 2px 0 6px rgba(0,0,0,0.15);
            transition: left 0.3s ease-in-out;
            z-index: 10000;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .sidebar.active {
            left: 0;
        }

        /* Sidebar Search */
        .sidebar-search {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 6px 8px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

        .sidebar-search input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
        }

        .sidebar-search button {
            background: none;
            border: none;
            cursor: pointer;
        }

        .sidebar-search img {
            width: 16px;
            height: 16px;
        }

        /* Sidebar Menu */
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
            flex: 1;
        }

        .sidebar ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            cursor: pointer;
        }

        /* Drop-head styling */
        .drop-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0;
            cursor: pointer;
        }

        /* Sidebar Social Icons */
.sidebar .socials {
    margin-top: 20px;      /* space below the menu */
    display: flex;
    justify-content: flex-start; /* align left, change to center if needed */
}

/* Each icon wrapper */
.sidebar .socials i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;   /* icon wrapper width */
    height: 32px;  /* icon wrapper height */
    cursor: pointer;
}

/* Icon images */
.sidebar .socials i img.footer-social-icon {
    width: 15px;  
    height: 15px;
    object-fit: contain; 
    display: block;
}


        /* Arrow default */
        .arrow {
            display: inline-block;
            font-size: 12px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        /* Main Dropdown */
        .has-dropdown .dropdown {
            display: none;
            flex-direction: column;
            padding-left: 15px;
            margin-top: 8px;
        }

        .has-dropdown.active > .dropdown {
            display: flex;
        }

        /* Sub Dropdown */
        .has-sub-dropdown {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 6px 0;
            position: relative;
        }

        .has-sub-dropdown .sub-dropdown {
            display: none;
            flex-direction: column;
            padding-left: 15px;
            margin-top: 5px;
        }

        .has-sub-dropdown.active > .sub-dropdown {
            display: flex;
        }

        /* Rotate arrows when active */
        .has-dropdown.active > .drop-head .arrow,
        .has-sub-dropdown.active > .drop-head .arrow {
            transform: rotate(180deg);
        }
        /* Additional Dark Mode Styles for Sidebar and Dropdowns */

/* Sidebar dark mode */
body.dark-mode .sidebar {
    background: #2a2a2a;
    color: #ffffff;
}

body.dark-mode .sidebar ul li {
    border-bottom-color: #444;
    color: #ffffff;
}

body.dark-mode .sidebar-search {
    border-color: #444;
    background: #333;
}

body.dark-mode .sidebar-search input {
    color: #ffffff;
}

body.dark-mode .sidebar-search input::placeholder {
    color: #aaa;
}

/* Search bar dark mode */
body.dark-mode .search-bar {
    background: #2a2a2a;
    border-color: #444;
    color: #ffffff;
}

body.dark-mode .search-bar input {
    color: #ffffff;
}

body.dark-mode .search-bar input::placeholder {
    color: #aaa;
}

/* Dropdown menus dark mode */
body.dark-mode .dropdown-menu {
    background: #2a2a2a;
    border-color: #444;
    color: #ffffff;
}

body.dark-mode .dropdown-menu.business-dropdown {
    background: #2a2a2a;
}

body.dark-mode .dropdown-column h4 {
    color: #ffffff;
}

body.dark-mode .dropdown-column p {
    color: #cccccc;
}

body.dark-mode .dropdown-column p:hover {
    color: #66b3ff;
}

body.dark-mode .business-card p {
    color: #cccccc;
}

/* Newsletter form dark mode */
body.dark-mode .newsletter-form input {
    background: #333;
    border-color: #444;
    color: #ffffff;
}

body.dark-mode .newsletter-form input::placeholder {
    color: #aaa;
}
/* Category hover line dark mode */
body.dark-mode .category::before {
    background: #ffffff;
}

/* Mini title blue text dark mode - keep blue color */
body.dark-mode .mini-title-bl {
    color: #ededed;
}

/* Date span text dark mode */
body.dark-mode .date span {
    color: #ffffff;
}

body.dark-mode .date.b span {
    color: #ffffff;
}
body.dark-mode .footer-social-icon{
   filter: invert(1);
}
body.dark-mode .social-icon{
   filter: invert(1);
}
body.dark-mode .footer-social-icon{
   filter: invert(1);
}
/* Search bar background fix */
body.dark-mode .search-bar {
    background: #ffffff;
    border-color: #444;
    color: #ffffff;
}

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out;
            z-index: 9999;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* cateagory-section */
        .cateagory-section {
            border-top: 1px solid #DDDDDD;
            border-bottom: 1px solid #DDDDDD;
            padding: 20px 0;
        }

        .category-grid-section {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 85%;
            margin: 0 auto;
            position: relative;
        }

        .category {
            margin: 0;
            font-size: 14px;
            font-weight: 400;
            color: #000;
            padding: 0 20px;
            position: relative;
            cursor: pointer;
        }

        .category:not(:first-child) {
            border-left: 1px solid #DDDDDD;
        }

        .category::before {
            content: "";
            position: absolute;
            top: -22px;
            left: 0;
            right: 0;
            height: 0;
            background: #000;
            transition: height 0.2s ease;
        }
        .category.dropdown::before{
         content: "";
            position: absolute;
            top: -21px;
            left: 0;
            right: 0;
            height: 0;
            background: #000;
            transition: height 0.2s ease;
        }


        .category:hover::before {
            height: 4px;
        }

        .category:first-child::before {
            height: 4px;
        }

        .category:hover::before {
            opacity: 1;
        }

        /* Dropdown wrapper */
        .dropdown {
            position: relative;
        }

        /* Dropdown menu */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            gap: 40px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            z-index: 1000;
            white-space: nowrap;
            margin-top: 20px;
        }

        /* Show dropdown when parent has 'active' */
        .dropdown.active .dropdown-menu {
            display: flex;
        }

        /* Dropdown columns */
        .dropdown-column {
            display: flex;
            flex-direction: column;
        }

        .dropdown-column h4 {
            margin: 0 0 10px;
            font-size: 13px;
            font-weight: 700;
            color: #000;
        }

        .dropdown-column p {
            margin: 5px 0;
            font-size: 12px;
            color: #000;
            cursor: pointer;
        }

        .dropdown-column p:hover {
            color: #0075FF;
        }

        .business-dropdown {
            width: 400px;
            gap: 20px;
            padding: 15px;
            white-space: normal;
        }

        /* Each card fixed width */
        .business-card {
            width: 200px;
            text-align: center;
            cursor: pointer;
        }

        .business-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .business-card p {
            margin-top: 8px;
            font-size: 12px;
            line-height: 1;
            color: #000;
            margin: 0;
            padding-top: 5px;
            text-align: left;
        }

        .category.dropdown span::after {
            content: "▾";
            font-size: 15px;
            margin-left: 6px;
            display: inline-block;
            vertical-align: middle;
            color: #DDDDDD;
        }

        /* top-section */
        .top-section {
            width: 85%;
            margin: 0 auto;
            padding: 20px 0;
            display: flex;
        }

        .top-section-l {
            width: 18%;
            display: flex;
            flex-direction: column;
            gap: 8vh;
        }

        .top-section-m {
            width: 57%;
        }

        .top-section-r {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .img-wrapper {
            width: 100%;
            height: 160px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .dropdown-img-wrapper {
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .top-right-grid-r-img-wrapper {
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-img-wrapper {
            width: 100%;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .img-grid-l {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .img-grid-m {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .img-grid-m.b {
            text-align: left;
        }

        .v-line {
            width: 0.5px;
            background-color: #DDDDDD;
            margin: 0 20px;
        }

        .h-line {
            width: 100%;
            border-top: 0.5px solid #DDDDDD;
        }

        .top-section-r-head {
            margin: 0;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 500;
            color: #000;
        }

        .mini-title-bl {
            margin: 0;
            font-size: 12px;
            font-weight: 700;
            color: #0075FF;
            text-transform: uppercase;
        }
        body.dark-mode .mini-title-bl {
    color: #ffffff;
}
body.dark-mode .mini-title-bl.b {
    color: #ffffff;
}

        .mini-title-bl.b {
            margin: 0;
            font-size: 12px;
            font-weight: 700;
            color: #0075FF;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .mini-title-bl.b .dot {
            width: 4px;
            height: 4px;
            background-color: #DDDDDD;
            border-radius: 50%;
            display: inline-block;
        }

        .mini-head-l {
            margin: 0;
            font-size: 20px;
            color: #000;
            font-weight: 700;
            line-height: 1.2em;
        }

        .date {
            font-size: 13px;
            font-weight: 400;
            margin: 0;
            color: #808080;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .date.b {
            font-size: 13px;
            font-weight: 400;
            margin: 0;
            color: #808080;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .date span {
            color: #000;
        }

        .date.b span {
            color: #000;
        }

        .main-head {
            margin: 0;
            font-size: 34px;
            color: #000;
            font-weight: 700;
        }

        .main-head.b {
            font-size: 26px;
        }

        .main-para {
            margin: 0;
            line-height: 1.4em;
            font-size: 15px;
            color: #535353;
            width: 85%;
            margin: 0 auto;
        }

        .main-para.b {
            margin: 0;
            line-height: 1.4em;
            font-size: 14px;
            color: #535353;
            width: 100%;
        }

        .main-para.c {
            line-height: 1.3em;
            margin: 0;
        }

        .main-para.d {
            margin: 0;
            line-height: 1.4em;
            font-size: 15px;
            color: #535353;
            width: 100%;
        }

        .top-right-grid {
            display: flex;
            gap: 15px;
        }

        .top-right-grid-l {
            width: 65%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .top-right-grid-r {
            width: 35%;
        }

        .top-right-grid-l-head {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #000;
            line-height: 1.1em;
        }

        /* four-grid-section */
        .four-grid-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 85%;
            margin: 0 auto;
            padding: 30px 0px;
        }

        .grid-header-section {
            display: flex;
            justify-content: space-between;
        }

        .view {
            font-size: 14px;
            font-weight: 500;
            color: #0075FF;
            margin: 0;
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .right-arrow {
            width: auto;
            height: 12px;
        }

        .total-grid-section {
            display: flex;
            gap: 20px;
            padding-top: 10px;
        }

        .four-grid {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .four-grid-img-wrapper {
            width: 100%;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bottom-grid-img-wrapper {
            width: 100%;
            height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* three-grid-section */
        .three-grid-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 85%;
            margin: 0 auto;
            padding: 30px 0px;
        }

        .three-grid {
            display: flex;
            padding-top: 10px;
        }

        .three-grid-section-l {
            width: 60%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .three-grid-section-r {
            width: 40%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .avatar {
            height: 35px;
            width: auto;
            border-radius: 100%;
        }

        .three-grid-right {
            display: flex;
            gap: 30px;
        }

        .three-grid-box {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .three-gird-img-wrapper {
            width: 100%;
            height: 170px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* newsletter-section */
        .newsletter-section {
            text-align: center;
            background-color: #f2f2f2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 85%;
            margin: 50px auto;
            padding: 50px 0px;
        }

        .newsletter-section h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .newsletter-form input {
            padding: 12px 35px;
            border: 1px solid #ddd;
            outline: none;
            font-size: 14px;
            border-radius: 4px;
        }

        .newsletter-form input:first-child {
            border-radius: 4px 0 0 4px;
        }

        .newsletter-form input:nth-child(2) {
            border-radius: 0;
        }

        .newsletter-form button {
            padding: 12px 20px;
            background-color: #0075FF;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #005FCC;
        }

        /* bottom-section */
        .bottom-section {
            display: flex;
            gap: 10px;
            width: 85%;
            margin: 0 auto;
            padding: 30px 0px;
        }

        .bottom-side {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .bottom-mid {
            width: 60%;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .avatar-section {
            display: flex;
            gap: 10px;
        }

        .avt {
            width: auto;
            height: 60px;
            border-radius: 100%;
        }

        .avt-detail {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-icon-section {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 20px 0px;
        }

        .social-icon {
            width: 15px;
            height: 15px;
        }

        .categories {
            width: 100%;
        }

        .categories h3 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            padding-bottom: 6px;
        }

        .categories ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .categories li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            font-size: 16px;
        }

        .categories li a {
            text-decoration: none;
            color: #0015ff;
        }

        .categories li a:hover {
            color: #005FCC;
        }

        .categories li span {
            color: #000;
        }

        .bottom-mid-section {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .bottom-mid-section-l {
            width: 65%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .bottom-mid-section-r {
            width: 35%;
        }

        .see {
            margin: 0;
            color: #FFFFFF;
            background-color: #191919;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 0px;
            width: 50%;
            text-align: center;
            margin-top: 40px;
        }

        /* Footer */
        .footer {
            width: 100%;
            border-top: 1px solid #eee;
            margin-top: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding-bottom: 30px;
        }

        .footer-top {
            padding: 15px 40px;
            border-bottom: 1px solid #eee;
        }

        .footer-top-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 85%;
            margin: 0 auto;
        }

        .footer-top-left button {
            background-color: #191919;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
        }

        .footer-top-center {
            display: flex;
            gap: 20px;
        }

        .footer-top-center a {
            text-decoration: none;
            color: #000;
            font-size: 14px;
        }

        .footer-top-right {
            font-size: 14px;
            color: #000;
        }

        .footer-top-right a {
            color: #0075FF;
            text-decoration: none;
        }

        /* Middle branding */
        .footer-middle {
            margin: 30px 0 10px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-middle h2 {
            margin: 0;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .footer-middle p {
            margin: 10px 0 0;
            font-size: 14px;
            color: #000;
        }

        /* Social icons */
        .footer-bottom {
            margin: 0px 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .footer-social-icon {
            width: 15px;
            height: 15px;
            object-fit: contain;
            cursor: pointer;
        }