@font-face {
    font-family: 'Rabar_038';
src: url("Rabar_038.ttf");
}
  :root {
            --primary: #598181;
            --primary-dark: #202b2c;
            --accent: #749c9b;
            --bg-light: #f8fbfc;
            --white: #ffffff;
            --text-main: #354244;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:  'Rabar_038', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background-color: rgba(32, 43, 44, 0.95);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 1.2rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 1px;
        }

        nav span {
            background: rgba(255,255,255,0.1);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(32, 43, 44, 0.7)),
                        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 5%;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .cta-btn {
            background-color: var(--accent);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(116, 156, 155, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            background-color: var(--primary);
            box-shadow: 0 15px 25px rgba(116, 156, 155, 0.4);
        }

        /* Services */
        .section {
            padding: 6rem 8%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.02);
            text-align: center;
        }

        .card i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-bottom: 5px solid var(--accent);
        }

        .card h3 {
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        /* Contact Section */
        .contact-box {
            background: var(--primary-dark);
            border-radius: 30px;
            padding: 4rem 2rem;
            color: white;
            text-align: center;
        }

        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255,255,255,0.05);
            padding: 20px 30px;
            border-radius: 15px;
            min-width: 250px;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
            color: white;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.1);
            transform: scale(1.05);
        }

        .contact-item i {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--accent);
        }

        /* Footer */
        footer {
            background-color: #1a2223;
            color: #94a3a8;
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .section { padding: 4rem 5%; }
        }
