/* ==================== CORPORATE COLOR PALETTE ==================== */
        :root {
            --primary-blue: #1B365D;
            --primary-green: #2D8C44;
            --text-gray: #58595B;
            --off-white: #F9F9FA;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

/* ==================== GLOBAL STYLES ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #181818;
            background-attachment: fixed;
            color: var(--text-gray);
            min-height: 100vh;
            margin: 0;
            overflow-x: hidden;
        }

        .demo-container {
            padding: 40px 20px;
            min-height: 100vh;
        }        
        
/* ==================== ADVANCED NAVIGATION BAR ==================== */        

        .navbar-container {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 60px);
            max-width: 1000px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .navbar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 12px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.1), 
                transparent);
            transition: left 0.8s ease;
        }

        .navbar:hover::before {
            left: 100%;
        }

        .navbar:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

/* ==================== LOGO SECTION ==================== */
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.4rem;
            z-index: 2;
            position: relative;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            animation: logo-pulse 2s ease-in-out infinite;
        }

        @keyframes logo-pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .brand-text {
            background: linear-gradient(135deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }        
        
/* ==================== NAVIGATION LINKS ==================== */
        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
            z-index: 2;
            position: relative;
        }

        /* Desktop navigation styles */
        @media (min-width: 993px) {
            .navbar-nav {
                display: flex !important;
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: none !important;
                border: none !important;
                padding: 0 !important;
                box-shadow: none !important;
                flex-direction: row !important;
            }
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        .nav-link:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-link.active {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            color: white;
            box-shadow: 
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.1);
        }        .nav-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .nav-link:hover .nav-icon {
            transform: scale(1.1);
        }

/* ==================== MOBILE MENU TOGGLE ==================== */        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 1001;
            position: relative;
            flex-shrink: 0;
        }

        .mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 24px;
            height: 18px;
            justify-content: center;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-toggle.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-toggle.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }        
        
/* ==================== CTA BUTTON ==================== */
        .cta-button {
            background-color: var(--primary-green) !important;
            color: var(--off-white) !important;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
            white-space: nowrap;
            margin-left: 5px;
        }

        .cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
        }
        
/* ==================== MOBILE RESPONSIVE ==================== */
        @media (max-width: 992px) {
            .navbar-container {
                top: 20px;
                width: calc(100% - 30px);
            }

            .navbar {
                padding: 12px 20px;
                position: relative;
            }

            .mobile-toggle {
                display: flex !important;
                align-items: center;
                justify-content: center;
            }

            /* Hide desktop navigation on mobile */
            .navbar-nav {
                display: none;
            }

            .brand-text {
                font-size: 1.2rem;
            }
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Container */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            z-index: 1600;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
        }

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

        /* Mobile Menu Header */
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 30px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.4rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        /* Mobile Menu Navigation */
        .mobile-menu-nav {
            padding: 40px 30px;
            list-style: none;
        }

        .mobile-menu-item {
            margin-bottom: 8px;
        }

        .mobile-menu-link {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-size: 1.1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 12px;
        }

        .mobile-menu-link:hover,
        .mobile-menu-link.active {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateX(8px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .mobile-menu-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .mobile-cta {
            margin: 30px 30px 40px;
        }

        .mobile-cta-button {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            text-decoration: none;
            padding: 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
        }

        .mobile-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        @media (max-width: 768px) {
            .navbar-container {
                width: calc(100% - 30px);
            }
        }

        @media (max-width: 480px) {
            .navbar-container {
                width: calc(100% - 20px);
                top: 15px;
            }

            .navbar {
                padding: 10px 15px;
            }

            .navbar-brand {
                gap: 8px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .brand-text {
                font-size: 1.1rem;
            }
        }        
        
/* ==================== CONTENT ==================== */
        .demo-content {
            margin-top: 120px;
            text-align: center;
            color: white;
            padding: 40px 20px;
        }

        .demo-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .demo-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }      
        
/* ==================== CONTENT SECTIONS ==================== */
        .content-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 100px 20px 40px;
            text-align: center;
            color: white;
            position: relative;
        }

        #home {
            padding-top: 200px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
        }        #home {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            color: #D1D1D1 !important;
            padding-top: 200px;
        }

        #about {
            background-color: #1B365D;
        }

        #services {
            background-color: #2D8C44;
        }

        #portfolio {
            background-color: #11223A;
        }

        #contact {
            background-color: #1F612F;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .feature-description {
            opacity: 0.8;
            line-height: 1.5;
        }

/* ==================== FLOATING ELEMENTS ==================== */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            animation: float 6s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

/* ==================== FOOTER ==================== */
        .footer {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            margin: 30px auto 40px;
            padding: 25px 40px;
            max-width: 1000px;
            width: calc(100% - 60px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.1), 
                transparent);
            transition: left 0.8s ease;
        }

        .footer:hover::before {
            left: 100%;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .footer-logo {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .footer-logo::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            animation: logo-pulse 2s ease-in-out infinite;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 8px 0;
        }

        .footer-link:hover {
            color: white;
            transform: translateY(-1px);
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .social-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-copy {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .footer {
                width: calc(100% - 30px);
                padding: 20px 25px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-social {
                justify-content: center;
            }
        }        @media (max-width: 480px) {
            .footer {
                width: calc(100% - 20px);
                padding: 15px 20px;
            }

            .footer-links {
                gap: 15px;
            }
        }

/* ==================== CONTACT FORM ==================== */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-label {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            color: white;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-sizing: border-box;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #1B365D, #2D8C44);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2D8C44, #1B365D);
            transition: left 0.3s ease;
        }

        .submit-btn:hover::before {
            left: 0;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }

        .submit-btn span {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .contact-form {
                padding: 30px 25px;
                margin: 0 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .contact-form {
                padding: 25px 20px;
                margin: 0 10px;
            }
        }

/* ==================== Hero Animation ==================== */

        .hero-text-container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr;
            justify-items: center;
            align-items: center;
            margin-bottom: 20px;
        }

        .hero-text-container h1 {
            grid-row: 1;
            grid-column: 1;
            color: hsl(0 0% 98% / 0.2);
            position: relative;
            text-align: center;
            font-size: 3rem;
            margin: 0;
        }

        .hero-text-container h1:after {
            content: attr(data-word);
            color: hsl(0 0% 98%);
            clip-path: inset(var(--t, 0) 0 0 var(--l, 100%));
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            text-align: center;
        }

/* ==================== SERVICES PINNED ANIMATION ==================== */
        #services {
            border-radius: 0 !important;
            overflow: hidden;
            position: relative;
            padding-bottom: 10vh;
        }

        .arch {
            display: flex;
            gap: 40px;
            justify-content: space-between;
            max-width: 1200px;
            margin-inline: auto;
            padding: 0 20px;
        }

        .arch__left {
            flex: 0 0 45%;
            display: flex;
            flex-direction: column;
        }

        .arch__left .arch__info {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
        }

        .arch__left .arch__info h2.header {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.1;
            color: var(--off-white) !important;
            margin-bottom: 20px;
        }

        .arch__left .arch__info p.desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .arch__right {
            flex: 0 0 55%;
            height: 100vh;
            position: relative;
        }

        .arch__right .img-wrapper {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            height: 70vh;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

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

        .arch__left .arch__info a.link {
            text-decoration: none;
            padding: 12px 24px;
            color: #121212 !important;
            border-radius: 40px;
            display: flex;
            gap: 8px;
            width: fit-content;
            align-items: center;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .arch__left .arch__info a.link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .arch__left .arch__info a.link svg {
            width: 12px;
            height: 12px;
        }

        /* Image Sizing and Position */
        .arch__right {
            flex: 0 0 55%;
            height: 100vh;
            position: relative;
        }

        .arch__right .img-wrapper {
            position: absolute;
            top: 58%;
            left: 5%;
            transform: translateY(-50%);
            height: 75vh; /* image size */
            width: 90%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

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

        /* Mobile Breakpoint Fixes */
        @media (max-width: 768px) {
            .arch {
                flex-direction: column;
                padding: 0 20px;
            }
            .arch__left, .arch__right {
                flex: 1 1 auto;
                width: 100%;
            }
            .arch__right .img-wrapper {
                position: relative;
                transform: none;
                top: 0;
                height: 50vh;
                margin-bottom: 40px;
            }
            .arch__left .arch__info {
                height: auto;
                padding: 40px 0;
            }
        }

/* ==================== ABOUT SECTION ==================== */
        .about-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .about-header .section-title {
            margin-bottom: 10px;
            display: block;
            color: #fff;
        }

        .about-subtitle {
            color: #fff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .about-subtitle {
            color: #fff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .about-description-wrapper {
            max-width: 650px;
            margin: 0 auto 40px;
        }

        .about-description {
            color: #D1D1D1 !important;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-card {
            background: rgba(27, 54, 93, 0.4) !important;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid var(--glass-border) !important;
            display: flex;
            flex-direction: column;
            align-items: center; /* Centers the icon and text in tile */
            text-align: center;
        }

/* ==================== PORTFOLIO HORIZONTAL SCROLL ==================== */
        .portfolio-horizontal-section {
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .portfolio-sticky-wrapper {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 10px;
        }

        .portfolio-container {
            width: 100%;
            padding: 0 40px;
        }

        .portfolio-track {
            display: flex;
            gap: 30px;
            width: max-content; /* Allows track to expand based on number of items */
            padding-right: 100px;
        }

        .portfolio-tile {
            width: calc((100vw - 170px) / 4); /* Calculated to fit exactly 4 tiles in view */
            min-width: 280px;
        }

        .portfolio-card {
            display: block;
            text-decoration: none;
            padding: 10px;
            height: 100%;
            transition: transform 0.4s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-info h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .portfolio-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .view-project {
            color: #f093fb;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Mobile: Show 1.5 tiles to hint at scrolling */
        @media (max-width: 992px) {
            .portfolio-tile { width: 60vw; }
        }

/* ==================== UNIFIED SECTION SPACING ==================== */

        /* 1. Standardize all Section containers */
        #home, #about, #services, #portfolio {
            padding-top: 100px !important;  /* All sections now start 100px from top */
            padding-bottom: 100px !important;
            min-height: auto !important;
            display: flex;
            flex-direction: column;
        }

        /* 2. Standardize Titles and Subtitles */
        .section-title {
            margin-top: 0 !important;
            margin-bottom: 15px !important;
            text-align: center;
        }

        .section-subtitle {
            color: #D1D1D1 !important;
            margin-top: 0 !important;
            margin-bottom: 50px !important;
            text-align: center;
            max-width: 700px;
            margin-inline: auto;
        }

        /* 3. Fix internal containers that push content down */
        .about-inner, .services-header, .portfolio-header {
            padding-top: 0 !important; 
            padding-bottom: 0 !important;
        }

        /* 4. Portfolio Alignment Fix */
        .portfolio-sticky-wrapper {
            height: auto !important;
            min-height: 100vh;
            justify-content: flex-start !important; /* Moves "Our Work" to the top */
            padding-top: 0 !important; 
        }

        /* 5. Hero (Home) Section specific fix */
        #home .hero-text-container {
            margin-top: 40px !important;
        }

/* ==================== HOME SECTION FIX ==================== */
        #home {
            min-height: 100vh !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important; /* Centers content in the remaining space */
            align-items: center !important;
            text-align: center;
            padding-top: 250px !important; /* Pushes the animation down to clear the floating menu */
            padding-bottom: 60px !important;
        }

        /* Ensure the hero container stays centered and has enough room */
        #home .hero-text-container {
            margin: 0 auto 30px !important;
            width: 100%;
        }

/* ==================== RESTORE GLASS PANEL (FOR PORTFOLIO) ==================== */

        .glass-panel {
            background: rgba(255, 255, 255, 0.05) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
            border-radius: 20px;
        }

        .portfolio-card.glass-panel {
            transition: all 0.4s ease !important;
            background: rgba(27, 54, 93, 0.4) !important;
            border: 1px solid var(--glass-border) !important;
        }

        .portfolio-card.glass-panel:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            transform: translateY(-10px);
        }