@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-purple: #f08e35;
    --secondary-purple: #351b61;
    --accent-purple: #5e3aa6;
    --dark-bg: #1a1a1a;
    --text-gray: #6c757d;
    --border-color: rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Epilogue', sans-serif;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-purple);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200px;
}

.nav-link {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 8px;
}

a {
    color: #f08e35;
    text-decoration: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    color: #555;
}

    .dropdown-item:hover {
        background-color: rgba(72, 38, 131, 0.05);
        color: var(--primary-purple);
    }

.btn-purple {
    background-color: var(--primary-purple);
    color: white;
    border-radius: 60px;
    padding: 14px 27px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.searchbtnn {
    color: #999;
    font-size: 20px;
}

.btn-purple:hover {
    background-color: var(--secondary-purple);
    color: white;
}

/* Video Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    /*! position: absolute; */
    /*! top: 50%; */
    /*! left: 50%; */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /*! transform: translate(-50%, -50%); */
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Dark overlay */
    z-index: -1;
}

.hero-text {
    color: white;
    font-size: 5rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -2px;
    z-index: 1;
}

/* About Section */
.section-padding {
    padding: 80px 0;
}

.small-heading {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #222;
    margin-bottom: 10px;
}

.underline-purple {
    width: 75px;
    height: 7px;
    background-color: var(--primary-purple);
    margin-bottom: 25px;
}

.about-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn.btn-outline-dark {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 27px;
    border-radius: 60px;
}

/* Services Grid Section */
.services-section {
    background-color: #ececec;
    /* color: white; */
    padding: 70px 0;
}

.service-heading-box {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-weight: 600;
    margin-top: 10px;
    font-size: 36px;
}

.service-heading-box h2 {
    font-weight: 700;
    margin-top: 10px;
    font-size: 42px;
}

.service-heading-line {
    width: 80px;
    height: 5px;
    background-color: #f08e35;
    margin: 15px auto 0;
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
}

.grid-item {
    border: 2px solid rgb(236, 236, 236);
    margin: -1px 0 0 -1px;
    padding: 40px 25px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ff7900;
    color: #fff; /*! width:100%; */
}

    .grid-item:hover {
        background-color: rgb(244, 117, 1);
    }

.service-icon-box {
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 2rem;
}

.service-title {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 10px;
    /*! height: 30px; */ /* Align titles */
}

.service-desc {
    font-size: 15px;
    opacity: 0.95;
    line-height: 22px;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button down */
}

.btn-service {
    background: white;
    color: var(--primary-purple);
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 14px;
}

/* Slider Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* Brands/Partners Section */
.brands-section {
    background-color: #222;
    padding: 60px 0;
    border-top: 5px solid #333;
    overflow: hidden;
    color: #fff;
    padding-bottom: 253px;
}

.partners-section {
    background-color: #f4ece4;
    padding: 60px 0;
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    color: #fff;
    opacity: 0.6;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.partner-text {
    color: #333;
    font-weight: 800;
    font-size: 1.5rem;
    opacity: 0.7;
    text-transform: uppercase;
}

/* Testimonials */
.testimonial-section {
    background-color: var(--primary-purple);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin: 0 2%;
    position: relative;
    z-index: 9;
    margin-top: -190px;
    border-radius: 24px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    padding: 3px;
    object-fit: cover;
    margin-top: 20px;
}

/* Success Stories / Portfolio */
.portfolio-header {
    text-align: center;
    margin-bottom: 30px;
}

    .portfolio-header h2 {
        font-weight: 800;
        color: #222;
    }

.nav-pills .nav-link {
    color: #555;
    font-weight: 600;
    margin: 0 5px;
    border-radius: 20px;
    padding: 8px 25px;
}

    .nav-pills .nav-link.active {
        background-color: var(--primary-purple);
    }

.portfolio-item {
    position: relative;
    /*! margin-bottom: 24px; */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .portfolio-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.05);
    }

.portfolio-label {
    position: absolute;
    bottom: 20px;
    left: 20px; /* Changed to left for variety */
    background: white;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #333;
    border-radius: 4px;
}

.portfolio-item.large img {
    height: 350px;
}

/* Blog Section */
.blog-card {
    border: none;
    transition: 0.3s;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-5px);
    }

.blog-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.blog-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-purple);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-btn {
    background: white;
    color: var(--primary-purple);
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 700;
    border: none;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 70px 0 30px;
    font-size: 0.9rem;
}

.footer p {
    color: #fff;
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

    footer ul li {
        margin-bottom: 12px;
    }

footer a {
    color: #888;
    text-decoration: none;
    transition: 0.2s;
}

    footer a:hover {
        color: var(--primary-purple);
    }

.social-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: white;
}


/* Additional styles for About page */
.about-hero {
    background: #f08e35;
    padding: 60px 0;
    color: white;
    text-align: center;
}

    .about-hero h1 {
        font-size: 38px;
        font-weight: 600;
        margin-bottom: 0;
    }

.values-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.value-card {
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    padding: 0 30px;
    padding-left: 50px;
}

    .value-card:hover {
        transform: translateY(-10px);
    }

    .value-card h4 {
        color: #000;
        font-weight: 600;
        margin-bottom: 7px;
        font-size: 1.3rem;
    }

    .value-card p {
        color: #666;
        line-height: normal;
        margin: 0;
    }

    .value-card i {
        margin: 0;
        position: absolute;
        left: 0;
        top: -8px;
        font-size: 39px;
        color: var(--primary-purple);
    }

.mission-vision-section {
    padding: 0;
    background: #f8f9fa;
}

.mission-box, .vision-box {
    padding: 36px;
    border-radius: 6px;
    /*! height: 100%; */
    margin: 0 0 -187px 0;
    position: relative;
    z-index: 9;
    background: var(--primary-purple);
    min-height: 520px;
}

.mission-box {
    background: var(--primary-purple);
    color: white;
}

.vision-box {
    background: var(--primary-purple);
    color: white;
}

    .mission-box h3, .vision-box h3 {
        font-weight: 700;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 15px;
    }

        .mission-box h3:after, .vision-box h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: white;
        }

    .mission-box p, .vision-box p {
        opacity: 0.95;
    }

.leaders-section {
    padding: 40px 0;
    background: #1a1a1a;
    padding-top: 240px;
    color: #fff;
    padding-bottom: 70px;
}

    .leaders-section p {
        color: #fff;
    }

.leader-card {
    text-align: center;
    padding: 0;
    /*! background: white; */
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    /*! box-shadow: 0 3px 15px rgba(0,0,0,0.05); */
}

    .leader-card:hover {
        transform: translateY(-8px);
    }

.leader-img {
    width: 100%;
    height: 510px;
    margin: 0 auto 20px;
    /*! background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    /*! color: white; */
    font-size: 2.5rem;
    font-weight: 700;
    overflow: hidden;
}

.leader-card h5 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
    font-size: 17px;
}

.leader-card p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.culture-section {
    padding: 40px 0;
    background: white;
}

.culture-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .culture-item:hover {
        background: white;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        transform: translateX(10px);
    }

.culture-icon {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.culture-content h4 {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.culture-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.culture-number {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .culture-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .culture-icon {
        min-width: 70px;
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .mission-box, .vision-box {
        padding: 35px 25px;
    }
}

/* Hero Section */
.hero-section-services {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b2d7e 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-get-touch {
    background: white;
    color: var(--primary-purple);
    border-radius: 25px;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

    .contact-form h4 {
        color: var(--primary-purple);
        margin-bottom: 4px;
        font-weight: 600;
    }

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

.btn-submit {
    background: var(--accent-coral);
    color: white;
    border-radius: 8px;
    padding: 12px 40px;
    border: none;
    width: 100%;
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

.section-title {
    color: var(--primary-purple);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 0;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    background: white;
    color: #000;
    font-weight: 600;
    padding: 30px 25px;
    font-size: 28px;
}

    .accordion-button span {
        color: #999;
        font-size: 23px;
        /* font-weight: 400; */
        margin: 0 20px 0 0 !important;
        display: inline-block;
    }

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: #000;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 30px;
}

.service-content h5 {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

    .service-content ul li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
    }

        .service-content ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-coral);
            font-weight: bold;
        }

.btn-touch {
    background: var(--primary-purple);
    color: white;
    border-radius: 25px;
    padding: 10px 30px;
    border: none;
    margin-top: 20px;
}

.service-image {
    border-radius: 5px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    /*! box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
}

/* Owl Carousel Services */
.owl-services {
    padding: 40px 0;
}

    .owl-services .service-card {
        background: white;
        border-radius: 5px;
        padding: 0;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin: 15px;
        transition: transform 0.3s;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
        overflow: hidden;
    }

        .owl-services .service-card:hover {
            transform: translateY(-10px);
        }

    .owl-services .service-icon {
        width: 100% !important;
        height: 146px;
        margin: 0 auto 20px;
        filter: initial !important;
        overflow: hidden;
    }

    .owl-services .service-card h5 {
        color: #000;
        font-weight: 500;
        margin-bottom: 15px;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 10px;
        font-size: 18px;
        min-height: 43px;
    }

    .owl-services .btn-learn-more {
        color: #000;
        text-decoration: none;
        font-weight: 400;
        display: inline-flex;
        align-items: center;
        gap: 0;
        display: block;
        padding: 0 0;
        margin: 0 0 22px 0;
        text-decoration: underline;
    }

.compact-form .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

    .compact-form .form-label span {
        color: red;
    }

.compact-form .form-control,
.compact-form .form-select {
    height: 42px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    margin: 0;
}

    .compact-form .form-control:focus,
    .compact-form .form-select:focus {
        border-color: #4f7cff;
        box-shadow: none;
    }

.btn-submit {
    background: #ff7a45;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
    border: none;
}

    .btn-submit:hover {
        background: #ff6a32;
    }


/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

    .blog-hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .blog-hero p {
        font-size: 1.2rem;
        opacity: 0.95;
    }

.blog-filter-section {
    padding: 60px 0 20px;
    background: white;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 17px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: transparent;
        color: #000;
        border-color: #9f9f9f;
        transform: translateY(-3px);
        /*! box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); */
    }

.search-box {
    position: relative;
    width: 300px;
}

    .search-box input {
        width: 100%;
        padding: 12px 45px 12px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

        .search-box input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

    .search-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 1.1rem;
    }

.blog-main-section {
    padding: 0 0 80px;
    background: white;
}

.blog-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    }

.blog-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.blog-card-body {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    display: inline-block;
    color: #b7b7b7;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.4;
}

.blog-card-body p {
    color: #666;
    line-height: 22px;
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card-body a {
    text-decoration: none;
    font-weight: 400;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    text-decoration: underline;
}

    .blog-card-body a:hover {
        color: #764ba2;
        gap: 12px;
    }

.pagination-wrapper {
    margin-top: 60px;
}

.pagination {
    gap: 10px;
}

.page-link {
    border: none;
    background: white;
    color: #f08e35;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    /*! box-shadow: 0 3px 10px rgba(0,0,0,0.08); */
    transition: all 0.3s ease;
    border: 1px solid;
}

    .page-link:hover {
        background: #667eea;
        color: white;
        transform: translateY(-3px);
    }

.page-item.active .page-link {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.result-count {
    color: #666;
    font-size: 1rem;
}

    .result-count strong {
        color: #999;
    }

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .blog-card-body {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
    }
}
/* Blog Details Styles */
.blog-detail-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b2d7e 100%);
    padding: 70px 0;
    color: white;
}

.blog-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.95;
}

    .meta-item i {
        font-size: 1.1rem;
    }

.blog-detail-section {
    padding: 80px 0;
    background: white;
}

.blog-content-wrapper {
    /*! max-width: 900px; */
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 27px;
    /*! box-shadow: 0 15px 50px rgba(0,0,0,0.1); */
    /*height: 328px;*/
    object-fit: cover;
}

/* Content Styles without classes */
.blog-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 25px;
    line-height: 1.3;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 35px 0 20px;
    line-height: 1.4;
}

.blog-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 18px;
    line-height: 1.4;
}

.blog-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 28px 0 16px;
    line-height: 1.4;
}

.blog-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    margin: 25px 0 14px;
    line-height: 1.5;
}

.blog-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin: 22px 0 12px;
    line-height: 1.5;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.blog-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

    .blog-content ul li {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 12px;
        padding-left: 35px;
        position: relative;
    }

        .blog-content ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            background: #667eea;
            border-radius: 50%;
        }

.blog-content ol {
    margin: 25px 0;
    padding-left: 25px;
}

    .blog-content ol li {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 12px;
    }

.blog-content strong,
.blog-content b {
    font-weight: 600;
    color: #1a1a1a;
}

.blog-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

    .blog-content a:hover {
        color: #764ba2;
        border-bottom-color: #764ba2;
    }

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

    .blog-content table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .blog-content table th {
        padding: 18px 20px;
        font-weight: 600;
        text-align: left;
        font-size: 1rem;
    }

    .blog-content table td {
        padding: 16px 20px;
        font-size: 1rem;
        color: #444;
        border-bottom: 1px solid #eee;
    }

    .blog-content table tbody tr:hover {
        background: #f8f9fa;
    }

    .blog-content table tbody tr:last-child td {
        border-bottom: none;
    }

.blog-content blockquote {
    margin: 35px 0;
    padding: 25px 30px;
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    font-style: italic;
    font-size: 1.15rem;
    color: #555;
    border-radius: 0 10px 10px 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.author-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.author-info p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.share-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.share-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .share-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .share-btn.facebook {
        background: #3b5998;
    }

    .share-btn.twitter {
        background: #1da1f2;
    }

    .share-btn.linkedin {
        background: #0077b5;
    }

    .share-btn.whatsapp {
        background: #25d366;
    }

.related-posts {
    padding: 40px 0;
    background: #f8f9fa;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

    .related-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    }

.related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 25px;
}

    .related-content h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .related-content p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
    }

.faq-section {
    background: white;
    /*! padding: 40px; */
    border-radius: 20px;
    margin-top: 50px;
    /*! box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 30px 0;
    }

    .blog-content h1 {
        font-size: 2rem;
    }

    .blog-content h2 {
        font-size: 1.7rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content h4 {
        font-size: 1.3rem;
    }

    .blog-content h5 {
        font-size: 1.15rem;
    }

    .blog-content h6 {
        font-size: 1rem;
    }

    .blog-content p,
    .blog-content ul li,
    .blog-content ol li {
        font-size: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .share-buttons {
        justify-content: center;
    }
}


/* contact-us */
.C_itemD {
    padding: 21px 30px;
    text-align: left;
    padding-left: 50px;
    position: relative;
    margin-bottom: 0;
    /*! background: #f5f9fe; */
    border-radius: 0;
    margin-left: 0;
    border-bottom: 1px solid #f2f6fb;
    /*margin-bottom: 30px;*/
}

    .C_itemD img {
        /* margin: 0 0 10px 0; */
        position: absolute;
        left: 0;
        width: 30px;
        /* top: 30px;        
}

.C_itemD h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: var(--B-family);
}

.C_itemD p {
    font-size: 18px;
    margin: 0;
    line-height: 25px;
    /*! opacity: 0.6; */
    }

    .C_itemD a {
        font-size: 18px;
        font-weight: 500;
        color: var(--black);
        display: block;
        transition: 0.2s;
    }

        .C_itemD a:hover {
            transition: 0.2s;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            color: var(--main);
        }

.contact-form-wrap .btn {
    height: 60px;
    padding: 0;
    border-radius: 20px;
    background: var(--primary-purple);
    color: #fff;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    padding: 0 39px;
    /*! box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 6px, rgba(0, 0, 0, 0.18) 0px 3px 6px; */
    display: inline-block;
    margin-top: 5px;
    /*! width: 100%; */
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 0;
    /*! font-family: var(--H-family); */
}

.contact_main {
    overflow: hidden;
    padding: 60px 0;
    background: #fff url(../images/aboutbg.png);
    background-position: center;
}

.ftagline {
    color: #fff;
    /*! font-family: var(--H-family); */
    font-size: 16px;
    max-width: 79%;
    opacity: 0.6;
}

.main {
    padding: 50px 0;
}

.floating-btn-container {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.floating-btn {
    background: #f08e35;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /*! box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    margin: 8px 0;
    border-radius: 0 8px 8px 0;
}

.get-in-touch-btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 16px 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    padding-right: 13px;
}

.call-btn {
    width: 44px;
    height: 50px;
    font-size: 16px;
    padding: 0;
}

.floating-btn:hover {
    background: #000;
    /*! transform: translateX(5px); */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

.form-control:focus {
    border-color: #7e57c2;
    box-shadow: 0 0 0 0.2rem rgba(126, 87, 194, 0.25);
}


.btn-close {
    position: absolute;
    right: 13px;
    top: 12px;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 30px;
}
/* Privacy Policy Styles */
.cont-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
}

    .cont-hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cont-hero p {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

.cont-content-section {
    padding: 80px 0;
    background: white;
}

.cont-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cont-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0px 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    line-height: 1.3;
}

    .cont-content h2:first-of-type {
        margin-top: 0;
    }

.cont-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 35px 0 20px;
    line-height: 1.4;
}

.cont-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.cont-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

    .cont-content ul li {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 15px;
        padding-left: 24px;
        position: relative;
    }

        .cont-content ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            background: var(--primary-purple);
            border-radius: 50%;
        }

.cont-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.cont-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

    .cont-content a:hover {
        color: #764ba2;
        border-bottom-color: #764ba2;
    }

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    border-left: 5px solid var(--primary-purple);
    margin: 30px 0;
}

    .info-box h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary-purple);
        margin-bottom: 15px;
    }

    .info-box p {
        margin: 0;
        color: #555;
    }

.contact-box {
    background: var(--primary-purple);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
}

    .contact-box h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
    }

    .contact-box p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        opacity: 0.95;
        color: white;
    }

    .contact-box a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: white;
        color: var(--primary-purple);
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

        .contact-box a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

.last-updated {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

    .last-updated i {
        color: #ffc107;
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .last-updated p {
        margin: 0;
        color: #856404;
        font-weight: 600;
    }

.section-divider {
    /*! height: 2px; */
    /*! background: linear-gradient(to right, transparent, #667eea, transparent); */
    /*! margin: 50px 0; */
}

/* /* ===========team-css================== */
.team-detail-section {
    display: flex;
    padding: 40px 0 30px;
    background: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #999;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 10;
}

    .back-link:hover {
        gap: 15px;
        color: #f08e35;
    }

.profile-container {
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side - Image */
.profile-image-side {
    position: relative;
}

.profile-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    aspect-ratio: 3/3.7;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    /*! box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2); */
}

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        object-position: top;
    }

    .profile-image:hover img {
        transform: scale(1.05);
    }

.floating-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: linear-gradient(135deg, #f08e35 0%, #f08e35 100%);
    padding: 20px 30px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    text-align: center;
}

    .floating-badge h4 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
        line-height: 1;
    }

    .floating-badge p {
        font-size: 0.85rem;
        margin: 5px 0 0;
        opacity: 0.9;
    }

/* Right Side - Content */
.profile-content-side {
    padding: 0 30px;
}

.member-name {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.designation {
    font-size: 1.3rem;
    color: #979797;
    font-weight: 600;
    margin-bottom: 5px;
}

.department {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #f08e35, #f08e35);
    margin-bottom: 18px;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.chip {
    padding: 8px 18px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

    .chip:hover {
        background: #667eea;
        border-color: #667eea;
        color: white;
        transform: translateY(-2px);
    }

.social-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .social-link.linkedin {
        background: #0077b5;
    }

    .social-link.facebook {
        background: #3b5998;
    }

    .social-link.twitter {
        background: #1da1f2;
    }

    .social-link.instagram {
        background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    }

    .social-link.email {
        background: #667eea;
    }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f08e35 0%, #f08e35 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    /*! box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3); */
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        color: white;
    }

.quote-box {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin-top: 25px;
    position: relative;
}

    .quote-box i {
        font-size: 2rem;
        color: #667eea;
        opacity: 0.3;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .quote-box p {
        font-size: 1rem;
        font-style: italic;
        color: #333;
        margin: 0;
        line-height: 1.7;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-container {
        gap: 40px;
    }

    .member-name {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .grid-item {
        width: 100%;
    }

    .team-detail-section {
        padding: 120px 0 50px;
        min-height: auto;
    }

    .back-link {
        position: static;
        margin-bottom: 0;
    }

    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-content-side {
        padding-right: 0;
        padding: 20px 0 40px 0;
    }

    .profile-image-wrapper {
        max-width: 400px;
    }

    .floating-badge {
        bottom: 20px;
        right: -15px;
        padding: 15px 25px;
    }

        .floating-badge h4 {
            font-size: 2.5rem;
        }

    .member-name {
        font-size: 2.5rem;
    }

    .designation {
        font-size: 1.2rem;
    }

    .stats-row {
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .social-contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .team-detail-section {
        padding: 16px 0 0 0;
    }

    .member-name {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .designation {
        font-size: 1.1rem;
    }

    .bio-text {
        font-size: 0.95rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .stat-number {
        font-size: 2rem;
    }

    .expertise-chips {
        gap: 8px;
    }

    .chip {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .quote-box {
        padding: 20px;
    }

        .quote-box p {
            font-size: 0.95rem;
        }

    .floating-badge {
        /*! position: static; */
        margin-top: 20px;
        text-align: center;
        left: 16px;
        right: auto;
    }
}

/* ===========team-css================== */
/* meta-css */


.header {
    /* background: white; */
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 30px auto;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
}

    .header h1 {
        color: var(--primary-purple);
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .header h2 {
        color: #000;
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

.download-btn {
    background: #f08e33;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

    .download-btn:hover {
        background: var(--dark-purple);
    }

.section-title {
    color: #2b2a2c;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.event-details {
    /* background: white; */
    padding: 30px;
    padding-top: 0;
    border-radius: 15px;
    text-align: center;
    margin: 0;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
}

    .event-details p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.event-date {
    font-size: 1.5rem;
    font-weight: bold;
    color: #19181a;
    margin: 20px 0;
}

.event-time {
    color: #666;
    margin: 10px 0;
}

.feature-card {
    background: #5304a1;
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(91, 58, 158, 0.3);
}

    .feature-card h3 {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .feature-card p {
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .feature-card img {
        border-radius: 15px;
        width: 100%;
        max-width: 400px;
    }

.benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 3rem;
        color: var(--primary-purple);
        margin-bottom: 15px;
    }

    .benefit-card h5 {
        color: var(--dark-purple);
        font-weight: 600;
        font-size: 0.95rem;
    }

.schedule-table {
    /* background: white; */
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
    margin: 30px 0;
}

    .schedule-table table {
        margin: 0;
    }

    .schedule-table thead {
        background: var(--primary-purple);
        color: white;
    }

    .schedule-table th {
        padding: 20px;
        font-weight: 600;
    }

    .schedule-table td {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .schedule-table tr:hover {
        background: #f8f9fa;
    }

.video-card {
    background: var(--primary-purple);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    margin: 15px;
    position: relative;
    overflow: hidden;
}

    .video-card i {
        font-size: 4rem;
        color: white;
        opacity: 0.9;
    }

    .video-card p {
        color: white;
        margin-top: 15px;
        font-weight: 600;
    }

.speaker-section {
    background: #5304a1;
    border-radius: 0;
    padding: 50px 30px;
    margin: 50px 0;
    color: white;
}

.speaker-card {
    text-align: center;
    margin: 20px 0;
}

    .speaker-card img {
        width: 91%;
        height: 296px;
        border-radius: 5px;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .speaker-card h5 {
        color: white;
        font-weight: 600;
        margin-top: 10px;
    }

.stat-card {
    background: #5304a1;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    margin: 15px;
    color: white;
}

    .stat-card h3 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

.benefit-card img {
    margin: 0 0 20px 0;
    filter: grayscale(10);
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.key-stats-label {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 50px 0 20px;
}

.feature-card img {
    height: 366px;
    width: 100%;
    object-fit: cover;
    max-width: 87%;
}

.whatinit {
    padding: 20px 0;
}

/* meta-css */


@media (max-width: 768px) {
    .cont-hero {
        padding: 120px 0 60px;
    }

        .cont-hero h1 {
            font-size: 2.5rem;
        }

        .cont-hero p {
            font-size: 1rem;
        }

    .cont-content h2 {
        font-size: 1.7rem;
    }

    .cont-content h3 {
        font-size: 1.3rem;
    }

    .cont-content p,
    .cont-content ul li {
        font-size: 1rem;
    }

    .contact-box {
        padding: 35px 25px;
    }

        .contact-box h3 {
            font-size: 1.6rem;
        }
}


.error-content {
    max-width: 700px;
    margin: 0 auto;
}

    .error-content .error-img {
        margin-bottom: 20px;
    }

    .error-content .sub-title {
        font-size: 54px;
        font-weight: 700;
        margin-bottom: 50px;
    }

@media only screen and (max-width: 991px) {
    .error-content .sub-title {
        font-size: 40px;
    }

    .contact-form-wrap .btn {
        height: 48px;
        padding: 0 20px;
        font-size: 18px;
    }

    .leaders-section .mb-5 {
        margin-bottom: 15px;
    }

    .leaders-section {
        padding-bottom: 40px;
    }

    .leader-img {
        height: 337px;
    }

    .main {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .error-content .sub-title {
        font-size: 28px;
    }
}

.error-content .error-img-2 {
    display: block;
    width: 100%;
}

.error-content .error-btn {
    display: inline-block;
    background: var(--pb-color-common-yellow);
    border: 1px solid var(--pb-color-common-yellow);
    padding: 20px 80px;
}

.truebuzz-container h1 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.truebuzz-container h2 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1rem;
}

.truebuzz-container .subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

.truebuzz-container ul {
    padding-left: 20px;
}

.truebuzz-container a {
    color: #f08e35;
    text-decoration: none;
}

    .truebuzz-container a:hover {
        text-decoration: underline;
    }

.truebuzz-container .faq-item {
    margin-bottom: 25px;
}

    .truebuzz-container .faq-item h3 {
        margin-bottom: 8px;
        color: #111827;
        font-size: 1rem;
    }

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    color: #ffffff;
    padding: 15px 20px;
    display: none;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

    #cookieConsent .content {
        max-width: 1200px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    #cookieConsent p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    #cookieConsent a {
        color: #38bdf8;
        text-decoration: underline;
    }

.cookie-buttons button {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.accept-btn {
    background: #22c55e;
    color: #fff;
}

.reject-btn {
    background: #ef4444;
    color: #fff;
}
