@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css');
/*  ////////// ////////// ////////// ////////// */
:root {
    /* ========== COLORS ========== */
    --primary-color: #0086FF;
    --background-color: #F0F3F7;
    --second-color: #9DA2AD;
    --grey-color: #7A7A7B;
    --white-color: #FFFFFF;
}
/*  ////////// ////////// ////////// ////////// */

body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// HEADER VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

#header {
    position: fixed;
    background-color: white;
    color: #fff;
    padding: 20px 0;
    width: 100vw;
    z-index: 1;
    transition: background 0.3s ease-in-out;
}

#header nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .logo {
    height: 90%;
    width: 20%;
    position: absolute;
    left: 0;
    object-fit: cover;
}

#header .logo:hover {
    cursor: pointer;
}

.header-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 20px; /* Adjust the margin as needed */
}

#header h1 {
    margin-bottom: 10px; /* Adjust the margin as needed */
}

#header ul {
    position: absolute;
    right: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

#header li {
    margin-right: 25px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease-in-out;
}

#header li:hover {
    border-bottom: 2px solid var(--primary-color);
}

#header ul a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.menu-btn {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: var(--background-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
  }
  
  .sidenav button {
    padding: 8px 8px 8px 32px;
    margin-top: 50px;
    text-decoration: none;
    font-size: 25px;
    background-color: var(--background-color);
    color: var(--primary-color);
    display: block;
    transition: 0.3s;
    border: none;
  
  }
  
  .sidenav button:hover {
    color: lightgray;
    cursor: pointer;
  }
  
  .sidenav .popoutmenuclosebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
    cursor: pointer;
  }

  .sidenav .popoutmenuclosebtn:hover {
    color: lightgray;
  }

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END HEADER VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// INITIAL VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

.hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    /* background-color: goldenrod; */
    height: 100vh;
}

.initialoverlay {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center ;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(1px); 
    margin: 20px;
    /* background-color: red; */
}

.herotextcontainer {
    /* background-color: orange; */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero h2 {
    font-size: 3em;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    text-align: left;
    margin-bottom: 20px;
    color: black;
    /* background-color: brown; */
    /* text-shadow: 2px 2px black; */
}

.hero p {
    font-size: 1.5em;
    font-weight: 250;
    font-family: 'Rubik', sans-serif;
    text-align: left;
    margin-bottom: 40px;
    color: black;
    /* background-color: orange; */
    /* text-shadow: 2px 2px black; */
}

.heroimgcontainer {
    /* background-color: green; */
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homeimg {
    width: 80%;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.socialscontainer {
    position: absolute;
    bottom: 0;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    /* background-color: yellow; */
}

.socialicon {
    padding: 15px;
    /* color: var(--primary-color); */
    color: black;
    font-size: 2em;
}

.socialicon:hover {
    cursor: pointer;
    color: var(--primary-color);
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END INITIAL VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// IMAGE CAROUSEL VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    height: 40vh;
}

.carousel-image {
    width: 30%;
    height: 90%;
    object-fit: cover;
    margin: 10px;
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END IMAGE CAROUSEL VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// FEATURES VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

#features {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
}

.feature-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
}

.featuresheader {
    width: 90%;
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-align: left;
    padding-top: 50px;
    /* background-color: goldenrod; */
}

.featuressubhead {
    width: 90%;
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-align: left;
    /* background-color: darkmagenta; */
}

.blockscontainer {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    grid-gap: 20px;
}

.block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.block:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.block img {
    width: 33%;
    height: 33%;
    object-fit: contain;
}

.block h3 {
    /* background-color: greenyellow; */
    width: 100%;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.block p {
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: grey;
}

.block span {
    color: black;
    font-weight: 500;
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END FEATURES VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// PRICING VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

#pricing {
    background-size: cover;
    background-position: center;
    /* background-color: fuchsia; */
    color: #fff;
    text-align: center;
    padding: 10px;
    overflow: hidden;
}

.pricingoverlay {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center ;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Black background with opacity */
    backdrop-filter: blur(1px); /* Add blur effect */
    /* padding: 150px 0; */
    margin: 20px;
}

 .pricingheader {
    width: 90%;
    color: var(--primary-color);
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-align: left;
    padding-top: 50px;
}

.pricingcontainer {
    /* background-color: goldenrod; */
    height: 100%;
    width: 90%;
    /* padding: 20px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.left-side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60%;
    height: 100%;
    /* padding: 20px; */
    box-sizing: border-box;
    /* background-color: slateblue; */
}

.price-rectangle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
    margin-right: 20px;
    width: 40%;
    height: 70vh;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.lefthalfcircle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; 
    left: 50%; 
    width: 200%;
    height: 150%;
    /* background-color: var(--primary-color); */
    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.price-rectangle h2 {
    position: absolute;
    top: -10;
    font-size: 1.5em;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 0;
    /* background-color: green; */
}

.prlist {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: table-cell;
    padding: 0;
    width: 80%;
    height: 50%;
    margin-top: -50px;
    /* background-color: firebrick; */
}

.pricelistcell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 25%;
    width: 95%;
    padding: 10px;
    /* background-color: rosybrown; */
}

.price-rectangle li {
    display: block;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-weight: 550;
    font-size: 1.5rem;
    width: 100%;
    color: white;
    /* background-color: white; */
}

.price-rectangle .checkmark {
    color: green;
    padding-right: 5px;
}

.priceamount {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, -50%);
    color: black;
    text-align: right;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 3em;
}

.priceamount span {
    color: black;
    text-align: right;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 0.5em;
}

.price-rectangle button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.price-rectangle2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
    margin-right: 20px;
    width: 40%;
    height: 70vh;
    box-sizing: border-box;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.righthalfcircle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; 
    left: 50%; 
    width: 200%;
    height: 150%;
    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


.price-rectangle2 h2 {
    position: absolute;
    top: -10;
    font-size: 1.5em;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 0;
    /* background-color: green; */
}

/* .price-rectangle2 p {
    position: absolute;
    color: white;
    display: block;
    padding: 10px 0;
    text-align: left;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    background-color: firebrick;
} */

.price-rectangle2 p {
    position: absolute;
    color: white;
    display: block;
    padding: 10px 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    margin-top: -50px;
}

.price-rectangle2 button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30vw;
    height: 30vw;
    /* background: purple; */
}

.rightsideimg {
    /* background-color: indianred; */
    width: 150%;
    height: 150%;
    object-fit: cover;
} 

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END PRICING VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// CONTACT VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

.contact {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact .innercontainer {
    display: flex;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact form label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.contact form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

.contact form button {
    background-color: white;
    color: var(--primary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END CONTACT VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// PRIVACY POLICY ////////// */
/*  ////////// ////////// ////////// ////////// */

.privacypolicy {
    display: none;
    height: auto;
    width: 100vw;
    padding-top: 100px;
}

.policyheader {
    font-size: 4em;
    font-weight: 900;
    text-align: left;
    padding: 25px;
}

.policytext {
    /* background-color: green; */
    width: 50%;
    font-size: 1.5em;
    font-weight: 400;
    text-align: left;
    padding: 25px;
    padding-top: 0px;
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END PRIVACY POLICY ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// DELETE FORM VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

.deleteform {
    padding: 50px;
    padding-top: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.deleteheader {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    width: 75%;
}

.deletesubheader {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 9400;
    width: 75%;
}

.deleteform form {
    width: 300px;
    margin: 0 auto;
}

.deleteform label {
    display: block;
    margin-top: 20px;
    color: black;
}

.deleteform input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.deleteform button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.deleteform button:hover {
    background-color: var(--primary-color);
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END DELETE FORM VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// FOOTER VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.privacypolicybtn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: auto;
}

.privacypolicybtn:hover {
    cursor: pointer;
    color: lightgray;
}

/*  ////////// ////////// ////////// ////////// */
/*  ////////// END FOOTER VIEW ////////// */
/*  ////////// ////////// ////////// ////////// */

/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/*  ////////// ////////// ////////// ////////// */
/* MEDIA QUERY FOR MOBILE DEVICES */
/*  ////////// ////////// ////////// ////////// */

@media only screen and (max-width: 900px) {

    /* NAV BAR */
    
    #header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 10vw;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    #header nav ul {
        list-style: none;
        display: none;
    }

    #header .logo {
        /* background-color: red; */
        /* height: 90%; */
        width: 35%;
        object-fit: cover;
    }

    .menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 10px;
        height: 50%;
        width: 10%;
        background-color: white;
        color: var(--primary-color);
        border: none;
        object-fit: cover;
        margin-right: 10px;
    }
    .menu-btn:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .menu-btn i {
        font-size: 2.5rem;
        object-fit: cover;
    }

    /* END NAV BAR */

    /* INITIAL VIEW */

    #home {
        height: 100vh;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center ;
        padding: 0;
        margin: 0;
        /* background-color: darkcyan; */
    }

    .initialoverlay {
        height: 80%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
        padding: 0;
        margin: 0;
        /* background-color: orange; */
    }

    .herotextcontainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
        margin-bottom: 50px;
        /* background-color: darkmagenta; */
    }

    .hero h2 {
        width: 100%;
        height: 100%;
        font-size: 2.25em;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.25em;
        font-weight: 350;
        text-align: center;
        margin-bottom: 20px;
        padding: 0;
    }

    .heroimgcontainer {
        position: relative;
        width: 80%;
        height: 40%;
        /* background-color: yellowgreen; */
    }

    .homeimg {
        /* background-color: red; */
        width: 50%;
        object-fit: cover;
    }

    .socialscontainer {
        width: 80%;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: -25;
        /* background-color: olive; */
    }

    .socialicon {
    }

    /* END INITIAL VIEW */

    /* IMAGE CAROUSEL VIEW */

    .carousel {
        background-color: lightcyan;
        width: 100%;
        height: 50vh;
        overflow-x: auto;
        scroll-behavior: smooth;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
    }
    
    .carousel-image {
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 0;
        transition: opacity 1s;
    }
    
    .carousel-image.active {
        opacity: 1;
    }

    /* END IMAGE CAROUSEL VIEW */

    /* FEATURES VIEW */
    .features {
        padding: 60px 0;
    }

    .feature-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
        padding: 0;
        margin: 0;
    }

    .features h2 {
        margin-bottom: 20px;
    }

    .block img {
        /* background-color: darkmagenta; */
        width: 33%;
        height: 33%;
    }

    .blockscontainer {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
        margin: 20px;
    }

    .block {
        width: 90%;
    }

    /* END FEATURES VIEW */

    /* PRICING VIEW */

    #pricing {
        /* background-color: orange; */
        height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricingoverlay {
        /* background-color: cyan; */
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .pricingcontainer {
        /* background-color: red; */
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .left-side {
        /* background-color: olive; */
        width: 100%;
        height: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
        margin: 0;
    }

    .price-rectangle {
        width: 75%;
        height: 65vh;
        padding: 0;
        margin: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
    }

    .prlist {
        text-align: center;
        width: auto;
    }

    .prlist li {
        /* width: 50%; */
        text-align: left;
    }

    .price-rectangle h2 {
        width: 90%;
        font-size: 1.75em;
    }

    .price-rectangle2 {
        width: 75%;
        height: 65vh;
        padding: 0;
        margin: 10px;
    }

    .price-rectangle2 h2 {
        width: 90%;
        font-size: 1.75em;
    }

    .right-side {
        /* background-color: darkcyan; */
        width: 100vw;
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
    }

    .rightsideimg {
        /* background-color: goldenrod; */
        width:  100%;
        height: 80%;
        padding-left: 75px;
    }

    /* END PRICING VIEW */

    /* CONTACT VIEW */

    .contact {
        padding: 60px 0;
    }

    .contact form {
        max-width: 100%;
    }

    .contact form input,
    form textarea {
        margin-bottom: 10px;
    }

    .contact form button {
        padding: 8px 15px;
    }

    /* END CONTACT VIEW */
}

/*  ////////// ////////// ////////// ////////// */
/* END MEDIA QUERY FOR MOBILE DEVICES */
/*  ////////// ////////// ////////// ////////// */