        :root {
            --primary: #d2ac66;       /* Gold primary color */
            --primary-dark: #b8944c;   /* Darker gold for hover */
            --secondary: #000000;      /* Black for backgrounds */
            --light-bg: #f9f7f2;       /* Light beige background */
            --accent-light: #e8d4b3;   /* Light beige for accents */
            --dark-text: #333333;
            --light-text: #666666;
            --border: #e0d8c8;         /* Softer border color */
        }
        * {
            font-family: 'Inter', sans-serif;
        }
        h1, h2, h3, h4, h5, .navbar-brand, .btn {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        body {
            color: var(--dark-text);
            overflow-x: hidden;
            padding-top: 80px;
        }
        /* === Top Bar & Navbar === */
        .top-bar {
            background-color: var(--secondary);
            color: white;
            font-size: 0.9rem;
            padding: 8px 0;
        }
        .top-bar a {
            color: var(--accent-light);
            text-decoration: none;
            margin-right: 20px;
        }
        .top-bar a:hover {
            color: white;
        }
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary) !important;
        }
        .navbar-brand span {
            color: var(--primary);
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(210, 172, 102, 0.08);
            color: var(--primary) !important;
        }
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* === Hero Section === */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 140px 0 100px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-badge {
            background-color: var(--primary);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
        }
        .btn-primary-custom {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--secondary);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(210, 172, 102, 0.2);
        }
        .btn-outline-light-custom {
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .btn-outline-light-custom:hover {
            background-color: white;
            color: var(--secondary);
            border-color: white;
        }
        /* === Stats Section === */
        .stats-section {
            background-color: var(--light-bg);
            padding: 80px 0;
            margin-top: -60px;
        }
        .stat-box {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-box:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }
        /* === Section Titles === */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .section-title p {
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto;
        }
        .title-divider {
            width: 60px;
            height: 3px;
            background-color: var(--primary);
            margin: 15px auto 0;
        }
        /* === Service Cards === */
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s;
            border: 1px solid var(--border);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(210, 172, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 25px;
            color: var(--primary);
            font-size: 28px;
        }
        .service-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }
        .service-card p {
            color: var(--light-text);
            padding: 0 20px 25px;
        }
        /* === Project Cards === */
        .project-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            height: 350px;
        }
        .project-img {
            height: 100%;
            background-color: #eee;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        .project-card:hover .project-img {
            transform: scale(1.05);
        }
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .project-card:hover .project-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        /* === Team Cards === */
        .team-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            margin-bottom: 30px;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #ddd;
        }
        .team-info {
            padding: 25px;
        }
        .team-info h5 {
            margin-bottom: 5px;
        }
        .team-info .position {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 15px;
        }
        /* === Client Logos === */
        .client-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        .client-logo:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .client-logo span {
            font-weight: 600;
            color: var(--dark-text);
        }
        /* === Footer === */
        .footer {
            background-color: var(--secondary);
            color: var(--accent-light);
          
            
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        .footer-links a {
            color: var(--accent-light);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .contact-info p {
            margin-bottom: 15px;
        }
        .contact-info i {
            color: var(--primary);
            width: 20px;
            margin-right: 10px;
        }
        .copyright {
            border-top: 1px solid #333;
            margin-top: 50px;
            padding: 25px 0;
            text-align: center;
            color: #777;
        }
        /* === Utility === */
        .section-padding {
            padding: 100px 0;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        /* New accent backgrounds */
        .bg-accent-light {
            background-color: var(--accent-light);
        }
        .bg-primary-custom {
            background-color: var(--primary);
            color: var(--secondary);
        }
        .text-primary-custom {
            color: var(--primary) !important;
        }
        .border-primary-custom {
            border-color: var(--primary) !important;
        }



        /* about us page */

        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0 60px;
        }
        .about-box {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-top: -50px;
            position: relative;
        }
        .check-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        .check-item i {
            color: var(--primary);
            margin-top: 5px;
            margin-right: 10px;
        }


        /* serives */
    
        .services-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0 60px;
        }
        .service-detail-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .service-detail-card:hover {
            transform: translateY(-5px);
        }
        .service-icon-large {
            width: 70px;
            height: 70px;
            background-color: rgba(210, 172, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 28px;
        }
        .process-step {
            text-align: center;
            padding: 20px;
        }
        .process-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
        }
    