/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* background-color: #76a78a; */
    color: #29747e;
}

/* .logo img {
    height: 50px; 
    width: auto;
} */
.podcast-hosts h2 {
    font-size: 2.5rem;
    /* Larger heading */
}

.podcast-hosts h3 {
    font-size: 2rem;
}

.header-btn {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .header-btn {
        margin-left: 0;
        margin-top: 5px;
    }
}

.podcast-hosts p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.podcast-hosts {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.review-scroll-container {
    overflow: hidden;
    /* Hide scrollbar and disable scroll */
    width: 100%;
    position: relative;
}

#review-list {
    animation: scroll-reviews 40s linear infinite;
    width: max-content;
    user-select: none;
    touch-action: none;
    pointer-events: none;
}

/* Each review card */
.review-card {
    flex: 0 0 auto;
    width: 100px;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Animation for smooth loop */
@keyframes scroll-reviews {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


section.reviews {
    /* If you have a wrapping section */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.contact-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    justify-content: center;
    /* Center the logo horizontally */
    align-items: center;
    /* Center the logo vertically */
    padding: 19px;
    /* Add padding around */
}

.logo img {
    height: 100px;
    /* Maintain aspect ratio */
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
    /* Add shadow for better visibility */
    background: transparent;
    /* Light background for contrast */
    padding: 5px;
    /* Space around logo */
    border-radius: 10px;
    /* Smooth edges */
}

@media (max-width: 500px) {
    .logo img {
        height: 100px;
    }
}



/* .logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-color: #333;
  } */
/* Header & Navigation */
/* header {
    background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
    color: #fff;
  
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 1000
} */

.announcement-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.marquee {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee p {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.appointment-btn {
    background-color: #954ae2;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .announcement-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0.8rem;
    }

    .announcement-bar .marquee {
        width: 100%;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .appointment-btn {
        margin: 0;
        display: inline-block;
        width: auto;
    }
}

/* For very small mobile screens */
@media (max-width: 480px) {
    .appointment-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
        margin-top: 5px;
        text-align: center;
    }
}

.appointment-btn:hover {
    background-color: #7b38c0;
}




header {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
    /* padding: 15px 0; */
    /* transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out; */
    /* background: transparent; */
    background: linear-gradient(45deg, #9874D4, #CB6FC0, #4A7EEF);
    height: 102px;

}

/* Background appears when scrolling */
header.scrolled {
    background: linear-gradient(45deg, #9874D4, #CB6FC0, #4A7EEF);
    padding: 0% 4%;
    /* Slightly reduce padding */

}

header.scrolled nav ul li a {
    color: #fff;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0% 2%;

}

/* .logo {
    font-size: 1.5rem;
    font-weight: bold;
} */



nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ddd;
}




/* Desktop Navigation */
.menu-container {
    display: flex;
}

.menu-container ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-container ul li {
    margin: 0 15px;
}

.menu-container ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 20px;
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Close Button */
.close-menu {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Responsive: Show Hamburger and Hide Menu */
@media (max-width: 768px) {
    .menu-container {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #222;
        justify-content: center;
        align-items: center;
        z-index: 1000;

    }



    .menu-container ul li {
        margin: 15px 34%;
        width: 80%;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    }

    .menu-container ul {
        list-style: none;
        position: relative;
        top: -12%;
        display: flex;
        left: -4%;
    }

    .menu-container ul li a {
        font-size: 22px;
        color: white;
    }

    .menu-toggle {
        display: block;
        width: 100px;
    }

    .close-menu {
        display: block;
        position: relative;
        left: 28%;
        top: -1%;
        background-color: transparent;

    }

}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
}

.slider-container {
    width: 100%;

    overflow: hidden;
    position: relative;
}

.learn-text {

    background-color: #954ae2;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 15px;

}

.slider {
    display: flex;
    /* width: 300%; 3 slides, so 300% */
    transition: transform 0.5s ease-in-out;
    /* Add smooth transition */
}

.slide {
    width: 100%;
    /* Each slide should take full width */
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    object-fit: cover;
    filter: blur(10px);
    max-height: 550px;

}

.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-text {
        bottom: 1%;
        left: 50%;
    }
}

.hero-text h1,
.hero-text p,
.hero-text a {
    color: white;
}

.hero-text p,
.hero-text a {
    font-size: 20px;
}

.hero-text a {
    font-size: 20px;
}

.hero-text h1 {
    padding-top: 15%;
    font-size: 40px;
}

@media (max-width: 500px) {
    .hero-text h1 {
        font-size: 18px;
        padding-top: 59%;
    }
}

/* Highlight Services Section */
.highlight-services {
    /* background: linear-gradient(135deg, #003366, #005B99, #00A8E8); */
    background: #dee2e6;
    padding: 3rem 20px;
    text-align: center;
}

.highlight-services h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8000fe;
}

.highlight-services .tagline {
    font-size: 1.2rem;
    color: #8000fe;
    margin-bottom: 2rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Responsive grid */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    padding: 1.5rem;
    background-color: hwb(124 74% 13%);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    width: 100%;
    /* FIXED: Let grid control the width */
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight i {
    font-size: 3rem;
    color: #954ae2;
    margin-bottom: 0.5rem;
}

.highlight .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
}

.highlight .description {
    display: block;
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {

    /* Medium screens */
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Small screens */
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    /* Extra small screens */
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
        /* Ensuring 2 columns */
    }
}

@media (max-width: 480px) {

    /* Very small screens */
    .service-highlights {
        grid-template-columns: repeat(1, 1fr);
        /* Single column */
    }
}

/* Mobile screens (up to 768px) */
@media (max-width: 768px) {
    .section-title-area {
        margin-top: 6%;
    }
}


/* swiper slider section */

.row {
    display: flex;
}

.industry-three-slider__navigation-wrapper {
    display: flex;
    justify-content: center;
    /* Centering buttons */
    align-items: center;
    gap: 1px;
    /* Spacing between buttons */
    margin-top: 20px;
    /* Adjust as needed */

}

.industry-three-slider__container-area {
    background-color: rgb(0, 255, 170);
    overflow: hidden;

}

/* .item-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left; 
    padding: 20px;
}
.item-wrap {
    max-width: 500px; 
    margin: 0 auto;
}
.item-wrap__content__title {
    display: block;
    font-size: 20px;
    font-weight: bold;
} */

.item-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px;
}


.ht-swiper-button-nav {
    width: 50px;
    /* Circular button size */
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* Make it circular */
    border: 2px solid rgba(0, 0, 0, 0.2);
    /* Light border */
    background-color: rgba(255, 255, 255, 0.8);
    /* Light background */
    transition: all 0.3s ease;
    cursor: pointer;
}

.ht-swiper-button-nav i {
    font-size: 20px;
    /* Adjust icon size */
    color: #333;
    /* Darker icon color */
}

.ht-swiper-button-nav:hover {
    background-color: #1dc8ce;
    /* Slightly brighter on hover */
    border-color: rgba(0, 0, 0, 0.4);
    /* Darker border */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.ht-swiper-button-prev {
    margin-right: 5px;
    /* Space between buttons */
}

.ht-swiper-button-next {
    margin-left: 5px;
}

/* Podcast Info, Services, About, Blog */
.podcast-info,
.services-overview,
.about-content,
.blog-content,
.contact-content {
    padding: 2rem 20px;
}

.podcast-info h2,
.services-overview h2,
.about-content h1,
.blog-content h1,
.contact-content h1 {
    margin-bottom: 1rem;
}

.services-overview ul {
    list-style: disc;
    margin-left: 20px;
}


.service {
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 5px;
}

/* Blog Posts */
.blog-post {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.blog-post h2 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.blog-post h2 a:hover {
    color: #007bff;
}

/* Contact Form */
.contact-section {
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.95);
    position: relative;
    background-image: url('../img/contact-back-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 18% 0%;
    display: flex;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

/* Adding a blur effect using a pseudo-element */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    /* Use the same background */
    filter: blur(10px);
    /* Adjust the blur intensity */
    z-index: 1;
}


/* Contact Form Styling */
/* .contact-form {
    background: #a6b8cb8f;
    padding: 2% 7% 2% 7%;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 2;
    margin: 2% 2% 2% 2%;   
}


.contact-form h2 {
    margin-bottom: 10px;
    color: #1e1e2d;
}

.contact-form p {
    margin-bottom: 20px;
    color: black;
}


.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}


button {
    background-color: #954ae2;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}




.contact-info {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
} */

.contact-form {
    background: rgba(166, 184, 203, 0.8);
    /* Soft transparent blue-gray */
    padding: 3% 5%;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    margin: auto;
    z-index: 2;
}

#contact {
    margin: 1%;
}



.custom-alignment {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;

}

/* Button Styling */
button {
    background-color: #954ae2;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #7a3abc;
}

/* Fully Responsive */
@media (max-width: 768px) {
    .contact-form {
        width: 90%;
        padding: 5%;
    }
}


.map-section {
    text-align: center;
    background-color: hsl(194, 33%, 80%);
    margin: 2%;
}

.map-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}


.map-container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);


}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


@media (max-width: 768px) {
    .contact-form {
        margin-top: 20%;
    }
}


@media (max-width: 480px) {
    .contact-form {
        margin-top: 25%;
    }
}


@media (max-width: 678px) {
    .contact-form {
        margin-top: 35%;
    }
}




/* Footer */
/* footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    bottom:0;
    width:100%;
} */

footer {
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.maps {
    font-size: 18px;
}

.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUp 10s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-200px);
        opacity: 0;
    }
}

.sytling a {
    border: #666;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: transparent;
}

#backToTop {
    display: none;
    width: 50px;
    height: 50px;
    z-index: 1;
}


@media (min-width: 768px) {
    .quick {
        padding-left: 22% !important;

    }

    .contactclass {
        padding-right: 0% !important;

    }

    .serviceclass {
        padding-left: 12% !important;
    }
}

@media(max-width: 768px) {
    .contactclass {
        text-align: left !important;
        margin: 20px 0px 0px 70px !important;

    }

    footer {
        margin-top: 100px;
    }

}

@media(max-width: 550px) {
    .contactclass {
        text-align: left !important;
        margin-left: 7% !important;

    }
}

.contactclass p {
    margin-bottom: 2px;

}

.contactclass i {
    padding-top: 12px;
    padding-right: 10px;

}

/* Responsive Design */
/* Hide the menu toggle button by default */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 33px;
    color: white;
    cursor: pointer;
    padding-right: 28px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Show toggle button at 768px */
        justify-content: end;
        display: flex;

    }

    nav {

        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        padding: 0 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav.show {
        display: block;
        /* Show menu when active */
    }
}

@media (max-width: 622px) {
    .maps {
        font-size: 14px;
        /* Ensure a readable font size */
        text-align: left;
        /* Align text properly */
        word-wrap: break-word;
        /* Force long words to wrap */
        white-space: normal;
        /* Allow text to wrap */
        overflow: visible;
        /* Ensure text isn't hidden */
        max-width: 100%;
        /* Prevent it from overflowing */
    }



}

.breadcumb-title {
    font-size: 60px !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
    font-size: 20px !important;
}

breadcumb-content {
    /*    padding: 130px 0 130px 0;*/
    padding: 85px 0 85px 0;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    /* Adjust distance from the bottom */
    right: 20px;
    /* Position it on the right side */
    background-color: #9874D4;
    /* Blue color */
    color: white;
    border: none;
    /* border-radius: 50%;  */
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    /* Initially hidden */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    padding: 0% 0% 0% 0%;

}

/* Hover effect */
#backToTop:hover {
    background-color: #62838a;
    transform: scale(1.1);

}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}

/* about page */
/* Testimonial Section */
.Testimonial {
    padding: 3% 0;
    background-color: #f8f9fa;
}

.Testimonial h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 10px;
}

.about-section h1 {
    text-align: center;
    color: #9874D4;
    margin: -3% 0% 4% 0%;
}

.Testimonial h2 span {
    color: #9874D4;
}

.Testimonial .subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-content {
    display: none;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content.active {
    display: flex;
}

.testimonial-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
    position: relative;
}

.quote-icon {
    color: #9874D4;
    font-size: 2em;
    margin-bottom: 20px;
}

.quote-content p {
    color: #444;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-content h3 {
    color: #9874D4;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.quote-content .position {
    color: #666;
    font-size: 0.9em;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    margin: 0px 38px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9874D4;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #19a5c1;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: -8%;
}

.nav-arrow.next {
    right: -8%;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: #9874D4;
    transform: scale(1.2);
}

.nav-dot:hover {
    background-color: #19a5c1;
}

@media (max-width: 1140px) {
    .nav-arrow.prev {
        left: -4%;
    }

    .nav-arrow.next {
        right: -4%;
    }
}
/* Section spacing */
.section-space-top {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Optional: smooth fade-in animation */
.section-space-top h2,
.section-space-top p {
  animation: fadeInUp 0.8s ease-in-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fix for small screens */
@media (max-width: 768px) {
  .section-space-top {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-space-top h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .testimonial-image {
        flex: 0 0 200px;
        height: 200px;
    }

    .breadcumb-content {
        padding: 60px 0 60px 0;
    }

    .quote-icon {
        margin-bottom: 15px;
    }

    .quote-content p {
        font-size: 1em;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }


}

.about-section {
    padding: 5% 10%;
    margin-top: 9%;
    padding-bottom: 3%;
}

@media (max-width: 992px) {
    .about-section {

        text-align: center;
        padding-top: 11%;
    }
}

@media (max-width: 798px) {
    .about-section {

        text-align: center;
        padding-top: 17%;
    }
}

@media (max-width: 598px) {
    .about-section {
        padding-top: 22%;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding-top: 12%;
        margin-top: 30%;
    }
}

.content-overlay h1 {
    font-size: 2.2rem;
    /* smaller than current */
    font-weight: 700;
    /* keep bold but not too thick */
    line-height: 1.3;
    /* more breathing room */
}

.content-overlay p.lead {
    font-size: 1.05rem;
    /* slightly smaller */
    font-weight: 400;
    /* regular weight for readability */
    line-height: 1.6;
    /* airy for comfort */
}

.content-overlay strong {
    font-weight: 600;
    /* semi-bold for emphasis */
}

/* Small helper styles */
.illustrated-list .feature-img {
    width: 100%;
    height: 260px;
    /* adjust for desired height */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.illustrated-list .feature-number {
    display: inline-block;
    background: #44c8c3;
    color: #fff;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: .95rem;
}

.illustrated-list h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.illustrated-list p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .illustrated-list .feature-img {
        height: 308px;
    }
}

.publishing-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.publishing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.publishing-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.toggle-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-header {
    background-color: #fff;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.toggle-header:hover {
    background-color: #f1f1f1;
}

.toggle-icon {
    margin-right: 1rem;
    color: #44c8c3;
    transition: transform 0.3s ease;
}

.toggle-header.active .toggle-icon {
    transform: rotate(90deg);
}

.toggle-title {
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.toggle-content {
    background-color: #fff;
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: none;
}

.conclusion-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #44c8c3;
    margin-top: 2rem;
}

/* Dark transparent background with blur effect */


.service-edition {
    padding: 5% 10%;
    margin-top: 5%;
    padding-bottom: 3%;
}

.card-box {
    border: 2px solid #45464B;
    border-radius: 20px;
    padding: 20px 25px 20px 50px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.hero {
    background: url("https://thekaizenglobal.com/images/podcast-marketing-solutions-bg.webp") no-repeat center center / cover;
    background-color: black !important;

    color: #ffffff;
    padding-top: 150px;
    padding-bottom: 80px;
}

.consultation-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px;
    background: transparent;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    /* Light transparent background */
    backdrop-filter: blur(10px);
    /* Applies the blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari support */
    padding: 30px 40px;
    border-radius: 20px;
    max-width: auto;
    width: 100%;
    box-sizing: border-box;
    color: white;
    font-family: 'Inter', sans-serif;
}

.form-container h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
    color: white;
}

.form-container h2 .highlight {
    color: #f15b26;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    background: #000000;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    resize: none;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #666666;
}

.consultation-form textarea {
    min-height: 80px;
}

.features {
    background-color: #F7F7F7;
    padding: 10px 10px;
    border-top: 2px solid #e4e4e4;
    margin: 0px 80px;
}

.btn-orange:hover {
    background: #ffffff;
    color: #000;
    border: 1px solid #000;

}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    /* font-family: 'Clash Display', sans-serif; */
    font-size: 52px;
    /* font-weight: 600 !important; */
    /* letter-spacing: 0.5px; */
    margin-bottom: 15px;
    color: white;
}

.bg-lights {
    background: url("../img/Desktop15.webp") no-repeat center center / cover;

    margin: 0px 80px;
}

.featuretext {
    font-size: 20px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    /* color: #1E1F33; */
    opacity: 85%;
    align-items: center;
    justify-content: center;
    margin: 0px;
    padding: 0px;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 25px;

}

.feature-box img {
    width: 50px;
    height: 50px;
}

.feature-box h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.btn-orange {
    background: #f15b26;
    color: rgba(0, 0, 0, 0.877);
    font-size: 14px;
    padding: 15px 50px;
    border: 2px solid #000000f5;
    /* light black border */
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;

    /* opacity: 80%; */

}

.card-box a {
    color: #232324;
    font-weight: bold;
}

.service-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.service-hover:hover {
    transform: scale(1.05);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-content h3 a:hover {
    color: #f15b26;
}

/* .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about-container.reverse {
    flex-direction: row-reverse;
}



.about-content h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
}

.about-image {
    width: 45%;
}

.about-image img {
    
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20%;
    }

    .about-container.reverse {
        flex-direction: column;
    }

    .about-content, .about-image {
        width: 100%;
    }
    
}  */

/* blog page code */
/* Blog Card Styling */
.blog-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card.blog-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card.blog-card .btn {
    margin-top: auto;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}

.blog-meta {
    font-size: 14px;
    color: #666;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.blog-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.blog-section .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-section .card-text {
    flex-grow: 1;
}

.blog-section .btn {
    margin-top: auto;
}

.blog-section .card iframe,
.blog-section .card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}



.blog-section {
    position: relative;
    background-image: url('../img/blog-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 18% 0%;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    top: 99px;
}

.head {
    background-color: #9874D4;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    z-index: 2;
}

.head h1 {
    color: white;
    font-size: 2vw;
    /* Font size adjusts based on screen width */
    margin: -11px;
}

/* Responsive Design */
@media (max-width: 768px) {


    .head h1 {
        font-size: 2vw;
        /* Increase font size for readability */
    }
}

/* 588px Specific Fix */
@media (max-width: 588px) {
    .head {
        margin-left: 7%;
        margin-right: 7%;
    }

    .head h1 {
        font-size: 3vw;
    }
}

/* Mobile View (480px and below) */
/* Mobile View (498px and below) */

/* Fix for 500px */

/* @media (max-width: 500px) {
    .head {
     margin-left: 19%;
     margin-right: 10%;
     margin-top: 11%;
     margin-bottom: 10%;
    }
  
    .head h1 {
      font-size: 1.2rem;
      max-width: 95%; 
      text-align: center;
    }
  }
   */

/* Adding a blur effect using a pseudo-element */
.blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    /* Use the same background */
    /* filter: blur(10px); */
    z-index: 1;
    margin: 0px;

}

/* whatsapp css */
.whatsapp-button {
    position: fixed;

    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;

}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.btn-primary {
    background-color: #954ae2 !important;
    /* Change button color */
    color: white !important;
    /* Change text color */
    border: none;
}

.btn-primary:hover {
    background-color: rgb(72, 201, 78);
    /* Change color on hover */
}

/* index swiper slider css */
.sliding {
    margin: 3%;
}

.sliding h2 {
    text-align: center;
    font-size: 25px;
    color: #9874D4;
    margin: 1%;
}

/* Swiper Container */
.swiper {
    width: 100%;
    height: 400px;
    /* Adjust as needed */
    z-index: 0;
}


/* Slide Content */
.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Image Styling */
.slide-content img {
    width: 100%;
    height: 100%;
    /* Match height with swiper */
    object-fit: fill;
    /* Ensures full image coverage */
    border-radius: 10px;

}

/* Text Overlay */
.slide-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    /* Dark transparent overlay */
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
}

/* List Styling */
.slide-overlay ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
    margin: 0;
    text-align: justify;

    display: inline-block
}

.slide-overlay ul li {
    margin: 5px 0;

    gap: 8px;
    /* Space between icon and text */
}

.swiper-pagination-bullet-active {
    background-color: #9874D4 !important;
    /* Change to desired color */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-overlay {
        width: 90%;
        padding: 10px;
    }

    .slide-overlay ul {
        font-size: 16px;
    }
}

/* Blog Page Styles */
.blog-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.blog-title {
    color: #2c3e50;
    border-bottom: 2px solid #eee;
}

.blog-subtitle {
    color: #34495e;
}

.blog-quote {
    background: #ecf0f1;
    border-left: 5px solid #3498db;
    font-style: italic;
    color: #2c3e50;
}

.highlight {
    background-color: #dff9fb;
    padding: 5px 8px;
    border-radius: 5px;
}

/* Social Share Buttons */
.social-row {
    display: flex;
    gap: 10px;
    margin-bottom: 1em;
}

.social-button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.youtube {
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease;
}

.youtube:hover {
    background-color: #cc0000;
}

.instagram {
    background: linear-gradient(45deg, #fdf497 0%, #fd5949 30%, #d6249f 60%, #285AEB 100%);
    color: white;
    border: none;
}

.copy-link {
    background-color: #6c757d;
}

/* Back Button Styles */
.back-btn.sticky {
    position: fixed;
    top: 10px;
    left: 5%;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #0056b3;
    z-index: 1000;
}