* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto Slab', serif;
            background-color: #292624;
            color: #F2EAD3;
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'DM Serif Display', serif;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 2rem;
            height: 60px;
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, rgba(41, 38, 36, 0.98) 0%, rgba(41, 38, 36, 0.95) 100%);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            z-index: 1000;
            border-bottom: 1px solid rgba(216, 210, 98, 0.2);
            transition: all 0.25s ease;
        }

        .logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.5rem;
            color: #D8D262;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: #F2EAD3;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            list-style: none;
        }

        .nav-links a {
            color: #F2EAD3;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #D8D262;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #D8D262;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links .contact-btn {
            background-color: #D8D262;
            color: black;
            padding: 8px 17px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #D8D262;
            display: inline-block;
        }

        .nav-links .contact-btn::after {
            display: none;
        }

        .nav-links .contact-btn:hover {
            background-color: transparent;
            color: #D8D262;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(216, 210, 98, 0.3);
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            background: none;
            border: none;
            padding: 0;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background-color: #D8D262;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu Styles */
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: #292624;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            border-bottom: 1px solid rgba(216, 210, 98, 0.2);
            padding: 1.5rem 0;
            gap: 1.5rem;
            z-index: 999;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu a {
            display: block;
            padding: 0.8rem;
            color: #F2EAD3;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: #D8D262;
            background-color: rgba(216, 210, 98, 0.1);
        }

        .nav-menu .contact-btn {
            background-color: #D8D262;
            color: #292624;
            padding: 0.4rem 1.5rem;
            border-radius: 20px;
            font-weight: 600;
            border: 2px solid #D8D262;
            margin: 0.5rem auto;
            display: inline-block;
            font-size: 0.85rem; 
        }

        .nav-menu .contact-btn:hover {
            background-color: transparent;
            color: #D8D262;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 8rem 5rem 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* About Section - Override flex alignment */
        #about {
            align-items: center;
            justify-content: center;
            padding-top: 8rem;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateX(-100%);
            animation: slideIn 0.5s forwards;
            animation-delay: 0.5s; /* Adjust delay as needed */
            transition: opacity 0.5s ease; /* Smooth transition for opacity */
        }

        @keyframes slideIn {
            to {
            opacity: 1;
            transform: translateX(0);
            }
        }


        /* Home Section */
        #home {
            text-align: center;
            background: linear-gradient(135deg, rgba(216, 210, 98, 0.1) 0%, rgba(242, 234, 211, 0.05) 100%);
        }

        #home h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: normal;
            color: #F2EAD3; /* fallback for browsers without background-clip:text */
            letter-spacing: -1px;
            position: relative;
            display: inline-block;

            /* shiny moving gradient */
            background: linear-gradient(
            90deg,
            rgba(242, 234, 211, 0.12) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(242, 234, 211, 0.12) 100%
            );
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 2.5s linear infinite;
        }

        @keyframes shine {
            0% {
            background-position: -200% 0;
            }
            100% {
            background-position: 200% 0;
            }
        }

        #home p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: #D8D262;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            background-color: #D8D262;
            color: #292624;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #D8D262;
            display: inline-block;
        }

        .btn-secondary {
            background-color: transparent;
            color: #F2EAD3;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            border: 2px solid #D8D262;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: transparent;
            color: #D8D262;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(216, 210, 98, 0.3);
        }

        .btn-secondary:hover {
            background-color: #D8D262;
            color: #292624;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(216, 210, 98, 0.3);
        }

        /* About Section - Additional Styles */
        #about h2 {
            font-size: 2.8rem;
            margin-bottom: 2.5rem;
            text-align: center;
            color: #F2EAD3;
            width: 100%;
        }

        #about p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            text-align: left;
            color: #F2EAD3;
            line-height: 1.8;
            width: 100%;
        }

        #about h3 {
            font-size: 1.5rem;
            margin: 3rem 0 1.5rem;
            color: #292624;
            width: 100%;
            text-align: center;
            font-weight: 600;
        }
        #about h4 {
            font-size: 1.5rem;
            margin: 3rem 0 1.5rem;
            color: #F2EAD3;
            width: 100%;
            text-align: center;
            font-weight: 600;
        }

        .skills-container {
            background-color: #F2EAD3;
            color: #292624;
            padding: 2.2rem 3rem;
            margin: 4rem 0;
            text-align: center;
            width: 800px;
            height: 250px;
            box-sizing: border-box;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* polygon bevel shape */
            clip-path:    polygon(
        5% 0%,   /* top-left bevel */
        95% 0%,  /* top-right bevel */
        100% 50%,/* right mid bevel */
        95% 100%,/* bottom-right bevel */
        5% 100%, /* bottom-left bevel */
        0% 50%   /* left mid bevel */
    );
        }

        .skills-container h3 {
            margin: 0 0 1.5rem;
            font-size: 1.5rem;
            color: #292624;
            font-weight: 600;
        }

        .skills {
            display: flex;
            justify-content: center;
            /* align-items: center ; */
            gap: 2rem;
            flex-wrap: wrap;
        }

        .skill-tag {
            background-color: #292624;
            color: #F2EAD3;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .skill-tag.outline {
            background-color: transparent;
            border: 2px solid #292624;
            color: #292624;
        }

        .skill-tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(41, 38, 36, 0.2);
        }
        /* Services Section */
        #services {
            background: linear-gradient(135deg, rgba(216, 210, 98, 0.05) 0%, rgba(242, 234, 211, 0.02) 100%);
        }

        #services h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #F2EAD3;
        }

        #services > p {
            font-size: 1.05rem;
            text-align: center;
            max-width: 800px;
            margin-bottom: 3rem;
            color: #F2EAD3;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
            width: 100%;
            max-width: 1200px;
        }

        .service-card {
            background-color: #F2EAD3;
            color: #292624;
            padding: 2.5rem;
            border-radius: 15px;
            /* center the heading inside the card */
            text-align: center;
            transition: all 0.3s ease;
        }
       

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px #F2EAD3;
        }

        .service-card.dark {
            background-color: transparent;
            border: 2px solid #F2EAD3;
            color: #F2EAD3;
        }

    
        .service-card h3 {
            background-color: #292624;
            color: #F2EAD3;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            margin: 0 0 1.5rem 0;
            font-size: 1rem;
            font-weight: 600;
        }

        .service-card.dark h3 {
            background-color: #F2EAD3;
            color: #292624;
        }

        .service-card p {
            margin-bottom: 1rem;
            line-height: 1.8;
            font-size: 0.95rem;
            /* keep paragraph text left-aligned for readability */
            text-align: left;
        }

        .service-card .quote {
            font-style: italic;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .services-footer {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #F2EAD3;
        }

        /* Projects Section */
        #projects h2 {
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: #F2EAD3;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            width: 100%;
            max-width: 1400px;
        }

        .project-card {
            background-color: rgba(216, 210, 98, 0.1);
            border: 1px solid rgba(216, 210, 98, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            background-color: rgba(216, 210, 98, 0.15);
            border-color: #D8D262;
            transform: translateY(-5px);
        }

        .project-image {
            background: linear-gradient(135deg, #D8D262 0%, #E8D4A0 100%);
            height: 280px;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .external-link {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background-color: #292624;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .external-link:hover {
            transform: scale(1.15) rotate(45deg);
            background-color: #D8D262;
        }

        .external-link svg {
            stroke: #D8D262;
        }

        .external-link:hover svg {
            stroke: #292624;
        }

        .project-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #F2EAD3;
        }

        .project-info p {
            color: #D8D262;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Why Choose Us Section */
        #why-choose {
            position: relative;
            background: linear-gradient(135deg, rgba(216, 210, 98, 0.08) 0%, rgba(242, 234, 211, 0.03) 100%);
        }

        #why-choose h2 {
            font-size: 2.8rem;
            margin-bottom: 4rem;
            color: #F2EAD3;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
            position: relative;
        }

        .why-card {
            background-color: #F2EAD3;
            color: #292624;
            padding: 2.2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px #F2EAD3;
        }

        .why-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #292624;
            font-weight: 600;
        }

        .why-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #292624;
        }

        .why-card.center {
            grid-column: 1 / -1;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            background-color: #F2EAD3;
        }

        .why-card.center h3 {
            font-size: 1.8rem;
        }

        .center-decoration {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 400px;
            display: grid;
            grid-template-columns: repeat(11, 1fr);
            gap: 8px;
            pointer-events: none;
        }

        /* .dot {
            width: 6px;
            height: 6px;
            background-color: #D8D262;
            border-radius: 50%;
        } */

        /* FAQ Section */
        #faq {
            background: linear-gradient(135deg, rgba(216, 210, 98, 0.05) 0%, rgba(242, 234, 211, 0.02) 100%);
        }

        #faq h2 {
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: #F2EAD3;
        }

        .faq-list {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .faq-item {
            background-color: #F2EAD3;
            color: #292624;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 2px solid #F2EAD3;
        }

        .faq-item::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item:hover {
            background-color:#292624 ;
            color: #F2EAD3;
            transform: translateX(5px);
        }

        .faq-item.active {
            background-color:#292624;
            border-color: #F2EAD3;
            color: #F2EAD3;
        }

        .faq-item.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            background-color: #292624;
            color: #F2EAD3;
            padding: 1.5rem 2rem;
            border: 2px solid #F2EAD3;
            margin-top: -0.6rem;
            border-radius: 0 0 12px 12px;
            font-size: 0.95rem;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            display: none;
        }

        .faq-item.active + .faq-answer {
            max-height: 300px;
            display: block;
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, rgba(216, 210, 98, 0.08) 0%, rgba(242, 234, 211, 0.03) 100%);
        }

        #contact h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #F2EAD3;
        }

        #contact > p {
            font-size: 1.05rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #F2EAD3;
        }

        .contact-form {
            background-color:#292624;
            border: 2px solid #F2EAD3;
            padding: 2.5rem;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }
        .orcenter {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            text-align: center;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: #F2EAD3;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            background-color: rgba(41, 38, 36, 0.7);
            border: 2px solid #F2EAD3;
            border-radius: 8px;
            color: #F2EAD3;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(242, 234, 211, 0.5);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #F2EAD3;
            background-color: rgba(41, 38, 36, 0.9);
            box-shadow: 0 0 10px rgba(216, 210, 98, 0.3);
        }

        .submit-btn {
            background-color: #D8D262;
            color: #292624;
            padding: 0.9rem 2.5rem;
            border: 2px solid #D8D262;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: transparent;
            color: #D8D262;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(216, 210, 98, 0.3);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 1.2rem 2.5rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .nav-links {
                gap: 1.8rem;
                font-size: 0.9rem;
            }

            section {
                padding: 7rem 2.5rem 4rem;
            }

            #home h1 {
                font-size: 2.8rem;
            }

            #home p {
                font-size: 1.1rem;
            }

            #about {
                max-width: 900px;
                padding: 7rem 2.5rem 4rem;
                align-items: center;
            }

            #about h2,
            #about p,
            #about h3 {
                width: 100%;
                text-align: center;
            }

            .services-grid,
            .projects-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
                justify-content: space-between;
            }

            .logo {
                font-size: 1.2rem;
            }

            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .contact-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.85rem;
            }

            section {
                padding: 6rem 1.5rem 3rem;
                align-items: center;
            }

            #about {
                padding: 6rem 1.5rem 3rem;
                align-items: center;
                max-width: 100%;
            }

            #about h2 {
                font-size: 2rem;
                width: 100%;
                text-align: center;
            }

            #about p {
                text-align: center;
                font-size: 0.95rem;
                width: 100%;
            }

            #about h3 {
                font-size: 1.5rem;
                width: 100%;
                text-align: center;
            }

            #about h2,
            #services h2,
            #projects h2,
            #why-choose h2,
            #faq h2,
            #contact h2 {
                font-size: 2rem;
            }

            #about p,
            #services > p,
            #contact > p {
                font-size: 0.95rem;
            }

            .services-grid,
            .projects-grid,
            .why-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card,
            .why-card {
                padding: 1.8rem;
            }

            .service-card h3,
            .why-card h3 {
                font-size: 1.2rem;
            }

            .service-card p,
            .why-card p {
                font-size: 0.9rem;
            }

            .project-card {
                padding: 1.2rem;
            }

            .project-image {
                height: 200px;
            }

            .external-link {
                width: 40px;
                height: 40px;
            }

            .project-info h3 {
                font-size: 1.1rem;
            }

            .project-info p {
                font-size: 0.9rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }

            .skills {
                flex-direction: row;
                gap: 1rem;
                justify-content: center;
            }

            .skill-tag {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .skills-container,
            .tools-container {
                padding: 2rem 1.5rem;
                margin: 2rem 0;
                border-radius: 60px;
            }

            .skills-container h3,
            .tools-container h3 {
                font-size: 1.4rem;
            }

            .faq-item {
                padding: 1.2rem 1.5rem;
                font-size: 0.9rem;
            }

            .faq-answer {
                padding: 1.2rem 1.5rem;
                font-size: 0.9rem;
            }

            .contact-form {
                padding: 2rem;
                max-width: 100%;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
                font-size: 0.9rem;
            }

            .submit-btn {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            nav {
            padding: 0.8rem 1rem;
            }

            .logo {
            font-size: 1rem;
            }

            .nav-links {
            display: none;
            }

            .menu-toggle {
            display: flex;
            }

            .menu-toggle span {
            width: 24px;
            height: 2.5px;
            }

            .contact-btn {
            padding: 0.5rem 1.2rem;
            font-size: 0.75rem;
            }

            .nav-menu {
            top: 60px;
            }

            .nav-menu a {
            padding: 0.7rem;
            font-size: 0.9rem;
            }

            .nav-menu .contact-btn {
            padding: 0.7rem 1.2rem;
            font-size: 0.85rem;
            }

            section {
            padding: 5rem 1rem 2.5rem;
            min-height: 0;
            }

            #home h1 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            }

            #home p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            }

            #about {
            max-width: 100%;
            padding: 5rem 1rem 2.5rem;
            align-items: center;
            }

            #about h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            width: 100%;
            text-align: center;
            }

            #about p {
            font-size: 0.9rem;
            text-align: center;
            width: 100%;
            }

            #about h3 {
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem;
            width: 100%;
            }

            #about h2,
            #services h2,
            #projects h2,
            #why-choose h2,
            #faq h2,
            #contact h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            }

            .services-grid,
            .projects-grid,
            .why-grid {
            gap: 1rem;
            }

            .service-card,
            .why-card {
            padding: 1.5rem;
            }

            .service-card h3,
            .why-card h3 {
            font-size: 1.1rem;
            padding: 0.6rem 1.2rem;
            }

            .btn-primary, .btn-secondary {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
            }

            .contact-form {
            padding: 1.5rem;
            }

            .faq-list {
            gap: 1rem;
            }

            .faq-item {
            padding: 1rem 1.2rem;
            font-size: 0.85rem;
            }

            .faq-item::after {
            font-size: 1.3rem;
            margin-left: 0.5rem;
            }

            .faq-answer {
            padding: 1rem 1.2rem;
            font-size: 0.85rem;
            }

            .skills-container,
            .tools-container {
            padding: 1.5rem;
            margin: 1.5rem 0;
            width: 100%;
            }

            .skills-container h3,
            .tools-container h3 {
            font-size: 1.3rem;
            }

            .skill-tag {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            }

            .orcenter {
                text-align: center;
                margin: 1rem auto;
                color: #F2EAD3;
                font-size: 1rem;
                font-weight: 500;
                display: block;
                width: fit-content; /* Change to fit-content for centering */
                margin-left: auto; /* Center horizontally */
                margin-right: auto; /* Center horizontally */
            }
        }