        :root {
            --primary-color: #E87722;
            --primary-hover: #c96218;
            --dark-bg: #221a16;
            --light-bg: #f9f9f9;
            --text-dark: #333333;
            --text-light: #ffffff;
            --text-gray: #666666;
            --container-width: 1200px;
        }

        /* === GLOBAL STYLES === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        body {
            color: var(--text-dark);
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
            text-align: center;
        }
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--text-light);
            border: none;
        }
        .btn-primary:hover {
            background-color: var(--primary-hover);
        }
        .btn-outline {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
        }
        .btn-outline:hover {
            background-color: var(--text-light);
            color: var(--text-dark);
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title span {
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-title h2 {
            font-size: 32px;
            margin-top: 10px;
        }

        /* === HEADER & NAVIGATION === */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: var(--container-width);
            margin: 0 auto;
        }
        .logo h1 {
            font-size: 24px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .small_logo{
            height: 40px;       
            width: auto;        
            object-fit: contain;
        }
        .logo h1 i {
            color: var(--primary-color);
        }
        .nav-links {
            display: flex;
            gap: 30px;
            margin-bottom:10px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 15px;
        }
        .nav-links a:hover {
            color: var(--primary-color);
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* === HERO SECTION === */
        .hero {
            background: linear-gradient(rgba(34, 26, 22, 0.7), rgba(34, 26, 22, 0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover;
            padding: 120px 20px;
            color: var(--text-light);
        }
        .hero-content {
            max-width: 700px;
        }
        .hero-subtitle {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 15px;
            display: block;
        }
        .hero h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero h1 span {
            color: var(--primary-color);
        }
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #ddd;
        }
        .hero-btns {
            display: flex;
            gap: 15px;
        }

        /* === ABOUT SECTION === */
        .about {
            padding: 80px 0;
            background: var(--light-bg);
        }
        .about-flex {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }
        .about-img img {
            width: 100%;
            display: block;
        }
        .about-text {
            flex: 1;
        }
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .feature-item i {
            font-size: 30px;
            color: var(--primary-color);
        }
        .feature-item h4 {
            font-size: 14px;
        }

        /* === PRODUCTS SECTION === */
        .products {
            padding: 80px 0;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .product-card {
            position: relative;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: white;
            text-align: center;
        }
        .product-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }
        .product-card img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .product-info {
            position: relative;
            z-index: 2;
        }
        .product-info h3 {
            font-size: 14px;
            margin-bottom: 10px;
        }
        .product-info i {
            font-size: 24px;
            color: var(--primary-color);
        }
        .btn-center {
            text-align: center;
        }

        /* === WHY CHOOSE US === */
        .why-choose {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0;
            text-align: center;
        }
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .why-item i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .why-item h4 {
            font-size: 15px;
            margin-bottom: 10px;
        }
        .why-item p {
            font-size: 12px;
            color: #aaa;
        }

        /* === PROJECTS SECTION === */
        .projects {
            padding: 80px 0;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .project-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .project-card h4 {
            font-size: 16px;
            margin-bottom: 5px;
            text-align: center;
        }
        .project-card p {
            font-size: 13px;
            color: var(--text-gray);
            text-align: center;
        }
        .partners {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #ddd;
        }
        .partners img {
            height: 40px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: 0.3s;
        }
        .partners img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .testimonial {
            flex: 1;
            font-style: italic;
            border-left: 3px solid var(--primary-color);
            padding-left: 15px;
        }

        /* === CTA STRIP === */
        .cta-strip {
            background: #1a1412;
            padding: 40px 0;
            color: white;
        }
        .cta-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* === FOOTER === */
        footer {
            background: #110d0a;
            color: #aaa;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            color: white;
            font-size: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-logo i {
            color: var(--primary-color);
        }
        footer h4 {
            color: white;
            margin-bottom: 20px;
            font-size:20px;
            font-weight: Bold;
        }
        footer ul li {
            margin-bottom: 10px;
        }
        footer ul li a:hover {
            color: var(--primary-color);
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            color: white;
            background: rgba(255,255,255,0.1);
            width: 35px; height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .social-icons a:hover {
            background: var(--primary-color);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
        }

        /* =========================================
           RESPONSIVE DESIGN (Media Queries)
           ========================================= */

        /* Tablets & Smaller Desktops */
        @media (max-width: 992px) {
            .hero h1 { font-size: 38px; }
            .about-flex { flex-direction: column; }
            .product-grid { grid-template-columns: repeat(3, 1fr); }
            .why-choose-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
            .projects-grid { grid-template-columns: repeat(2, 1fr); }
            .partners { flex-wrap: wrap; gap: 20px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: #fff;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                transition: 0.3s;
            }
            .nav-links.active { left: 0; }
            .hamburger { display: block; }
            .nav-btn { display: none; }
        }

        /* Mobile Devices */
        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .hero-btns { flex-direction: column; }
            .about-features { grid-template-columns: 1fr; }
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
            .projects-grid { grid-template-columns: 1fr; }
            .cta-flex { flex-direction: column; text-align: center; gap: 20px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .social-icons { justify-content: center; }
            .footer-logo { justify-content: center; }
        }

        @media (max-width: 480px) {
            .product-grid { grid-template-columns: 1fr; }
            .why-choose-grid { grid-template-columns: 1fr; }
        }