* {
     margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

body {
    font-family: 'Poppins', sans-serif;
    background: #262626;
    color: white;
    }

.form-section{
    padding: 80px 0px;
}

    .contact-header {
            text-align: center;
            padding: 40px 20px;
            
        }

        .contact-header h1 {
           background: linear-gradient(180deg, #F6F6F7 0%, #7E808F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; 
            color: transparent;
            font-weight: 800;
            margin-bottom: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .header p {
            color: #cccccc;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 500px;
            background: #FFFFFF0A;
            border-radius: 20px;

        }

        .form-section {
            padding: 50px 40px;
            
        }

        .form-section h2 {
            color: #ffffff;
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .form-section .subtitle {
            color: #cccccc;
            font-size: 0.95rem;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        input, textarea, select {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            box-sizing: border-box;
        }

        input::placeholder, textarea::placeholder {
            color: #aaaaaa;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b35;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
        }

         select {
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 20px;
            padding-right: 50px;
        }

        select option {
            background: #333;
            color: #ffffff;
            padding: 10px;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

       .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #E7451E 0%, #F16522 117.18%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}



    
        .image-section {
            position: relative;
            overflow: hidden;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
          
            padding: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
             .image-section{
                min-height: 0px;
            }
            .image-placeholder{
                display: none;
            }
            .content {
                grid-template-columns: 1fr;
            }

            .form-section {
                padding: 30px 25px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

          
        }

        @media (max-width: 480px) {

           
            .form-section {
                padding: 25px 20px;
            }

            .form-section h2 {
                font-size: 1.5rem;
            }

            input, textarea {
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            .submit-btn {
                padding: 15px;
                font-size: 1rem;
            }
        }

        /* Animation for form inputs */
        .form-group {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* -------------contact Info section------- */
         .contactInfo-section {
            background: url('../images/contact-info.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            color: white;
            min-height: 400px;
            display: flex;
            align-items: center;
            margin: 80px 0px;
        }


         .contact-sections {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            width: 100%;
        }

        .contact-info-section {
            text-align: center;
        }

        .contact-info-section h3 {
            font-size: 16px;
            font-weight: 400;
            color: #ccc;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info-section .main-text {
            font-size: 24px;
            font-weight: 300;
            line-height: 1.4;
            margin-bottom: 30px;
            color: white;
        }

        .contact-detail {
            margin-bottom: 15px;
        }

        .contact-detail strong {
            display: block;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 5px;
            color: white;
        }

        .contact-detail span {
            font-size: 14px;
            color: #ccc;
            line-height: 1.5;
        }

        .contact-detail a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }

        .contact-detail a:hover {
            color: #ddd;
            transition: color 0.3s ease;
        }

        /* Tablet Styles */
        @media (max-width: 968px) {
            .contact-sections {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .contact-info-section .main-text {
                font-size: 22px;
            }
            
            .contactInfo-section {
                padding: 60px 0;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .contact-sections {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .contact-info-section {
                text-align: center;
            }
            
            .contact-info-section .main-text {
                font-size: 20px;
            }
            
            .contactInfo-section {
                padding: 50px 0;
                background-attachment: scroll;
            }
            
            .contact-sections {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .contact-info-section .main-text {
                font-size: 18px;
            }
            
            .contact-detail strong {
                font-size: 16px;
            }
            
            .contact-detail a {
                font-size: 16px;
            }
            
            .contactInfo-section {
                padding: 40px 0;
            }
        }


         

        /* subscribe */

        .input-container{
    background-color: black;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 70px 0px;
    position: relative;
    z-index: 2;
}

.input-image{
    width: 60%;
}

.input-content{
    width: 40%;
    display: flex;
    flex-direction: column;
}

.enter-your-email{
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.enter-your-email input, .enter-your-email .btn-get-started{
    background-color: transparent;
    color: rgb(255, 255, 255, 0.6);
    border: 1px solid #F16522;
    padding: 10px;
    font-size: 12px;
    border-radius: 24px;
}

.enter-your-email input{
    width: 60%;
}

.enter-your-email .btn-get-started{
    color: white;
}

input:focus{
    outline: none !important;
}

/* Responsive */

@media(max-width:1000px){
      .input-image{
        width: 53%;
    }
}
@media (max-width: 768px) {
    .subscribe-section::before {
        width: 400px;
        height: 400px;
        top: -10%;
        right: -25%;
    }

    .input-content h2{
        font-size: 16px;
    }
    .input-image{
        width: 40%;
    }
.enter-your-email{
    flex-direction: column;
    margin-top: 10px;
}
    .enter-your-email input{
        width: 100%;
    }

    .input-image  img{
        width: 300px;
    }
}



@media (max-width: 480px) {
    .subscribe-section::before {
        width: 300px;
        height: 300px;
        top: -5%;
        right: -30%;
    }
.input-image img{
    width: 200px;
}
 
   .input-container{
    flex-direction: column;
    align-items: center;
    justify-content: center;

   } 
   .input-image{
    width: 100%;
   }

   .input-content{
    width: 100%;
    align-items: center;
    padding: 10px 0px
    
    ;
   }
}


