  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* HEADER - CLEAN PROFESSIONAL */
        header {
            background-color: #1a1a1a;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            height: 45px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* UPDATED NAVIGATION - SIMPLIFIED */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            border-radius: 4px;
            position: relative;
        }

        .nav-link:hover {
            color: #8DB1AB;
        }

        /* ACTIVE NAV LINK STYLING */
        .nav-link.active {
            color: #8DB1AB;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #8DB1AB;
            border-radius: 50%;
        }

        /* SERVICES DROPDOWN ONLY */
        .services-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #2d2d2d;
            min-width: 240px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-radius: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .nav-item.services-item:hover .services-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 1rem 1.5rem;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid #3d3d3d;
            transition: all 0.3s ease;
        }

        .dropdown-link:hover {
            background-color: #8DB1AB;
            color: #1a1a1a;
        }

        /* HERO SECTION WITH SMOOTH ANIMATIONS */
        .hero {
            min-height: 100vh;
            padding: 100px 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        .hero-content {
            padding-right: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #0070CC;
            font-weight: 600;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }

        .hero-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }

        .real-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 1.5rem 1rem;
            background: #f8f9fa;
            border-radius: 10px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .stat:nth-child(1) { animation-delay: 0.9s; }
        .stat:nth-child(2) { animation-delay: 1.0s; }
        .stat:nth-child(3) { animation-delay: 1.1s; }
        .stat:nth-child(4) { animation-delay: 1.2s; }

        .stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #8DB1AB;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
        }

        /* IMAGE SECTION - SMOOTH ANIMATIONS */
        .hero-image {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 1s ease-out 0.8s forwards;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .hero-image:hover .slide-image {
            transform: scale(1.03);
        }

        /* FOUNDER SECTION */
        .founder-section {
            padding: 5rem 2rem;
            background: #f8f9fa;
            max-width: 1200px;
            margin: 0 auto;
        }

        .founder-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .founder-image {
            position: relative;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateX(-50px);
        }

        .founder-image.animated {
            animation: slideInLeft 1s ease-out forwards;
        }

        .founder-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .founder-content {
            opacity: 0;
            transform: translateX(50px);
        }

        .founder-content.animated {
            animation: slideInRight 1s ease-out forwards;
        }

        .founder-title {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .founder-subtitle {
            font-size: 1.2rem;
            color: #8DB1AB;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .typing-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            min-height: 200px;
            border-left: 4px solid #8DB1AB;
            padding-left: 1.5rem;
        }

        .cursor {
            display: inline-block;
            width: 3px;
            background-color: #8DB1AB;
            margin-left: 2px;
            animation: blink 1s infinite;
        }

        /* SERVICES SECTION - BASTARD ANIMATIONS */
        .services-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
        }

        .services-title {
            font-size: 3rem;
            text-align: center;
            color: #1a1a1a;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .services-subtitle {
            font-size: 1.3rem;
            text-align: center;
            color: #8DB1AB;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.8) rotate(-10deg);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05) rotate(2deg);
        }

        .service-title {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #25D366;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        /* PROJECTS SECTION */
        .projects-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: #f8f9fa;
            position: relative;
        }

        .projects-title {
            font-size: 3rem;
            text-align: center;
            color: #1a1a1a;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .projects-subtitle {
            font-size: 1.3rem;
            text-align: center;
            color: #8DB1AB;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
        }

        /* CONTACT SECTION */
        .contact-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
        }

        .contact-title {
            font-size: 3rem;
            text-align: center;
            color: #1a1a1a;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-subtitle {
            font-size: 1.3rem;
            text-align: center;
            color: #8DB1AB;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
        }

        .contact-info.animated {
            animation: slideInLeft 1s ease-out forwards;
        }

        .contact-form {
            opacity: 0;
            transform: translateX(50px);
        }

        .contact-form.animated {
            animation: slideInRight 1s ease-out forwards;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: #8DB1AB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .contact-details h4 {
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .contact-details p {
            color: #666;
            margin-bottom: 0.3rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #8DB1AB;
            box-shadow: 0 0 0 3px rgba(141, 177, 171, 0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #8DB1AB;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        /* FOOTER */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-logo {
            height: 40px;
            filter: brightness(0) invert(1);
            margin-bottom: 1rem;
        }

        .footer-about {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #2d2d2d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #8DB1AB;
            transform: translateY(-3px);
        }

        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 0.8rem;
        }

        .footer-link a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link a:hover {
            color: #8DB1AB;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #2d2d2d;
            text-align: center;
            color: #999;
            margin-top: 3rem;
        }

        /* ADMIN LOCK ICON - FONT AWESOME */
        .admin-lock {
            position: fixed;
            top: 100px;
            right: 30px;
            background: #1a1a1a;
            color: white;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            font-size: 1.2rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .admin-lock:hover {
            background: #8DB1AB;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        .admin-lock.unlocked {
            background: #8DB1AB;
        }

        /* ADMIN MODAL - SCROLLABLE */
        .admin-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1002;
            overflow-y: auto;
        }

        .admin-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .admin-input {
            width: 100%;
            padding: 12px;
            margin: 1rem 0;
            border: 2px solid #8DB1AB;
            border-radius: 6px;
            font-size: 1rem;
        }

        .admin-btn {
            background: #8DB1AB;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            margin-right: 1rem;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }

        .admin-btn:hover {
            background: #1a1a1a;
        }

        .admin-btn.cancel {
            background: #666;
        }

        .admin-btn.cancel:hover {
            background: #444;
        }

        .admin-btn.logout {
            background: #dc3545;
        }

        .admin-btn.logout:hover {
            background: #c82333;
        }

        /* PROJECT UPLOAD INTERFACE - SEPARATED */
        .upload-interface {
            display: none;
            margin-top: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-top: 3px solid #8DB1AB;
        }

        .upload-section {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .upload-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .upload-interface h4 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-align: center;
        }

        .upload-input {
            width: 100%;
            padding: 10px;
            margin: 0.5rem 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .project-preview {
            max-width: 100%;
            max-height: 200px;
            margin: 1rem 0;
            border-radius: 8px;
            display: none;
        }

        .admin-mode-section {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1rem;
        }

        /* PROJECTS GRID */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .project-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .project-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.05);
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-title {
            font-size: 1.3rem;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .project-category {
            color: #8DB1AB;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .project-description {
            color: #666;
            line-height: 1.5;
        }

        /* DELETE BUTTON FOR ADMIN */
        .delete-btn {
            background: #ff4444;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1rem;
            display: none;
        }

        .admin-mode .delete-btn {
            display: inline-block;
        }

        /* Animation delays */
        .project-card:nth-child(1) { animation-delay: 0.2s; }
        .project-card:nth-child(2) { animation-delay: 0.4s; }
        .project-card:nth-child(3) { animation-delay: 0.6s; }
        .project-card:nth-child(4) { animation-delay: 0.8s; }
        .project-card:nth-child(5) { animation-delay: 1.0s; }
        .project-card:nth-child(6) { animation-delay: 1.2s; }

        /* BASTARD ANIMATION KEYFRAMES */
        @keyframes constructionBastard {
            0% { transform: translate(-100px, -100px) rotate(-180deg) scale(0.3); opacity: 0; }
            20% { transform: translate(50px, -50px) rotate(90deg) scale(0.8); opacity: 0.7; }
            40% { transform: translate(-20px, 20px) rotate(-45deg) scale(1.1); opacity: 0.9; }
            60% { transform: translate(10px, -10px) rotate(20deg) scale(0.95); opacity: 1; }
            80% { transform: translate(-5px, 5px) rotate(-5deg) scale(1.02); opacity: 1; }
            100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
        }

        @keyframes architecturalBastard {
            0% { transform: translate(100px, 100px) rotate(180deg) scale(0.3) skew(30deg, 20deg); opacity: 0; }
            25% { transform: translate(-40px, -40px) rotate(-120deg) scale(0.7) skew(-20deg, -10deg); opacity: 0.6; }
            50% { transform: translate(20px, 20px) rotate(60deg) scale(1.2) skew(10deg, 5deg); opacity: 0.8; }
            75% { transform: translate(-10px, -10px) rotate(-20deg) scale(0.9) skew(-5deg, -2deg); opacity: 1; }
            100% { transform: translate(0, 0) rotate(0deg) scale(1) skew(0, 0); opacity: 1; }
        }

        @keyframes renovationBastard {
            0% { transform: translateY(200px) rotateX(90deg) scale(0.2); opacity: 0; }
            30% { transform: translateY(-80px) rotateX(-30deg) scale(1.3); opacity: 0.8; }
            60% { transform: translateY(40px) rotateX(15deg) scale(0.8); opacity: 0.9; }
            80% { transform: translateY(-20px) rotateX(-5deg) scale(1.1); opacity: 1; }
            100% { transform: translateY(0) rotateX(0deg) scale(1); opacity: 1; }
        }

        @keyframes projectBastard {
            0% { transform: translateX(-200px) rotateY(90deg) scale(0.4) translateZ(-100px); opacity: 0; }
            35% { transform: translateX(100px) rotateY(-45deg) scale(1.4) translateZ(50px); opacity: 0.7; }
            65% { transform: translateX(-50px) rotateY(20deg) scale(0.9) translateZ(-20px); opacity: 0.9; }
            85% { transform: translateX(25px) rotateY(-5deg) scale(1.05) translateZ(10px); opacity: 1; }
            100% { transform: translateX(0) rotateY(0deg) scale(1) translateZ(0); opacity: 1; }
        }

        @keyframes consultationBastard {
            0% { transform: scale(0.1) rotate(360deg) translate(150px, -150px); opacity: 0; }
            25% { transform: scale(1.5) rotate(-180deg) translate(-80px, 80px); opacity: 0.6; }
            50% { transform: scale(0.7) rotate(90deg) translate(40px, -40px); opacity: 0.8; }
            75% { transform: scale(1.2) rotate(-30deg) translate(-20px, 20px); opacity: 0.9; }
            100% { transform: scale(1) rotate(0deg) translate(0, 0); opacity: 1; }
        }

        /* ANIMATION KEYFRAMES - SMOOTH */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* FLOATING ELEMENTS - SUBTLE */
        .floating-shape {
            position: absolute;
            background: #8DB1AB;
            opacity: 0.05;
            border-radius: 50%;
            z-index: -1;
            animation: float 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        } 
        /* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    /* Hero section stack on mobile */
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 80px 1rem 2rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Stats grid - 2 columns on mobile */
    .real-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Founder section stack */
    .founder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact section stack */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Services grid - single column */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Projects grid - single column */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer stack */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Navigation menu for mobile */
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Admin lock position */
    .admin-lock {
        top: 80px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero h1 {
        font-size: 2rem;
    }
    
    .real-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .services-title, 
    .projects-title, 
    .contact-title {
        font-size: 2.2rem;
    }
    
    .founder-title {
        font-size: 2rem;
    }
}