


.testimonials-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
  }

  .testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
  }

  .testimonials-section p.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
  }

  .testimonial-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .testimonial-card .client-name {
    font-weight: bold;
    color: #222;
    margin-top: 10px;
    font-size: 1rem;
  }

  .testimonial-card .client-title {
    font-size: 0.9rem;
    color: #777;
  }

  .cta-section {
    margin-top: 40px;
  }

  .cta-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
  }

  .cta-button {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #0056b3, #004080);
    transform: scale(1.05);
  }

.custom-bg {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/plandemaison.jpg) center center no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


a{
    color: white;
}
p{
   font-size: 200%;
   color: #000000;
} 
 
 /* Responsive styles for smaller screens */
 @media (max-width: 768px) {

    /* Adjust container positioning */
    #expandable-bubble {
        bottom: 10px;
        /* Bring closer to the screen edge */
        left: 10px;
    }

    /* Primary button adjustments */
    .primary-bubble {
        font-size: 12px;
        /* Smaller text size */
        padding: 8px 15px;
        /* Smaller padding */
        border-radius: 20px;
        /* Slightly smaller rounded corners */
        width: auto;
        /* Allow the button to shrink if needed */
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        /* Adjust shadow size */
    }

    /* Adjust flashing text size */
    .flashing-text {
        font-size: 12px;
        /* Slightly smaller font */
        letter-spacing: 0.8px;
        /* Reduce spacing */
    }

    /* Social icons adjustments */
    .social-icons .icon {
        width: 40px;
        /* Smaller icon size */
        height: 40px;
        font-size: 20px;
        /* Adjust icon size */
    }

    .social-icons {
        gap: 8px;
        /* Reduce spacing between icons */
    }
}

/* Ultra-small screens (e.g., phones in portrait mode) */
@media (max-width: 480px) {
    #expandable-bubble {
        bottom: 5px;
        /* Further adjust position */
        left: 5px;
    }

    .primary-bubble {
        font-size: 10px;
        /* Even smaller text */
        padding: 6px 12px;
        /* Tighter padding */
    }

    .social-icons .icon {
        width: 35px;
        /* Smaller icons */
        height: 35px;
        font-size: 18px;
    }
}


/* Primary button styling */
.primary-bubble {
    width: auto;
    /* Adjust width to fit the text */
    padding: 10px 20px;
    /* Add padding for button look */
    background: linear-gradient(45deg, #0077b5, #00bfff);
    /* Gradient background */
    color: white;
    border: 2px solid white;
    /* Add a white border */
    border-radius: 25px;
    /* Rounded edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary-bubble:hover {
    background: linear-gradient(45deg, #00bfff, #0077b5);
    /* Reverse gradient on hover */
    transform: translateY(-3px);
    /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Deeper shadow on hover */
}

/* Flashing text (remains the same) */
.flashing-text {
    animation: flash 1.5s infinite;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Flashing text effect for "Contact Us" */
.flashing-text {
    animation: flash 1.5s infinite;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Keyframes for flashing animation */
@keyframes flash {

    0%,
    100% {
        color: white;
        text-shadow: 0 0 5px #0077b5, 0 0 10px #0077b5;
    }

    50% {
        color: #f1f1f1;
        text-shadow: 0 0 15px #00bfff, 0 0 30px #00bfff;
    }
}

/* Container for the expandable bubble */
#expandable-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    /* Social icons will expand upwards */
    align-items: center;
    gap: 15px;
}



.primary-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hidden social icons container */
.social-icons {
    display: none;
    /* Hidden initially */
    flex-direction: column;
    /* Expand upwards */
    gap: 10px;
}

/* Social media icon styles */
.social-icons .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons .whatsapp {
    background-color: #25d366;
}

.social-icons .facebook {
    background-color: #3b5998;
}

.social-icons .instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285aeb);
}

.social-icons .linkedin {
    background-color: #0077b5;
}

.social-icons img {
    width: 40px;
    /* Adjust the size */
    height: 40px;
    margin: 10px;
    /* Adjust spacing */
}


/* Scroll to Top Button Styles */
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007BFF;
    /* Circle background color */
    color: #fff;
    /* Arrow color */
    border-radius: 50%;
    /* Makes it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    /* Keeps it on top */
}

#scrollToTop i {
    font-size: 20px;
    /* Arrow size */
}

/* Show button when visible */
#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}





/* =================================
Base Element Styles
==================================== */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

h1,

h3 {
    text-transform: uppercase;
}

h2 {

    color: #4a89ca;

    margin: 0;
}

h3 {
    font-size: 1.3em;
    line-height: 1.25em;
    margin-top: .85em;
    margin-bottom: .5em;
}

p {
    font-size: .875em;
    line-height: 1.4;
    margin: 0 0 1.5em;
}

/* =================================
Base Layout Styles
==================================== */

/* ---- Layout Containers ---- */

.container,
.content {
    margin: auto;
}

.container {
    width: 94.02985075%;
    max-width: 1260px;
    padding: 0 2.25em 4em;

}

.main-header {
    text-align: center;
    padding: 2.8em 0 3.8em;
}

.cube-container {
    max-width: 200px;
    text-align: center;
    margin: 0 auto 4.5em;
}

/* ---- Page Elements ---- */

.name {
    font-size: 1.65em;
    font-weight: 800;
    margin: 0 0 1.5em;
    line-height: 1;
}

.name span {
    font-weight: 300;
    margin-left: -7px;
}

.logo {
    width: 200px;
    margin-bottom: .4em;
    cursor: pointer;
}

/* ---- Photo Overlay ---- */

.photo-desc {
    font-size: .85em;
    color: #fff;
    padding: 1.1em 1em 0;
    background: #1591ea;
    ";

}

/* ---- Float clearfix ---- */

.clearfix::after {
    content: " ";
    display: table;
    clear: both;
}

/* =================================
Media Queries
==================================== */

@media (min-width: 769px) {
    .cube-container {
        float: left;
        margin-left: 16.6%;
    }
}

@media (min-width: 1025px) {
    .cube-container:first-child {
        margin-left: 0;
    }

    .cube-container:last-child {
        float: right;
    }

    .content {
        max-width: 900px;
        margin: auto;
    }
}

/* =================================
Button Transitions
==================================== */

.button {
    transition: background .3s;
}

.button:hover {
    background: rgba(74, 137, 202, 1);
}

/* =================================
Photo 3D Transforms & Transitions
==================================== */

.cube-container {
    box-shadow: 0 18px 40px 5px rgba(0, 0, 0, .4);
    perspective: 800px;
}

.photo-cube {
    transition: transform 3s ease-in-out;
    width: 220px;
    height: 200px;
    transform-style: preserve-3d;
}

.photo-cube:hover {
    transform: rotateY(-270deg);
}

.front,
.back,
.left,
.right {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}

.front {
    transform: translate3d(0, 0, 110px);
}

.back {
    transform: translateZ(-110px) rotateY(270deg);
    transform-origin: center left;
}

.left {
    transform: rotateY(-270deg) translate3d(110px, 0, 0);
    transform-origin: top right;
}

.right {
    transform: translateZ(-110px) rotateY(180deg);
}


    /* Image Slider Styles */
    .owl-carousel .item img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    /* Video Section Styles */
    .video-section {
        padding: 60px 0;
        text-align: center;
        background-color: #f8f9fa;
    }

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

    /* Icon Boxes Styles */
    .icon-boxes {
        padding: 60px 0;
        background-color: #ffffff;
    }

    .icon-box {
        text-align: center;
        padding: 20px;
        transition: transform 0.3s;
    }

    .icon-box:hover {
        transform: translateY(-10px);
    }

    .icon-box .icon {
        font-size: 40px;
        color: #ADD8E6;
        margin-bottom: 20px;
    }

    .icon-box h4 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #333333;
    }

    .icon-box p {
        color: #666666;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .video-section iframe {
            height: 250px;
        }
    }

    /* Topbar Icon Styles */
    .icon-container {
        display: flex;
        justify-content: space-around;
        background-color: #1c1c1c;
        /* Match your website's background */
        padding: 20px;
        flex-wrap: wrap;
        /* Allow wrapping for smaller screens */
    }

    .icon-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #1591ea;
        flex: 1;
        /* Allow even spacing */
        min-width: 250px;
        /* Prevent collapsing too much on smaller screens */
    }

    .icon {
        width: 24px;
        height: 24px;
        display: inline-block;
    }

    .text {
        font-family: Arial, sans-serif;
        color: #ffffff;
        /* Adjust text color */
        font-size: 14px;
        /* Adjust text size for smaller screens */
    }

    /* Responsive styles for smaller screens */
    @media (max-width: 768px) {
        .icon-container {
            flex-direction: column;
            align-items: center;
            /* Center items */
        }

        .icon-wrapper {
            justify-content: center;
            text-align: center;
        }

        .text {
            font-size: 12px;
            /* Slightly smaller text */
        }
    }

    .icon-container {
        display: flex;
        justify-content: space-around;
        background-color: #1c1c1c;
        /* Match your website's background */
        padding: 20px;
        flex-wrap: wrap;
        /* Allow wrapping for smaller screens */
    }

    .icon-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #1591ea;
        flex: 1;
        /* Allow even spacing */
        min-width: 250px;
        /* Prevent collapsing too much on smaller screens */
    }

    .icon {
        width: 24px;
        height: 24px;
        display: inline-block;
    }

    .text {
        font-family: Arial, sans-serif;
        color: #ffffff;
        /* Adjust text color */
        font-size: 14px;
        /* Adjust text size for smaller screens */
    }

    /* Responsive styles for smaller screens */
    @media (max-width: 768px) {
        .icon-container {
            flex-direction: column;
            align-items: center;
            /* Center items */
        }

        .icon-wrapper {
            justify-content: center;
            text-align: center;
        }

        .text {
            font-size: 12px;
            /* Slightly smaller text */
        }
    }
