        :root {
            --black: #0B0B0B;
            --gold: #D4AF37;
            --purple: #6A0DAD;
            --dark-purple: #400080;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            background-color: var(--black);
            color: #fff;
            overflow-x: hidden;
        }
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        .glassmorphism {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        .neon-glow {
            box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
        }
        .purple-glow {
            box-shadow: 0 0 10px var(--purple), 0 0 20px var(--purple);
        }
        .cta-button {
            background: var(--gold);
            color: var(--black);
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .outline{
            background: transparent;
            border: 2px solid var(--gold);
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .outline:hover{
            transform: scale(1.05);
            background: var(--gold);
            color: var(--black);
        }
        .cta-button:hover {
            transform: scale(1.05);
        }
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 40px;
            z-index: 1000;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
             position: relative;
    min-height: 300px;
        }
        /* Hero Section */
        #hero {
            max-width: 100%;
            margin: 0 auto;
            height: 110vh;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to bottom, #190627, var(--black));
            position: relative;
            text-align: center;
            padding: 0 20px;
            top: -110px;
            padding-bottom: 25px;
        }
        #hero canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        #hero .left, #hero .right {
            flex: 1;
            padding: 20px;
        }
        #hero .left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        #hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: -2px;
            line-height: 45px;
        }
        #hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #ddd;
            letter-spacing: -2px;
            line-height: 30px;
        }
        #hero .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            /* gap: 10px;
            justify-content: center; */
        }
        #hero .right img {
            width: 100%;
            height: auto;
        }
        @media (max-width: 768px) {
            #hero {
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            #hero .right {
                display: none;
            }
            #hero h1 {
                font-size: 3rem;
                margin-top: 100px;
            }
            #hero p {
                font-size: 1.2rem;
            }
        }
        @media (min-width: 769px) {
            #hero {
                text-align: left;
            }
            #hero .left {
                align-items: flex-start;
            }
            #hero .cta-buttons {
                justify-content: flex-start;
            }
            #hero .right {
                display: block;
            }
        }
        /* Back Button */
        .back-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 15px;
            border-radius: 20px;
            z-index: 10;
            transition: background 0.3s;
        }
        .back-button:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        @media (max-width: 768px) {
            .back-button {
                
                left: 10px;
                font-size: 0.9rem;
                padding: 8px 12px;
            }
        }
        /* Hero Overlay */
        .project-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        #project-hero .hero-content {
            position: relative;
            z-index: 2;
        }
        /* Scroll Arrow */
        .scroll-arrow {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            animation: bounce 2s infinite;
            z-index: 2;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        /* Services Container */
        .services-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .services-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .services-images img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
            }
            .services-images {
                grid-template-columns: 1fr;
            }
        }
                @media (max-width: 768px) {
            nav .links {
                display: none;
            }
            nav .hamburger {
                display: flex;
            }
            nav .links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 20px;
                background: var(--black);
                padding: 20px;
                border-radius: 10px;
            }
        }
        /* Services Section */
        #services {
            padding-top: 25px;
        }
        #services h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #services .service-card {
            padding: 20px;
            transition: transform 0.3s;
            text-align: left;
        }
        #services .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 15px var(--purple);
        }
        #services .icon {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        #services h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        #services p {
            font-size: 0.9rem;
            color: #ccc;
        }
        /* Portfolio */
        .list{
            transform-style: preserve-3d;
            transform: perspective(1000px)
        }
        .list .item{
            transition: 0.5s;
        }
        .list .item:hover{
            transform: translateZ(200px);
        }

        /* Hero Section for Portfolio */
        #project-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            
        }
        #project-hero .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        #project-hero .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Split Sections */
        .split-section {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .split-image {
            flex: 1;
            height: 400px;
            overflow: hidden;
            border-radius: 20px;
        }
        .split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .split-text {
            flex: 1;
            padding: 0 20px;
        }
        .split-text h2 {
            color: var(--gold);
            margin-bottom: 20px;
        }
        .split-text p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .split-text ul {
            list-style: none;
            padding: 0;
        }
        .split-text li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .split-text li:before {
            content: "✓";
            color: var(--gold);
            position: absolute;
            left: 0;
        }

        /* Featured Grid */
        .featured-grid {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .featured-grid h2 {
            color: var(--gold);
            margin-bottom: 40px;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .grid-container img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .grid-container img:hover {
            transform: scale(1.05);
        }

        #portfolio h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #portfolio .portfolio-item {
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        #portfolio .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px var(--purple);
        }
        #portfolio .image-wrapper {
            overflow: hidden;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            height: 250px; /* match later rule for consistent sizing */
        }
        #portfolio .image-wrapper img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* ensure full coverage without gaps */
            transition: transform 0.3s;
        }
        #portfolio .portfolio-item:hover .image-wrapper img {
            transform: scale(0.9);
        }
        #portfolio .content {
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }
        #portfolio .category {
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        #portfolio .content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        #portfolio .view-button {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
        }
        #portfolio .view-button:hover {
            text-decoration: underline;
        }
        /* Pricing */
        #pricing h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #pricing .price-card {
            padding: 30px;
            position: relative;
            border-radius: 20px;
            text-align: left;
        }
        #pricing .price-card h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        #pricing .description {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        #pricing .price {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }
        #pricing .price-note {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        #pricing .get-started {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
            display: block;
            text-align: center;
            margin-bottom: 20px;
        }
        #pricing .get-started:hover {
            transform: scale(1.05);
        }
        #pricing .starter .get-started, #pricing .enterprise .get-started {
            background: #333;
            color: #fff;
            border: none;
        }
        #pricing .professional .get-started {
            background: var(--gold);
            color: var(--black);
            border: none;
        }
        #pricing ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        #pricing li {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #ddd;
        }
        #pricing li::before {
            content: '\f058'; /* fa-check-circle */
            font-family: 'Font Awesome 6 Free';
            color: var(--gold);
            margin-right: 10px;
            font-weight: 900;
        }
        #pricing .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        /* Lead Magnet */
        #lead-magnet {
            background: linear-gradient(to bottom, #6A0DAD, #400080);
            padding: 60px 20px;
        }
        #lead-magnet .container {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }
        #lead-magnet .left {
            flex: 1;
        }
        #lead-magnet .right {
            flex: 1;
            background: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 20px;
        }
        #lead-magnet .badge {
            background: var(--gold);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        #lead-magnet h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        #lead-magnet .description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ccc;
        }
        #lead-magnet ul {
            list-style: none;
            padding: 0;
        }
        #lead-magnet li {
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        #lead-magnet li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            color: var(--gold);
            margin-right: 10px;
            font-weight: 900;
        }
        #lead-magnet label {
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: #ddd;
        }
        #lead-magnet input {
            width: 100%;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 10px;
            color: #fff;
            margin-bottom: 15px;
        }
        #lead-magnet button {
            background: var(--gold);
            color: var(--black);
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s;
        }
        #lead-magnet button:hover {
            transform: scale(1.05);
        }
        #lead-magnet .privacy {
            font-size: 0.8rem;
            color: #aaa;
            text-align: center;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            #lead-magnet .container {
                flex-direction: column;
            }
            #lead-magnet .left {
                text-align: center;
                margin-bottom: 40px;
            }
        }
        /* Testimonials */
        #testimonials h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #testimonials .testimonial {
            padding: 20px;
            text-align: center;
        }
        #testimonials .stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        #testimonials .quote {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #ddd;
        }
        #testimonials .client-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 10px;
            display: block;
            object-fit: cover;
        }
        #testimonials .name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        #testimonials .role {
            font-style: italic;
            color: #ccc;
            font-size: 0.9rem;
        }
        /* Why Choose */
    
    #why-choose {
    padding: 80px 20px;
    background: #0d0d0d;
    color: #ffffff;
    text-align: center;
}

#why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #cccccc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: linear-gradient(to bottom, #6A0DAD, #400080);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(128, 0, 255, 0.3);
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.why-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #e6e6e6;
}

.why-card ul {
    padding-left: 18px;
}

.why-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #bbbbbb;
}

@media (max-width: 768px) {
    #why-choose h2 {
        font-size: 2rem;
    }
}
        /* Book Call */
        #book-call {
            text-align: center;
            background: linear-gradient(to bottom, #6A0DAD, #400080);
            padding: 60px 20px;
            margin-bottom: 30px;
        }
        #book-call .crown-icon {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        #book-call h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        #book-call p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 30px;
        }
        #book-call .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        #book-call .empire-button {
            background: var(--gold);
            color: var(--black);
            padding: 15px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        #book-call .consult-button {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        #book-call button:hover {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            #book-call .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
        }
/* pages */
 /* Services Section */
        #services h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #services .service-card {
            padding: 20px;
            transition: transform 0.3s;
            text-align: left;
        }
        #services .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 15px var(--purple);
        }
        #services .icon {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        #services h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        #services p {
            font-size: 0.9rem;
            color: #ccc;
        }
        #services .service-detail {
            margin-top: 60px;
            text-align: center;
        }
        #services .service-detail h3 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        #services .service-detail p {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 30px;
        }
        #services .service-detail ul {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 315px;
            margin: 0 auto;
        }
        #services .service-detail li {
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        #services .service-detail li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            color: var(--gold);
            margin-right: 10px;
            font-weight: 900;
        }

        /* Portfolio */
        #portfolio h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #portfolio .portfolio-item {
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        #portfolio .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px var(--purple);
        }
        #portfolio .image-wrapper {
            overflow: hidden;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            height: 250px; /* fixed area to keep images uniform */
        }
        #portfolio .image-wrapper img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* fill box, crop if necessary for consistent sizing */
            transition: transform 0.3s;
        }
        #portfolio .portfolio-item:hover .image-wrapper img {
            transform: scale(0.9);
        }
        #portfolio .content {
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }
        #portfolio .category {
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        #portfolio .content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        #portfolio .view-button {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
        }
        #portfolio .view-button:hover {
            text-decoration: underline;
        }
        #portfolio .portfolio-detail {
            margin-top: 60px;
            text-align: center;
        }
        #portfolio .portfolio-detail h3 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        #portfolio .portfolio-detail p {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 30px;
        }
        #portfolio .portfolio-detail ul {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 315px;
            margin: 0 auto;
        }
        #portfolio .portfolio-detail li {
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        #portfolio .portfolio-detail li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            color: var(--gold);
            margin-right: 10px;
            font-weight: 900;
        }

 


           /* Pricing */
        #pricing h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gold);
        }
        #pricing .price-card {
            padding: 30px;
            position: relative;
            border-radius: 20px;
            text-align: left;
        }
        #pricing .price-card h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        #pricing .description {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        #pricing .price {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }
        #pricing .price-note {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 20px;
        }
        #pricing .get-started {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
            display: block;
            text-align: center;
            margin-bottom: 20px;
        }
        #pricing .get-started:hover {
            transform: scale(1.05);
        }
        #pricing .starter .get-started, #pricing .enterprise .get-started {
            background: #333;
            color: #fff;
            border: none;
        }
        #pricing .professional .get-started {
            background: var(--gold);
            color: var(--black);
            border: none;
        }
        #pricing ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        #pricing li {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #ddd;
        }
        #pricing li::before {
            content: '\f058'; /* fa-check-circle */
            font-family: 'Font Awesome 6 Free';
            color: var(--gold);
            margin-right: 10px;
            font-weight: 900;
        }
        #pricing .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        #pricing .pricing-detail {
            margin-top: 60px;
            text-align: center;
        }
        #pricing .pricing-detail h3 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        #pricing .pricing-detail p {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 30px;
        }
        #pricing .pricing-detail ul {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }
        #pricing .pricing-detail li {
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        #pricing .pricing-detail li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            color: var(--gold);
            margin-right: 10px;
            font-weight: 900;
        }
        
  

         /* Book Call */
        #book-call {
            text-align: center;
            background: linear-gradient(to bottom, #6A0DAD, #400080);
            padding: 60px 20px;
            margin-bottom: 30px;
        }
        #book-call .crown-icon {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        #book-call h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        #book-call p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 30px;
        }
        #book-call .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        #book-call .empire-button {
            background: var(--gold);
            color: var(--black);
            padding: 15px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        #book-call .consult-button {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        #book-call button:hover {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            #book-call .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
        }
        /* Contact Form */
        #contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
        }
        #contact-form h3 {
            text-align: center;
            color: var(--gold);
            margin-bottom: 30px;
        }
        #contact-form label {
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: #ddd;
        }
        #contact-form input,
        #contact-form textarea {
            width: 100%;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 10px;
            color: #fff;
            margin-bottom: 15px;
        }
        #contact-form button {
            background: var(--gold);
            color: var(--black);
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s;
        }
        #contact-form button:hover {
            transform: scale(1.05);
        }
        #contact-form .privacy {
            font-size: 0.8rem;
            color: #aaa;
            text-align: center;
            margin-top: 10px;
        }

              /* Responsive adjustments */
         @media (max-width: 1024px) {
            .grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .grid {
                grid-template-columns: 1fr;
                position: relative;
                min-height: 300px;
            }
            #hero h1 {
                font-size: 2rem;
                margin-top: 100px;
            }
            .float3{
                top:10%!important;
            }
            .cta-button{
                padding: 15px 15px;
            }
            .outline{
                padding: 15px 15px;
            }
            .float1{
                top:12%;
            }
            .float2{
                display: none;
            }
            
            
        }



        /* Footer */
        footer {
            padding: 60px 20px 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(to bottom, var(--dark-purple), var(--black));
        }
        footer .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }
        footer .footer-section {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }
        footer .footer-section h4 {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        footer .footer-section ul {
            list-style: none;
            padding: 0;
        }
        footer .footer-section li {
            margin-bottom: 10px;
        }
        footer .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer .footer-section a:hover {
            color: var(--gold);
        }
        footer .socials {
            display: flex;
            justify-content: flex-start;
            gap: 20px;
            margin-top: 10px;
        }
        footer .socials a {
            font-size: 1.5rem;
        }
        footer .payments {
            margin-top: 20px;
            color: #aaa;
            display: flex;
            justify-content: flex-start;
            gap: 10px;
        }
        footer .payments i {
            font-size: 1.5rem;
        }
        footer .copyright {
            margin-top: 40px;
            font-size: 0.9rem;
            color: #aaa;
            width: 100%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            footer .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            footer .footer-section {
                text-align: center;
            }
            footer .socials {
                justify-content: center;
            }
            footer .payments {
                justify-content: center;
            }
        }
        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 480px) {
            .grid {
                grid-template-columns: 1fr;
            }
        }
        /* Navbar */
        nav {
            position: sticky;
            top: 10px;
            margin: 0 auto;
            max-width: 1200px;
            width: 100%;
            z-index: 1000;
            background: transparent;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav .glassmorphism {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            padding: 10px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav .logo {
            width: 80px;
            height: auto;
        }
        nav .links {
            display: flex;
            gap: 20px;
        }
        nav .links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }
        nav .links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--purple);
        }
        nav .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }
        nav .hamburger .line {
            width: 25px;
            height: 3px;
            background: #fff;
        }
        nav .hamburger .line.middle {
            margin: 2px -5px;
            width: 36px;
        }
        @media (max-width: 768px) {
            nav .links {
                display: none;
            }
            nav .hamburger {
                display: flex;
            }
            nav .links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 20px;
                background: var(--black);
                padding: 20px;
                border-radius: 10px;
            }
        }

        /* ===== Floating Shapes ===== */
.float {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: float 8s ease-in-out infinite;
  opacity: 0.8;
  transform-style: preserve-3d;
}


/* Position them aesthetically */
.float1 {
  bottom: 10%;
  right: 15%;
  animation-delay: 0s;
}
.float2 {
  bottom: 5%;
  right: 5%;
  animation-delay: 2s;
}
.float3 {
  top: 20%;
  left: 10%;
  animation-delay: 4s;
}

/* Floating keyframes (gentle motion) */
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}


.portfolio-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    /* ensure all cards stretch to same row height */
}

/* make the portfolio grid stretch items so equal-height cards align */
#portfolio .grid {
    align-items: stretch;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; /* adjust if you want 4/3 or square */
    overflow: hidden;
    position: relative;
    object-fit: cover;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills box, crops excess */
    object-position: center;
    display: block;
}

.portfolio-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--gold);
}

.portfolio-item.hidden {
    display: none;
}




.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* This pushes price & button to the same level */
.price-footer {
    margin-top: auto;
    
}

/* Force same size & look */
.price {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Optional: make cards equal height */
.grid {
    align-items: stretch;
}

/* Project Pages */
#project-hero-branding {
    padding: 100px 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
}
.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}
.large-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.right-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.small-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.small-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}
.small-image:hover img {
    transform: scale(1.05);
}
#project-content {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--black)
}
#project-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--gold);
}
#project-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ddd;
}
#project-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}
#project-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}
#project-content li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #ccc;
}
#project-content li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}
#project-content .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
#additional-images {
    padding: 80px 20px;
}
.image-gallery {
    display: grid;
    /* always two columns for left/right sections */
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.image-gallery img {
    width: 100%;
    height: 380px;      /* larger cards */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.image-gallery img:hover {
    transform: scale(1.04);
}

/* collapse to single column on narrow screens */
@media (max-width: 900px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
    .image-gallery img {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    .right-images {
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
    }
    .small-image {
        min-width: 200px;
    }
    #project-content h1 {
        font-size: 2.5rem;
    }
    #project-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* 
/* Back Button */
.back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-button i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .back-button {
        bottom: 10px;
        left: 10px;
        padding: 10px 16px;
        font-size: 12px;
        height: 10px;
    }
} */

/* Portfolio CTA Buttons */
.portfolio-cta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.portfolio-cta .cta-button {
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.portfolio-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Newsletter Signup Styles */
.newsletter-signup {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.newsletter-btn {
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    #project-hero .hero-content h1 {
        font-size: 2rem;
    }
    #project-hero .hero-content p {
        font-size: 1rem;
    }

    .split-section {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }
    .split-image {
        height: 250px;
    }
    .split-text {
        padding: 0;
        text-align: center;
    }

    .featured-grid h2 {
        font-size: 1.5rem;
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .grid-container img {
        height: 150px;
    }
}


/* ────────────────────────────────────────────────
   Alternating split sections (image ↔ text)
───────────────────────────────────────────────── */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-section.image-left {
    flex-direction: row;
}

.split-section.text-left {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    color: var(--gold);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 2rem;
}

.split-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.split-text li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.split-text li:before {
    content: "✓";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ────────────────────────────────────────────────
   2×2 image grid - no text
───────────────────────────────────────────────── */
.four-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.four-image-grid img {
    width: 100%;
    height: 600px;          /* adjust to your preference */
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.four-image-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(106, 13, 173, 0.4); /* purple glow */
}

/* ────────────────────────────────────────────────
   Mobile responsive stacking
───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column !important; /* force stack regardless of .image-left / .text-left */
        gap: 40px;
        padding: 60px 20px;
    }

    .split-image {
        order: 1;           /* image on top by default */
        height: 280px;
    }

    .split-text {
        order: 2;
        text-align: center;
    }

    .four-image-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .four-image-grid img {
        height: 260px;
    }

    .split-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .split-text h2 {
        font-size: 1.8rem;
    }
    .four-image-grid img {
        height: 400px;
    }
    
}

/* Hero Section for Portfolio / Project pages */
#project-hero {
    height: 60vh;
    width: 100vw;              /* ← full viewport width */
    max-width: none;           /* ← overrides any container max-width */
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    top: -55px;
}

/* Make sure overlay covers the whole hero */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);    /* ← this is what makes text readable */
    z-index: 1;
}

/* Bring content above overlay */
#project-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Optional - mobile adjustment for readability */
@media (max-width: 768px) {
    #project-hero .hero-content h1 {
        font-size: 2rem;
    }
    #project-hero .hero-content p {
        font-size: 1rem;
    }
}


/* Mobile side menu styles (shared) */
.menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.6);opacity:0;visibility:hidden;transition:opacity .28s ease, visibility .28s;z-index:999}
.menu-overlay.active{opacity:1;visibility:visible}
.side-menu{position:fixed;top:0;right:0;height:100%;width:320px;max-width:85%;background:var(--black);color:var(--gold);box-shadow:-12px 0 30px rgba(0,0,0,.5);transform:translateX(100%);transition:transform .28s ease;z-index:1000;display:flex;flex-direction:column;padding:20px}
.side-menu.open{transform:translateX(0)}
.side-menu .close-btn{background:none;border:0;font-size:1.5rem;line-height:1;cursor:pointer;padding:6px;margin-left:auto;color:var(--gold)}
.side-menu .menu-links{margin-top:8px;display:flex;flex-direction:column}
.side-menu .menu-links a{padding:14px 6px;color:var(--gold);text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.03);font-weight:600}
.side-menu .menu-links a:hover{opacity:0.9}
.hamburger{cursor:pointer}
@media(min-width:900px){.side-menu,.menu-overlay{display:none}}