@import url('https://fonts.googleapis.com/css?family=Montserrat:800');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
 
}
/*Signin Start*/
.signin-body
{
    background-image: url(img/signin.jpg);
    background-size: 1000px;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;

}
.signin-section {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    width: 100%;
    height: 100vh;
    position: fixed;
}

.signin-container {
    background: #ddd8d8;
    padding: 2rem;
    width: 90%;
    height: 70%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(226, 4, 4, 0.1);
    text-align: center;
    display: block;
    position: fixed;
}
h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: bold;
}

.signin-form {
    display: block;
    width: 310px;
    margin-left: 5%;
    margin-bottom: 1rem;
    margin-top: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.signin-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.signin-btn:hover {
    background-color: #45a049;
}

  /*------------------------------------------------------------------*/
.separator {
    height: 290px;
    font-size: 18px;
    color: #727272;
    margin: 1rem 0;
    position: relative;
    margin-top: 83%;
    font-weight: bold;
}

.separator::before, .separator::after {
    content: "";
    position: absolute;
    top: 5%;
    width: 40%;
    height: 1px;
    background: #3d3c3c;
    
    
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.g-signin2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -245px;
    padding: 0.75rem;
    background-color: #414b5c;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.g-signin2:hover {
    background-color: #2c2d2e;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-left: -73PX;
    margin-right: 18px;
}
/* Mobile (small screens) */
@media (max-width: 767px) {
    .signin-container {
        padding: 20px;
    }

    .signin-container h2 {
        font-size: 20px;
    }
    .signin-form 
    {
        width: 90%;
    }
    .signin-form input {
        font-size: 14px;
        padding: 8px 10px;
    }

    .signin-btn {
        font-size: 14px;
        padding: 8px 10px;
    }
}

/* Tablet (medium screens) */
@media (min-width: 768px) and (max-width: 1024px) {
    .signin-container {
        padding: 25px;
    }

    .signin-container h2 {
        font-size: 22px;
    }

    .signin-form input {
        font-size: 15px;
        padding: 10px 12px;
    }

    .signin-btn {
        font-size: 15px;
        padding: 10px 12px;
    }
}
/*Signin End*/
/*Nav Bar start*/
/* General Styling */
.navbar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    position: fixed;
    top: 0; /* Ensure the navbar is at the top */
    z-index: 1000; /* Fix z-index to ensure it overlays other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow for better visibility */
}
.navbar .logo {
    height: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.navbar .signin button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.navbar .signin button:hover {
    background-color: #0056b3;
}
/* Hide menu-toggle by default */
.menu-toggle {
    display: none; /* Hidden by default */
    cursor: pointer;
    font-size: 24px;
    color: white;
}


/* Responsive Styling */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        display: none; /* Initially hide the menu */
    }

    .navbar ul.active {
        display: flex; /* Show the menu when active */
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .navbar .signin {
        margin-top: 10px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: white;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        height: 40px;
    }

    .navbar ul li a {
        font-size: 14px;
    }

    .navbar .signin button {
        font-size: 14px;
        padding: 5px 10px;
    }
}

/*Nav Bar End*/
/*Edit Profile*/
/* Styling for the profile display container */
.profile-display {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the profile picture and the username */
    margin-right: 20px; /* Adjust as needed for spacing */
}

/* Styling for the profile picture */
.profile-pic {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image fits the container */
    border: 2px solid #ddd; /* Optional border */
    margin-left: -200px;
}

/* Styling for the username */
#usernameDisplay {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 30px;
    margin-right: 50px;
}
/* General styles for the profile section */
.profile-section {
    position: relative; /* Ensure positioning is relative for absolute positioning of dropdown */
    display: inline-block;
}

/* Profile display area */
.profile-display {
    cursor: pointer; /* Makes it clear that this is clickable */
}

/* Dropdown menu styles */
.dropdown-menu {
    position: absolute; /* Position relative to .profile-section */
    top: 100%; /* Place it below the profile display */
    right: 60px; /* Align it to the right of the profile section */
    background-color: #ffffff; /* Background for dropdown */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    z-index: 100; /* Ensure it appears above other elements */
    display: none; /* Hidden by default */
}

/* Show the dropdown when active */
.profile-section:hover .dropdown-menu,
.profile-display:focus + .dropdown-menu {
    display: block; /* Display dropdown on hover or focus */
}

/* Button styles */
.butt-signout {
    width: 100%; /* Full width */
    padding: 10px 15px; /* Button padding */
    background-color: #f44336; /* Red background */
    color: #ffffff; /* White text */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    text-align: center;
    font-size: 14px;
}

/* Add hover effect to button */
.butt-signout:hover {
    background-color: #d32f2f; /* Darker red */
}

/* Edit */
.editpage
{
    background-image: url(img/editbackground.jfif);
    background-size: cover;
    background-repeat: no-repeat;
    width: 90%;
    height: 99%;
    z-index: -1;
}
.edit-profile-modal {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(199, 9, 9, 0.1);
    border-radius: 8px;
    z-index: 1000;
    width: 500px;
}
.editprofile
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;  
    color: white;
}
#editProfileForm
{
    margin-top: 5px;
   margin-left: 60px;
}
.modal-content {
    position: relative;
}
#displayName
{
    width: 255px;
    margin-left: 10px;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.preview-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -50px;
    margin-left: 70px;
}
#saveProfile
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-left: 95px;
    align-items: center;
}
.pinput
{
    width: 50%;
}
.sbtn
{
    width: 150px;
    display: flex;
}
.pp{
margin-left: 40px;
}

/*Hero Start*/
/* General Styling */

.header {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    background-color: #333;
    color: white;
}

.header .bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000b3, #333);
    z-index: -1;
}

.header .left {
    flex: 1;
    padding: 20px;
}

.header h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.header .sub-heading {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.9;
    color: #cccccc;
}

.header .button .btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 20px;
}

.header .button .btn:hover {
    background-color: #0056b3;
}

.header .right {
    flex: 1;
    text-align: center;
}

.header .right img.hero {
    width: 100%;
    max-width: 400px;
}

.header .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        height: 950px;
    }

    .header .left, .header .right {
        flex: unset;
        width: 100%;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header .sub-heading {
        font-size: 0.9rem;
    }

    .header .right img.hero {
        max-width: 300px;
        margin-top: -65px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .header .sub-heading {
        font-size: 0.8rem;
    }

    .header .button .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .header .right img.hero {
        max-width: 250px;
    }
}

/*Hero End*/
/*Service Page Start*/
/* General Styling */
.service-sec {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.our-ser .head-ser {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.boxes {
    display: flex;
    flex: 1 1 calc(25% - 40px); /* Responsive: 4 items per row with gap */
    max-width: calc(25% - 40px); /* Same as above */
    box-sizing: border-box;
    justify-content: center;
}

.box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.box img.img1 {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.box h4 {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .boxes {
        flex: 1 1 calc(33.333% - 40px); /* 3 items per row */
        max-width: calc(33.333% - 40px);
    }
}

@media (max-width: 768px) {
    .boxes {
        flex: 1 1 calc(50% - 40px); /* 2 items per row */
        max-width: calc(50% - 40px);
    }

    .our-ser .head-ser {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .boxes {
        flex: 1 1 100%; /* 1 item per row */
        max-width: 100%;
    }

    .box img.img1 {
        max-width: 150px; /* Smaller images on small devices */
    }

    .box h4 {
        font-size: 1rem;
    }
}

/*Service Page End*/
/*Blog Page Start*/
/* General Styling */
.blogsec {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.blo .head-ser {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.blog-container img.bimg {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.blog-container .blog-para {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.blog-container .bread {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.blog-container .bread:hover {
    background-color: #0056b3;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .blo .head-ser {
        font-size: 2rem;
    }

    .blog-container h3 {
        font-size: 1.5rem;
    }

    .blog-container .blog-para {
        font-size: 0.9rem;
    }

    .blog-container .bread {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding: 15px;
    }

    .blog-container img.bimg {
        border-radius: 5px;
    }

    .blog-container h3 {
        font-size: 1.2rem;
    }

    .blog-container .blog-para {
        font-size: 0.8rem;
    }

    .blog-container .bread {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}

/*Blog Page End*/
/*Contact Page Start*/
/* General Styling */
.consec {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.cont .contact-us {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.Contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Styling */
form {
    flex: 1 1 45%;
    display: flex;
    margin-right: 30px;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.contactform
{
    margin-left: 50px;
}
form .input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form .input:focus {
    border-color: #007bff;
    outline: none;
}

form .submit {
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}

form .submit:hover {
    background-color: #0056b3;
}

/* Contact Methods */
.contactMethod {
    flex: 1 1 45%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: 30px;
    margin-right: 120px;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contactIcon {
    font-size: 1.5rem;
    color: #007bff;
}

.method .text {
    text-align: left;
}

.method .sub-heading {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.method .para {
    font-size: 1rem;
    color: #555;
}

/* Map Container */
.map-container {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    margin-right: 120px;
}

.mapBg {
    background-color: #f0f0f0;
    height: 450px;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.map {
    position: relative;
    z-index: 1;
}

.map iframe {
    width: 100%;
    max-width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .Contact-container {
        flex-direction: column;
        align-items: center;
        margin-left: -150px;
        width: 100%;
    }

    form {
        flex: 1 1 100%;
        width: 100%;
    }
    .contactMethod
    {
        margin-left: 170px;
        font-size: 50px;
        flex-direction: column;
    }
    .method .text {
        text-align: center;
    }

    .map-container {
        margin-top: 20px;
        margin-left: 150px;
    }
}

@media (max-width: 768px) {
    .cont .contact-us {
        font-size: 2rem;
    }

    form .input, form .submit {
        font-size: 0.9rem;
    }

    .method .sub-heading {
        font-size: 1rem;
    }

    .method .para {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .map iframe {
        height: 300px;
    }

    .method .sub-heading {
        font-size: 0.9rem;
    }

    .method .para {
        font-size: 0.8rem;
    }
}

/*Contact Page End*/
/*About Page Start*/
/* General styles for the about section */
.aboutsec {
    padding: 20px;
    background-color: #f9f9f9;
}

.about {
    text-align: center;
}

.about-me {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.About-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.about-para {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .about-me {
        font-size: 28px;
    }

    .about-para {
        font-size: 16px;
        padding: 0 15px;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) and (min-width: 768px) {
    .about-me {
        font-size: 32px;
    }

    .about-para {
        font-size: 17px;
    }
}

/* Desktop responsiveness */
@media (min-width: 1025px) {
    .aboutsec {
        padding: 40px;
    }

    .about-me {
        font-size: 40px;
    }

    .about-para {
        font-size: 18px;
        max-width: 900px;
    }
}

/*About Page End*/
/*Custom Page Start*/
/* General Styles for Custom Page */
.custom-page {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}


/* Styles for Custom Design Page */
.cusec {
    padding: 20px;
    background-color: #fff;
}

.cucontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cu-boxes {
    flex: 1 1 calc(20% - 20px); /* Default to 5 items per row */
    max-width: calc(20% - 20px);
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cu-box {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cu-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.cuimg {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Mobile Styles */
@media (max-width: 767px) {

    .cu-boxes {
        flex: 1 1 calc(50% - 10px); /* 2 items per row */
        max-width: calc(50% - 10px);
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {

    .cu-boxes {
        flex: 1 1 calc(33.33% - 20px); /* 3 items per row */
        max-width: calc(33.33% - 20px);
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .cu-boxes {
        flex: 1 1 calc(20% - 20px); /* 5 items per row */
        max-width: calc(20% - 20px);
    }
}

/*Custom Page End*/
/*PDF Page Start*/
/* General Styles */
.custom-page {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.cu-h2 {
    font-size: 28px;
    color: #333;
    margin-top: 125px;
}

.cus-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 5px;
}

.cu-h3 {
    font-size: 18px;
    color: #555;
    margin-top:-50px;
    line-height: 1.6;
    margin-left: 280px;
    margin-right: 180px;
    margin-top: 80px;
}

.pdfcontainer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.viewpdf {
    font-size: 24px;
    color: #222;
    margin-top: 130px;
}

.pay-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s;
}

.pay-button:hover {
    background-color: #0056b3;
}

#pdf-viewer {
    margin-top: 20px;
    display: none; /* Default hidden */
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .cu-h2 {
        font-size: 28px;
        color: #333;
        margin-top: 115px;
    }
    
    .cus-img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-top: 5px;
        margin-left: 10px;
    }
    
    .cu-h3 {
        font-size: 18px;
        color: #555;
        margin-top:120px;
        line-height: 1.6;
        margin-left: 30px;
        margin-right: 20px;
      
    }

    .viewpdf {
        font-size: 20px;
        margin-top: 80px;
    }

    .pay-button {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Tablet Responsiveness */
@media (min-width: 768px) and (max-width: 1024px) {
    .cu-h2 {
        font-size: 26px;
        margin-top: 550px;
    }

    .cus-img {
        max-width: 95%;
        margin: 15px auto;
    }

    .cu-h3 {
        font-size: 17px;
    }

    .viewpdf {
        font-size: 22px;
    }

    .pay-button {
        font-size: 15px;
        padding: 10px 14px;
    }
}

/* Desktop Responsiveness */
@media (min-width: 1025px) {
    .cu-h2 {
        font-size: 30px;
        
    }

    .cus-img {
        max-width: 100%;
    }

    .cu-h3 {
        font-size: 18px;
    }

    .viewpdf {
        font-size: 24px;
    }

    .pay-button {
        font-size: 16px;
        padding: 12px 16px;
    }
}

/*PDF Page End*/
 /*Custom Order Start*/
 /* General Styles */
.cuorderlogo {
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px 0;
    border-bottom: 2px solid #ddd;
}

.cuorderlogo h1 {
    font-size: 28px;
    color: #333;
}

/* Main Section */
main {
    padding: 20px;
    background-color: #fff;
}

#order-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#order-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

#order-form p {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

legend {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: none;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Payment Details */
.ppay {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

#payButton {
    background-color: #28a745;
}

#payButton:hover {
    background-color: #218838;
}

#orderNotification {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 767px) {
    #order-form {
        padding: 15px;
    }

    fieldset {
        padding: 10px;
    }

    legend {
        font-size: 16px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="file"],
    select,
    textarea {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #order-form {
        max-width: 600px;
    }

    legend {
        font-size: 17px;
    }
}

/*Custom Order End*/

/*Form Page Start*/
.cu-form
{
    display: flex;
    position: absolute;
    margin-top: 280px;
    margin-left: 430px;
}
.cu-input
{
    display: flex;
    position: absolute;
    width: 40%;
    height: 145px;
    border-radius: 5px;
    margin-right: 45px;
}
#file-upload
{
    margin-top: 120px;
    margin-left: 320px;
    border-radius: 5px;
}
.cu-btn
{
    margin-top: 100px;
    width: 160px;
    height: 50px;
}
/*Form Page End*/
/*Footer Page Start*/

/* Footer Styling */
/* General Footer styles */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.foot-img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-bottom {
    padding: 10px 20px;
}

.foot-para {
    font-size: 16px;
    margin-bottom: 10px;
}

.fpp {
    font-size: 14px;
    margin-bottom: 20px;
}

.policy a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
}

.policy a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .footer {
        padding: 15px 10px;
    }

    .foot-img {
        width: 120px;
    }

    .foot-para {
        font-size: 14px;
    }

    .fpp {
        font-size: 12px;
    }

    .policy a {
        font-size: 12px;
        display: block;
        margin: 5px 0;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) and (min-width: 768px) {
    .footer {
        padding: 20px 30px;
    }

    .foot-img {
        width: 130px;
    }

    .foot-para {
        font-size: 15px;
    }

    .fpp {
        font-size: 13px;
    }

    .policy a {
        font-size: 14px;
    }
}

/* Desktop responsiveness */
@media (min-width: 1025px) {
    .footer {
        padding: 20px 40px;
    }

    .foot-img {
        width: 150px;
    }

    .foot-para {
        font-size: 16px;
    }

    .fpp {
        font-size: 14px;
    }

    .policy a {
        font-size: 16px;
    }
}
/*Footer Page End*/
