        :root {
			
            --text-primary: #2a6496;
            --text-accent: #4CAF50;
            --text-dark: #333;
            --text-light: #fff;
            --text-link: #2a7de1;
            --text-border: #d1e3f8;
            --text-bg: #f9f9f9;
        }
        
      body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
        }
        
        
        .portfol {
            margin: 0 auto;
            padding: 20px 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }
        
        .portfol_header {
            text-align: center;
            margin-bottom: 30px;
            margin-top: 40px;
            padding: 0 15px;
        }
        
        .portfol_h2 {
            font-size: 28px;
            color: var(--text-primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .portfol_h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--text-primary);
        }
        
        .portfol_header p {
            font-size: 16px;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.5;
        }
        
        .portfol_header strong {
            color: var(--text-dark);
        }
        
        .portfol_carousel-container {
            position: relative;
			width: 100%;
			overflow: hidden;
			padding: 0 10px;
			box-sizing: border-box;
			justify-content: revert-layer;
			max-width: 1200px;
			margin: 0 auto;
        }
        
        .portfol_carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 15px;
            padding: 15px 5px;
            margin-bottom: 15px;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
        }
        
        .portfol_carousel::-webkit-scrollbar {
            display: none;
        }
        
        .portfol_item {
            flex: 0 0 85%;
            scroll-snap-align: start;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--text-border);
            flex-shrink: 0;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .portfol_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-color: var(--text-accent);
        }
        
        .portfol_image {
            height: 400px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        
        .portfol_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .portfol_item:hover .portfol_image img {
            transform: scale(1.05);
        }
        
        .portfol_title {
            padding: 15px;
            text-align: center;
            background: var(--text-bg);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .portfol_title h3 {
            font-size: 18px;
            color: var(--text-primary);
            margin: 0 0 5px 0;
            font-weight: 600;
        }
        
        .portfol_title p {
            font-size: 14px;
            color: var(--text-dark);
            margin: 0;
        }
        
       
        .portfol_arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            border: none;
            color: var(--text-primary);
            font-size: 20px;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .portfol_arrow:hover {
            background-color: var(--text-border);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .portfol_arrow-left {
            left: 5px;
            display: none;
        }
        
        .portfol_arrow-right {
            right: 5px;
        }
        
      
        .portfol_modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
            touch-action: pan-y;
        }
        
        .portfol_modal-content-container {
            display: flex;
            height: 100%;
            width: 100%;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .portfol_modal-slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .portfol_modal-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .portfol_modal-content {
            max-width: 95%;
            max-height: 80vh;
            border: 5px solid var(--text-light);
            border-radius: 5px;
            touch-action: pan-y;
            object-fit: contain;
        }
        
        .portfol_close {
			padding: 8px;
            position: absolute;
            top: 15px;
            right: 25px;
            color: var(--text-accent);
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 1001;
        }
        
        .portfol_close:hover {
            color: white;
        }
        
        .portfol_nav {
            text-align: center;
            margin-top: 20px;
            padding-bottom: 10px;
        }
        
        .portfol_dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--text-border);
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .portfol_dot.active {
            background: var(--text-primary);
            transform: scale(1.2);
        }
        
        
        .portfol_modal-arrow {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            border: none;
            color: var(--text-primary);
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .portfol_modal-arrow:hover {
            background-color: var(--text-border);
            color: white;
        }
        
        .portfol_modal-arrow-left {
            left: 15px;
        }
        
        .portfol_modal-arrow-right {
            right: 15px;
        }
        
     
        @media (min-width: 768px) {
            .portfol {
                padding: 30px;
                max-width: 100%;
            }
            
            .portfol_header {
                margin-top: 60px;
                margin-bottom: 40px;
            }
            
            .portfol_h2 {
                font-size: 32px;
            }
            
            .portfol_header p {
                font-size: 18px;
            }
            
            .portfol_item {
                flex: 0 0 calc(33.333% - 20px);
            }
            
            .portfol_image {
                height: 450px;
            }
            
            .portfol_title {
                padding: 20px;
            }
            
            .portfol_title h3 {
                font-size: 20px;
            }
            
            .portfol_title p {
                font-size: 15px;
            }
            
            .portfol_arrow {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .portfol_arrow-left {
                left: 15px;
            }
            
            .portfol_arrow-right {
                right: 15px;
            }
            
            .portfol_modal-arrow {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .portfol_close {
                top: 20px;
                right: 35px;
                font-size: 40px;
            }
            
            .portfol_modal-content {
                max-width: 90%;
                max-height: 90%;
            }
        }