﻿/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffd700; /* Gold background */
    color: #000040; /* Navy blue */
    scroll-behavior: smooth;
}

.ryneColorNavy-bg {
    background: #000040;
    color: white;
}

.ryneColorNavyGradient-bg {
    background: linear-gradient(to bottom, #000040, #333366);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


.ryneColorGold-bg {
    background: #ffd700;
    color:#000040;
}

.ryneColorGoldGradient-bg {
    background: linear-gradient(to bottom, #fff8b0, #ffd700);
    color: #000040;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}




.navbar {
    background-color: #000040; /* Navy blue */
}

    .navbar .brand {
        color: #ffd700; /* Gold */
        font-weight: bold;
        font-size: 24px;
    }

    .navbar .nav-link {
        color: #ffd700; /* Gold */
        font-size: 16px;
    }

        .navbar .nav-link:hover {
            color: #e6c200; /* Slightly darker gold on hover */
        }

/* Main content area */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    background-image: url('your-banner-image-url.jpg'); /* Add your background graphic URL */
    background-size: cover;
    background-position: center;
    color: #000040; /* Navy blue */
    text-align: center;
}


/* Hero section (for slogan and opening statement) */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*background-size: cover;*/ /* Ensures the background image covers the section */
    /*background-position: center;*/ /* Centers the background image */
    /*background-repeat: no-repeat;*/ /* Prevents the image from repeating */
    /*background-color: #ffd700;*/ /* Fallback gold background */
    padding: 20px;
}

/* Call-to-Action Box */
.call-to-action-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Tabs */
.tabs-container {
    display: flex;
    width: 100%; /* Full width tabs */
    margin-bottom: 20px;
    justify-content: center;
}

    .tabs-container .tab {
        width: 50%; /* Equal width for both tabs */
        text-align: center;
        padding: 15px;
        cursor: pointer;
        background-color: #ffd700;
        color: #000040;
        font-weight: bold;
        border: 1px solid #000040;
    }

        .tabs-container .tab.active {
            background-color: #000040;
            color: #ffd700;
            font-size: 1.1rem;
            text-decoration:underline;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.form-control.large {
    padding: 15px;
    font-size: 18px;
    width: 100%;
    border: 2px solid #000040;
}

/* Fullscreen sections */
.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

    .section .content {
        width: 100%;
        max-width: 800px;
    }

.services {
    background-color: #fff4c1;
}
    .services .content {
        text-align: left; /* Align text to the left */
        margin: 0 auto; /* Center the content horizontally */
        max-width: 800px; /* Restrict the width to 800px */
        width: 100%; /* Ensure full width within the max width limit */
    }

    .services .ul {
        padding-left: 0;
    }

.trust {
    background-color: #fff7e6;
    width: 100%;
    padding: 20px;
}

    .trust .content {
        text-align: center;
        margin: 0 auto; /* Center the content horizontally */
        max-width: 800px; /* Restrict the width */
        width: 100%;
    }

    .trust ul {
        padding-left: 0; /* Remove default padding */
        list-style-type: none; /* Remove bullet points */
    }

    .trust li {
        margin-bottom: 10px; /* Add some spacing between the items */
    }

.about-us {
    background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-control.large {
        font-size: 16px;
        padding: 10px;
    }

    .full-size {
        display: none; /* Hide full-size elements on small screens */
    }

    .small-size {
        display: block; /* Show small-size elements on small screens */
    }
}

/* Footer styles */
.footer {
    width: 100%;
    background-color: #000040; /* Navy background */
    color: #ffd700; /* Gold text */
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    position: relative; /* Remove absolute positioning to make it relative to the page content */
}

/* Ensure footer does not sit at the bottom of the viewport when content is short */
html, body {
    height: auto;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex-grow: 1;
}

/* Overlay class for loading screens */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    z-index: 1000; /* High z-index to appear above other elements */
    justify-content: center;
    align-items: center;
}

/* Visible state for the overlay */
.overlay-visible {
    display: flex; /* Flexbox to center content */
}

/* Centered message inside the overlay */
.overlay-message {
    color: #fff; /* White text */
    font-size: 24px;
    font-weight: bold;
}


/*modal styles*/
.ryneModal {
    background-color: #000040; /* Dark navy blue */
    color: #ffffff; /* wight text */
    border-radius: 1em;
    padding: 2em;
    box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    max-width: 800px;
    margin: 2em auto; /* Center modal horizontally */
    width: 100%; /* Ensure full width up to max width */
}

.terms-dv {
    display:flex; 
    justify-content:center; 
    align-items:center;
}

.terms-pre {
    background-color: white; /* White background */
    color: black; /* Black text */
    width: 100%; /* Adjust width as necessary */
    max-width: 800px; /* Maximum width */
    max-height: 30rem; /* Maximum height */
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-y: auto; /* Allow vertical scroll */
    word-wrap: break-word; /* Ensure long words break */
    white-space: pre-wrap; /* Keep preformatted text and wrap long lines */
    font-family: Arial, sans-serif; /* Set the font */
    line-height: 1.5em; /* Improve readability */
    padding: 1rem; /* Add padding for better readability */
}

.suggestions-container {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    z-index: 10;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Full-size class for larger screens */
.full-size {
    display: block;
}

/* Small-size class for smaller screens */
.small-size {
    display: none;
}

/* Adjust for small screens */
@media (max-width: 768px) {
    .full-size {
        display: none; /* Hide full-size elements on small screens */
    }

    .small-size {
        display: block; /* Show small-size elements on small screens */
    }
}

.manageDetail-form {
    display: flex;
    justify-content: center; /* Centers the entire form horizontally */
    align-items: center; /* Centers elements vertically */
    gap: 10px; /* Adds spacing between the form elements */
    flex-wrap: wrap; /* Allows items to wrap when screen size is reduced */
}

    .manageDetail-form input[type="text"] {
        flex: 1; /* Ensures the textboxes stretch to fill available space */
        padding: 0px;
        margin-right: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .manageDetail-form button {
        padding: 1px 5px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .manageDetail-form button.btn-cancel {
            background-color: red;
        }

@media (max-width: 768px) {
    .manageDetail-form {
        flex-direction: column; /* Stacks elements vertically on smaller screens */
        align-items: stretch; /* Stretches elements to fill the width of the container */
    }

        .manageDetail-form button {
            margin-top: 0px; /* Adds spacing between buttons in mobile view */
        }
}

/* Title Banner Styling */
.title-banner {
    background-color: #000040; /* Navy blue background */
    color: #ffd700; /* Gold text */
    padding: 20px 0;
    margin-bottom: 20px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Styling for the Service Type Buttons */
/* Adjusted Primary Font Size */
.section-description {
    font-size: 1.25rem; /* Larger font for section description */
}

/* Consistent Button Styling */
.btn-primary-custom {
    background-color: #000040; /* Navy blue */
    color: #ffffff; /* White text */
    font-weight: bold;
    padding: 15px;
    width: 200px; /* Fixed width to ensure same size */
    height: 100px; /* Fixed height to ensure same size */
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers text within button */
    border-radius: 5px;
    font-size: 1.5rem; /* Larger font size within button */
}

    .btn-primary-custom:hover {
        background-color: #2e2e70; /* Darker navy on hover */
    }

    .btn-primary-custom small {
        font-size: 0.85rem; /* Slightly larger text for description */
        color: #ffffff;
        font-weight: normal;
        margin-top: 5px;
    }


/* Styling for Quantity Section */
/* Larger and Centered Details Text */


/* Quantity Input Box Styling */
.quantity-field {
    width: 100%;
    max-width: 100px;
    text-align: center;
}

.quantity-input {
    font-size: 3rem; /* Increased font size for larger digits */
    padding: 8px;
    width: 100%; /* Full width within container */
    text-align: center;
    border: 2px solid #000040; /* Navy border */
    border-radius: 5px;
}

/* Label Styling for Toggles */
.form-label, .form-check-label {
    font-weight: bold;
    color: #000040;
    font-size: 1rem;
}

/* Centered and Aligned Details Text */
.details-text {
    font-size: 1.2rem;
    color: #000040;
    font-weight: normal;
    margin-bottom: 20px;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
}

/* Address Input Box */
.address-input {
    font-size: 1.25rem;
    padding: 10px;
    max-width: 400px;
    border: 2px solid #000040; /* Navy border */
    border-radius: 5px;
    text-align: center;
    margin: 0 auto;
}

/* Suggestions Container */
.suggestions-container {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    z-index: 10;
    margin-top: 5px;
    text-align: left;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

    .suggestion-item:hover {
        background-color: #f0f0f0;
    }

    /* Select Button Styling */
    .suggestion-item .btn {
        margin-right: 10px;
    }







