/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

header#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    /* Ensure the navbar has a background color */
    z-index: 1000;
    /* Make sure the navbar stays on top of other content */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow for better visibility */
}



header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    color: black;
    padding: 5px 15px; /* Reduced navbar height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ddd;
    width: 100%;
    height: 70px; /* Fixed navbar height */
}


.logo-container {
    display: flex;
    align-items: center;
    height: 100%; /* Ensures alignment */
}


.logo {
    height: 210px;   /* Adjust logo height freely */
    width: auto;    /* Keeps proportions */
    object-fit: contain; 
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    color: black;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, text-shadow 0.3s;
}

.navbar a:hover {
    color: #007bff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hide the toggle button by default */
.navbar-toggle {
    display: none;
}



section {
    height: calc(100% - 80px);
    /* Subtracting header height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    height: calc(40% - 20px);
    /* Subtracting header height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#front {
    display: flex;
    width: 100%;
    height: 90vh;
    padding: 0;
    background-image: url('https://margcompusoft.com/static/accets/images/background.jpg');
    /* Add your background image URL */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 5%;
}



.left-side,
.right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.left-side {
    width: 40%;
    background: rgba(184, 182, 182, 0.2);
    /* Slightly transparent background */
    backdrop-filter: blur(8px);
    padding: 20px;
}


.right-side {
    width: 60%;
    padding: 20px;
}

.awards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.award {
    border: 1px solid #ddd;
    padding: 5px;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.award img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industries {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
}

.circle-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    margin-bottom: 10px;
    position: relative;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.circle-image:hover img {
    transform: scale(1.1);
}

.buttons {
    margin-top: 20px;
}

.btn-demo,
.btn-download {
    background-color: #3a4172;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-demo {
    background-color: #099;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-demo:hover,
.btn-download:hover {
    background-color: #0056b3;
}

#prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background-color: #f9f9f9;
    height: 100vh;
}

.prices-heading {
    font-size: 36px;
    color: #3a4172;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.prices-heading .highlight {
    color: #099;
}

.pricing-box {
    width: 80%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.tabs {
    display: flex;
    position: relative;
}

.tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
    background-color: #f1f1f1;
    transition: background-color 0.3s;
}

.tab.selected {
    background-color: #ffffff;
    color: #099;
}

.tab.selected .tick-circle {
    display: block;
}

.tick-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #099;
    position: absolute;
    top: 50%;
    left: 10px;
    /* Adjusted to fix it to the left side */
    transform: translateY(-50%);
    background: white;
    display: none;
}

.tabs::before,
.tabs::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.tabs::before {
    border-width: 0 50px 20px 50px;
    border-color: transparent transparent #ffffff transparent;
    top: -20px;
    left: 0;
    transform: translateX(-50%) rotate(45deg);
}

.tabs::after {
    border-width: 20px 50px 0 50px;
    border-color: #ffffff transparent transparent transparent;
    bottom: -20px;
    right: 0;
    transform: translateX(50%) rotate(-45deg);
}

.card-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    /* Ensures consistent spacing between cards */
    flex-wrap: wrap;
    /* Allows wrapping to the next line if needed */
}

.card {
    width: calc(33.333% - 20px);
    /* Adjust width to fit 3 cards per row with gap */
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    color: #3a4172;
    box-sizing: border-box;
    /* Ensures padding is included in width calculation */
    border: 2px solid rgb(211, 210, 210);
}

.card-heading {
    width: 100%;
    text-align: center;
    font-size: 16px;
    /* Adjust font size */
    font-weight: bold;
    margin-bottom: 10px;
    /* Space between heading and card */
    color: #3a4172;
    /* Adjust heading color */
    position: absolute;
    top: -30px;
    /* Position heading above card */
    left: 50%;
    transform: translateX(-50%);
    /* Center heading horizontally */
}

.card-title {
    display: block;
    font-size: 16px;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    position: relative;
    padding-left: 30px;
    /* Adjust based on tick size */
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.tick {
    position: absolute;
    left: 0;
    top: 16%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('https://img.icons8.com/material-outlined/24/000000/checkmark.png') no-repeat center center;
    background-size: contain;
}

.tick2 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('https://img.icons8.com/material-outlined/24/000000/checkmark.png') no-repeat center center;
    background-size: contain;
}



#downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.prices-heading {
    font-size: 36px;
    color: #3a4172;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.prices-heading .highlight {
    color: #099;
}

.download-card-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.download-card {
    width: 48%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border-radius: 0;
    /* Remove border-radius */
}

.download-card-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3a4172;
}

.download-card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    /* Adjust as needed */
}

.download-card-body img {
    max-width: 100%;
    height: auto;
}

.download-card-footer {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    /* Center the button */
}

.download-btn {
    background-color: #099;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #077;
}

.download-icon {
    margin-right: 8px;
    width: 24px;
    /* Adjust size as needed */
    height: 24px;
    /* Adjust size as needed */
    background: url('https://img.icons8.com/material-outlined/24/ffffff/download.png') no-repeat center center;
    background-size: contain;
}




#about-us {
    padding: 20px;
    background-color: #f9f9f9;
}

.about-us-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-us-left {
    width: 65%;
}

.about-us-right {
    width: 30%;
    border-left: 4px solid #099;
    padding-left: 20px;
}

.about-us-left h1,
.about-us-left h2,
.about-us-left h3 {
    margin-top: 0;
    color: #3a4172;
}

.about-us-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.about-us-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}



#contact-us {
    position: relative;
    /* Establishes a containing block for absolute positioning */
    padding: 20px;
    text-align: center;
    margin-bottom: 150px;
}

.flexing{
    width: 100%;
    display: flex;
}

.prices-heading {
    font-size: 36px;
    color: #3a4172;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.right-container {
    position: relative;
    /* Ensures it can be the reference for absolute positioning */
    background-color: #099;
    color: white;
    width: 400px;
    /* Adjust width as needed */
    height: 500px;
    /* Adjust height as needed */
    margin: 0 auto;
    /* Center horizontally */
    padding: 20px;
    margin-left: 20%;
    border-radius: 20px;

    box-sizing: border-box;
}

.left-container {
    position: absolute;
    right: 75%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    /* Adjust width as needed */
    height: 300px;
    /* Adjust height to be half of the right container's height */
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px gray;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Ensure that text content is centered within both containers */
.right-container p,
.left-container p {
    margin: 0;
    line-height: 1.5;
}



.left-container {
    position: absolute;
    right: 73%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    /* Adjust width as needed */
    background-color: #fff;
    color: #000;

    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.mobile-input-wrapper {
    display: flex;
    align-items: center;
}

.country-code {
    width: 80px;
    /* Adjust width as needed */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    /* Rounded corners only on the left */
    background-color: #f9f9f9;
    text-align: center;
    margin-right: -1px;
    /* Removes the space between the select and the input */
}

input[type="tel"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    /* Rounded corners only on the right */
    margin-left: 0;
    /* Adjust left margin to align with the select */
}

input {
    width: 100%;
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    /* Rounded corners only on the right */
    margin-left: 0;
    /* Adjust left margin to align with the select */
}

#bookBtn {
    width: 100%;
    padding: 10px;
    background-color: #099;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#bookBtn:hover {
    background-color: #0077cc;
}



#footer {
    background-image: url('https://margcompusoft.com/accets/images/ftbg.png');
    background-size: cover;
    /* Ensures the image covers the footer area */
    background-position: center;
    /* Centers the image in the footer */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    padding: 20px;
    /* Adds padding inside the footer */
    color: #fff;
    /* Adjust text color for readability on the background */
    text-align: center;
    /* Centers the footer text */
}


/* Mobile Responsive Navbar */
@media (max-width: 768px) {

    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #f9f9f9; /* Background color for the menu */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        right: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for better design */
        padding: 10px 0;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out; /* Smooth opening */
        max-height: 0; /* Start with the menu hidden */
        opacity: 0;
        overflow: hidden;
    }
    
    .navbar-toggle {
        display: inline-block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        margin-left: 100px;
    }

    /* Show the navbar when toggled */
    .navbar.active {
        display: flex;
        max-height: 300px; /* Adjust as needed for content */
        opacity: 1;
    }

    .navbar a {
        padding: 10px 0;
        display: block;
        color: #333;
        text-decoration: none;
    }

    .navbar a:hover {
        background-color: #ddd; /* Optional hover effect */
    }











    #front {
        display: flex;
        width: 100%;
        height: auto;
        padding: 0;
        background-image: url('https://margcompusoft.com/static/accets/images/background.jpg');
        /* Add your background image URL */
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
        margin-top: 15%;
        flex-direction: column;
    }



    .left-side,
    .right-side {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .left-side {
        width: 100%;
        background: rgba(184, 182, 182, 0.2);
        /* Slightly transparent background */
        backdrop-filter: blur(8px);
        padding: 20px;
    }


    .right-side {
        width: 100%;
        padding: 20px;
    }

    .front-heading {
        font-size: 30px !important;

    }

    .front-heading .front-span {
        font-size: 35px;
    }

    .front-gst {
        font-size: 20px !important;
        padding-bottom: 10px;
    }

    .front-third-line {
        width: 100%;
        font-size: 16px !important;
        text-align: center;
    }

    .front-inven {
        font-size: 22px !important;
    }

    .awards-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .award {
        border: 1px solid #ddd;
        padding: 5px;
        margin: 0 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
    }

    .award img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .industries {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .industry-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: -10px;
        margin-right: -10px;
        gap: 0px !important;

    }

    .circle-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        background-color: white;
        margin-bottom: 10px;
        position: relative;
    }

    .industry-item .item {
        font-size: 14px !important;
    }

    .circle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .circle-image:hover img {
        transform: scale(1.1);
    }

    .buttons {
        margin-top: 20px;
        text-align: center;
        margin: 10px;
    }

    .btn-demo,
    .btn-download {
        background-color: #3a4172;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 20px;
        margin: 0 10px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 10px;
        transition: background-color 0.3s;
    }

    .btn-demo {
        background-color: #099;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 20px;
        margin-top: 10px;
        margin: 0 10px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .btn-demo:hover,
    .btn-download:hover {
        background-color: #0056b3;
    }



    #tab1 span:nth-child(3) {
        display: none;
    }









    #prices {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        background-color: #f9f9f9;
        height: auto;
    }

    .prices-heading {
        font-size: 36px;
        color: #3a4172;
        text-align: center;
        padding: 20px;
        margin: 0;
    }
    #price-heading{
        font-size: 25px;
        padding: 20px;
        padding-top: 45px;
    }

    .prices-heading .highlight {
        color: #099;
    }

    .pricing-box {
        width: 80%;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        position: relative;
    }

    .tabs {
        display: flex;
        position: relative;
    }

    .tab {
        flex: 1;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        position: relative;
        background-color: #f1f1f1;
        transition: background-color 0.3s;
    }

    .tab.selected {
        background-color: #ffffff;
        color: #099;
    }

    .tab.selected .tick-circle {
        display: none;
    }

    .tick-circle {
        display: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #099;
        position: absolute;
        top: 50%;
        left: 10px;
        /* Adjusted to fix it to the left side */
        transform: translateY(-50%);
        background: white;
        display: none;
    }

    .tabs::before,
    .tabs::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .tabs::before {
        border-width: 0 50px 20px 50px;
        border-color: transparent transparent #ffffff transparent;
        top: -20px;
        left: 0;
        transform: translateX(-50%) rotate(45deg);
    }

    .tabs::after {
        border-width: 20px 50px 0 50px;
        border-color: #ffffff transparent transparent transparent;
        bottom: -20px;
        right: 0;
        transform: translateX(50%) rotate(-45deg);
    }

    .card-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        /* Ensures consistent spacing between cards */
        flex-wrap: wrap;
        /* Allows wrapping to the next line if needed */
    }

    .card {
        width: auto;
        /* Adjust width to fit 3 cards per row with gap */
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        position: relative;
        color: #3a4172;
        box-sizing: border-box;
        /* Ensures padding is included in width calculation */
        border: 2px solid rgb(211, 210, 210);
    }









    #downloads {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        background-color: #f9f9f9;
        margin-top: 20%;
        margin-bottom: 30%;
    }
    
    .prices-heading {
        font-size: 36px;
        color: #3a4172;
        text-align: center;
        padding: 20px;
        margin: 0;
    }
    
    .prices-heading .highlight {
        color: #099;
    }
    
    .download-card-container {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .download-card {
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        position: relative;
        border-radius: 0;
        /* Remove border-radius */
    }
    
    .download-card-header {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #3a4172;
    }
    
    .download-card-body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 150px;
        /* Adjust as needed */
    }
    
    .download-card-body img {
        max-width: 100%;
        height: auto;
    }
    
    .download-card-footer {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        /* Center the button */
    }
    
    .download-btn {
        background-color: #099;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }
    
    .download-btn:hover {
        background-color: #077;
    }
    
    .download-icon {
        margin-right: 8px;
        width: 24px;
        /* Adjust size as needed */
        height: 24px;
        /* Adjust size as needed */
        background: url('https://img.icons8.com/material-outlined/24/ffffff/download.png') no-repeat center center;
        background-size: contain;
    }
    




    #about-us {
        padding: 20px;
        background-color: #f9f9f9;
        margin-top: 100%;
        margin-bottom: 80%;
    }

    .about-welcome{
        font-size: 50px !important;
    }
    .about-marg{
        font-size: 50px !important;
    }
    
    .about-us-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .about-us-left {
        width: 100%;
    }
    
    .about-us-right {
        width: 100%;
        border-left: 4px solid #099;
        padding-left: 20px;
    }
    
    .about-us-left h1,
    .about-us-left h2,
    .about-us-left h3 {
        margin-top: 0;
        color: #3a4172;
    }
    
    .about-us-left p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }
    
    .about-us-right p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }
    







    #contact-us {
        position: relative;
        /* Establishes a containing block for absolute positioning */
        padding: 20px;
        text-align: center;
        margin-bottom: 80%;
        margin-top: 60%;
        
      
    }

    .flexing{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .prices-heading {
        font-size: 36px;
        color: #3a4172;
        text-align: center;
        padding: 20px;
        margin: 0;
    }
    
    .right-container {
        position: relative;
        /* Ensures it can be the reference for absolute positioning */
        background-color: #099;
        color: white;
        width: 100%;
        /* Adjust width as needed */
        height: 500px;
        /* Adjust height as needed */
        margin: 0 auto;
        /* Center horizontally */
        padding: 20px;
        
        border-radius: 20px;
    
        box-sizing: border-box;
    }
    
    .left-container {
        
       position: relative;
        width: 100%;
        /* Adjust width as needed */
        height: auto;
        left: 0%;
        /* Adjust height to be half of the right container's height */
        background-color: #fff;
        color: #000;
        border-radius: 20px;
        box-shadow: 0px 4px 8px 0px gray;
        padding: 20px;
        box-sizing: border-box;
        text-align: center;
    }
    
    /* Ensure that text content is centered within both containers */
    .right-container p,
    .left-container p {
        margin: 0;
        line-height: 1.5;
    }
    
    
    
  
    .form-group {
        margin-bottom: 15px;
        text-align: left;
    }
    
    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .mobile-input-wrapper {
        display: flex;
        align-items: center;
    }
    
    .country-code {
        width: 80px;
        /* Adjust width as needed */
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px 0 0 4px;
        /* Rounded corners only on the left */
        background-color: #f9f9f9;
        text-align: center;
        margin-right: -1px;
        /* Removes the space between the select and the input */
    }
    
    input[type="tel"] {
        flex: 1;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 0 4px 4px 0;
        /* Rounded corners only on the right */
        margin-left: 0;
        /* Adjust left margin to align with the select */
    }
    
    input {
        width: 100%;
        flex: 1;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 0 4px 4px 0;
        /* Rounded corners only on the right */
        margin-left: 0;
        /* Adjust left margin to align with the select */
    }
    
    #bookBtn {
        width: 100%;
        padding: 10px;
        background-color: #099;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }
    
    #bookBtn:hover {
        background-color: #0077cc;
    }

    .embed-responsive{
        width: 100%;
        margin-top: -100px;
    }

    iframe{
        width: 100%;
        height: 50vh;
    }



}

