/* Global Body */
body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Page Content */
.page-content {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
.text-justify {
    text-align: justify;
}
.text-sm {font-size: 16px !important;}

/* H1 and CTA */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: none;
}

.bg-white img { max-width: 72% !important;}
.h-15 { max-width: 72% !important;}
.left-0{ left:-180px !important;}
#blog-content h2, #intro{ scroll-margin-top: 111px !important; }


@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }
}

/* Multicolor H2 */
.multicolor-h2 {
    font-weight: 700;
    font-size: 2.25rem;
    background-image: linear-gradient(to right, #f97316, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Mega Menu */
.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.services-menu-item:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Scroll Fade-in */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 3s infinite ease-in-out;
}

/* Testimonials Slider */
.testimonial-slider-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}
.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.nav-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
.dot.active {
    background-color: #fff;
}

/* FAQ */
details summary {
    list-style: none;
    position: relative;
    cursor: pointer;
}
details summary::-webkit-details-marker {
    display: none;
}
details summary:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    transition: transform 0.2s ease-in-out;
}
details[open] summary:after {
    content: "-";
}

/* Footer Columns */
.footer-columns {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.footer-columns .column {
    flex: 1;
    padding: 0 10px;
}
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ccc;
}

/* === Testimonials Slider Specific Styles === */
.testimonial-slider-container {
position: relative;
height: 450px; /* Adjust height as needed */
overflow: hidden;
}
.testimonial-slides {
display: flex;
transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
min-width: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 2rem;
max-width: 900px;
margin: 0 auto;
}
/* Navigation Dots */
.nav-dots {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.dot {
width: 12px;
height: 12px;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
margin: 0 6px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.dot.active {
background-color: #fff;
}