@charset "UTF-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-yellow: #FFD700;
            --primary-black: #1a1a1a;
            --accent-orange: #d48806; /* Darker orange for the hero */
            --text-dark: #333;
            --text-light: #555;
            --bg-light: #f9f9f9;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        /* --- Header & Nav --- */
		.header {
			background: white;
			border-bottom: 4px solid var(--primary-yellow);
			box-shadow: 0 2px 10px rgba(0,0,0,0.05);
			position: sticky;
			top: 0;
			z-index: 1000;
		}

		.nav-container {
			max-width: 1200px;
			margin: 0 auto;
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 0.5rem 2rem;
		}

		/* Fixed Logo Styling */
		.logo img {
			width: 140px;       /* Sets the width */
			height: auto;       /* Keeps the logo from squishing */
			display: block;     /* Removes weird spacing gaps */
		}

		.nav-menu {
			display: flex;
			list-style: none;
			gap: 2.5rem;
		}
        /* Top Corner Logo - Now using the BreezyBee Icon */
		.logo img {
    		width: 140px;   /* Adjust size */
    		height: auto;   /* Keeps proportions */
    		display: block; /* Removes inline spacing */
			display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-black);
		}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-orange);
        }

        .menu-toggle {
            display: none;
            color: var(--primary-black);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- Hero Section --- */
        .hero {
            /* Changed to Dark Yellow/Orange Gradient */
            background: linear-gradient(135deg, #FFC107 0%, #e69500 100%);
            color: var(--primary-black); /* Dark text for contrast against yellow/orange */
            padding: 5rem 2rem 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
			content: '';
			position: absolute;
			top: 0; left: 0; right: 0; bottom: 0;

			/* NEW HONEYCOMB LOGIC:
			   This SVG draws the 'walls' of the honeycomb using a zig-zag pattern 
			   that ensures connections at the tile edges are seamless.
			*/
			background-image: url("data:image/svg+xml,%3Csvg width='60' height='104' viewBox='0 0 60 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 69 V104 M0 0 L30 17 V52 L0 69 M30 17 L60 0 M30 52 L60 69' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='square' opacity='0.2'/%3E%3C/svg%3E");

			/* This size is mathematically calculated for a perfect hexagon:
			   Width: 60px
			   Height: 104px (which is approx 60 * 1.732)
			*/
			background-size: 60px 104px; 

			/* Slight opacity boost so you can see it better */
			opacity: 0.3; 
		}

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* The Bee Icon above the Title Logo */
        .hero-bee-icon {
            max-width: 100px;
            height: auto;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
        }

        /* The Main Title LOGO Image */
        .hero-title-img {
            max-width: 50%;
            width: 300px; /* Good width for desktop */
            height: auto;
            margin-bottom: 1.5rem;
            border-radius: 4px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* Shadow to make it pop off the orange */
        }
		
		.logo-full img {
    		width: 1000px;   /* Adjust size */
    		height: auto;   /* Keeps proportions */

			display: block;
			/* color: var(--primary-black); */
		}

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: #1a1a1a; /* Dark text for readability */
            max-width: 700px;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary {
            background: var(--primary-black);
            color: #FFD700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary-black);
            color: var(--primary-black);
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        /* --- "Who We Serve" --- */
        .segments {
            padding: 5rem 2rem;
            background: var(--bg-light);
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-black);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .segment-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .segment-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            border-top: 5px solid var(--primary-yellow);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .segment-card:hover {
            transform: translateY(-5px);
        }

        .segment-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary-black);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .segment-card p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .segment-card ul {
            list-style: none;
        }

        .segment-card li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .segment-card li::before {
            content: "\1F41D"; /* This is the universal code for the Bee Emoji*/
            font-size: 0.8rem;
            position: absolute;
            left: 0;
            top: 3px;
        }

        /* --- Comprehensive Services --- */
        .services {
            padding: 5rem 2rem;
            background: white;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-item {
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            background: white;
        }

        .service-item:hover {
            border-color: var(--primary-yellow);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .service-item h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
            color: var(--primary-black);
        }

        .service-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .service-details {
            margin-top: 1rem;
            border-top: 1px solid #f0f0f0;
            padding-top: 1rem;
        }

        .service-details span {
            display: inline-block;
            background: #fff8e1;
            color: #d48806;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        /* --- Footer --- */
        .trust-section {
            background: var(--primary-black);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .trust-grid {
            max-width: 900px; /* Widened to fit the $2M text */
            margin: 2rem auto;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .trust-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }

        .trust-icon {
            font-size: 2rem;
            color: var(--primary-yellow);
            margin-bottom: 10px;
            display: block;
        }

        .trust-item h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        footer {
            background: #111;
            color: #888;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 5px solid var(--primary-yellow);
        }

        .footer-info {
            max-width: 600px;
            margin: 0 auto;
            font-size: 0.9rem;
        }

        /* Floating Bees Animation */
      /* --- Animations (Fixed & Improved) --- */
		.floating-bee {
			position: fixed;
			font-size: 30px; /* Made slightly larger */
			opacity: 0.4;    /* Increased opacity so they show up on the orange */
			pointer-events: none; /* Allows you to click "through" them */
			z-index: 50;     /* Raises them ABOVE the background but BELOW the menu */

			/* This adds a subtle shadow so the yellow bee pops against yellow backgrounds */
			filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); 
		}

		/* Individual start positions & specific animations */
		.b1 { 
			top: 15%; 
			left: 10%; 
			animation: floatOne 25s infinite ease-in-out; 
		}

		.b2 { 
			bottom: 20%; 
			right: 15%; 
			animation: floatTwo 32s infinite ease-in-out; 
			animation-delay: -5s; /* Starts animation mid-way so they aren't synced */
		}

		.b3 { 
			top: 40%; 
			right: 5%; 
			animation: floatThree 28s infinite ease-in-out; 
			animation-delay: -12s;
		}

		/* Animation 1: Drifts Down and Right */
		@keyframes floatOne {
			0% { transform: translate(0, 0) rotate(0deg); }
			33% { transform: translate(100px, 50px) rotate(10deg); }
			66% { transform: translate(50px, 150px) rotate(-5deg); }
			100% { transform: translate(0, 0) rotate(0deg); }
		}

		/* Animation 2: Drifts Up and Left */
		@keyframes floatTwo {
			0% { transform: translate(0, 0) rotate(0deg) scaleX(-1); } /* scaleX flips the bee to face left */
			33% { transform: translate(-120px, -80px) rotate(15deg) scaleX(-1); }
			66% { transform: translate(-60px, -150px) rotate(-10deg) scaleX(-1); }
			100% { transform: translate(0, 0) rotate(0deg) scaleX(-1); }
		}

		/* Animation 3: Lazy Circle */
		@keyframes floatThree {
			0% { transform: translate(0, 0) rotate(0deg); }
			50% { transform: translate(-80px, 80px) rotate(20deg); }
			100% { transform: translate(0, 0) rotate(0deg); }
		}
        /* --- Corrected Mobile Responsiveness --- */
		@media (max-width: 768px) {
		/* Make the big hero logo smaller on phones */
		.logo-full img { 
			width: 100%; 
			max-width: 300px; /* Prevents it from being huge */
		} 

		.nav-menu {
			display: none; /* Hide menu by default on mobile */
			flex-direction: column;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: white;
			padding: 1rem;
			box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			text-align: center;
		}

		/* This is the missing piece! It shows the menu when clicked */
		.nav-menu.active {
			display: flex; 
		}

		.menu-toggle { 
			display: block; /* Show hamburger button */
		}
	}


