*      {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Calibri', sans-serif;
            line-height: 1.6;
        }

        /* Sticky Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 25px;
            position: relative;
        }

        .navbar {
            z-index: 100;
        }

        .menu-icon {
            width: 28px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }

        .menu-icon span {
            width: 100%;
            height: 2.5px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-icon:hover span {
            background-color: #4CAF50;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            z-index: 1001;
            padding: 80px 30px 30px 30px;
            transition: left 0.3s ease;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu li {
            margin-bottom: 25px;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-family: 'Calibri', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #4CAF50;
            padding-left: 10px;
        }

        .menu-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .hero-section {
            height: 100vh;
            background: url('../img/background.jpeg') center/cover no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Overlay for better text contrast */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.93), rgba(0,0,0,0.99));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 50;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 50px 0 50px; /* Added top padding for sticky header */
            max-width: 600px;
        }

        .company-name {
            font-family: 'Cormorant', serif;
            color: #4CAF50;
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 2px;
        }

        .company-subtitle {
            font-family: 'Cormorant', serif;
            color: white;
            font-size: 1.1rem;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            font-weight: 400;
        }

        .tagline {
            font-family: 'Calibri', sans-serif;
            color: white;
            font-size: 0.95rem;
            margin-bottom: 35px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            line-height: 1.3;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .cta-button {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 16px;
            font-family: 'Calibri', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            width: fit-content;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        .services-section {
            position: absolute;
            bottom: -100px; /* Extended further to ensure overlap */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 18px;
            z-index: 60;
            width: 88%;
            max-width: 1100px;
        }

        .service-card {
            background: rgba(14, 12, 9, 0.95); /* #0E0C09 with 95% opacity */
            border: 1px solid rgba(255, 255, 255, 0.79); /* White stroke inside with 79% opacity */
            border-radius: 16px;
            padding: 22px;
            flex: 1;
            color: white;
            font-family: 'Calibri', sans-serif;
            box-shadow: 0 9px 25px rgba(0, 0, 0, 0.125); /* Drop shadow: 12.5% opacity, 9px spread, 25px blur */
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        .service-title {
            color: #4CAF50;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .service-description {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #e8e8e8;
            font-weight: 300;
        }

           .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.93), rgba(0,0,0,0.99));
            z-index: 1;
        }

        /* Next section for the placeholder to show cards overlap - DESKTOP ONLY */
        .next-section {
            height: 50vh;
            background: white;
            position: relative;
            z-index: 10;
            padding-top: 1px; /* less space for overlapping cards */
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .next-section {
                display: none !important;
            }
        }
