@import "tailwindcss";

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    }

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    }

.hero-video {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    }
        
.hero-video video {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    }
        
.back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            width: 50px;
            height: 50px;
            text-align: center;
            line-height: 50px;
            background: rgba(5, 135, 111, 0.7);
            color: white;
            border-radius: 50%;
            display: none;
            transition: all 0.3s;
    }
        
.back-to-top:hover {
            background: #2563eb;
            transform: translateY(-5px);
        }
        
.service-icon {
            transition: all 0.3s ease;
        }
        
.service-card:hover .service-icon {
            transform: rotateY(180deg);
            color: #2563eb;
        }
.service-card {
            position: relative;
            overflow: hidden;
            height: 380px;
        }
.texbox1 {
    position: relative;
    overflow: inherit;
    height: 120px;
}
        
.corner-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 160px;
            object-fit: cover;
            transform: translate(40px, -40px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            opacity: 0.9;
            mask-image: linear-gradient(to bottom right, 
                transparent 0%, 
                white 20%, 
                white 80%, 
                transparent 100%);
            transition: all 0.3s ease;
        }
@media (min-width: 768px) {
        .corner-image {
                width: 400px;
                height: 400px;
                transform: translate(60px, -60px);
            }
        }
.nav-link {
            position: relative;
        }
        
.nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #2563eb;
            transition: width 0.3s;
        }
        
.nav-link:hover::after {
            width: 100%;
            font-weight: 900;
        }
