/*=======================custom css============================*/

.hero-section {
    background: linear-gradient(to right, #66cfa9, #4b83fc);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 60px 15px 100px;
    /* padding for smaller screens */
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-section .highlight {
    color: #1e2845;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #dcdcdc;
}

.hero-buttons {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-buttons .btn {
    margin: 5px 10px;
    padding: 10px 20px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ccc;
    animation: bounce 2s infinite;
}

.btn-custom {
    background-color: #4b83fc;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-custom:hover {
    background-color: #66cfa9;
    color: #000;
}

.highlight {
    color: #66cfa9;
    font-weight: bold;
}

.hero-subtitle small {
    font-size: 0.9rem;
    opacity: 0.85;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* 📱 Responsive Styles */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Hide scroll indicator for mobile (below 768px) */
@media (max-width: 767.98px) {
    .scroll-indicator {
        display: none !important;
    }
}



/* hero banner css end  */

/* aboutus css start */
.about-section {
    background: #fffdf9;
    padding: 60px 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-title .highlight {
    color: #4b83fc;
}

.about-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.expertise-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
}

.expertise-badges .badge {
    background-color: #65cbad6e;
    color: #000;
    border: 1px solid #ffeeba;
    border-radius: 20px;
    padding: 10px 15px;
    margin: 5px;
    font-size: 15px;
    font-weight: 400;
}

.about-img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .expertise-badges {
        justify-content: center;
    }
}

.info-cards {
    padding: 60px 0;
    background: #fffdf9;
}

.info-card {
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.info-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.info-card i {
    font-size: 2rem;
    color: #4b83fc;
    margin-bottom: 15px;
}

.info-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .info-card {
        padding: 20px;
    }

    .info-card i {
        font-size: 1.8rem;
    }
}


/* aboutus css end */

/* slide css start */
.achievement-title {
    font-size: 2.25rem;
    font-weight: bold;
}

.achievement-highlight {
    color: #4b83fc;
}

.achievement-card {
    background: #fbfbfc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 49px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid #e2e4e9;
}

.achievement-left {
    flex: 1;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.achievement-left h4 {
    font-weight: 700;
}

.achievement-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-box {
    background: #d3ede4;
    border-left: 3px solid #32fbb5;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.timeline-box .value {
    font-weight: bold;
    color: #222;
}

.carousel-control-prev,
.carousel-control-next {
    background: #cfcfcf;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-indicators {
    position: static;
    margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 6px;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: #4b83fc;
}

@media (max-width: 768px) {
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }

    .achievement-right {
        align-items: center;
    }
}

/* slide css end  */

/* boardroom css start */

.highlight-yellow {
    color: #4b83fc;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #cee5dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #f4be21;
}

.card-title {
    font-weight: 700;
    text-align: center;
}

.card-text {
    color: #6c757d;
    font-size: 15px;
    text-align: center;
}

.custom-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    background-color: #fff;
    transition: all 0.4s ease;
}

.custom-card:hover {
    transform: translateY(-6px);
    background-color: #d3ede4;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

/* boardroom css end */

/* Engagement Format css start */

.format-card {
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 0 1px #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.format-icon {
    font-size: 40px;
    color: #4b83fc;
    margin-bottom: 15px;
}

.format-label {
    font-weight: 600;
    margin-top: 10px;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    float: right;
    font-weight: 500;
    color: #000;
}

.format-buttons .btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-yellow {
    background-color: #f4c015;
    color: #fff;
}

.btn-yellow:hover {
    background-color: #dcb700;
    color: #fff;
}

.btn-outline-yellow {
    border: 1px solid #f4c015;
    color: #f4c015;
}

.btn-outline-yellow:hover {
    background-color: #f4c015;
    color: #fff;
}

.section-bg {
    background-color: #f9f9fb;
    padding: 60px 0;
    border-radius: 20px;
}

/* Engagement Format css  end */


/*  Choose Your Session Topic css start*/
.section-title {
    font-weight: 700;
    font-size: 2.25rem;
}

.section-title span {
    color: #f4c015;
}

.session-card {
    background-color: white;
    border: 1px solid #f3f3f3;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.session-card:hover {
    background-color:#d3ede4;
}

.session-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.session-subtitle {
    color: #555;
    font-size: 0.95rem;
}

.session-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

.session-meta i {
    margin-right: 6px;
    color: #4b83fc;
}

.toggle-btn {
    border: 1px solid #4b83fc;
    color: #4b83fc;
    font-weight: 500;
    padding: 5px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    background-color: white;
    transition: 0.3s;
}

.toggle-btn:hover {
    background-color: #4b83fc;
    color: white;
}

.accordion-content {
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.key-takeaways i,
.ideal-for i {
    color: #4b83fc;
    margin-right: 8px;
}

.book-btn {
    background-color: #4b83fc;
    color: white;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.book-btn:hover {
    background-color: #e3b000;
}

.topic-border {
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}

/* Choose Your Session Topic css end */

/* Testimonials-section css start */

.Testimonials-section {
    background: #ffffff;
    ;
    padding: 5px;
}

.testimonial-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 20px;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: #d3ede4;
}

.quote-icon {
    color: #4b83fc;
    font-size: 36px;
    margin-bottom: 10px;
}

.stars i {
    color: #4b83fc;
    margin: 0 1px;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    margin-top: 10px;
}

.avatar-icon {
    font-size: 36px;
    color: #4b83fc;
    margin-top: 20px;
}

.person-name {
    font-weight: 600;
    margin-top: 10px;
    font-size: 1rem;
}

.person-title {
    font-size: 0.9rem;
    color: #777;
}

.divider {
    width: 60%;
    margin: 15px auto;
    height: 1px;
    background-color: #ddd;
}

.section-title span {
    color: #4b83fc;
}

/* Testimonials-section css end */

/* trusted css start */
.trusted-section {
    background-color: #57d19f;
    /* dark navy */
    border-radius: 15px;
    padding: 40px 20px;
    color: #ffffff;
}

.trusted-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.trusted-box h3 {
    color: #ffffff;
    /* golden-yellow */
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.trusted-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
}

@media (max-width: 576px) {
    .trusted-box {
        margin-bottom: 20px;
    }
}

/* trusted css end */

/*  Ready to Transform Your Organization css start */
.transform-section {
    background: linear-gradient(to right, #4b83fc, #66cfa9);
}

.section-container {
    padding: 60px 20px;
    text-align: center;
}

.section-title-2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #4b83fc;
    margin: 10px auto 0;
}

.section-subtext {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1rem;
    color: #d1dbe8;
}

.card-box {
    background-color: #d3ede4;;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 10px 0;
    height: 100%;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card-box:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    color: #4b83fc;
    margin-bottom: 15px;
}

.card-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #4b4d50;
}

.card-button {
    background-color: #4b84fa;;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    margin-top: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.card-button:hover {
    background-color: #32fbb5;
}

.book-bar {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.book-btn {
    background-color: #4b83fc;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }

    .card-box {
        margin-bottom: 20px;
    }
}

/*  <!-- Ready to Transform Your Organization css end --> */
/* footer css start */

.footer-section {
    background: rgb(7 16 34) !important;
}

.list-unstyled {

    line-height: 30px !important;
}

.footer-section a {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    transform: scale(1.05);
    color: #4b83fc !important;
    /* Bootstrap warning color */
}



/* custom chnages after review */
h5.fw-semibold {
    font-size: 18px !important;
}

.h2-1 {
    font-size: 2.25rem;
}

 .btn-filled {
        background-color: #4b83fc;
        color: #fff;
        border: none;
        padding: 0.6rem 1.2rem;
        font-weight: 500;
        border-radius: 0.5rem;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .btn-filled:hover {
        background-color: #66cfa9;
        color: #000;
    }

    .btn-outline {
        background-color: #66cfa9;
        color: #ffffff;
        border: 2px solid #66cfa9;;
        padding: 0.6rem 1.2rem;
        font-weight: 500;
        border-radius: 0.5rem;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .btn-outline:hover {
        background-color: #4b83fc;
        border-color: #4b83fc;
        color: #000;
    }
.text-warning {
    --bs-text-opacity: 1;
    color: rgb(75 131 252) !important;
}

