 body,
        html {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background: #000;
            overflow-x: hidden;
            overflow-y:hidden;
        }

        /* Navbar */
        .navbar {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding: 15px 40px;
              margin:auto;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #fff !important;
            letter-spacing: 1px;
        }
        .navbar-brand img{
            width:9%;
          
        }

        .nav-link {
            color: #f0f0f0 !important;
            margin-left: 15px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: #ffffff !important;
            text-decoration: underline;
        }

        /* Section Wrapper */
        .hero-section {
            display: flex;
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .hero-left,
        .hero-right {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;

        }

        /* Slanted Shapes */
        .hero-left {
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            margin-right: -50px;
        }

        .hero-right {
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
            margin-left: -50px;
        }

        /* Background Videos */
        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        /* Dark Overlay */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.40);
            z-index: -1;
        }

        /* Text Styling */
        .content {
            text-align: center;
            z-index: 2;
            padding: 20px;
        }
      
        .outline-text {
            font-size: 3rem;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px #fff;
            text-transform: uppercase;
        }

        .typewriter-text {
            overflow: hidden;

            white-space: nowrap;
            width: 0;
            animation: typing 3s steps(30, end) forwards, blink 0.75s step-end infinite;
            font-size: 1.3rem;
            font-weight: 500;
        }

        @keyframes typing {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blink {
            50% {
                border-color: transparent;
            }
        }

        .burst-text {
            font-size: 2rem;
            font-weight: 700;
            opacity: 0;
            animation: burst 0.7s ease-out forwards;
            animation-delay: 3s;
        }

        @keyframes burst {
            0% {
                transform: scale(0.6);
                opacity: 0;
            }

            50% {
                transform: scale(1.3);
                opacity: 1;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* CTA Button */
        .btn-cta {
           
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            background: #ffffff;
            color: #000;
            border: none;
            transition: 0.4s;
        }

        .btn-cta:hover {
            background: #000;
            color: #f0f0f0;
            transform: scale(1.05);
        }

        /* Fade-in on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                height: auto;
            }

            .hero-left,
            .hero-right {
                clip-path: none;
                height: 50vh;
            }
        }

        /* ---------- BURST + ZOOM ANIMATION ---------- */
        .burst-letter {
            display: inline-block;
            opacity: 0;
            transform: scale(0.3) rotate(-15deg);
        }

        .burst-animate {
            animation: burstZoom 0.5s ease forwards;
        }

        @keyframes burstZoom {
            0% {
                opacity: 0;
                transform: scale(0.3) rotate(-15deg);
            }

            60% {
                opacity: 1;
                transform: scale(1.3) rotate(10deg);
            }

            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        /* ---------- SMOOTH FADE-IN CONTAINER ---------- */
        .animate-container {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease;
        }

        .animate-container.visible {
            opacity: 1;
            transform: scale(1);
        }

        .burst-letter {
            display: inline-block;
            opacity: 0;
            transform: scale(0.7) translateY(20px);
            transition: all 0.3s ease-out;
        }

        .burst-animate {
            opacity: 1;
            transform: scale(1) translateY(0);

        }

        .Heading,
        .animatedHeading {
            width: 615px;
           

        }
        #had {
        font-size: 3rem;
        margin-top:2px;
        }
        #hadd{
            font-size: 2.5rem; margin-left: 60px;
        }
        .Heading{
            margin-left: 100px;
        }
        .para {
            
            font-size: 22px;
            text-align: center;
        }
        .text-start{
            margin-right: 80px;
        }
        .text-end {
            margin-left: 80px;
        }
        #butn{
            margin-right: 60px;
        }
        .right{
            margin-top: 20px;
        }
        .left{
            margin-top: 65px;
        }