/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 10 2025 | 18:27:14 */
        :root {
            --primary: #00838F;
            --secondary: #f8f9fb;
            --accent: #FF6F61;
            --accent-light: #FF8A7A;
	    --bold: #E85A4F;
            --text: #2c3e50;
            --light-text: #7f8c8d;
            --dark-bg: #006b76;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif !important;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: var(--text);
            background-color: var(--secondary);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 300;
            font-size: 16px;
        }
        
        /* Common Elements */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        section {
            padding: 100px 0;
        }
        
        h1, h2, h3, h4 {
            font-weight: 400;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 72px;
            font-weight: 300;
            letter-spacing: -1px;
            line-height: 1.1;
        }
        
        h2 {
            font-size: 42px;
            margin-bottom: 40px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .text-accent {
            color: var(--accent);
	    font-size: 40px;
        }
        .text-bold {
            color: var(--bold);
	    font-weight: bold;
	            }

        .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -15px;
            width: 60px;
            height: 2px;
            background-color: var(--accent);
            transform: translateX(-50%);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-color: var(--secondary);
            text-align: center;
        }
        
       .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 800px;
        }
        
        .hero-subtitle {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .hero-text {
            margin: 30px 0 40px;
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            position: relative;
            overflow: hidden;
            height: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
        }
        
        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
            padding: 40px;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .service-card:hover .service-overlay {
            transform: translateY(0);
        }
        
        .service-card:hover .service-image {
            transform: scale(1.05);
        }
        
        .service-number {
            font-size: 60px;
            font-weight: 700;
            color: var(--accent);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 15px;
        }
        
        .service-title {
            color: var(--primary);
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .service-description {
            color: var(--text);
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
            transition: var(--transition);
        }
        
        .service-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--accent);
        }
        
        .service-link:hover {
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            padding: 20px 0;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
            text-align: center;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 50px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 70px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .service-card {
                height: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .service-overlay {
                padding: 30px 25px;
            }
        }
    </style>