
        :root {
            --primary-color: #0B8135;
            --secondary-color: #0a6e2d;
            --text-color: #333;
            --bg-color: #fff;
            --card-bg: #f8f9fa;
            --footer-bg: rgba(11, 129, 53, 0.9);
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --primary-color: #0B8135;
            --secondary-color: #0a6e2d;
            --text-color: #f8f9fa;
            --bg-color: #121212;
            --card-bg: #1e1e1e;
            --footer-bg: rgba(11, 129, 53, 0.9);
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            transition: all 0.3s ease;
            /* padding-top: 70px; */
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            /* position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--bg-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo img {
            max-height: 50px;
            width: auto;
            object-fit: contain;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .theme-toggle, .profile-icon, .menu-icon {
            cursor: pointer;
            font-size: 20px;
            color: var(--text-color);
        }

        /* Navbar Styles */
        .navbar {
            padding: 30px 0;
        }

        .nav-link {
            color: var(--text-color);
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: white;
            background-color: var(--primary-color);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: var(--card-bg);
        }

        .dropdown-item {
            color: var(--text-color);
            padding: 8px 15px;
        }

        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Updated Banner Styles */
        .banner-container {
            position: relative;
            margin: 0 40px;
            overflow: hidden;
            border-radius: 10px;
        }

        .banner-slider {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .banner-slide {
            min-width: 100%;
            position: relative;
        }

        .banner-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .banner-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(0,0,0,0.4);
            color: white;
            text-align: center;
            padding: 0 20px;
        }

        .banner-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .banner-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .banner-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .banner-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }

        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.7);
            color: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            border: none;
        }

        .slide-btn:hover {
            background: rgba(255,255,255,0.9);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* box========= */

        .box-section {
            padding: 40px 0;
            background-color: var(--bg-color);
        }
        
        .box-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .box {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            background: white;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .box-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .box-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .box-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }
        
        @media (max-width: 768px) {
            .box-container {
                display: flex;
                flex-wrap: nowrap;
                gap: 10px;
                justify-content: center;
            }
            .box {
                flex: 1;
                min-width: 100px;
                padding: 15px 10px;
            }
            
            .box-icon {
                font-size: 1.5rem;
            }
            
            .box-title {
                font-size: 0.9rem;
            }
        }

        /* Project Styles */
        .projects-section-mizan-pro-project {
            margin-bottom: 50px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 32px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }

        .projects-container-mizan-pro-project {
            position: relative;
            overflow: hidden;
        }

        .projects-slider-mizan-pro-project {
            display: flex;
            transition: transform 0.5s ease;
        }

        .project-mizan-pro-project {
            min-width: 25%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .project-card-mizan-pro-project {
            background: var(--header-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .project-card-mizan-pro-project:hover {
            transform: translateY(-10px);
        }

        .project-img-mizan-pro-project {
            height: 200px;
            overflow: hidden;
        }

        .project-img-mizan-pro-project img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-card-mizan-pro-project:hover .project-img img {
            transform: scale(1.1);
        }

        .project-content-mizan-pro-project {
            padding: 20px;
        }

        .project-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--text-color);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-desc {
            color: var(--text-color);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 14px;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            color: var(--text-color);
            font-size: 13px;
        }

        .project-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .project-actions {
            display: flex;
            gap: 10px;
        }

        .project-actions i {
            cursor: pointer;
            font-size: 14px;
        }

        .projects-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .btns {
            background-color: var(--primary-color) !important;
            color: white;
            text-decoration: none;
            border: none;
            padding: 6px 15px;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.8rem;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .projects-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-color);
            cursor: pointer;
            margin: 0 10px;
        }

        .all-projects-btn {
            margin-top: 30px;
            text-align: center;
        }

        /* ===Blog===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ব্লগ সেকশন স্টাইল */
        .blog-section {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            letter-spacing: -0.5px;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* ব্লগ পোস্ট গ্রিড */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .card-img {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .blog-card:hover .card-img img {
            transform: scale(1.08);
        }
        
        /* ইমেজ ওভারলে কন্টেন্ট */
        .img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        
        .post-category {
            display: inline-block;
            padding: 6px 15px;
            background: #3b82f6;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .img-actions {
            display: flex;
            gap: 15px;
        }
        
        .img-action {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .img-action:hover {
            color: #93c5fd;
            transform: translateY(-2px);
        }
        
        .img-action i {
            font-size: 14px;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .post-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .post-excerpt {
            color: var(--text-color);
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.7;
        }
        
        .read-more-btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(to right, #0b8135, #2ac05e);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
        }
        
        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
        }
        
        .post-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
            color: var(--text-color);
            font-size: 14px;
        }
        
        .post-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .post-date i {
            font-size: 14px;
        }
        
        .post-admin {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .admin-img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .admin-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* সিএটিএ বাটন */
        .cta-container {
            text-align: center;
            margin-top: 60px;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background: linear-gradient(to right, #0B8135, #2caa58);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
            gap: 8px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
        }
        
        /* রেসপন্সিভ ডিজাইন */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .blog-section {
                padding: 70px 0;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .section-header p {
                font-size: 16px;
            }
            
            .card-img {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
        }

        /* Awards & Achibments */
        .awards-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
            position: relative;
        }

        .section-title-awr {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.5rem;
            color: var(--text-color);
            font-weight: 700;
        }

        .awards-container {
            position: relative;
            overflow: hidden;
        }

        .awards-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .award-box {
            min-width: 100%;
            padding: 0 10px;
            background: transparent;
        }

        .award-box-inner {
            background: var(--bg-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .award-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .award-content {
            padding: 20px;
        }

        .award-title {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--text-color);
            font-weight: 600;
            line-height: 1.4;
        }

        .award-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .award-date {
            font-size: 0.9rem;
            color: var(--text-color);
        }

        .like-section {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .like-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            color: var(--text-color);
            transition: all 0.3s ease;
            padding: 5px;
        }

        .like-btn:hover {
            color: #e74c3c;
        }

        .like-btn.liked {
            color: #e74c3c;
        }

        .like-count {
            font-size: 0.9rem;
            color: #7f8c8d;
            font-weight: 500;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #2c3e50;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #f1f1f1;
        }

        .nav-btn.prev {
            left: 10px;
        }

        .nav-btn.next {
            right: 10px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #2c3e50;
            transform: scale(1.2);
        }

        @media (min-width: 576px) {
            .award-box {
                min-width: calc(50% - 20px);
            }
        }

        @media (min-width: 768px) {
            .award-box {
                min-width: calc(33.33% - 20px);
            }
        }

        @media (min-width: 992px) {
            .award-box {
                min-width: calc(25% - 20px);
            }
        }

        @media (min-width: 1200px) {
            .award-box {
                min-width: calc(20% - 20px);
            }
            
            .nav-btn.prev {
                left: -20px;
            }
            
            .nav-btn.next {
                right: -20px;
            }
        }

        /* Project Category */
        .categories-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: #2c3e50;
            font-weight: 700;
        }

        .categories-container {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 20px;
        }

        .category-box {
            background: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .category-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .category-count {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 10px;
            font-family: 'Arial', sans-serif;
        }

        .category-name {
            font-size: 1rem;
            color: #34495e;
            font-weight: 600;
        }

        @media (max-width: 1200px) {
            .categories-container {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        @media (max-width: 992px) {
            .categories-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .categories-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 576px) {
            .categories-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .category-count {
                font-size: 2rem;
            }
        }

        @media (max-width: 400px) {
            .categories-container {
                grid-template-columns: 1fr;
            }
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 50px 0 20px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--footer-bg);
            opacity: 0.9;
            z-index: 0;
        }

        .footer-content {
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            
            
        }
        .footer-logo img{
            max-height: 50px;
            width: auto;
            object-fit: contain;
        }

        .footer-text {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .footer-links h5 {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: white;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
            font-size: 14px;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--card-bg);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 5px 0 15px rgba(0,0,0,0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .mobile-menu-title {
            font-weight: 700;
            color: var(--primary-color);
        }

        .close-menu {
            font-size: 20px;
            cursor: pointer;
            color: var(--text-color);
        }

        .mobile-menu-icons {
            display: flex;
            justify-content: space-around;
            padding: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .mobile-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
        }

        .mobile-icon i {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .mobile-icon span {
            font-size: 12px;
            color: var(--text-color);
        }

        .mobile-nav {
            padding: 20px;
        }

        .mobile-nav-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .mobile-nav-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .mobile-nav-link {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            transition: all 0.3s;
        }

        .mobile-nav-link:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .mobile-dropdown {
            padding-left: 15px;
            display: none;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown-item {
            padding: 8px 0;
        }

        .mobile-social {
            padding: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        @media (min-width: 769px) {
            .navbar {
                position: sticky;
                top: 0;
                z-index: 999;
                background-color: var(--bg-color);
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
        }

        @media (max-width: 768px) {
            .header {
                position: sticky;
                top: 0;
                z-index: 1000;
                background-color: var(--bg-color);
            }
            .project-mizan-pro-project {
                min-width: 50%;
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .banner-title {
                font-size: 2rem;
            }
            
            .banner-text {
                font-size: 1rem;
            }

            .banner-img {
                height: 400px;
            }
            .project {
                min-width: 33.33%;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .menu-icon {
                display: block;
            }
            
            .banner-container {
                margin: 0 15px;
            }
            
            .banner-img {
                height: 300px;
            }
            
            .banner-title {
                font-size: 1.3rem;
            }
            
            .slide-btn {
                width: 40px;
                height: 40px;
                font-size: 8px;
            }

            .banner-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .footer-links {
                margin-bottom: 30px;
            }
        }

        @media (min-width: 769px) {
            .mobile-nav {
                display: none;
            }
            
            .menu-icon {
                display: none;
            }
        }
        @media (max-width: 576px) {
            .project-mizan-pro-project {
                min-width: 100%;
            }
        }
    