
        :root {
            --primary: #F4AC16; /* Pleasant, elegant Golden Yellow */
            --primary-light: #FCE8B9;
            --primary-dark: #D4900C;
            --text-dark: #111827;
            --text-muted: #4B5563;
            --bg-light: #FAFAFA;
            --bg-white: #FFFFFF;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .section-padding {
            padding: 100px 0;
        }

        .tagline {
            display: inline-block;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            padding-left: 50px;
        }

        .tagline::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 2px;
            background-color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--bg-white);
            box-shadow: 0 10px 20px -10px var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px var(--primary-dark);
        }

        .btn-outline {
            border-color: var(--text-dark);
            color: var(--text-dark);
        }

        .btn-outline:hover {
            background-color: var(--text-dark);
            color: var(--bg-white);
        }

        .btn-outline-light {
            border-color: var(--bg-white);
            color: var(--bg-white) !important;
        }

        .btn-outline-light:hover {
            background-color: var(--bg-white);
            color: var(--text-dark) !important;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background-color: rgba(17, 24, 39, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            padding: 15px 0;
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--bg-white);
            transition: var(--transition);
        }

        .logo span {
            color: var(--primary);
        }
        
        .navbar.scrolled .logo {
            color: var(--bg-white);
        }
        
        .navbar.scrolled .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 1rem;
            color: var(--bg-white);
            position: relative;
        }
        
        .navbar.scrolled .nav-links a {
            color: var(--bg-white);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--bg-white);
        }
        
        .navbar.scrolled .menu-toggle {
            color: var(--bg-white);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            background-image: url('images/hero.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.6) 50%, rgba(17,24,39,0.2) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
        }

        .hero h1 {
            font-size: clamp(3rem, 5vw, 4.5rem);
            color: var(--bg-white);
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
        }
        
        .hero .btn-outline {
            border-color: var(--bg-white);
            color: var(--bg-white);
        }
        
        .hero .btn-outline:hover {
            background-color: var(--bg-white);
            color: var(--text-dark);
        }

        /* Stats Bar */
        .stats-bar {
            background-color: var(--primary);
            padding: 40px 0;
            position: relative;
            z-index: 20;
            margin-top: -50px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            gap: 20px;
        }

        .stat-item h2 {
            font-size: 3rem;
            color: var(--bg-white);
            margin-bottom: 5px;
        }

        .stat-item p {
            font-family: var(--font-heading);
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* About Section */
        .about {
            background-color: var(--bg-light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img-wrapper {
            position: relative;
        }
        
        .about-img {
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
        }

        .about-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-bottom: 4px solid var(--primary);
            text-align: center;
        }

        .about-badge h3 {
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .about-badge p {
            font-weight: 500;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.2;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }
        
        .principles-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }
        
        .principles-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .principles-list li i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Services Grid */
        .services {
            background-color: var(--bg-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-inline: auto;
        }

        .section-header h2 {
            font-size: 2.75rem;
            color: var(--text-dark);
            margin: 10px 0 20px;
        }

        .section-header p {
            color: var(--text-muted);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--bg-light);
            padding: 40px 30px;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 172, 22, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background-color: var(--bg-white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 1.5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background-color: var(--text-dark);
            color: var(--bg-white);
        }

        .service-card h3 {
            font-size: 1.35rem;
            margin-bottom: 15px;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .service-card:hover h3 {
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-muted);
            transition: var(--transition);
        }

        .service-card:hover p {
            color: rgba(17, 24, 39, 0.8);
        }

        /* Expertise Highlights */
        .expertise-highlight {
            padding: 80px 0;
        }
        
        .expertise-highlight:nth-child(even) {
            background-color: var(--bg-light);
        }
        
        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .expertise-content h2 {
            font-size: 2.25rem;
            margin-bottom: 20px;
        }
        
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 25px 0;
        }
        
        .tag {
            background-color: var(--bg-white);
            color: var(--text-dark);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .tag:hover {
            background-color: var(--primary);
            color: var(--bg-white);
            border-color: var(--primary);
        }
        
        .expertise-img {
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* CTA */
        .cta {
            background-color: var(--primary);
            padding: 80px 0;
            text-align: center;
            position: relative;
        }
        
        .cta::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta h2 {
            font-size: 2.75rem;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .btn-dark {
            background-color: var(--text-dark);
            color: var(--bg-white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            box-shadow: 0 10px 20px rgba(17,24,39,0.3);
        }

        .btn-dark:hover {
            background-color: var(--bg-white);
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background-color: #111827;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--bg-white);
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--primary);
        }

        footer h4 {
            color: var(--bg-white);
            font-size: 1.25rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h4::after {
            content: "";
            position: absolute;
            bottom: 0; left: 0;
            width: 40px; height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .contact-info li {
            display: flex;
            margin-bottom: 20px;
        }

        .contact-info i {
            color: var(--primary);
            margin-top: 5px;
            margin-right: 15px;
            font-size: 1.25rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px;
            }
            .about-grid, .expertise-grid {
                grid-template-columns: 1fr;
            }
            .about-img-wrapper {
                margin-bottom: 40px;
            }
            .expertise-grid:nth-child(even) .expertise-img {
                grid-row: 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .desktop-btn {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .stats-bar {
                margin-top: 0;
                border-radius: 0;
                padding: 30px 5%;
            }
            .about-badge {
                right: 0;
                bottom: -20px;
                padding: 15px 20px;
            }
            .about-badge h3 {
                font-size: 2rem;
            }
            .section-padding {
                padding: 60px 0;
            }
        }
    /* Page Headers */
.page-header {
    background-color: #111827;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at top right, rgba(244, 172, 22, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.page-header h1 span { color: var(--primary); }
.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--primary); }

/* Forms */
.form-group { margin-bottom: 25px; text-align: left; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-control {
    width: 100%; padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-light);
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--primary); outline: none; background-color: white;
    box-shadow: 0 0 0 3px rgba(244, 172, 22, 0.2);
}

/* Internal Page Specifics */
.content-wrapper { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.blog-card {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-10px); }
.blog-img { height: 240px; width: 100%; background-color: #eee; background-size: cover; background-position: center; }
.blog-content { padding: 30px; }
.blog-date { color: var(--primary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.blog-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.blog-card p { color: var(--text-muted); margin-bottom: 20px; }
.read-more { font-weight: 600; color: var(--text-dark); display: inline-flex; align-items: center; }
.read-more i { margin-left: 8px; transition: var(--transition); color: var(--primary); }
.read-more:hover i { transform: translateX(5px); }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2.5rem; }
    .page-header { padding: 120px 0 60px; }
    .footer-logo img { max-height: 105px !important; }
    footer { padding: 40px 0 20px; }
    .footer-grid { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px; 
        margin-bottom: 30px; 
    }
    .footer-grid > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-grid > div:first-child p {
        margin-top: 10px !important;
        margin-bottom: 10px;
        max-width: 100% !important;
    }
    footer h4 { margin-bottom: 10px; font-size: 1.1rem; }
    .footer-links li { margin-bottom: 8px; font-size: 0.95rem; }
    .contact-info li { flex-direction: column; align-items: flex-start; margin-bottom: 15px; }
    .contact-info i { margin-bottom: 5px; margin-right: 0; }
    .footer-bottom { padding-top: 20px; text-align: center; }
}
