        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

        :root {
            /* Base Colors */
            --dark: #1a1a2e;
            --light: #ffffff;

            /* Accent Base Colors */
            --accent-1: #E63946;
            --accent-2: #F4A261;
            --accent-3: #2A9D8F;

            /* Shades for Accent-1 */
            --accent-1-light-1: color-mix(in srgb, var(--accent-1) 70%, white);
            --accent-1-light-2: color-mix(in srgb, var(--accent-1) 40%, white);
            --accent-1-dark-1: color-mix(in srgb, var(--accent-1) 80%, black);
            --accent-1-dark-2: color-mix(in srgb, var(--accent-1) 60%, black);

            /* Shades for Accent-2 */
            --accent-2-light-1: color-mix(in srgb, var(--accent-2) 70%, white);
            --accent-2-light-2: color-mix(in srgb, var(--accent-2) 40%, white);
            --accent-2-dark-1: color-mix(in srgb, var(--accent-2) 80%, black);
            --accent-2-dark-2: color-mix(in srgb, var(--accent-2) 60%, black);

            /* Shades for Accent-3 */
            --accent-3-light-1: color-mix(in srgb, var(--accent-3) 70%, white);
            --accent-3-light-2: color-mix(in srgb, var(--accent-3) 40%, white);
            --accent-3-dark-1: color-mix(in srgb, var(--accent-3) 80%, black);
            --accent-3-dark-2: color-mix(in srgb, var(--accent-3) 60%, black);

            /* Opacity Variations */
            --white-80: color-mix(in srgb, var(--light) 80%, transparent);
            --white-70: color-mix(in srgb, var(--light) 70%, transparent);
            --white-60: color-mix(in srgb, var(--light) 60%, transparent);
            --white-10: color-mix(in srgb, var(--light) 10%, transparent);
            --white-4: color-mix(in srgb, var(--light) 4%, transparent);
            --white-2: color-mix(in srgb, var(--light) 2%, transparent);

            --dark-95: color-mix(in srgb, var(--dark) 95%, transparent);
            --black-80: color-mix(in srgb, black 80%, transparent);

            --accent-1-10: color-mix(in srgb, var(--accent-1) 10%, transparent);
            --accent-3-20: color-mix(in srgb, var(--accent-3) 20%, transparent);

            /* Typography */
            --font-primary: 'Poppins', sans-serif;
            --font-heading: 'Cormorant Garamond', serif;

            /* Semantic Variables */
            --background: var(--dark);
            --text-primary: var(--light);
            --text-secondary: var(--white-80);
            --text-muted: var(--white-70);
            --accent-primary: var(--accent-1);
            --accent-hover: var(--accent-2);
        }

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

        body {
            font-family: var(--font-primary);
            background-color: var(--background);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        #navbarMenu .nav-link {
            color: var(--text-secondary);
            font-family: var(--font-primary);
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbarMenu .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-primary);
            transition: width 0.3s ease;
        }

        #navbarMenu .nav-link:hover {
            color: var(--accent-primary);
        }

        #navbarMenu .nav-link:hover::after {
            width: 100%;
        }

        #navbarMenu .nav-link.active::after {
            width: 100%;
        }

        #navbarMenu .nav-link.active {
            color: var(--accent-primary);
        }

        #navbar.scrolled {
            background: var(--dark);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        /* Hero Styles */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 0 80px;
            /* background: linear-gradient(135deg, var(--dark) 0%, #0f0f1a 50%, var(--dark) 100%); */
            position: relative;
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, var(--accent-1-10), transparent 60%),
                radial-gradient(circle at 70% 50%, var(--accent-3-20), transparent 60%);
            opacity: 0.3;
            animation: heroGlow 8s ease-in-out infinite alternate;
        }

        @keyframes heroGlow {
            0% {
                transform: scale(1) translateY(0);
            }

            100% {
                transform: scale(1.1) translateY(-20px);
            }
        }

        #heroContainer {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        #heroContent {
            text-align: center;
            margin-bottom: 4rem;
        }

        #heroTitle {
            font-family: var(--font-heading);
            font-size: 5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 3px;
            text-shadow: 0 0 40px rgba(230, 57, 70, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #heroSubtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        #heroButton {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
            color: var(--light);
            border: none;
            padding: 1.2rem 3.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px var(--accent-1-10);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        #heroButton::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        #heroButton:hover::before {
            left: 100%;
        }

        #heroButton:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px var(--accent-3-20);
        }

        #heroImageFrame {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6),
                0 0 60px var(--accent-1-10);
            border: 2px solid var(--white-10);
            position: relative;
            animation: fadeInScale 1s ease-out 0.6s both;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        #heroImageFrame::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-hover), var(--accent-3));
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #heroImageFrame:hover::before {
            opacity: 0.7;
        }

        #heroImage {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        #heroImageFrame:hover #heroImage {
            transform: scale(1.05);
        }

        /* Services Styles */
        #services {
            padding: 6rem 0;
            background-color: var(--background);
        }

        #servicesContainer {
            width: 100%;
        }

        #servicesTitle {
            font-family: var(--font-heading);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        #servicesSubtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        #servicesGrid {
            row-gap: 2rem;
        }

        #servicesGrid>[class*='col-'] {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .service-card {
            background-color: var(--white-2);
            border: 1px solid var(--white-4);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            /* margin-bottom: 3rem; */
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-primary);
            box-shadow: 0 10px 30px var(--accent-1-10);
        }

        .service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-content {
            padding: 2rem;
        }

        .service-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--accent-primary);
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Gallery Styles */
        #gallery {
            padding: 6rem 0;
            background: linear-gradient(to bottom, var(--background), var(--white-2));
        }

        #galleryContainer {
            width: 100%;
        }

        #galleryTitle {
            font-family: var(--font-heading);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        #gallerySubtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        /* #galleryGrid {
            width: 100%;
        } */

        /* .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 2rem;
            height: 350px;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, var(--black-80), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 600;
        } */

        .masonry-gallery {
            columns: 3;
            column-gap: 1rem;
            margin-top: 2rem;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .masonry-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            transition: filter 0.3s ease;
        }

        .masonry-item:hover img {
            filter: brightness(1.05);
        }

        /* Modal Styles */

        .modal-dialog {
            height: 100vh;
            margin: 0;
            max-width: 100%;
        }

        .modal-content {
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: none;
        }

        .modal-body {
            overflow: hidden;
            cursor: pointer;
        }

        .modal-img {
            max-height: 90vh;
            object-fit: contain;
            cursor: default;
        }

        /* Testimonials Styles */
        #testimonials {
            padding: 6rem 0;
            background-color: var(--background);
        }

        #testimonialsContainer {
            width: 100%;
        }

        #testimonialsTitle {
            font-family: var(--font-heading);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        #testimonialsSubtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        #testimonialsGrid {
            width: 100%;
        }

        .testimonial-card {
            background-color: var(--white-2);
            border-left: 4px solid var(--accent-primary);
            padding: 2.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px var(--accent-1-10);
        }

        .testimonial-quote {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            color: var(--accent-primary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Contact Styles */
        #contact {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--background), var(--white-2));
        }

        #contactContainer {
            width: 100%;
        }

        #contactTitle {
            font-family: var(--font-heading);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        #contactSubtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        #contactForm {
            max-width: 700px;
            margin: 0 auto;
            background-color: var(--white-2);
            padding: 3rem;
            border-radius: 10px;
            border: 1px solid var(--white-4);
        }

        .form-label {
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-control {
            background-color: var(--background);
            border: 1px solid var(--white-10);
            color: var(--text-primary);
            padding: 0.75rem 1rem;
            border-radius: 5px;
        }

        .form-control:focus {
            background-color: var(--background);
            border-color: var(--accent-primary);
            color: var(--text-primary);
            box-shadow: 0 0 0 0.2rem var(--accent-1-10);
        }

        #submitButton {
            background-color: var(--accent-primary);
            color: var(--light);
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            transition: all 0.3s ease;
        }

        #submitButton:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px var(--accent-3-20);
        }

        /* Footer Styles */
        #footer {
            background: linear-gradient(180deg, var(--dark) 0%, #0f0f1a 100%);
            padding: 4rem 0 2rem;
            border-top: 2px solid var(--white-4);
            position: relative;
            overflow: hidden;
        }

        #footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-hover), transparent);
        }

        #footerContainer {
            width: 100%;
        }

        #footerContent {
            text-align: center;
        }

        #footerBrand {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        #footerTagline {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        #footerDivider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-hover));
            margin: 2rem auto;
            border-radius: 2px;
        }

        #socialIcons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.3rem;
            background: var(--white-4);
            border: 1px solid var(--white-10);
            border-radius: 50%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .social-icon i {
            position: relative;
            z-index: 1;
        }

        .social-icon:hover {
            color: var(--light);
            transform: translateY(-5px) scale(1.1);
            border-color: var(--accent-primary);
            box-shadow: 0 10px 25px var(--accent-1-10);
        }

        .social-icon:hover::before {
            opacity: 1;
        }

        #footerLinks {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-secondary);
            background-color: transparent;
            border: none;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-primary);
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-primary);
        }

        .footer-link:hover::after {
            width: 100%;
        }

        #copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--white-4);
            display: inline-block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #heroTitle {
                font-size: 2.5rem;
            }

            #heroSubtitle {
                font-size: 1rem;
            }

            #heroImage {
                height: 400px;
            }

            .service-image{
                height: auto;
            }

            #servicesTitle,
            #galleryTitle,
            #testimonialsTitle,
            #contactTitle {
                font-size: 2rem;
            }

            #navbarMenu .nav-link {
                margin: 0.5rem 0;
            }

            .masonry-gallery {
                columns: 2;
            }

            .navbar{
                background-color: var(--dark);
            }

        }

        @media (max-width: 480px) {
            .masonry-gallery {
                columns: 1;
            }

            #heroButton{
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }