 :root[data-theme="light"] {
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-accent: #e9ecef;
            --text-primary: #212529;
            --text-secondary: #6c757d;
            --primary-color: #0d6efd;
            --primary-hover: #0b5ed7;
            --border-color: #dee2e6;
            --card-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        :root[data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --bg-accent: #2d2d2d;
            --text-primary: #f8f9fa;
            --text-secondary: #adb5bd;
            --primary-color: #3d8bfd;
            --primary-hover: #6ea8fe;
            --border-color: #444444;
            --card-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        /* --- Reset & Global Styles --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

        section {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 30px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 10px auto 0 auto;
            border-radius: 2px;
        }

        /* --- Header & Mobile-First Navigation --- */
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--card-shadow);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 105px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            z-index: 1001;
        }

        /* Nav Menu State Architecture */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            font-weight: 550;
            color: var(--text-primary);
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Responsive Mobile Trigger (Hamburger) */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle .bar {
            width: 100%;
            height: 3px;
            background-color: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Theme Toggle Customization */
        .theme-toggle-btn {
            background-color: var(--bg-accent);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            white-space: nowrap;
        }

        .theme-toggle-btn:hover {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        /* --- Carousel Section --- */
        .carousel-section {
            padding: 0;
            position: relative;
            overflow: hidden;
            height: 550px;
            background-color: #000;
        }

        .carousel-track {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            width: 33.333%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            text-align: center;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
            width: 85%;
            max-width: 800px;
        }

        .carousel-caption h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .carousel-caption p {
            font-size: 1.2rem;
            font-weight: 300;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.4);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover { background-color: rgba(0,0,0,0.7); }
        .carousel-btn.prev { left: 20px; }
        .carousel-btn.next { right: 20px; }

        /* --- Grids (Products & Services) --- */
        .grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .card-img-wrapper {
            height: 220px;
            overflow: hidden;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 25px;
        }

        .card-content h3 {
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        .card-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* --- About Section --- */
        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
        }

        /* --- Contact Section & Maps --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

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

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--border-color);
            background-color: var(--bg-secondary);
            color: var(--text-primary);
            border-radius: 6px;
            font-family: inherit;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 14px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
        }

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

        .map-area {
            height: 380px;
            background-color: var(--bg-accent);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .map-mock {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text-secondary);
            text-align: center;
            padding: 20px;
        }

        .map-mock-icon {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* --- Footer Section --- */
        footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 20px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: left;
            gap: 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .social-links {
            display: flex;
			padding-top: 12px;
            gap: 30px;
        }

        .social-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .social-img-wrapper {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--bg-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
        }

        .social-img-wrapper img {
            width: 55%;
            height: 55%;
            object-fit: contain;
        }

        .social-item:hover .social-img-wrapper {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .social-item:hover { color: var(--primary-color); }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
			align-items: left;
        }
        .Add-area {
            height: 140px;
			 align-items: left;

			 line-height: 1.0;
            overflow: hidden;
			font-size: 13px;
        }



        /* --- Media Queries for Responsive Design --- */
        @media (max-width: 992px) {
            .carousel-section { height: 450px; }
            .carousel-caption h1 { font-size: 2.3rem; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .mobile-toggle { display: flex; }

            /* Transforming Nav bar to a Mobile Overlay drawer */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--bg-secondary);
                border-left: 1px solid var(--border-color);
                flex-direction: column;
                padding: 100px 40px;
                gap: 30px;
                box-shadow: -4px 0 10px rgba(0,0,0,0.1);
                transition: right 0.4s ease;
                z-index: 1000;
            }

            .nav-links.active {
                right: 0;
            }

            /* Hamburger animation transformations */
            .mobile-toggle.active .bar:nth-child(1) {
                transform: translateY(7.5px) rotate(45deg);
            }
            .mobile-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }
            .mobile-toggle.active .bar:nth-child(3) {
                transform: translateY(-7.5px) rotate(-45deg);
            }

            .carousel-section { height: 380px; }
            .carousel-caption h1 { font-size: 1.8rem; }
            .carousel-caption p { font-size: 1rem; }
            .carousel-btn { width: 40px; height: 40px; padding: 10px; font-size: 1.2rem; }
            .section-title { font-size: 2rem; }
        }



