/* COMMON STYLES */
        html {
            scroll-padding-top: 100px;
            scroll-behavior: smooth;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto Slab', serif;
            color: white;
            cursor: pointer;
            overflow-x: hidden;
            /* === Animated Gradient Background === */
            background: linear-gradient(120deg, #232526, #414345, #0055ff, #ff6e7f);
            background-size: 400% 400%;
            animation: gradientMove 18s ease infinite;
        }
        @keyframes gradientMove {
            0% {background-position: 0% 50%;}
            50% {background-position: 100% 50%;}
            100% {background-position: 0% 50%;}
        }

        p {
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        /* FRONT PAGE STYLES */
        #front-page {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .background-3d {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        #rotating-house {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nav_bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 15px 5vw;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .logo h3 {
            color: white;
            font-weight: 900;
            font-size: 1.8rem;
            margin: 0;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        .content {
            margin-top: 120px;
            padding: 50px;
            height:60vh;
        }

        /* Footer Section */
        .front-footer {
            margin-top: 2vh;
            padding: 20px 5vw;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 20px 5vw;
            color: white;
            text-align: center;
        }

        .front-footer .social-media-links a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }

        .front-footer .social-media-links a:hover {
            color: #f7cfcf;
        }

        /* NEXT PAGE STYLES */
        #next-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow-y: auto;
        }

        #bg-video {
            position: fixed;
            right: 0;
            bottom: 0;
            min-width: 100%;
            min-height: 100%;
            z-index: -1;
            object-fit: cover;
            filter: brightness(0.7) saturate(1.2);
        }

        .next-nav_bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5vw;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .next-nav_items a {
            color: #fff;
            margin-left: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            position: relative;
            transition: color 0.4s;
            font-size: 1rem;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        .next-nav_items a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0%;
            height: 3px;
            background: linear-gradient(to right, #00b4db, #0083b0);
            transition: width 0.3s ease;
            border-radius: 5px;
        }

        .next-nav_items a:hover {
            color: #ffecf0;
        }

        .next-nav_items a:hover::after {
            width: 100%;
        }

        .my_container {
            margin-bottom: 80vh;
        }

        #home {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 100px 5vw 60px;
            
        }

        .box1 {
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 25px;
            margin: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        .box2 {
            border-radius: 20px;
            padding: 25px;
            margin: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .box1:hover,
        .box2:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
        }

        .box1 {
            flex: 1 1 30%;
            max-width: 30vw;
            color: #fff;
        }

        .box1 h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ffffff;
            text-shadow: 1px 1px 3px #000;
        }

        .box1 p {
            font-size: 1rem;
            color: #eeeeee;
        }

        .box2 {
            flex: 1 1 60%;
            max-width: 60vw;
            color: #fff;
        }

        .carousel_wrapper {
            margin: 20px 5vw;
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 5px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            color: #fff;
        }

        .carousel_wrapper2 {
            margin: 60px 5vw;
            padding: 30px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            color: #fff;
        }

        #about {
            padding-top: 10px;
            margin-top: 90vh;
            margin-bottom: 80vh;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            scroll-margin-top: 15vh;
        }

        #about:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
        }

        #about h1 {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
        }

        .carousel_wrapper h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #fff;
            text-shadow: 1px 1px 4px #000;
        }

        .carousel-inner img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
        }

        .carousel-inner img:hover {
            transform: scale(1.03);
        }

        .para p {
            margin-top: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #fff;
            text-shadow: 1px 1px 2px #000;
            text-align: justify;
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        .services {
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(12px);
            width: 98%;
            padding: 10px;
            margin-top: 10vh;
            margin-bottom: 10vh;
            padding-bottom: 10vh;
            margin-left: 1vw;
            margin-right: 1vw;
            border-radius: 15px;
            color: white;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            scroll-margin-top: 15vh;
        }

        .services:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
        }

        .services h1 {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            margin-bottom: 30px;
            font-family: "Roboto Slab", serif;
            font-style: normal;
        }

        /* Horizontal Scroll Area */
        .marquee-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            scroll-behavior: smooth;
            padding: 10px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .marquee-wrapper::-webkit-scrollbar {
            display: none;
        }

        /* Flex items inside scroll container */
        .marquee-track {
            display: inline-flex;
            gap: 20px;
            width: max-content;
        }

        /* Item Card */
        .item1 {
            flex: 0 0 auto;
            width: 300px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            color: white;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
        }

        /* Image Styling */
        .item_img1 {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
            transition: transform 0.3s ease;
        }

        /* Hover effect on image */
        .item_img1:hover {
            transform: scale(1.03);
        }

        /* Button hidden by default */
        .btn1 {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 40px;
            background: linear-gradient(135deg, #0055ff, #465ec1, #687bc3);
            border-radius: 15px;
            box-shadow: #0083b0;
            font-weight: bold;
            cursor: pointer;
            color: white;
            font-family: "Roboto Slab", serif;
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 10;
        }

        /* Show button on hover */
        .item1:hover .btn1 {
            opacity: 1;
            pointer-events: auto;
        }

        .btn1:hover {
            background: linear-gradient(135deg, #0055ff, #3355de, #415fc8);
        }

        .contact-section {
            padding: 40px 5vw;
            background-color: rgba(128, 124, 124, 0.449);
            color: white;
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-style: normal;
            scroll-margin-top: 15vh;
            margin-top: 20vh;
        }

        #contact h1 {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        .contact-form {
            display: flex;
            justify-content: center;
        }

        .contact-form form {
            width: 50%;
            background-color: rgba(2, 2, 2, 0.6);
            padding: 20px;
            border-radius: 10px;
        }

        .contact-form .form-control {
            background-color: rgba(255, 255, 255, 0.423);
            border-radius: 5px;
        }

        .contact-info {
            text-align: center;
            margin-top: 40px;
        }

        .contact-info h3 {
            margin-bottom: 20px;
        }

        .contact-section .form-control {
            color: white;
            background-color: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            font-family: "Roboto Slab", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        .contact-section .form-control::placeholder {
            color: #ccc;
        }

        .contact-section label {
            color: white;
        }

        /* Footer Section */
        .next-footer {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            padding: 20px 5vw;
            color: white;
            text-align: center;
        }

        .next-footer .social-media-links a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }

        .next-footer .social-media-links a:hover {
            color: #f7cfcf;
        }

        /* === Glassmorphism Card Effect === */
        .glass-card {
            background: rgba(255,255,255,0.18);
            border-radius: 20px;
            box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 30px;
            color: #fff;
            margin: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .glass-card:hover {
            transform: scale(1.03) translateY(-10px);
            box-shadow: 0 12px 40px rgba(31,38,135,0.45);
        }

        /* === Glowing Text Effect === */
        .glow-text {
            color: #fff;
            text-shadow: 0 0 8px #00b4db, 0 0 16px #0083b0, 0 0 24px #0055ff;
            font-weight: bold;
            font-size: 2.2rem;
        }

        /* === Neon Button === */
        .neon-btn {
            background: linear-gradient(90deg, #00b4db, #0083b0);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 12px 32px;
            font-size: 1.1rem;
            font-family: "Roboto Slab", serif;
            box-shadow: 0 0 8px #00b4db, 0 0 16px #0083b0;
            transition: box-shadow 0.3s, transform 0.3s;
            cursor: pointer;
        }
        .neon-btn:hover {
            box-shadow: 0 0 24px #00b4db, 0 0 32px #0083b0;
            transform: scale(1.07);
            background: linear-gradient(90deg, #0055ff, #ff6e7f);
        }

        /* === Custom Scrollbar === */
        ::-webkit-scrollbar {
            width: 12px;
            background: rgba(0,0,0,0.2);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #00b4db, #0083b0);
            border-radius: 6px;
            box-shadow: 0 0 6px #00b4db;
        }

        /* === Animated Social Media Icons === */
        .social-media-links a {
            position: relative;
            transition: color 0.3s, transform 0.3s;
        }
        .social-media-links a::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, #00b4db 40%, transparent 60%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
            z-index: -1;
        }
        .social-media-links a:hover {
            color: #00b4db;
            transform: scale(1.2);
        }
        .social-media-links a:hover::before {
            width: 40px;
            height: 40px;
        }

        /* === Animated Underline for Headings === */
        h1, h2, h3 {
            position: relative;
            display: inline-block;
        }
        h1::after, h2::after, h3::after {
            content: '';
            display: block;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #00b4db, #0083b0);
            border-radius: 2px;
            transition: width 0.4s;
            margin-top: 8px;
        }
        h1:hover::after, h2:hover::after, h3:hover::after {
            width: 100%;
        }

        /* === Card Hover Lift Effect === */
        .box1, .box2, .carousel_wrapper, .carousel_wrapper2, .services {
            transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s;
        }
        .box1:hover, .box2:hover, .carousel_wrapper:hover, .carousel_wrapper2:hover, .services:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 16px 40px rgba(0,0,0,0.45);
        }

        /* === Fade-in Animation for Sections === */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px);}
            to { opacity: 1; transform: translateY(0);}
        }
        .section-fade {
            animation: fadeInUp 1.2s cubic-bezier(.25,.8,.25,1);
        }

        /* === Add .section-fade to any section for fade-in effect === */