@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #888;
    --bg-light: #fff;
    --overlay-bg: rgba(0, 0, 0, 47.5%);
    --navbar-bg: rgba(255, 255, 255, 90%);
    --shadow-light: rgb(0 0 0 / 10%);
    --shadow-medium: rgba(0, 0, 0, 20%);
}

body {
    font-family: Poppins, sans-serif;
}

.bg-grey
{
    background: #e9e9e933;
}

.bg-gray
{
    background: #a4a5a6!important;
    
}

.text-light-black
{
    color:#1d1d1d;
}

.text-light-grey
{
    color:#1d1d1dc5;
}

.navbar {
    background-color: #fffc !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    height: 8%;
}

.navbar-brand img {
    height: 78px;
}

.mx-auto {
    margin-right: inherit!important;
}

.nav-link {
    color: #1d1d1f !important;
    font-size: 14px;
    padding: 12px 20px !important;
}

.navbar-nav .btn
{
    font-size: 10px;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgb(0 113 227 / 43%), rgb(69 68 68 / 20%)), url('./images/cbo-hero-image.png') center / cover,
                url('../images/cbo-hero-image.png') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #f4f4f4;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(40px);
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
}

.cta-buttons {
    opacity: 0;
    transform: translateY(40px);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-primary {
    background-color: #0071e3;
    color: white !important;
}

.cta-primary:hover {
    background-color: #0077ed;
}

.cta-secondary {
    background-color: transparent;
    color: #0071e3 !important;
    border: 2px solid #0071e3;
}

.cta-secondary:hover {
    background-color: #0071e31a;
}

.hero-title,
.hero-subtitle,
.cta-buttons {
    transition: opacity 1s ease, transform 1s ease;
}




body { 
    transition: background-image 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    z-index: -1;
}

.navbar {
    background-color: var(--navbar-bg);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.navbar-brand img {
    height: 50px;
}

.logo-text {
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-left: 10px;
    color: var(--text-dark);
}

.logo-text .tagline {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
    border: none;
}

.btn-contact:hover {
    background-color: var(--primary-color); 
    color: var(--text-light);
}

.hero {
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 50px;
    
    /* Glow effect */
    color: #fff; /* Text color */
    text-shadow:0 0 10px rgb(255 255 255 / 30%), 0 0 20px rgb(255 255 255 / 30%), 0 0 30px rgb(255 255 255 / 22%);
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.bg1 { background-image: url('images/new-cbo-hero-image-1.png'); }
.bg2 { background-image: url('images/new-cbo-hero-image-2.png'); }
.bg3 { background-image: url('images/new-cbo-hero-image-3.png'); }
.bg4 { background-image: url('images/cbo-engage-img-1.png'); }

.btn-journey {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
    transition: all 0.3s;
}

.btn-journey:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.content-section {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 5px 30px var(--shadow-light);
}

.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.content-section h2 .highlight {
    color: var(--primary-color);
}

.content-section h2 .for-you {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-box {
    text-align: center;
    margin-bottom: 30px;
}

.feature-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Background image transition */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 4s ease-in-out;
    opacity: 0;
    z-index: -2;
}

.bg-image.active {
    opacity: 1;
}

.bg1 { background-image: url('../images/new-cbo-hero-image-1.png'); }
.bg2 { background-image: url('../images/new-cbo-hero-image-2.png'); }
.bg3 { background-image: url('../images/new-cbo-hero-image-3.png'); }
.bg4 { background-image: url('../images/cbo-engage-img-1.png'); }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 30px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
}


/* _____________ */


 /* CBO Process Section Styles */
 .process-item {
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateX(5px);
    border-left-width: 6px;
}

.process-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}


/* __________________ */


.main-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.subheading {
    text-align: center;
    margin-bottom: 2rem;
}

.cbo-highlight {
    color: #F5A623;
    font-weight: bold;
}

.event-card {
    background: linear-gradient(135deg, #60b8f5 0%, #22589e 100%);
    border-radius: 20px;
    color: white;
    padding: 2rem;
    margin-bottom: 2rem;
}

.countdown-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

.countdown-box {
    width: 116px;
    height: 100px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1d;
    font-size: 30px;
    margin: 0 10px;
}


.countdown-number {
    font-size: 2rem;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.event-card-container {
    max-width: 500px;
    margin: 0 auto;
}

.event-details {
    background-color: white;
    color: black;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 10%);
    margin-bottom: 20px;
}

.event-details-top {
    padding: 1.5rem;
}

.event-details-bottom {
    background-color: #FFCC4D;
    padding: 1.5rem;
}

.event-date {
    font-size: 22px;
    font-weight: bold;
}

.event-time {
    font-size: 1.5rem; 
    margin-bottom: 0.5rem;
}

.event-message {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.location-badge {
    background-color: white;
    color: #333;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 10.1);
    flex-basis: calc(33.333% - 12px);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    min-width: 120px; 
    transition: all 0.3s ease;
    position: relative;
}

.location-badge:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 20%);
}

.location-badge a {
    color: #333;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.location-badge span {
    display: inline-block;
    padding-left: 100%;
    animation: slide-text 10s linear infinite;
    animation-play-state: paused;
}

.location-badge:hover span {
    animation-play-state: running;
}

@keyframes slide-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.view-more-btn {
    background-color: white;
    color: #333;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (width < 835px) {
    .countdown-box{
       font-size: 1rem;
       padding-left: 22px;
       padding-right: 22px;
    }

    .view-more-btn{
        font-size: 0.5rem; 
    }
}

@media (min-width: 0px) and (max-width: 1200px) {
    .countdown-box {
        width: inherit;
        color:#000; 
        width:auto;
    }

    .countdown-container
    {
        justify-content: center;
    }

}

/* --------------------------------------- */

.team-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 600;
}

.section-title h2 .highlight {
    color: #0d6efd;
}

.cbo-meet-up-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 5%);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    position: relative; 
    display: flex;
    flex-direction: column; 
}

/* Added a specific class for the first card to keep hover effect */
.cbo-meet-up-card-active:hover {
    transform: translateY(-10px);
}

/* Added a muted style for the inactive cards */
.cbo-meet-up-card-inactive {
    opacity: 0.8;
    pointer-events: none; /* This prevents all hover interactions */
}

/* Horizontal scrolling container for mobile */
.cbo-meet-up-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}

/* Cards inside the horizontal scroll */
.cbo-meet-up-scroll-container .col-md-3 {
    display: inline-block;
    float: none;
    width: 80%;
    max-width: 300px;
    white-space: normal;
    margin-right: 15px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.cbo-meet-up-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.cbo-meet-up-scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info p.location {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.team-info p.bio {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
    padding: 0 10px;
}

.role-btn {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #6c757d;
    border-radius: 50px;
    color: #212529;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.role-btn:hover {
    background-color: #f8f9fa;
}

.card-indicator {
    width: 40%;
    height: 5px;
    background-color: #ff3c3c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.gold-badge {
    position: relative;
    background-color: #FFD700;
    color: #212529;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    z-index: 1;
    margin: -20px auto 15px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background-color: #ff3c3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.company-logo img {
    width: 30px;
    height: auto;
}

.company-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.company-name {
    font-size: 14px;
    color: #212529;
}


/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #fff;
}

.features-heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
    line-height: 1.2;
}

.features-heading .highlight {
    color: #0071e3;
    display: block;
}

.feature-card {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.feature-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.feature-description {
    font-size: 16px;
    color: #86868b;
    line-height: 1.5;
}

/* Responsive Styles */
@media (min-width: 0) and  (max-width: 768px) {
    .hero-title, .hero-subtitle {
        font-size: 32px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 15px;
        margin: 5px;
        display: block;
        width: 200px;
        margin: 10px auto;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .navbar-brand img {
        height: 32px;
    }

    .navbar-nav {
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        padding: 8px 15px !important;
    }

    .btn-dark {
        display: block;
        margin: 10px auto;
        width: 200px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .feature-title {
        font-size: 30px;
    }

    .feature-description {
        font-size: 20px;
    }

    .feature-icon
    {
        height: inherit;
    }
}

@media (min-width: 0) and (max-width: 480px) {
    .hero-title, .hero-subtitle {
        font-size: 28px;
    }

    .cta-button {
        width: 180px;
        font-size: 14px;
    }
}


 /* Video Background */

.cbo-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(45deg, #1a1a3a, #4a4a8a);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.iphone-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-custom {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-learn {
    background-color: white;
    color: #1a1a3a;
    margin-right: 1rem;
}

.btn-buy {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.iphone-image {
    max-width: 80%;
    margin-top: 2rem;
}

@media (width <= 768px){
    .iphone-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
}

 /* cbo-values */ 

.cbo-values {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.cbo-values h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px);
}

.highlight-text {
    color: #3498db;
}

.value-images {
    margin-top: 3rem;
}

.value-images .col-md-6 {
    opacity: 0;
    transform: translateY(50px);
}

.value-images img {
    border-radius: 15px;
    box-shadow:  0 4px 8px rgb(0 0 0 / 10%);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.value-images img:hover {
    transform: translateY(-5px);
}

.fade-in-left {
    animation: fade-in-left-animation1s forwards;
}

.fade-in-up {
    animation: fadein-up-animation 1s forwards;
}

@keyframes fade-in-left-animation{
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

@keyframes fadein-up-animation {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

 /* cbo-motto */

.cbo-motto {
    padding: 40px 0;
}

.main-card {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    background: #f5f5f566;
    font-weight: normal;
    color: #fff;
}

.main-card .card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    max-width: 80%;
}

.side-card {
    position: relative;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
}

.side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000080;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.main-card {
    position: relative;
    overflow: hidden;
}

.main-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Adjust this if needed */
    background: linear-gradient(to top, #000c, #0000);
    pointer-events: none;
}

.main-card img {
    width: 100%;
    display: block;
}

.card-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    z-index: 2;
}




/* cbo-motto */

.content-wrapper {
    background-color: #fffc;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #0d6efd;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

/* Hide circles on mobile */
@media (max-width: 768px) {
    .circle-bg {
        display: none;
    }
}

/* First circle positioning */
.circle-bg-right {
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}

/* Second circle positioning */
.circle-bg-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.device-image {
    max-width: 100%;
    height: auto;
    animation: bounce 3s;
    position: relative;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.2;
    }
}

.btn-custom {
    background-color: #ffc107;
    border: none;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #ffcd39;
    transform: translateY(-2px);
}

.section-padding {
    padding: 50px 0;
    background-color: #fff;
}

.text-content {
    position: relative;
    z-index: 2;
}

.cbo-engage
{
    background:  linear-gradient(rgb(0 113 227 / 0%), #ffc1079c), url('../images/fade-bg-up.png') center / cover;
}

.cbo-equip
{
    background:  linear-gradient(#ffc1079c, #0071e300), url('../images/fade-bg-down.png') center / cover;
}


/* Events */

 

/* Navigation Tabs Section */
.events-tab
{
    display: flex;
    list-style: none;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    padding: 1rem 2rem;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: #000;
    background: none;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0071e3;
}

 

.event-info {
    color: white;
}

/* Event Card Colors */
.teal-event {
    background-color: #008080;
}

.gold-event {
    background-color: #DAA520;
}

/* Tab Content Animation */
.event-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.event-tab-content.active {
    display: block;
    opacity: 1;
}

/* Grid Layout */
.row {
    margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (min-width: 1px) and (max-width: 998px) {
    .navbar {
        height: inherit;
    }
}

@media (max-width: 900px) and (min-width: 0){ 
    .event-date
    {
        min-width: inherit;
    }

    .navbar
    {
        height: inherit;
    }

    .navbar-toggler
    {
        font-size: smaller;
        border: none;
    }

    .navbar-brand img {
        height: 45px;
    }
}

@media (max-width: 768px) { 
    .event-card {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }

    .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

    /* Mobile Countdown */
    .countdown-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 5px;
    }

    /* Mobile Container */
    .events-container {
        padding: 1rem;
    }

    /* Mobile Text */
    .event-info {
        padding: 0 1rem;
    }
}


/* Impact */

.impact-section {
    background-color: #47B5FF;
    color: white;
    padding: 80px 0;
    position: relative;
}

.impact-logo {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.counter {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.impact-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.divider {
    width: 2px;
    height: 100px;
    background-color: color(rgba(255, 255, 255, 30%));
    margin: 0 30px;
}

@media (max-width: 768px) {
    .impact-logo {
        display: none;
    }
    
    .divider {
        width: 100%;
        height: 2px;
        margin: 30px 0;
    }
}

/* Impact */

.testimonial-wrapper {
    padding-top: 75px; /* Creates space for the half-showing image */
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    padding-top: 5rem; /* Increased space at top */
    height: 100%;
    transition: transform 0.3s ease;
    background: white;
}

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

.avatar-container {
    width: 150px;
    height: 150px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%); /* Centers horizontally and pulls up */
    background-color: #f8f9fa;
    border-radius: 50%;
    overflow: hidden; 
    z-index: 1; /* Ensures image stays above card */
}

.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-size: 0.8rem;
    text-align: center;
}

.quote-mark {
    color: #008080;
    font-size: 3rem;
    line-height: 1;
    margin-top: 1rem;
}

.testimonial-text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 130px;
    margin-top: 2rem;
}

.author-name {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-title {
    color: #666;
    font-size: 0.85rem;
}

/* Impact */


.footer {
    background-color: #333;
    color: white;
    padding: 60px 0;
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.email-icon {
    font-size: 20px;
    cursor: pointer;
    margin-right: 8px;
}

.email-link {
    text-decoration: none;
    color: inherit;
}

.contact-info {
    margin-bottom: 10px;
}

.carousel-control-prev, 
.carousel-control-next {
    background-color: #0d6efd; /* Blue color for the carousel controls */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-item {
    padding: 0 30px;
}

.card {
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 10%);
    transition: transform 0.3s;
}

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

/* Mobile responsive styles */
@media (max-width: 767px) and (min-width: 0) {
    .carousel-item {
        padding: 0 10px;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
    
    /* Show only desktop version on larger screens */
    mobile_carousel {
        display: none;
    }
}

/* Desktop responsive styles */
@media (min-width: 768px) {
    /* Show only mobile version on smaller screens */
    mobile_carousel {
        display: none;
    }
}

.first-speaker{
    left: 200px;
    background-color: white !important;
}