.footer-container {
            position: relative;
            width: 100%;
            padding: 100px 0px;
            height: 80vh;
            background-color: rgb(248, 245, 245);
            overflow: hidden;
            display: flex;
            text-align: center;           
            align-items: center;
            justify-content: center;
          
            
        }

        /* Ground container */
        .ground-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1;
        }

        .ground-container{
            position: absolute;
            bottom: -45%;
            right: 0px;
        }

       
        .stone-shape{
            position: absolute;
            top: -50px;
            left: 10%;
            z-index: 1;
        }

        .stone-shape img{
            width: 200px;
        }
        .rocket{
            position: absolute;
            top: 2%;
            right: 10%;
            z-index: 1;
        }

        .rocket img{
            width: 200px;
        }

        .stone-shape2{
             position: absolute;
             top: 2%;
             right: 2%;

        }

        .stone-shape2 img{
            width: 200px;
        }
       
        .rocket2{
            position: absolute;
            top: -50%;
            left: 10%;
            z-index: 1;

        }

        .rocket2 img{
            width: 100px;
        }

        .footer-content{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 1.25rem;
            color: #F5864A;
            font-weight: 500;
        }

        .email-section {
            display: flex;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            overflow: hidden;
            margin: 20px 0px;
        }

        .email-input {
            flex: 1;
            padding: 1rem 1.5rem;
            font-size: 1.125rem;
            border: 2px solid #d1d5db;
            border-right: none;
            background-color: #fff;
            outline: none;
            border-radius: 50px 0 0 50px;
        }

        .email-input:focus {
            border-color: #fb923c;
        }

        .subscribe-btn {
            padding: 1rem 2rem;
            background-color: #F5864A;
            color: white;
            border: 2px solid #fb923c;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 0 50px 50px 0;
            transition: all 0.2s ease;
        }

        .subscribe-btn:hover {
            background-color: #f97316;
            border-color: #f97316;
        }

        .nav-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 40px;
        }

        .nav-btn {
            padding: 0.75rem 2rem;
            font-weight: 600;
            font-size: 0.875rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.2s ease;
            background-color: #fff;
            color: #374151;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .nav-btn:hover {
             background-color: #F5864A;
            
        }

       

     
        @media (max-width: 768px) {
            .title {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .email-section {
                flex-direction: column;
                border-radius: 25px;
            }

            .email-input {
                border-radius: 25px 25px 0 0;
                border-right: 2px solid #d1d5db;
                border-bottom: none;
            }

            .subscribe-btn {
                border-radius: 0 0 25px 25px;
                border-top: none;
            }

            .nav-buttons {
                flex-direction: column;
                align-items: center;
            }

            .nav-btn {
                width: 200px;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2rem;
            }

            .container {
                gap: 2rem;
            }
        }