* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: sans-serif;
}

:root{
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    /* --main-color: #0ef; */
    --main-color: rgb(205, 193, 20);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;  
        /* top-bottom,  left-right */
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
}

.logo{
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}

/* edit */
.logoImage{
    height: 25px;
    width: 130px;
    cursor: default;
}

.navbar a{
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 2rem;
    transition: .3s;
}

.navbar a:hover{
    color: var(--main-color);
}

/* #menu-icon{
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
} */

section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
        /* top, left-right, bottom  */
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content{
    padding-right: 30px;
}

.home-content h3{
    font-size: 3.7rem;
    font-weight: 700;
}

.home-content h3:nth-of-type(2){
    margin-bottom: 2rem;
}

span{
    color: var(--main-color);
}

.home-content h2{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-img img{
    width: 37vw;
    height: 29vw;
    /* padding-left: 30px; */
    border-radius: 10%;
}

.home-content p{
    font-size: 2rem;
}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;   /* top right bottom left  */
    transition: .5s ease;    /* creates a smooth and natural transition effect */
}

.social-media a:hover{
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);    /* horizontal vertical length color  */
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;   /* vertical horizontal  */
    background: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn:hover{
    box-shadow: none;
}

.about{
    display: flex;
    justify-content: center;    /* horizontally centre  */
    align-items: center;    /* vertically centre  */
    gap: 2rem;   /* gap between 2 child elements  */
    background: var(--second-bg-color);
}

.about-img img{
    width: 34vw;
    height: 30vw;
    border-radius: 10%;
}

.heading{
    text-align: center;
    font-size: 4.5rem;
}

.about-content{
    padding-left: 40px;
}

.about-content h2{
    text-align: left;
    line-height: 1.2;
}

.about-content h3{
    font-size: 2.6rem;
}

.about-content p{
    font-size: 2rem;
    margin: 2rem 0 3rem;
}

.about-content i{
    font-size: 1.6rem;
}

.services h2{
    margin-bottom: 5rem;
}

.services-video{
    display: flex;
    justify-content: center;
}

.services-video iframe{
    height: 400px;
    width: 700px;
}


                    /* how-it-works nav 1 start*/

                    
.how-it-works-bar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 100px;
}

.how-it-works-bar a{
    font-size: 2rem;
    color: var(--text-color);
    margin-left: 3.7rem;
    transition: .3s;
}

.how-it-works-bar a:last{
    padding-right: 30px;
}

.how-it-works-bar a:hover{
    color: var(--main-color);
}

/* how-it-works nav 1 end */


/* how-it-works nav 2 start */

.how-it-works-bar .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 125px;
}

.how-it-works-bar .nav-item {
    text-align: center;
    position: relative;
}

.how-it-works-bar .nav-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Circle size */
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1); /* Light transparent background */
    border-radius: 50%; /* Makes it a circle */
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s ease-in-out;
    /* background: radial-gradient(circle, rgba(205,193,20,0.8) 0%, rgba(255,255,255,0) 80%); */
}

.how-it-works-bar .nav-item a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Slight hover effect */
}

.how-it-works-bar .nav-item i {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    color: white;
    margin-left: 40px;
    animation: spin 5s linear infinite;
    /* color: var(--main-color); */
}

/* Change colors dynamically when active */
.how-it-works-box.active .nav-item i {
    color: rgb(255, 255, 255);
}

.how-it-works-box.active .nav-item a {
    background: radial-gradient(circle, rgb(255, 215, 0) 0%, rgba(255, 255, 255, 0) 80%);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


                /* how-it-works nav 2 end */


                /* how it works box start */
/* ..  */

.how-it-works-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);    
    align-items: center;
    margin-top: 10px;
}

.how-it-works-box {
    border-radius: 50% !important;
    position: relative;
    border: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    display: flex;
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.how-it-works-box.active {
    transform: scale(1.2); /* Slightly bigger */
    opacity: 1;
    pointer-events: auto;
    max-width: 100%;
}

.how-it-works-box.hidden {
    opacity: 0;
    pointer-events: none;
}

.how-it-works-box img {
    width: 100%;
    transition: .5s ease;
    filter: blur(2px);
    border-radius: 20% !important;
    box-shadow: 0 0 20px var(--main-color);
    box-shadow: -5px 5px 10px rgba(205, 193, 20, 0.5);
}

.how-it-works-box .how-it-works-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(0);
    transition: .5s ease;
}

.how-it-works-layer p {
    font-size: 1.8rem;
    margin: .3rem 0 1rem;
}

                    /* how it works box end */



                    /* success story start */


.portfolio{
    background: var(--second-bg-color);
}

.portfolio h2{
    margin-bottom: 4rem;
}

.success-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 400px; /* Adjust as needed */
}

.success-box {
    position: absolute;
    width: 80%;
    background-color: var(--second-bg-color);
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: transform 0.5s ease-in-out, opacity 0.5s;
    opacity: 0;
}

.success-box.active {
    opacity: 1;
    transform: translateX(0);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.image-column {
    flex: 1;
    text-align: center;
}

.image-column img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

.text-column {
    flex: 2;
    text-align: center;
    padding-bottom: 50px;
}

.text-column h3 {
    font-size: 2.7rem;
    margin-bottom: 30px;
}

.text-column p {
    font-size: 1.5rem;
    margin: 1rem 0 3rem;
    max-width: 80%; 
    margin: 0 auto; 
    /* text-align: center; */
    text-align: justify; 
    line-height: 1.6;
}

/* Navigation Arrows */
.next-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer;
    background: var(--main-color);
    padding: 10px;
    border-radius: 50%;
    color: white;
}

/* Indicator Dots */
.indicator-container {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 10px;
    z-index: 99;
}

.indicator {
    width: 10px;
    height: 10px;
    background: var(--bg-color);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    background: var(--main-color);
    transform: scale(1.2);
}


                            /* success story end */


.contact h2{
    margin-bottom: 3rem;
}

.contact form{
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--second-bg-color);
    border-radius: .8rem;
    margin: .7rem 0;
}

.contact form .input-box input{
    width: 49%;
}

.contact form textarea{
    resize: none;
}

.contact form .btn{
    margin-top: 2rem;
    cursor: pointer;
}

.footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 9%;
    background: var(--second-bg-color);
}

.footer-text p{
    font-size: 1.6rem;
    /* text-align: center; */
}

.footer-iconTop a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a:hover{
    box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i{
    font-size: 2.4rem;
    color: var(--second-bg-color);
}


/* floating section start  */

/* .floating .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.floating .whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating .whatsapp-float img:hover {
    transform: scale(1.1);
} */


/* Floating Subscribe Button */
.floating .subscribe-float {
    position: fixed;
    bottom: 100px; /* Above Contact Button */
    right: 20px;
    background: var(--main-color);
    color: var(--bg-color);
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 0 1rem var(--main-color);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating .subscribe-float:hover {
    transform: scale(1.1);
    /* box-shadow: none; */
}

/* Floating Contact Button */
.floating .contact-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--main-color);
    color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 0 1rem var(--main-color);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating .contact-float:hover {
    transform: scale(1.1);
}

/* Subscribe Form */
.floating .subscribe-form {
    position: fixed;
    bottom: 160px; /* Above Subscribe Button */
    right: 20px;
    background: white;
    border: 2px solid var(--main-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 1rem var(--main-color);
    display: none;
    z-index: 1000;
    background-color: var(--bg-color);
    margin-bottom: 10px;
}

.floating .subscribe-form h3 {
    margin: 0 0 10px 0;
    color: var(--main-color);
}

.floating .subscribe-form input {
    width: 200px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--main-color);
    border-radius: 8px;
}

.floating .subscribe-form button {
    /* background: rgb(205, 193, 20); */
    /* background: var(--main-color); */
    /* color: white; */
    /* border: none; */
    /* padding: 10px 15px; */
    /* border-radius: 8px; */
    /* cursor: pointer; */
    width: 80px;
    padding: 10px 12px !important;
    margin-left: 10px;
    color: var(--bg-color);

    font-size: 14px !important;
}

.floating .subscribe-form button:hover {
    /* background: rgb(185, 170, 10); */
    box-shadow: none;
}


/* floating section end  */





                        /* loading spinner start 


#loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0ef; 
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


                         loading spinner end  */





                    /* Toast Notification Styles start 

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
    z-index: 1000;
}

.toast.show {
    display: block;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 1; }
}


                     toast notification end */




        /* Loading Spinner Styles */
#loading-spinner {
    position: fixed; /* Fixed position to stay in the center */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset to truly center */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.71); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it's above other elements */
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--main-color); /* Match your theme color */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-spinner p {
    margin: 0;
    font-size: 1.8rem;
    color: #252525;
}

        /* Toast Notification Styles */
/* Toast Notification Styles */
.toast {
    position: fixed; /* Fixed position to stay in the center */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset to truly center */
    background-color: rgba(31, 50, 71, 0.485); /* Dark background */
    color: #fff; /* White text */
    padding: 10px 15px; /* More padding for better spacing */
    border-radius: 10px; /* Rounded corners */
    display: none;
    z-index: 1000; /* Ensure it's above other elements */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    font-size: 2rem; /* Larger font size */
    text-align: center; /* Center-align text */
    min-width: 250px; /* Minimum width for better readability */
    animation: fadeInOut 3s ease-in-out; /* Smooth fade animation */
}

.toast.show {
    display: block; /* Show the toast */
}

/* Toast Animation */
@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    10%, 90% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Optional: Add an icon to the toast */
.toast::before {
    content: "✔"; /* Checkmark icon */
    display: block;
    font-size: 3rem; /* Larger icon */
    margin-bottom: 10px; /* Space between icon and text */
    color: var(--main-color); /* Match your theme color */
}

        /* toast and spin end  */



/* mobile */

/*
@media (max-width: 1200px){
    html{
        font-size: 55%;
    }
}

@media (max-width: 991px){
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .services{
        padding-bottom: 7rem;
    }

    .portfolio{
        padding-bottom: 7rem;
    }

    .contact{
        min-height: auto;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 768px) {

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .home {
        flex-direction: column;
    }

    .home-content h3{
        font-size: 2.6rem;
    }

    .home-content h2{
        font-size: 3.8rem;
    }

    .home-img img{
        width: 55vw;
        height: 60vw;
    }

    .about{
        flex-direction: column-reverse;
    }

    .about img{
        width: 57vw;
        height: 55vw;
    }

    .services h2{
        margin-bottom: 3rem;
    }

    .portfolio h2{
        margin-bottom: 3rem;
    }

    .success-container{
        grid-template-columns: repeat(2, 1fr);
    }
} 

@media (max-width: 617px){
    .success-container{
        grid-template-columns: 1fr;
    }
} 

@media (max-width: 450px){
    html{
        font-size: 50%;
    }

    .contact form .input-box input{
        width: 100%;
    }
} 

@media (max-width: 365px){
    .home-img img{
        width: 72vw;
        height: 80vw;
    }

    .about-img img{
        width: 72vw;
        height: 75.5vw;
    }

    .footer{
        flex-direction: column-reverse;
    }

    .footer p{
        text-align: center;
        margin-top: 2rem;
    }
}
 
*/

.recaptcha-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-top: 5px
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none; /* Hide by default */
    cursor: pointer;
}


/* Mobile-specific styles */
@media (max-width: 768px) {
    /* General adjustments */
    html {
      font-size: 50%; /* Reduce base font size for smaller screens */
    }
  
    body {
      overflow-x: hidden; /* Prevent horizontal scrolling */
    }
  
    /* Header adjustments */
    .header {
      padding: 1rem 3%; /* Reduce padding for smaller screens */
      z-index: 5;
    }

    #menu-icon {
        display: block; /* Show on mobile */
    }

  
    .navbar {
        display: none; /* Hide navbar by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center; /* Center align items */
    }

    .navbar.active {
        display: flex; /* Show navbar when active */
        margin-bottom: 100px;
    }
  
    .navbar a {
      font-size: 2rem; /* Increase font size for better readability */
      margin: 1.5rem 0; /* Add spacing between navbar items */
    }



  
    /* Home section adjustments */
    .home {
      flex-direction: column; /* Stack home content vertically */
      text-align: center; /* Center align text */
    }

    .navbar.active + .home {
        margin-top: 200px; /* Adjust this value based on your navbar height */
    }
  
    .home-content {
      padding-right: 0; /* Remove right padding */
    }
  
    .home-content h3 {
      font-size: 2.5rem; /* Reduce font size for smaller screens */
    }
  
    .home-content h2 {
      font-size: 3.5rem; /* Reduce font size for smaller screens */
    }

    .home-content h3:nth-of-type(2){
        height: 35px;
    }
  
    .home-img img {
      width: 70vw; /* Adjust image width for smaller screens */
      height: auto; /* Maintain aspect ratio */
      margin-top: 2rem; /* Add spacing above the image */
    }
  
    /* About section adjustments */
    .about {
      flex-direction: column-reverse; /* Stack about content vertically */
      text-align: center; /* Center align text */
    }
  
    .about-img img {
      width: 70vw; /* Adjust image width for smaller screens */
      height: auto; /* Maintain aspect ratio */
      margin-top: 2rem; /* Add spacing above the image */
    }
  
    .about-content {
      padding-left: 0; /* Remove left padding */
    }
  
    .about-content h2 {
      text-align: center; /* Center align heading */
    }
  
    .about-content h3 {
      font-size: 2.2rem; /* Reduce font size for smaller screens */
    }
  
    .about-content p {
      font-size: 1.8rem; /* Reduce font size for smaller screens */
    }




  
    /* Services section adjustments */
    .how-it-works {
        position: relative; /* Ensure the container is a positioning context */
        height: 400px; /* Set a fixed height for the container */
    }

    .how-it-works-bar {
        flex-direction: column; /* Stack navigation items vertically */
        gap: 20px; /* Add spacing between items */
        margin-bottom: 20px; /* Add spacing below the navigation bar */
    }

    .how-it-works-bar .nav-links {
        /* flex-direction: column; */
        gap: 25px; /* Add spacing between items */
    }

    .how-it-works-bar .nav-item{
        height: 30px;
        width: 35px;
    }

    .how-it-works-bar .nav-item a {
        width: 50px;
        height: 50px;
        font-size: 8px;
    }

    .how-it-works-bar .nav-item i {
        margin-left: 55px; /* Remove left margin */
        font-size: 15px;
    }


    /*

    .how-it-works-container {
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        display: flex; 
        justify-content: center; 
        align-items: center; 
        gap: 0; 
        overflow: visible;
    }

    .how-it-works-box {
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        margin-bottom: 0;
        opacity: 0; 
        transition: opacity 0.5s ease; 
    }

    .how-it-works-box.active {
        opacity: 1; 
        z-index: 1; 
        height: 200px;
        width: 200px !important;
        overflow-x: visible;
    }

    .how-it-works-box.hidden {
        opacity: 0; 
        z-index: 0; 
    }

    */

    .how-it-works-container {
        display: block;
        position: relative;
        height: 200px; /* Adjust based on your content */
    }

    .how-it-works-box {
        position: absolute;
        top: 20%;
        left: 20%;
        transform: translate(-50%, -50%);
        width: 220px; /* Adjust the width */
        height: 220px; /* Adjust the height */
        margin: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .how-it-works-box.active {
        opacity: 1;
    }

    .how-it-works-layer {
        opacity: 1; /* Always show the layer on mobile */
    }

    .how-it-works-box.hidden {
        opacity: 0; 
        z-index: 0; 
    }

    .how-it-works-layer p {
        font-size: 2rem;
    }

    

    /* Portfolio section adjustments */
    .portfolio h2 {
      margin-bottom: 3rem; /* Reduce margin for smaller screens */
    }
  
    .success-container {
      height: 1000px;
      flex-direction: column; /* Stack success boxes vertically */
    }
  
    .success-box {
      position: static; /* Remove absolute positioning */
      width: 100%; /* Full width for smaller screens */
      margin-bottom: 2rem; /* Add spacing below each box */
    }
  
    .content-wrapper {
      flex-direction: column; /* Stack image and text vertically */
      text-align: center; /* Center align text */
    }
  
    .image-column img {
      max-width: 100%; /* Ensure image fits within the container */
    }
  
    .text-column {
      padding-bottom: 0; /* Remove padding */
    }
  
    .text-column h3 {
      font-size: 2.5rem; /* Reduce font size for smaller screens */
    }
  
    .text-column p {
      font-size: 1.6rem; /* Reduce font size for smaller screens */
    }
  



    /* Contact section adjustments */
    .contact h2 {
      margin-bottom: 2rem; /* Reduce margin for smaller screens */
    }
  
    .contact form .input-box {
        flex-direction: column; /* Stack input fields vertically */
    }

    .contact form .input-box input {
        width: 100%; /* Full width for smaller screens */
        margin-bottom: 1rem; /* Add spacing between input fields */
    }

    .contact form textarea {
        width: 100%; /* Full width for smaller screens */
    }
  
    /* Footer adjustments */
    .footer {
      flex-direction: column; /* Stack footer items vertically */
      text-align: center; /* Center align text */
    }
  
    .footer-text p {
      margin-bottom: 1rem; /* Add spacing below text */
      font-size: 1.2rem;
    }
  
    .footer-iconTop a {
      margin-top: 1rem; /* Add spacing above the icon */
    }
  
    /* Floating section adjustments */
    .floating .subscribe-float {
      bottom: 80px; /* Adjust position for smaller screens */
      right: 10px; /* Adjust position for smaller screens */
      padding: 10px 15px; /* Reduce padding for smaller screens */
      font-size: 14px; /* Reduce font size for smaller screens */
    }
  
    .floating .contact-float {
      bottom: 10px; /* Adjust position for smaller screens */
      right: 10px; /* Adjust position for smaller screens */
      width: 50px; /* Reduce size for smaller screens */
      height: 50px; /* Reduce size for smaller screens */
      font-size: 20px; /* Reduce font size for smaller screens */
      z-index: 5;
    }
  
    .floating .subscribe-form {
      bottom: 130px; /* Adjust position for smaller screens */
      right: 10px; /* Adjust position for smaller screens */
      width: 90%; /* Full width for smaller screens */
      padding: 15px; /* Reduce padding for smaller screens */
    }
  
    .floating .subscribe-form input {
      width: 100%; /* Full width for smaller screens */
    }
  
    .floating .subscribe-form button {
      width: 100%; /* Full width for smaller screens */
      margin-left: 0; /* Remove left margin */
      margin-top: 10px; /* Add spacing above the button */
    }

    .recaptcha-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 5px;
    }
    
  }

.job-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* width: 4rem;
    height: 4rem; */
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 4rem;
    font-size: 2rem;
    color: var(--main-color);
    /* margin: 3rem 1.5rem 3rem 0;    */
    transition: .5s ease;
    padding: .4rem 1rem;
}

.job-button:hover {
    background: var(--main-color);
    color: var(--second-bg-color) !important;
    font-weight: bold;
    box-shadow: 0 0 1rem var(--main-color);
}

