

/* Custom Styles */
body {
    font-family: "Rubik", serif;
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Rubik", serif;
    font-weight: 700;
    color: #0A2647;
}
p{
    line-height: 1.8;
}
a{
    text-decoration: none;
}
#loading-overlay .custom-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.navbar-brand img {
    max-height: 90px; /* Set maximum height */
    height: auto; /* Maintain aspect ratio */
}

.language-dropdown .dropdown-menu {
    min-width: 150px; /* Increased width to accommodate flags + text */
}

.dropdown-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between flag and text */
}
.nav-link .fa-language {
    margin-right: 5px;
}
/* Adjust flag size */
.flag-icon {
    width: 20px;
    height: 15px;
}


/*  navbar */
/* Fixed Top Header Styles */
header.fixed-top {
    background-color: #007bff; /* Primary background color */
    color: white;
    padding: 10px 0;
    z-index: 1050; /* Ensure it's above other elements */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Social Media Links & Contact Info */
header a {
    text-decoration: none;
    font-size: 14px;
}

header a i {
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header .row {
        text-align: center;
    }

    header .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }
    header.fixed-top  .social {
        display: none;
    }
    .navbar{
        top:50px !important
    }
}



 /* Navbar styles */
 .navbar {
    background-color: white !important;
    top:20px;
  
}
.navbar-nav .nav-link {
    color: #ca081e !important;
    font-weight: bold;
    font-size: 12pt;
    line-height: 1.5;
}
.navbar-nav li a:hover {
    color: #ca081e; /* Change color on hover */
}
.navbar-toggler {
    border: none;
    outline: none;
}
/* Show dropdown menu on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Ensure it aligns properly */
}

/* Prevent flickering on hover */
.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
}

/* Ensure dropdown works on mobile (click-based) */
@media (max-width: 991px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none; /* Keep default Bootstrap behavior on mobile */
    }
}

/* Fullscreen Mobile Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    padding-bottom: 60px;
}
.fullscreen-menu.active {
    transform: translateY(0);
}
.fullscreen-menu .nav-link {
    color: white !important;
    font-size: 24px;
    margin: 10px 0;
}
/* Fix dropdown background and text color in mobile view */
.fullscreen-menu .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9) !important; /* Dark background */
    border: none;
}

.fullscreen-menu .dropdown-item {
    color: white !important; /* White text */
}

.fullscreen-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important; /* Light hover effect */
}

.fullscreen-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Social Media Icons */
.mobile-socials {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}
.mobile-socials a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
}
     /* end navbar */   


@media (max-width: 768px) {
    .fixed-top .row {
        flex-direction: column;
        text-align: center;
    }
    .fixed-top .col-md-6 {
        width: 100%;
        margin-bottom: 10px;
    }
    .navbar{
        top:0
    }
}

/* Hero Banner */
#heroCarousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
#heroCarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
#heroCarousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}
.carousel-item video {
    object-fit: cover; /* Ensures the video covers the area without distortion */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* Places video behind content */
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding-top: 60px; /* Adjusted for fixed navbar */
}
.hero-title {
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    font-size: 38pt;
}
.hero-subtitle {
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    font-size: 28pt;
}
.contact-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
    margin-top: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #heroCarousel .carousel-item img {
        height: auto;
    }
    .carousel-caption {
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding-top: 80px; /* Extra space for navbar on smaller screens */
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .contact-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

    /* Custom CSS for additional styling */
    .header-section {
        text-align: center;
        padding: 50px 0;
        background-color: #fff;
      }
      .header-section h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 20px;
      }
      .header-section p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
      }

/* Footer Styling */
.footer {
    background-color: #232323; /* Dark gray footer */
}

.footer h5 {
    color: #FF4751; /* Header color */
}

.footer a {
    color: #ffffff; /* White text */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #FF4751; /* Change color on hover */
}

/* Default - Fixed Bottom Menu (For Desktop) */
.bottom-fixed-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: left;
    padding: 5px 0;
    z-index: 1000;
    border-top: 1px solid #fcfcfc; /* Light border on top */
}

/* Menu Items - Always Visible on Desktop */
.menu-items {
    display: flex;
    gap: 20px;
    background: transparent; /* Default transparent background for desktop */
}

/* Menu Item Styling */
.menu-item {
    padding: 10px 15px;
    color: rgb(138, 13, 13);
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap; /* Prevent text wrapping */
}

.menu-item:hover {
    color: #ca081e;
}

/* Hide Close Button and Toggle Button for Desktop */
.close-menu, .menu-toggle {
    display: none; /* Hide toggle button on desktop */
}

/* Mobile View - Toggle Menu */
@media (max-width: 768px) {
    .bottom-fixed-menu {
        left: 20px;
        bottom: 20px;
        width: auto;
        background: none;
        display: block;
        border-top: none; /* Remove border */
    }

    /* Show Toggle Button */
    .menu-toggle {
        display: flex; /* Show toggle button on mobile */
        background: #ca081e;
        color: white;
        padding: 15px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
    }

    /* Menu Items - Hidden by Default */
    .menu-items {
        display: none;
        flex-direction: column;
        position: absolute;
        bottom: 60px;
        left: 0;
        background: #232323; /* Solid dark background */
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        opacity: 1; /* Ensure full opacity */
        color: #f3eced; /* Ensure text is readable against dark background */
    }

    /* Menu Item Styling in Mobile */
    .menu-item {
        color: #f3eced !important; /* Red text for better visibility */
        padding: 10px;
        text-align: left;
        display: block;
    }

    .menu-item:hover {
        color: #ca081e;
    }

    /* Show Close Button in Mobile */
    .close-menu {
        display: block;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: bold;
        color: white;
        cursor: pointer;
        align-self: flex-end;
        margin-bottom: 5px;
    }
}

/* Floating Call Icon */
.floating-call-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.call-button {
    background-color: #FFD700; /* Gold */
    color: #0A2647; /* Dark Blue */
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Make it perfectly round */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    text-decoration: none;
}

.call-options {
    display: none;
    position: absolute;
    bottom: 70px; /* Adjust based on button size */
    right: 0;
    background-color: #28a745; /* Green background */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    white-space: nowrap; /* Prevent text wrapping */
    min-width: fit-content; /* Fit the width to the text */
}

.call-options a {
    display: block;
    padding: 10px;
    color: #ffffff; /* White text */
    text-decoration: none;
}

.call-options a:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Fix overlapping issue with fixed header */
@media (max-width: 768px) {
    .floating-call-icon {
        bottom: 80px; /* Adjust to avoid overlapping with the header */
    }

    header.fixed-top {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner p {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        background:#242222;
        padding: 10px;
        border-radius: 5px;
    }

    .navbar-toggler {
        border: none;
    }

    .btn-close {
        filter: invert(1); /* Make close button white */
    }
}

/* Custom Styles */
.btn-primary {
    background-color: #9a2f23; /* Dark Blue */
    border-color: #9a2f23; /* Dark Blue */
    color: #ffffff; /* White text */
}
.btn-primary:hover {
    background-color: #7a1f18; /* Darker Blue on hover */
    border-color: #7a1f18; /* Darker Blue on hover */
}
.text-primary{
    color: #9a2f23 !important;
}
.bg-primary {
    background-color: #9a2f23 !important; /* Dark Blue */
}

.bg-secondary {
    background-color: #144272 !important; /* Medium Blue */
}

.bg-gold {
    background-color: #FFD700 !important; /* Gold */
}

.bg-dark {
    background-color: #0A2647 !important; /* Dark Blue */
}

.text-dark {
    color: #333333 !important; /* Dark Gray */
}

/* Grid Section */
.header-section {
    background-color: #f8f9fa; /* Slightly grey background */
}

/* Ensure cards stretch to equal heights */
.card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure card takes full height of its container */
}

.card-img-top {
    padding: 10px;
    width: 100%;
    height: 150px; /* Fixed height for images */
    object-fit: cover; /* Ensure images cover the area */
}

.card-body {
    flex: 1; /* Allow card body to grow and fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    text-align: center;
}
.card-body h5 {
    margin-top: 15px; /* Adjust margin-top for the header */
}
.card-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #333333;
    margin: 0;
}
.card-body a {
    margin-top: 10px; /* Adjust margin-top for the link */
    display: block; /* Ensure the link is treated as a block element */
    text-decoration: none;
}
.clickable-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.clickable-card .card-body h3{
    font-size: 15pt;
    color:#9a2f23;
    margin-bottom: 10px;
    margin-top: 10px;
}

.clickable-card:hover {
    transform: translateY(-5px); /* Slightly move up on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Lighter shadow for smooth effect */
}
/* Responsive Styles */
@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 50%; /* 2 columns on tablets */
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        flex: 0 0 100%; /* 1 column on mobile */
        max-width: 100%;
    }
}


/* Icon Section */
.icon-section {
    background-color: #ffffff; /* White background */
    padding: 60px 0; /* Add enough margins */
}

.icon-card {
    padding: 20px;
    /*border: 1px solid #e0e0e0; /* Light border for separation */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}

.icon-header {
    color: #9a2f23; /* Maroon color for icons */
    margin-bottom: 20px; /* Space below icon */
    transition: color 0.3s ease;
}

.icon-title {
    color: #9a2f23; /* Maroon color for titles */
    font-size: 15pt;
    margin-bottom: 15px; /* Space below title */
    transition: color 0.3s ease;
}

.icon-text {
    color: #333333; /* Dark gray for text */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 0; /* Remove default margin */
}

/* Hover Effect */
.icon-card:hover .icon-header,
.icon-card:hover .icon-title {
    color: #000000; /* Black color on hover */
}
.icon-card:hover .icon-text{
    color: #9a2f23; /* Maroon color on hover */
}
/* Call to Action Section */
.cta-section {
    background-color: #f8f9fa; /* Light grey background */
    padding: 60px 0; /* Add enough margins */
}

.cta-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: #0A2647; /* Dark blue for title */
    margin-bottom: 20px; /* Space below title */
}

.cta-buttons .btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 20px; /* Button padding */
    border-radius: 5px; /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-buttons .btn-primary {
    background-color: #9a2f23; /* Primary  for Call button */
    border-color: #9a2f23;
}

.cta-buttons .btn-success {
    background-color: #25D366; /* WhatsApp green for WhatsApp button */
    border-color: #25D366;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

/* Banner Image Section */
.banner-section {
    width: 100%;
    overflow: hidden; /* Ensure the image doesn't overflow */
    position: relative; /* Required for overlay positioning */
}

.banner-image {
    width: 100%;
    height: 400px; /* Max height */
    background-size: cover; /* Ensure the image covers the area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating */
    position: relative; /* Required for overlay positioning */
}

/* Dark Overlay */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Banner Content */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the content */
    z-index: 1; /* Ensure content is above the overlay */
}

.banner-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff; /* White text */
    opacity: 0; /* Start invisible */
    animation: fadeIn 0.5s ease 0.1s forwards; /* Fade-in animation with 0.1s delay */
}
.banner-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff; /* White text */
    opacity: 0; /* Start invisible */
    animation: fadeIn 0.5s ease 0.1s forwards; /* Fade-in animation with 0.1s delay */
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner-image {
        height: 400px; /* Adjust height for tablets */
    }

    .banner-title {
        font-size: 2rem; /* Adjust font size for tablets */
    }
}

@media (max-width: 576px) {
    .banner-image {
        height: 350px; /* Adjust height for mobile */
    }

    .banner-title {
        font-size: 1.5rem; /* Adjust font size for mobile */
    }
}
.why-choose-us {
    background-color: #fff;
    padding: 60px 0;
}

.why-choose-us h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-box .icon {
    font-size: 40px;
    color: #9a2f23; /* Updated icon color */
    display: block;
    margin-bottom: 15px;
}

.feature-box h5 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #555;
    margin: 0;
    max-width: 280px;
}

/* Responsive margin adjustments */
@media (max-width: 768px) {
    .why-choose-us .row .col-md-4 {
        margin-bottom: 20px;
    }
}


/* Contact Section */
.contact-section {
    position: relative;
            color: white;
            padding: 50px 0;
            text-align: center;
}
.contact-section::after { /* Dark overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay with opacity */
    z-index: -1;
}
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}
.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.contact-section .btn-primary {
    width: 48%;
    margin: 5px;
    display: inline-block;
    text-align: center;
}
.contact-section .btn-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    border-color: #25D366;
    color: white;
    width: 48%;
    margin: 5px;
    display: inline-block;
    text-align: center;
}
.contact-section .btn-whatsapp:hover {
    background-color: #128C7E; /* Darker green on hover */
    border-color: #128C7E;
}
.contact-section .button-container {
    text-align: center;
}

.about-section .about-card {
    border: none;
    margin-bottom: 1rem;
}

.about-section .about-card .card-body {
  
    padding: 15px;
}
.about-header {
    font-size: 15pt;
}
.about-section .about-header-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem; /* Space below the icon */
    color: #9a2f23;
    display: block; /* Make the icon a block element */
    margin-left: 0; /* remove default left margin */
}

.about-section .about-header {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section .col-md-6 {
        margin-bottom: 1.5rem;
    }
}
.contact-card{
    background-color: #eceaea; /* Light green background */
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            
}
.contact-info{
    margin-bottom: 28px;
}
.contact-info h4 {
    color: #333;
    margin-bottom: 10px;
}
.contact-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}
.contact-form h2{
    color: #9a2f23;
    margin-top: 5px;
    margin-bottom: 5px;
}
/* Service Section */
.title-container {
    text-align: center;
    margin-bottom: 40px;
}
.title-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.title-container .divider {
    width: 50px;
    height: 3px;
    background-color: #9a2f23;
    margin: 0 auto;
}
.service-box {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    background-color: white;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}
.service-box img {
    max-width: 50px;
    margin-bottom: 15px;
}
.service-box i { /* Targeting Font Awesome icons */
    font-size: 36px;
    margin-bottom: 20px;
}
.service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #9a2f23;
}
.service-box h3,
.service-box p {
    transition: color 0.5s ease;
}
.container {
    max-width: 1200px;
}
.service-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #9a2f23;
    z-index: 0;
    transition: height 0.9s ease;
}
.service-box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.service-box:hover::before {
    height: 100%;
}
.service-box:hover h3,
.service-box:hover p,
.service-box:hover i { /* Added img to change icon color if needed */
    color: white;
    filter: brightness(0) invert(1); /* Inverts icon color to white */
}
.notary-img {
    max-height: 450px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.star-list {
    list-style: none;
    padding-left: 0;
}

.star-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.star-list li::before {
    content: '\f005'; /* Font Awesome star icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #9a2f23;
}

/* CSS for the button */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* High z-index to stay on top */
    background-color: #9a2f23;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: opacity 0.3s;
}

#scrollTopBtn:hover {
    opacity: 0.8;
}

/* Chevron up styling */
.chevron-up {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(-135deg);
}

/* Sample blocks for demonstration */
.block {
    height: 500px;
    background-color: #f0f0f0;
    margin: 20px;
    position: relative;
    z-index: 10; /* Lower z-index than button */
}

.overlap-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background-color: rgba(0, 0, 255, 0.7);
    z-index: 500; /* Still below button */
}