/* CSS Variables */
        :root {
            --primary: #D4AF37;
            --primary-dark: #B8860B;
            --secondary: #2C2C2C;
            --light: #F8F9FA;
            --dark: #1A1A1A;
            --gray: #6C757D;
            --light-gray: #E9ECEF;
            --success: #28A745;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

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

        .btn-secondary:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Header & Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100px;
            margin-right: 10px;
            
        }

      

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-link {
            position: relative;
            font-weight: 600;
            color: var(--secondary);
            padding: 8px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--secondary);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(28, 28, 28, 0.95) 100%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 700px;
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        /* About Section */
        .about-section {
            background: white;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 1.2rem;
        }

        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .about-highlights {
            margin-top: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .highlight-card {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }

        .highlight-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        /* Values Section */
        .values-section {
            background: var(--light);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-category {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .value-category:hover {
            transform: translateY(-10px);
        }

        .value-category h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }

        .value-category h3 i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.2em;
        }

        .value-category ul li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 12px;
            color: var(--gray);
        }

        .value-category ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* Services Section */
        .services-section {
            background: white;
        }
        #services .btn-secondary {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--primary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            background: var(--primary);
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        /* Portfolio Section */
        .portfolio-section {
            background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
            color: white;
        }

        .portfolio-section .section-title h2 {
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .portfolio-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .portfolio-header {
            background: var(--primary);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .portfolio-header h3 {
            font-size: 1.3rem;
        }

        .portfolio-value {
            background: rgba(0, 0, 0, 0.3);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
        }

        .portfolio-details {
            padding: 20px;
        }

        .portfolio-details p {
            margin: 8px 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .portfolio-details strong {
            color: white;
            font-weight: 600;
        }

        /* Contact Section */
        .contact-section {
            background: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
        }

        .contact-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 3px;
        }

        .contact-item strong {
            color: var(--secondary);
        }

        .contact-form {
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: var(--transition);
        }

        .mobile-nav.active {
            transform: translateY(0);
        }

        .mobile-nav ul {
            text-align: center;
        }

        .mobile-nav ul li {
            margin: 20px 0;
        }

        .mobile-nav ul li a {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--secondary);
            transition: var(--transition);
        }

        .mobile-nav ul li a:hover,
        .mobile-nav ul li a.active {
            color: var(--primary);
        }

        .close-nav {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            color: var(--secondary);
            cursor: pointer;
            transition: var(--transition);
        }

        .close-nav:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        /* Contact Bar (Desktop Only) */
        .contact-bar {
            background: var(--secondary);
            color: white;
            font-size: 1rem;
            padding: 10px 0;
            width: 100%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            position: relative;
            z-index: 1100;
        }
        .contact-bar-content {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 40px;
        }
        .contact-bar-phone i,
        .contact-bar-email i {
            color: var(--primary);
            margin-right: 8px;
        }
        .contact-bar-email a {
            color: white;
            text-decoration: underline;
            transition: color 0.2s;
        }
        .contact-bar-email a:hover {
            color: var(--primary);
        }
        @media (max-width: 992px) {
            .contact-bar {
                display: none;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-container,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                height: 350px;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .logo img {
                height: 70px;
            }
        }

        @media (max-width: 576px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .value-category,
            .service-card,
            .portfolio-card {
                padding: 20px;
            }
        }