@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

  .custom-size {
            width: 200px;
            height: 150px;
        }
        .top-shape {
            position: relative;
        }
        .top-shape::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 0;
            bottom: 0;
            width: 20px;
            background: linear-gradient(66deg, transparent 50%, #ff5900 50%);
        }
        .service-item {
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        .service-item:hover {
            transform: translateY(-5px);
        }
        .team-item {
            overflow: hidden;
            border-radius: 10px;
        }
        .team-text {
            transform: translateY(100%);
            transition: all 0.3s;
        }
        .team-item:hover .team-text {
            transform: translateY(0);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }
        .bg-secondary-light {
            background-color: #f8f9fa;
        }
        .bg-red{
           background-color: #F3525A !important;
        }

