

        :root {
            /* Light Theme Colors */
            --primary-color: #0b8135;
            --secondary-color: #6c757d;
            --background-color: #f5f7ff;
            --text-color: #212529;
            --header-bg: #f8f9fa;
            --card-bg: #ffffff;
            --border-color: #dee2e6;
            --footer-bg: #343a40;
            --footer-text: #f8f9fa;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --light-color: #ecf0f1;
            --icon-color: #0b8135;
            --accent-color: #0b8135;
        }

        [data-theme="dark"] {
            /* Dark Theme Colors */
            --primary-color: orange;
            --secondary-color: #adb5bd;
            --background-color: #212529;
            --text-color: #f8f9fa;
            --header-bg: #343a40;
            --card-bg: #2b3035;
            --border-color: #495057;
            --footer-bg: #212529;
            --footer-text: #e9ecef;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            --light-color: #2d2d2d;
            --icon-color: orange;
            --accent-color: orange;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Top Header */
        .top-header {
            background-color: var(--header-bg);
            padding: 8px 15px;
            font-size: 14px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .top-header-content {
            display: flex;
            align-items: center;
        }
        
        .top-header i {
            margin-right: 8px;
            color: var(--icon-color);
        }
        
        /* Middle Header */
        .middle-header {
            background-color: var(--card-bg);
            padding: 15px 25px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .middle-header-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
        }
        
        .contact-details {
            margin-left: 10px;
        }
        
        .contact-details p {
            margin-bottom: 0;
            font-size: 13px;
            color: var(--text-color);
        }
        
        .contact-details small {
            font-size: 12px;
            color: var(--secondary-color);
            display: block;
        }
        
        .profile-icons {
            display: flex;
            gap: 25px;
            font-size: 20px;
        }
        
        .profile-icons i {
            color: var(--icon-color);
        }
        
        /* Navbar */
        .navbar {
            background-color: var(--card-bg);
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 30px;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .dark-mode-toggle, .mobile-menu-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-color);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--card-bg);
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: left 0.3s ease;
            padding: 20px;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-color);
        }
        
        .mobile-menu-buttons {
            display: flex;
            justify-content: space-around;
            margin-bottom: 30px;
        }
        
        .mobile-menu-buttons button {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-color);
        }
        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            transition: color 0.3s ease;
        }
        .mobile-nav-links a:hover,
        .mobile-nav-links a:focus,
        .mobile-nav-links a.active {
            color: #0b8135;
            border-bottom: 3px solid #0b8135;
            padding-bottom: 7px;
        }
        
        .mobile-dropdown-btn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 10px 0;
            font-weight: 500;
            color: var(--text-color);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-dropdown-content {
            display: none;
            padding-left: 15px;
        }
        
        .mobile-dropdown-content a {
            display: block;
            padding: 8px 0;
            text-decoration: none;
            color: var(--secondary-color);
        }
        
        .mobile-menu-banner {
            width: 100%;
            height: 100px;
            background-color: var(--header-bg);
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            font-size: 12px;
            color: var(--secondary-color);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Nav Links for Desktop */
        .nav-links {
            display: none;
            
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            margin: 0 10px;
            font-weight: bold;
            padding-bottom: 5px;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-links a:hover,
        .nav-links a:focus,
        .nav-links a:active {
            color: #0b8135;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 3px;
            background-color: #0b8135;
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after,
        .nav-links a:focus::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--card-bg);
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border: 1px solid var(--border-color);
        }
        
        .dropdown-content a {
            color: var(--text-color);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 12px;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        /* Banner Section */
        .banner {
            padding: 60px 15px;
            background-color: var(--header-bg);
            text-align: center;
        }
        
        .banner h1 {
            color: var(--text-color);
        }
        
        .banner p {
            color: var(--secondary-color);
        }

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        .banner-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .banner-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .banner-slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .banner-box {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .banner-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .buttons-container {
            position: absolute;
            bottom: 40px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 0 20px;
            z-index: 10;
        }

        /* ====================================Benner=================== */
        

        /* Button Styles */
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            min-width: 170px;
            text-align: center;
            border: none;
            outline: none;
        }

        .primary-btn {
            background-color: #4a6bff;
            color: white;
            border: 2px solid #4a6bff;
        }

        .secondary-btn {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        /* Button Hover Effects */
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .primary-btn:hover {
            background-color: #3a5aef;
        }

        .secondary-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* Arrow Icon */
        .action-btn i {
            margin-left: 8px;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .action-btn:hover i {
            transform: translateX(4px);
        }

        .banner-buttons {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 2;
        }

        .banner-btn {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background-color: #ffffff;
            color: #333;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .banner-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        .banner-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .banner-dot.active {
            background-color: #333;
        }
        @media (max-width: 992px){
            .action-btn {
                padding: 12px 25px;
                min-width: 150px;
            }
        }

        @media (max-width: 768px) {
            .banner-buttons {
                bottom: 20px;
                flex-direction: row;
                width: 90%;
                justify-content: center;
            }

            .banner-btn {
                padding: 10px 18px;
                font-size: 14px;
            }

            .banner-container {
                padding: 10px;
            }

            .banner-slide {
                padding: 0 10px;
            }
            .buttons-container {
                bottom: 30px;
                gap: 15px;
            }
            
            .action-btn {
                padding: 10px 20px;
                font-size: 15px;
                min-width: 140px;
            }
        }

        @media (max-width: 480px) {
            .banner-buttons {
                bottom: 15px;
                gap: 10px;
            }

            .banner-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .banner-dot {
                width: 10px;
                height: 10px;
            }
            .buttons-container {
                bottom: 20px;
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .action-btn {
                padding: 8px 16px;
                font-size: 14px;
                min-width: 130px;
            }
            
        }
        @media (max-width: 576px) {
                .buttons-container {
                bottom: 20px;
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .action-btn {
                padding: 8px 16px;
                font-size: 14px;
                min-width: 130px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
        }
        
        /* Services Section */
        .services {
            padding: 60px 15px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            color: var(--text-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .service-card {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border: 1px solid var(--border-color);
        }
        
        .service-card h3 {
            color: var(--primary-color);
        }
        
        .service-card p {
            color: var(--secondary-color);
        }

        .container-marquee-service{
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            overflow-x: hidden;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            background-color: rgba(37, 99, 235, 0.05);
            border-radius: 8px;
            padding: 1rem 0;
            margin: 2rem 0;
        }

        .marquee {
            display: flex;
            width: max-content;
            animation: scroll 30s linear infinite;
        }

        .marquee:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            background-color: var(--card-bg);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin: 0 1rem;
            min-width: 250px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .marquee-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .marquee-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
        }

        .marquee-content h3 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .marquee-content p {
            font-size: 0.9rem;
            color: var(--light-text);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.5rem;
            }

            .marquee-item {
                min-width: 200px;
                padding: 1rem;
                margin: 0 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .marquee-item {
                min-width: 180px;
                padding: 0.75rem;
                margin: 0 0.5rem;
            }

            .marquee-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .marquee-content h3 {
                font-size: 1rem;
            }

            .marquee-content p {
                font-size: 0.8rem;
            }
        }
        
        /* Footer */
        

        .footer-container {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo {
            width: 150px;
            margin-bottom: 20px;
        }

        .footer-about {
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 15px;
            font-size: 18px;
            color: var(--icon-color);
        }

        .footer-heading {
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--icon-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

        .footer-links a:hover {
            color: var(--icon-color);
            transform: translateX(5px);
        }

        .post-item {
            display: flex;
            margin-bottom: 20px;
        }

        .post-thumb {
            width: 60px;
            height: 60px;
            background: var(--icon-color);
            border-radius: 5px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a2a6c;
            font-weight: bold;
        }
        .post-thumb img {
            width: 50px;
            height: 50px;
        }

        .post-content h4 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .post-content span {
            font-size: 12px;
            color: #ddd;
        }

        /* কপিরাইট সেকশন */
        .copyright {
            background: var(--header-bg);
            padding: 20px 0;
            text-align: center;
        }

        .copyright-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .copyright-text {
            font-size: 14px;
            color: var(--text-color);
        }

        .policy-links {
            display: flex;
        }

        .policy-links a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 20px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .policy-links a:hover {
            color: var(--icon-color);
        }

        /* রেসপন্সিভ স্টাইলিং */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                width: 100%;
                margin-bottom: 40px;
            }
            
            .copyright-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .policy-links {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .policy-links a {
                margin: 0 10px;
            }
        }
        
        /* Desktop Styles */
        @media (min-width: 992px) {
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 15px;
            }
            
            .top-header-content {
                justify-content: center;
            }
            
            .contact-info {
                flex-wrap: nowrap;
                gap: 30px;
            }
            
            .nav-links {
                display: flex;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .profile-icons {
                display: flex;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            /* .footer-content {
                grid-template-columns: repeat(3, 1fr);
            } */
        }


        /* ============team project achib==================== */

        .stats-mizan-body{
            display: flex;
            justify-content: center;
            align-items: center;
            /* min-height: 100vh; */
            background-color: var(--background-color);
            padding: 10px 50px;
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1200px;
            background-color: var(--background-color);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px 20px;
            gap: 20px;
            overflow: hidden;
            z-index: 1;
            position: relative;
        }
        .stats-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80'); */
            background-size: cover;
            background-position: center;
            filter: blur(20px) brightness(1.7);
            z-index: -1;
            opacity: 0.9;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 150px;
            padding: 15px;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--icon-color);
        }
        
        .count {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 5px;
            height: 40px;
            display: flex;
            align-items: flex-end;
        }
        
        .count-value {
            display: inline-block;
        }
        
        .plus-sign {
            font-size: 1.5rem;
            margin-left: 2px;
            color: var(--icon-color);
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-color);
            text-align: center;
            font-weight: 500;
            margin-top: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .stats-container {
                padding: 30px 15px;
            }
            
            .stat-item {
                min-width: 120px;
                padding: 10px;
            }
            
            .stat-icon {
                font-size: 2rem;
            }
            
            .count {
                font-size: 1.5rem;
                height: 30px;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .stats-container {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                padding: 15px 10px;
                gap: 5px;
            }
            
            .stat-item {
                min-width: calc(25% - 5px);
                padding: 8px 5px;
                margin: 0;
                flex: 1;
                text-align: center;
                white-space: nowrap;
            }
            
            .stat-icon {
                font-size: 1.1rem;
                margin-bottom: 5px;
            }
            
            .count {
                font-size: 1.1rem;
                height: 22px;
            }
            .plus-sign {
                font-size: 1rem;
            }
            
            .stat-label {
                font-size: 0.65rem;
                white-space: nowrap;
            }
        }
        /* ======= about ======== */

        /* .container-about-mizan-body{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        } */
        .container-about-mizan {
            max-width: 1200px;
            margin: 30px auto;
            padding: 30px;
            background: var(--background-color);
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        @media (min-width: 992px) {
            .main-content {
                flex-direction: row;
            }
        }
        
        .profile-section {
            flex: 1;
        }
        
        .steps-section {
            flex: 1;
        }
        
        .profile-header {
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }
        
        @media (min-width: 768px) {
            .profile-header {
                flex-direction: row;
                gap: 30px;
                align-items: flex-start;
            }
        }
        
        @media (min-width: 992px) {
            .profile-header {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        .profile-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-color);
            box-shadow: var(--shadow);
            margin: 0 auto 20px;
        }
        
        @media (min-width: 768px) {
            .profile-image {
                margin: 0;
                width: 150px;
                height: 150px;
            }
        }
        
        @media (min-width: 992px) {
            .profile-image {
                width: 180px;
                height: 180px;
                margin: 0 auto 20px;
            }
        }
        
        .profile-content {
            flex: 1;
        }
        
        h1 {
            color: var(--text-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            h1 {
                text-align: left;
                font-size: 1.3rem;
            }
        }
        
        @media (min-width: 992px) {
            h1 {
                text-align: center;
                font-size: 1.4rem;
            }
        }
        
        .expertise-list {
            margin-top: 15px;
        }
        
        .expertise-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        
        .tick-mark {
            color: var(--icon-color);
            font-size: 1.3rem;
            margin-right: 10px;
            min-width: 20px;
        }
        
        .skills-section {
            margin-top: 30px;
        }
        
        .section-title {
            margin-bottom: 25px;
            color: var(--dark-color);
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            position: absolute;
            bottom: 0;
            left: 0;
            border-radius: 3px;
        }
        
        .skill {
            margin-bottom: 20px;
        }
        
        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .skill-name {
            font-weight: bold;
            font-size: 1rem;
            color: var(--text-color);
        }
        
        .skill-percent {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .progress-container {
            height: 8px;
            background-color: var(--light-color);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            border-radius: 4px;
            width: 0;
            transition: width 1.5s ease-in-out;
            position: relative;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            animation: shimmer 2s infinite;
        }
        
        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 20px;
        }
        
        .step {
            display: flex;
            gap: 15px;
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            background-color: var(--header-bg);
            color: var(--icon-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .step-description {
            color: var(--secondary-color);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* ==== services ===== */
         /* ব্যাকগ্রাউন্ড স্টাইল */
        .service-section {
            position: relative;
            /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80'); */
            background-size: cover;
            background-color: var(--background-color);
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            color: white;
        }
        
        /* .service-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3px);
            z-index: 0;
        } */
        
        .container-service-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        /* সেকশন হেডার স্টাইল */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header i {
            font-size: 2.5rem;
            color: var(--icon-color);
            margin-bottom: 15px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--text-color);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-color);
            /* color: rgba(255, 255, 255, 0.8); */
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* সার্ভিস কন্টেইনার স্টাইল */
        .services-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        /* মাঝের ডেকোরেটিভ এলিমেন্ট */
        .center-decoration {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: rotate 20s linear infinite;
            pointer-events: none;
            z-index: 0;
            display: none;
        }
        
        @keyframes rotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        /* সার্ভিস কলাম স্টাইল */
        .services-column {
            width: calc(50% - 15px);
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        /* সার্ভিস বক্স স্টাইল */
        .service-box {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            border-radius: 15px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(78, 84, 200, 0.3), rgba(143, 148, 251, 0.3));
            z-index: -1;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .service-box:hover::before {
            opacity: 1;
        }
        
        /* ক্রিটিকেল বৃত্ত ইফেক্ট */
        .service-box:hover::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
            border-radius: 50%;
            top: var(--y);
            left: var(--x);
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0;
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(3);
                opacity: 0;
            }
        }
        
        /* সার্ভিস কন্টেন্ট স্টাইল */
        .service-content {
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4e54c8, #8f94fb);
            color: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .service-box h3 {
            font-size: 1.4rem;
            color: var(--text-color);
            /* color: white; */
            margin-bottom: 5px;
        }
        
        .service-box p {
            color: var(--text-color);
            /* color: rgba(255, 255, 255, 0.8); */
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        /* রিড মোর বাটন স্টাইল */
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            color: var(--icon-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            width: fit-content;
        }
        
        .read-more-btn::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover::after {
            width: 100%;
        }
        
        .read-more-btn i {
            margin-left: 8px;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover i {
            transform: translateX(5px);
        }
        
        /* রেস্পন্সিভ ডিজাইন */
        @media (min-width: 1200px) {
            .center-decoration {
                display: block;
            }
        }
        
        @media (max-width: 1200px) {
            .services-column {
                width: 100%;
            }
            
            .service-box {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .service-title {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* ================ digital marketing ================== */
        .container-banner-mizan {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* বেনার সেকশন স্টাইল */
        .banner-banner-mizan {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80');
            background-size: cover;
            background-position: center;
            min-height: 40vh;
            display: flex;
            align-items: center;
            padding: 60px 0;
            color: white;
            text-align: center;
        }

        .banner-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .banner-banner-mizan h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--white);
        }

        .banner-banner-mizan p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* সিক্রেট সেকশন স্টাইল */
        .secret-section {
            padding: 80px 0;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* ডেস্কটপ ভিউ */
        .desktop-process {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 20px;
            margin-top: 10px;
            padding: 0 50px;
        }

        .process-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
            min-width: 250px;
        }

        .process-item {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            background: var(--white);
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .process-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .process-number {
            width: 60px;
            height: 60px;
            /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
            color: var(--icon-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
        }

        .process-item h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .process-item p {
            color: var(--text-color);
            font-size: 1rem;
            line-height: 1.4;
        }

        .center-image {
            flex: 0 0 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .center-image img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .center-image img:hover {
            transform: scale(1.03);
        }

        /* মোবাইল ভিউ */
        .mobile-process {
            display: none;
            flex-direction: column;
            gap: 40px;
            margin-top: 40px;
            padding: 0 20px;
        }

        .mobile-step {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* রেস্পন্সিভ ডিজাইন */
        @media (max-width: 992px) {
            .banner-banner-mizan {
                min-height: 35vh;
            }
            
            .banner-banner-mizan h1 {
                font-size: 2rem;
            }
            
            .desktop-process {
                display: none;
            }
            
            .mobile-process {
                display: flex;
            }
            
            .process-item {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .banner-banner-mizan {
                min-height: 30vh;
                padding: 40px 0;
            }
            
            .banner-banner-mizan h1 {
                font-size: 1.8rem;
            }
            
            .banner-banner-mizan p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .center-image img {
                max-width: 250px;
            }
            
            .process-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .process-item h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .banner-banner-mizan {
                min-height: 25vh;
            }
            
            .banner-banner-mizan h1 {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .process-item {
                padding: 25px 15px;
            }
            
            .process-item h3 {
                font-size: 1.2rem;
            }
            
            .center-image img {
                max-width: 350px;
            }
        }



/* ================= Service carosal sectin=========== */

        .container-service-mizan {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* হেডার সেকশন */
        .header-service-mizan {
            text-align: center;
            padding: 60px 0 40px;
        }

        .header-service-mizan h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .header-service-mizan p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }

        /* সার্ভিস কারousel সেকশন */
        .services-section {
            padding: 30px 0 60px;
        }

        .services-carousel {
            position: relative;
            margin: 0 auto;
            max-width: 1000px;
        }

        .carousel-container {
            overflow: hidden;
            position: relative;
            border-radius: 15px;
            box-shadow: var(--shadow);
            background: var(--white);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .service-item {
            flex: 0 0 calc(100% / 3);
            padding: 15px 10px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }

        .service-item.active {
            border-bottom: 3px solid var(--accent-color);
            background-color: rgba(59, 89, 152, 0.05);
        }

        .service-item:hover {
            background-color: rgba(59, 89, 152, 0.08);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin: 0 auto 15px;
            box-shadow: 0 5px 15px rgba(59, 89, 152, 0.2);
        }

        .service-item h3 {
            font-size: 0.90rem;
            color: var(--primary-color);
            margin-bottom: 3px;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .carousel-btn:hover {
            background: var(--primary-color);
            /* color: var(--white); */
        }

        .carousel-btn.prev {
            left: -25px;
        }

        .carousel-btn.next {
            right: -25px;
        }

        /* ডিটেইলস সেকশন */
        .service-details {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin-top: 50px;
            padding: 40px;
            border-radius: 15px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .details-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .details-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .details-image img:hover {
            transform: scale(1.03);
        }

        .details-content {
            flex: 1;
            min-width: 300px;
        }

        .details-content h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .details-content p {
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .contact-btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .contact-btn:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        /* রেস্পন্সিভ ডিজাইন */
        @media (max-width: 992px) {
            .service-item {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 768px) {
            .header-service-mizan h1 {
                font-size: 2.2rem;
            }
            
            .header-service-mizan p {
                font-size: 1rem;
            }
            
            .service-item {
                flex: 0 0 100%;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .carousel-btn.prev {
                left: -20px;
            }
            
            .carousel-btn.next {
                right: -20px;
            }
            
            .service-details {
                flex-direction: column;
                padding: 30px 20px;
            }
            
            .details-image, .details-content {
                min-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .header-service-mizan {
                padding: 40px 0 30px;
            }
            
            .header-service-mizan h1 {
                font-size: 1.8rem;
            }
            
            .services-section {
                padding: 30px 0 40px;
            }
            
            .service-details {
                margin-top: 30px;
            }
            
            .details-content h2 {
                font-size: 1.5rem;
            }
        }

        /* last desig================= */

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* হেডার সেকশন */
        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .header p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
        }

        /* সার্ভিস বক্স সেকশন */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .service-box {
            background: var(--white);
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(78, 84, 200, 0.25);
            transition: var(--transition);
        }

        .service-box:hover .service-icon {
            transform: rotate(10deg) scale(1.15);
        }

        .service-box h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-box p {
            color: var(--text-color);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* রেস্পন্সিভ ডিজাইন */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .service-box {
                padding: 25px 20px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            
            .service-box h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 30px 15px;
            }
            
            .header {
                margin-bottom: 40px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-box {
                padding: 25px 20px;
            }
            
            .service-icon {
                width: 65px;
                height: 65px;
                font-size: 1.6rem;
                margin-bottom: 18px;
            }
            
            .service-box h3 {
                font-size: 1.2rem;
            }
        }

        /* আনিমেশন */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-box {
            animation: fadeIn 0.6s ease forwards;
        }

        .service-box:nth-child(1) { animation-delay: 0.1s; }
        .service-box:nth-child(2) { animation-delay: 0.2s; }
        .service-box:nth-child(3) { animation-delay: 0.3s; }
        .service-box:nth-child(4) { animation-delay: 0.4s; }
        .service-box:nth-child(5) { animation-delay: 0.5s; }
        .service-box:nth-child(6) { animation-delay: 0.6s; }
        .service-box:nth-child(7) { animation-delay: 0.7s; }
        .service-box:nth-child(8) { animation-delay: 0.8s; }

        /* ========================Testimonial=================== */
        .section-testimonial-mizan {
            background-color: var(--background-color);
            /* background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); */
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            color: var(--text-color);
        }
        .testimonial-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .section-title-testimonial-mizan {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background-color: var(--card-bg);
            /* background: linear-gradient(90deg, #00c9ff 0%, #92fe9d 100%); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .testimonials-wrapper {
            position: relative;
            padding: 20px 0;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .testimonial-card {
            background-color: var(--background-color);
            /* background: rgba(255, 255, 255, 0.08); */
            border-radius: 20px;
            overflow: hidden;
            min-width: 100%;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00c9ff 0%, #92fe9d 100%);
        }
        
        .quote-icon {
            font-size: 2.5rem;
            color: var(--icon-color);
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .testimonial-content {
            flex: 1;
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            color: var(--text-color);
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 300;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .client-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid rgba(0, 201, 255, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h3 {
            color: var(--text-color);
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .client-details p {
            color: var(--icon-color);
            font-size: 0.9rem;
        }
        
        .rating {
            margin-top: 10px;
        }
        
        .rating i {
            color: #ffce47;
            margin-right: 3px;
            font-size: 1.1rem;
        }
        
        .navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }
        
        .nav-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            margin: 0 15px;
            transition: all 0.3s ease;
            color: var(--text-color);
            font-size: 1.2rem;
        }
        
        .nav-btn:hover {
            background: linear-gradient(90deg, #00c9ff 0%, #92fe9d 100%);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .play-pause {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            margin: 0 15px;
            transition: all 0.3s ease;
            color: var(--icon-color);
            font-size: 1.2rem;
        }
        
        .play-pause:hover {
            background: linear-gradient(90deg, #d8af47 0%, #92fe9d 100%);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: var(--icon-color);
            transform: scale(1.3);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h1 {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .client-image {
                width: 60px;
                height: 60px;
            }
            
            .nav-btn, .play-pause {
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title h1 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .testimonial-card {
                padding: 25px;
            }
            
            .client-info {
                flex-direction: column;
                text-align: center;
            }
            
            .client-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .nav-btn, .play-pause {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .testimonial-card {
            animation: fadeIn 0.7s ease-out forwards;
        }
        
        /* Digital elements */
        .digital-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 201, 255, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(146, 254, 157, 0.2) 0%, transparent 40%);
        }
        
        .digital-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 201, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 201, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            z-index: -1;
        }

        /* =========================Team====================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title-team-mizan {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title-team-mizan h2 {
            font-size: 2.5rem;
            color: var(--text-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title-team-mizan h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--icon-color);
            border-radius: 2px;
        }

        .section-title-team-mizan p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Team slider styles */
        .team-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .team-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .team-member {
            flex: 0 0 calc(100% / 3);
            padding: 15px;
            transition: transform 0.3s ease;
        }

        .member-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .member-img {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .member-card:hover .member-img img {
            transform: scale(1.05);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            font-size: 1.4rem;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .member-info p {
            color: var(--icon-color);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .member-info .desc {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--icon-color);
            color: #2c3e50;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #81c590;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Navigation buttons */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }

        .slider-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: var(--icon-color);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav button:hover {
            background: #2980b9;
            transform: scale(1.05);
        }

        /* Dots indicator */
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #3498db;
            transform: scale(1.2);
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .team-member {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 768px) {
            .team-member {
                flex: 0 0 100%;
            }
            
            .section-title-team-mizan h2 {
                font-size: 2rem;
            }
            
            .section-title-team-mizan p {
                font-size: 1rem;
            }
        }

        /* =================================Project====================== */

        .container-project-mizan {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-title-project-mizan {
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-color);
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .section-title-project-mizan::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background: var(--icon-color);
            border-radius: 3px;
        }
        
        .slider-wrapper {
            position: relative;
            margin: 0 auto;
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
        }
        
        .projects-slider {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px 0;
        }
        
        .slides-container-project-mizan {
            display: flex;
            transition: transform 0.6s ease;
        }
        
        .slide-project-mizan {
            flex: 0 0 100%;
            padding: 15px;
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 100%;
        }
        
        .project-card {
            background: var(--background-color);
            border-radius: 16px;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            margin: 0 10px;
        }
        
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .project-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-info {
            padding: 20px;
            text-align: center;
        }
        
        .project-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--text-color);
            font-weight: 600;
        }
        
        .project-name {
            font-size: 0.8rem;
            color: var(--icon-color);
            font-weight: 500;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            z-index: 10;
        }
        
        .slider-btn {
            background: var(--icon-color);
            color: #e7e6f0;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .slider-btn:hover {
            background: var(--icon-color);
            color: white;
            transform: scale(1.1);
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 12px;
        }
        
        .dot-project-mizan {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--icon-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot-project-mizan.active {
            background: white;
            transform: scale(1.3);
        }
        
        /* রেস্পন্সিভ স্টাইল */
        @media (min-width: 769px) {
            .slide-project-mizan {
                flex: 0 0 calc(100% / 3);
                min-width: calc(100% / 3);
            }
            
            .slides-container-project-mizan {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .slide-project-mizan {
                flex: 0 0 100%;
                min-width: 100%;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .project-image {
                height: 220px;
            }
            
            .project-title {
                font-size: 1.1rem;
            }
            
            .project-name {
                font-size: 0.9rem;
            }
            
            .slider-controls {
                padding: 0 5px;
            }
        }
        
        
        /*=========================== CONTACT_PAGE ======================*/
        
        header {
            background: linear-gradient(120deg, var(--primary), var(--primary-dark));
            color: var(--header-bg);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Hero Section */
        .hero-contact-mizan {
            text-align: center;
            padding: 60px 0;
            background-color: var(--card-bg);
            margin: 30px 0;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .hero-contact-mizan h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-contact-mizan p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Content */
        .contact-content-contact-mizan {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .contact-info-contact-mizan {
            flex: 1;
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info-contact-mizan h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray-light);
            font-size: 1.8rem;
        }
        
        .info-item-contact-mizan {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .info-item-contact-mizan:hover {
            background-color: var(--icon-color);
            transform: translateY(-3px);
        }
        
        .info-item-contact-mizan i {
            font-size: 22px;
            color: var(--primary-color);
            margin-right: 15px;
            min-width: 25px;
            background: var(--gray-light);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .info-item-contact-mizan div {
            flex: 1;
        }
        
        .info-item-contact-mizan h3 {
            color: var(--text-color);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        
        .info-item-contact-mizan p {
            color: var(--text-color);
            line-height: 1.5;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form-contact-mizan {
            flex: 1;
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form-contact-mizan h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--background-color);
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        button:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Map Section */
        .map-section {
            margin-bottom: 40px;
        }
        
        .map-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .faq-section h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--gray-light);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: var(--light);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p{
            color: var(--text-color);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 200px;
        }
        
        /* Footer */
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content-contact-mizan {
                flex-direction: column;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-contact-mizan h1 {
                font-size: 2.2rem;
            }
            
            .hero-contact-mizan p {
                font-size: 1rem;
            }
            
            .info-item-contact-mizan {
                flex-direction: column;
                text-align: center;
            }
            
            .info-item-contact-mizan i {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 576px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-contact-mizan {
                padding: 40px 20px;
            }
            
            .contact-info-contact-mizan, .contact-form-contact-mizan {
                padding: 20px;
            }
        }
        
        