
:root{
    --primaryColor: #FF5733;
    --whiteColor: #ffffff;
}
.top-header{
    background-color: royalblue !important;
}

.home-page-hero-section{
    background-color: aliceblue;
}

.header-logo a{
    display: block;
    width: 130px;
}

.header-logo a img{
    width: 100%;
    object-fit: contain;
}
.sticky-header {
    position: sticky !important;
    top: 0;
    z-index: 5; /* Ensures the header is above other content */
    width: 100%;  /* Ensures the header takes full width */
}
.header-nav ul li a{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}

.header-action a{
    text-decoration: none;
    background-color: rgb(5, 5, 48);
    color: var(--whiteColor);
    padding: 5px 10px;
}

.hero-section{
    background-image: linear-gradient( 129.1deg,  rgba(243,199,83,1) 26.8%, rgba(18,235,207,1) 114.1% );
    min-height: 80vh;
}

.right-hero-image{
    width: 90%;

}
.right-hero-image img{
    width: 100%;
}

.hero-left-section h1{
    font-weight: 700;
}
.hero-left-section p{
    font-weight: 500;
}

.hero-section-actions a{
    text-decoration: none;
    background-color: rgb(5, 5, 48);
    color: var(--whiteColor);
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}


/* Home services section start */

.home-services-section{
    background-color: aliceblue;
    min-height: 300px;
}

.home-service-icon{
    width: 120px;
    height: 120px;
}
.home-service-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.service-card-home:hover .home-service-icon img{
    transform: scale(1.2) translateY(-10px);
    transition: all 0.4s ease-in-out;
}

.home-service-heading p{
    font-size: 14px !important;
}

.home-background-section{
    min-height: 300px;
    background-image: url("../../images/background-texture1.webp");
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-background-section h2{
    font-weight: 800;
    font-size: 2rem;
}

.home-background-section p{
    font-size: 15px;
    font-weight: 600;
    width: 50%;
    margin: 0 auto;
    padding-top: 10px;
}

.home-form-image{
    width: 100%;
    border-radius: 10px;
}

.home-form-image img{
    width: 100%;
    border-radius: 10px;

}

.home-form{
    position: relative;
    z-index: 0;
}

.form-tag{
    z-index: 100;
}

.home-form::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-color: aliceblue;
    border-radius: 0 0 100% 0;
    z-index: 50;
}

.home-form::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background-color: aliceblue;
    border-radius: 100% 0 0 0;
    z-index: 50;
}

.form-tag label{
    font-size: 14px;
    font-weight: 500;
}

.form-tag input,
.form-tag textarea{
    font-size: 14px;
    font-weight: 600;
}

.form-tag input::placeholder, .form-tag textarea::placeholder{
    font-size: 13px;
    color: #747474ee;
}
.home-form-section-heading{
    font-size: 30px;
    font-weight: 800;
}
.home-form-section-paragraph{
    font-size: 14px;
    font-weight: 600;
}

/* Header menu items start */
.menus .menu_item{
    position: relative;

}

.menus .menu_item a{
    position: relative;
    color: #000000 !important;
}

.submenus{
    position: absolute;
    top: 25px;
    left: 0;
    background-color: var(--whiteColor);
    width: max-content;
    padding: 15px 0 0 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
}

.submenus .submenu_item a{
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    border-bottom: 1px solid #eeee;
    text-wrap: nowrap;
}

.menus .menu_item:hover .submenus{
    opacity: 1;
    pointer-events: visible;
    transition: all 0.4s ease-in-out;
}

.hamburger-button{
    cursor: pointer;
    font-size: 20px;
}

.toggle-sidenav{
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background-color: white;
    z-index: 600;
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.04);
    padding: 20px 0;
}

.toggle-sidenav .menus{
    flex-direction: column;
    justify-content: inherit;
    align-items: inherit;
}

.toggle-sidenav .menus a{
    display: block;
    width: 100% !important;
    border-bottom: 1px solid #eeee;
}

.toggle-sidenav .menus .menu_item .submenus{
    position: inherit;
}

.toggle-sidenav .menus .menu_item .submenus .submenu_item a{
    color: #000000 !important;
}

/* Media Query */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .header-nav{
        display: none;
    }

    .hero-text-section{
        width: 90%;
    }

    .hero-section-actions a{
        width: 100%;
        text-align: center;
        font-size: 13px !important;
        padding: 10px 0;
    }

    .home-background-section p{
        width: 90%;
    }

    .toggle-sidenav{
        width: 70%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .header-nav{
        display: none;
    }
    .hero-text-section{
        width: 90%;
    }
    .hamburger-button{
        display: block;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 968px) {
    .header-nav{
        display: block;
    }
    .hero-text-section{
        width: 70%;
    }

    .hamburger-button{
        display: none;
    }
}
