@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #a5c5fe;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand h2 {
    font-weight: 700;
    color: #0a1e39;
    font-size: 24px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #0a1e39;
    margin: 0 10px;
    font-size: 24px;
    /* transition: color 0.3s ease; */
}
.nav-link{
    font-weight: 500;
    color: #0a1e39;
    margin: 0 10px;
    font-size: 24px;
}
.nav-item{
    color: #0a1e39; 
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}
.hero {
    background-image: url("../images/11.jpg");
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.form {
    width: 100%;
    max-width: 400px;
    margin-left: 80%; /* Center the form horizontally */
    margin-right: auto;
    margin-top: 25px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.8); /* Darker background for better contrast */
    border: 2px solid #007BFF; /* Blue border for a modern look */
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Subtle outer shadow */
    font-family: Arial, sans-serif;
    color: white; /* White text for contrast */
    backdrop-filter: blur(10px); /* Adds a blur effect to the background */
}

form h5 {
    margin-bottom: 15px;
    font-size: 24px;
    color: white;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase; /* Uppercase heading for emphasis */
    letter-spacing: 1px;
}

form p {
    margin-bottom: 20px;
    font-size: 16px;
    color: white;
    text-align: center;
    opacity: 0.8; /* Slightly transparent text */
}

form input[type="text"],
form input[type="tel"],
form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border for inputs */
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    color: white;
    transition: all 0.3s ease;
}

form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus {
    border-color: #007BFF; /* Highlight border on focus */
    background-color: rgba(255, 255, 255, 0.2); /* Slightly lighter background on focus */
    outline: none; /* Remove default outline */
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.6); /* Placeholder text color */
}

form input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #007BFF; /* Custom checkbox color */
}

form div {
    margin-bottom: 15px;
    font-size: 14px;
    color: white;
    opacity: 0.8;
}

form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block; /* Center the button */
    margin: 0 auto; /* Center the button */
}

form button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Shadow on hover */
}

form button[type="submit"]:active {
    background-color: #004085; /* Even darker blue on click */
    transform: translateY(0); /* Reset lift effect */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3); /* Smaller shadow on click */
}

/* Additional Styling for the Superior Button */
.sup_button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 20px auto 0; /* Center the button */
}

.sup_button:hover {
    background-color: #0056b3;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.sup_button:active {
    background-color: #004085;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}








.second_container {
    padding: 20px;
    background-color: #d4e4fe;
    height:100vh;
}

.secondheader h2 {
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
    margin-top:25px;
}
.thirdheader h2{
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
    margin-top:25px;

}

.container_button ul {
    list-style: none;
    margin-top:25px;
    display: flex;
    justify-content: center;
    padding: 0;
    color: white;
    gap: 15px;
  
}

.container_button ul li {
    margin: 0;
    color: white;
}

.container_button ul li a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #0a1e39;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
   
}

.container_button ul li a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    font-weight: bold;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}


/* Hide all sections by default */
.container_change {
    display: none; /* Hide all sections by default */
    padding: 20px;

    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    margin: 2px 0;
    border-radius: 15px;

    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* Show the active section */
.container_change.active {
    display: block; /* Display only the active section */
}




.first_inside {
 
    border-radius: 15px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    margin: 0 0;
    display: flex; 
    background-color: #d4e4fe;

    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}






.first_inside .image img {
    float: left;
    max-width: 80%;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.first_inside ul {
    float: left;
    list-style: disc inside;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 10px;
}

.first_inside ul li {
    margin-bottom: 10px;
}

.first_inside .sup_button {
    display: inline-block;
    margin-top: 20px;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.first_inside .sup_button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.second_inside {
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;  /* Use flexbox for side-by-side layout */
    align-items: flex-start;  /* Align content at the start */
    background-color: #d4e4fe;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.second_inside .image {
    max-width: 100%;  /* Control the width of the image */
    margin-right: 20px;  /* Space between the image and text */
}

.second_inside .image img {
    width: 100%;  /* Ensure image takes up the full width of its container */
    height: auto;  /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.second_inside div {
    flex: 1;  /* Allow the text to take up remaining space */
}

.second_inside p {
    margin-bottom: 20px;  /* Space between paragraphs */
}



@media (max-width: 768px) {
    .first_inside, .second_inside {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center-align the items */
    }

    .first_inside .image img, .second_inside .image img {
        max-width: 100%; /* Ensure images take up full width */
        margin-bottom: 15px; /* Space below image */
    }

    .container_button ul {
        flex-direction: column; /* Stack the buttons vertically */
    }

    .container_button ul li {
        margin: 10px 0; /* Add space between links */
    }

    .container_button ul li a {
        width: 100%; /* Make the links fill the container */
        text-align: center; /* Center the text */
    }

    .second_inside div {
        padding-left: 0;
        padding-right: 0;
    }

    .secondheader h2 {
        font-size: 1.5rem;
    }

    .sup_button {
        width: 100%; /* Make the button fill the container on smaller screens */
    }
}

/* For very small devices (like mobile phones), further adjust text and layout */
@media (max-width: 480px) {
    .first_inside ul {
        font-size: 14px; /* Reduce font size */
    }

    .second_inside p {
        font-size: 14px; /* Reduce font size */
    }

    .container_button ul {
        gap: 10px; /* Reduce space between buttons */
    }
}

/* Additional style changes for large screens */
@media (min-width: 1024px) {
    .first_inside, .second_inside {
        flex-direction: row; /* Default horizontal layout for large screens */
        justify-content: flex-start;
    }

    .container_button ul {
        gap: 20px; /* Increased space between buttons */
    }
}






.form {
    width: 100%;
    max-width: 400px;
    margin-left: 65%;
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow:inset -5px -5px rgba(0,0,0,0.5); /* Light blue background with slight transparency */
    border: 10px double solid #0c0c0c; /* Light blue border */
    box-shadow: inset -5px -5px rgba(0,0,0,0.5); /* Light blue inner shadow */
    border-radius: 25px;
    font-family: Arial, sans-serif;
    color: black; /* Dark text for contrast */
    
    
    
}

form h5 {
    margin-bottom: 10px;
    font-size: 20px;
    color:white;
    text-align: center;
    font-weight: bold;
}

form p {
    margin-bottom: 20px;
    font-size: 16px;
    color:white;
    text-align: center;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow:inset -5px -5px rgba(0,0,0,0.5);
    color:white;
}

form input[type="checkbox"] {
    margin-right: 8px;
}

form div {
    margin-bottom: 15px;
    font-size: 14px;
    color:white;
}

form button[type="submit"] {
    width: 50%;
    padding: 10px;
    background-color: #007BFF;
    color:white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin:auto;
    display:flex;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #0056b3;
}
.sup_button {
    background-color: #007BFF; /* Button background color (blue) */
    color: #ffffff; /* Text color */
    border: none; /* Remove default border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Add space inside the button */
    font-size: 16px; /* Text size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin:auto;
    margin-left: 60%;
    margin-top: 2px;
    display: flex; /* Subtle shadow */
}

.sup_button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Slightly larger shadow */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.sup_button:active {
    background-color: #004085; /* Even darker blue on click */
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2); /* Smaller shadow */
    transform: scale(0.98); /* Slight press effect */
}


.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px;
    width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f4f4f4;
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
    color:#007BFF;
    transition: background-color 0.3s ease;
}

.card-header:hover {
    background-color: #eaeaea;
}

.card-content {
    padding: 15px;
    display: none;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
}

.third_inside

{
    padding: 20px;
    border-radius: 15px;
    margin-top:0px;
    width: 100%;
    display: flex;  /* Use flexbox for side-by-side layout */
    align-items: flex-start;  /* Align content at the start */
    background-color: #d4e4fe;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-container.floor-carousel {
    position: relative;
    width: 80%;
    height: 400px; /* Increase this to make the carousel taller */
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #a5c5fe;
    margin:auto;
    display: flex; /* Flexbox for centering content */
    align-items: center;
    margin-top:50px; /* Center images vertically */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    margin-top:20px;
}

.carousel img {
    width: 400px;
    flex-shrink: 0;
  
    padding:25px;/* Center images within their container */
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.arrow:hover {
    background: #ddd;
}
.carousel-container.gallery-carousel {
    width: 90%;
    position: relative;
    margin: 45px auto;
    overflow: hidden;
    background-color: #a5c5fe; /* Light background for distinction */
    border: 2px solid #ccc; /* Add a border for visual separation */
    border-radius: 8px;
}
.fourth_container{
  
    
    width:100%;
    padding: 20px;
    background-color: #d4e4fe;
    /* height:100vh; */
    
}
.third_container{
    /* height:100vh; */
   
    width:100%;
    padding: 20px;
    /* background-color: #d4e4fe; */
}
.fifth_container{
  
    width:100%;
    padding: 20px;
 
    height:100vh;
      
}
.configuration_button ul {
    list-style: none;
    margin-top:45px;
    display: flex;
    justify-content: center;
    padding: 0;
    color: white;
    gap: 15px;
}

.configuration_button ul li {
    margin: 0;
    color: white;
}

.configuration_button ul li a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #0a1e39;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.configuration_button ul li a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    font-weight: bold;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.fifth_container p{
    display:flex;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;

}
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table thead tr {
    background-color: #1a74ce;
    color: #fff;
}

.table th, .table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tbody tr:hover {
    background-color: #e9ecef;
}

.table th {
    font-weight: bold;
}

.table tbody tr {
    transition: all 0.3s;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    margin-left: 20px;
}
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 20px;
    }

    .form {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    .first_inside, .second_inside, .third_inside {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .first_inside .image img, .second_inside .image img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .container_button ul, .configuration_button ul {
        flex-direction: column;
        gap: 10px;
    }

    .carousel-container.floor-carousel, .carousel-container.gallery-carousel {
        width: 100%;
        height: auto;
    }

    .carousel img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .navbar-nav .nav-link {
        font-size: 18px;
        margin: 5px 0;
    }

    .form h5 {
        font-size: 18px;
    }

    .form input[type="text"],
    .form input[type="tel"],
    .form input[type="email"] {
        font-size: 12px;
    }

    .sup_button {
        margin-left: auto;
        margin-right: auto;
    }
}