.white {
    color: #fff;
}
.section-title.white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
}
	/* Sponsorship & Partnership Section */
	.sponsorship-section {
	position: relative;
	padding: 60px 0;
	overflow: hidden;
	}

	/* Background Shapes */
	.sponsorship-bg-shape-1 {
	position: absolute;
	top: -200px;
	right: -200px;
	width: 500px;
	height: 500px;
	background: var(--primary);
	opacity: 0.03;
	border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
	z-index: 0;
	}

	.sponsorship-bg-shape-2 {
	position: absolute;
	bottom: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	background: var(--secondary);
	opacity: 0.03;
	border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
	z-index: 0;
	}

	/* Section Header - Matching existing style but with single underline */
	.sponsorship-section .section-header {
	margin-bottom: 40px;
	}

	.sponsorship-section .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--secondary-dark);
	margin-bottom: 15px;
	position: relative;
	}

	.sponsorship-section .title-underline {
	width: 80px;
	height: 4px;
	background: var(--primary);
	margin: 0 auto;
	border-radius: 2px;
	}

	/* Introduction Card */
	.sponsorship-intro-card {
	background-color: var(--white);
	border-radius: var(--radius);
	padding: 40px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
	margin-bottom: 50px;
	border-left: 4px solid var(--primary);
	position: relative;
	z-index: 1;
	}

	.sponsorship-intro-card p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--secondary);
	text-align: center;
	margin: 0;
	}

	/* Why Sponsor Container */
	.why-sponsor-container {
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
	}

	.why-sponsor-header {
	margin-bottom: 30px;
	}

	.why-sponsor-header h3 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary);
	position: relative;
	padding-bottom: 10px;
	display: inline-block;
	}

	.why-sponsor-header h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	}

	/* Benefits Grid */
	.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
	}

	/* Benefit Card */
	.benefit-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	align-items: flex-start;
	border-left: 4px solid var(--primary);
	}

	.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	}

	/* Benefit Icon */
	.benefit-icon {
	width: 60px;
	height: 60px;
	background: rgba(204, 54, 52, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	}

	.benefit-icon i {
	font-size: 24px;
	color: var(--primary);
	transition: all 0.3s ease;
	}

	.benefit-card:hover .benefit-icon {
	background: var(--primary);
	}

	.benefit-card:hover .benefit-icon i {
	color: var(--white);
	}

	/* Benefit Content */
	.benefit-content h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--secondary-dark);
	margin-bottom: 10px;
	}

	.benefit-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--secondary);
	margin: 0;
	}

	/* Call to Action */
	.sponsorship-cta {
	background: var(--white);
	border-radius: var(--radius);
	padding: 40px;
	text-align: center;
	position: relative;
	z-index: 1;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--primary);
	}

	.sponsorship-cta p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--secondary);
	margin-bottom: 30px;
	}

	.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	}

	.cta-buttons .btn {
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	}

	.cta-buttons .btn-primary {
	background: var(--primary);
	color: var(--white);
	border: 2px solid var(--primary);
	}

	.cta-buttons .btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
	}

	.cta-buttons .btn-outline-primary {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	}

	.cta-buttons .btn-outline-primary:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
	}

	/* Responsive Styles */
	@media (max-width: 991.98px) {
	.sponsorship-intro-card,
	.sponsorship-cta {
		padding: 30px;
	}

	.benefits-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}

	.benefit-card {
		padding: 25px;
	}

	.benefit-icon {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.benefit-icon i {
		font-size: 20px;
	}

	.why-sponsor-header h3 {
		font-size: 1.8rem;
	}
	}

	@media (max-width: 767.98px) {
	.sponsorship-section {
		padding: 80px 0;
	}

	.sponsorship-intro-card p,
	.sponsorship-cta p {
		font-size: 1rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.benefit-content h4 {
		font-size: 1.1rem;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.cta-buttons .btn {
		width: 100%;
	}
		.sponsorship-section .section-title {
		font-size: 2rem;
		font-weight: 700;
		color: var(--secondary-dark);
		margin-bottom: 15px;
		position: relative;
		}

	}



/* Glimpses from Last Year's Summit Section */
.glimpses-section {
position: relative;
padding: 60px 0;
background-color: #f8f9fa;
overflow: hidden;
}

.glimpses-bg-shape {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
    radial-gradient(circle at 10% 10%, rgba(204, 54, 52, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(87, 86, 86, 0.03) 0%, transparent 30%);
z-index: 0;
	background-color: #122f47;
	color:#fff;
}

/* Section Headers */
.glimpses-section .section-header {
margin-bottom: 60px;
position: relative;
z-index: 1;
}

.glimpses-subtitle {
font-size: 2.2rem;
font-weight: 600;
color: var(--secondary-dark);
margin-bottom: 30px;
text-align: center;
}

.panel-header {
margin-bottom: 40px;
}

.panel-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 25px;
text-align: center;
position: relative;
padding-bottom: 15px;
}

.panel-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 2px;
background: var(--primary);
border-radius: 2px;
}

/* Keynote Speakers Section */
.keynote-speakers {
margin-bottom: 30px;
}

/* Panel Discussion Section */
.panel-discussion {
margin-bottom: 70px;
padding-top: 5px;
position: relative;
}

.panel-discussion:not(:last-child)::after {
content: '';
position: absolute;
bottom: 0;
left: 10%;
right: 10%;
height: 1px;
background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Speaker Cards */
.speaker-card {
background-color: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
position: relative;
height: 100%;
display: flex;
flex-direction: column;
}

.speaker-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--primary);
color: var(--white);
padding: 5px 15px;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 600;
z-index: 1;
}

.moderator-card {
border-top: 4px solid var(--primary);
}

.moderator-card .card-badge {
background: #2c3e50;
}

.speaker-image-wrapper {
padding: 20px;
display: flex;
justify-content: center;
}

.speaker-image {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--primary);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.speaker-card:hover .speaker-image {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.speaker-info {
padding: 0 20px 20px;
text-align: center;
}

.speaker-name {
font-size: 1.2rem;
font-weight: 700;
color: var(--secondary-dark);
margin-bottom: 5px;
}

.speaker-title {
font-size: 0.9rem;
color: var(--secondary);
margin-bottom: 5px;
}

.speaker-company {
font-size: 0.9rem;
color: var(--primary);
font-weight: 500;
}

/* Zoom Link Banner - New Design */
.zoom-link-banner {
background: var(--white);
border-radius: 15px;
padding: 15px 25px;
display: flex;
align-items: center;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
margin: 0 auto 40px;
max-width: 700px;
border-left: 4px solid var(--primary);
transition: all 0.3s ease;
}

.zoom-link-banner:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.zoom-icon {
width: 50px;
height: 50px;
background: rgba(204, 54, 52, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
flex-shrink: 0;
}

.zoom-icon i {
font-size: 22px;
color: var(--primary);
}

.zoom-info {
flex-grow: 1;
display: flex;
flex-direction: column;
}

.zoom-info h5 {
font-size: 1.1rem;
font-weight: 600;
color: var(--secondary-dark);
margin-bottom: 3px;
}

.zoom-info p {
font-size: 0.9rem;
color: var(--secondary);
margin-bottom: 0;
}

.zoom-time {
display: inline-block;
background: rgba(204, 54, 52, 0.1);
color: var(--primary);
font-weight: 600;
font-size: 0.85rem;
padding: 3px 12px;
border-radius: 20px;
margin-top: 5px;
}

.zoom-link-banner .btn {
padding: 10px 20px;
border-radius: 50px;
background: var(--primary);
color: var(--white);
font-weight: 600;
transition: all 0.3s ease;
white-space: nowrap;
margin-left: 20px;
flex-shrink: 0;
}

.zoom-link-banner .btn:hover {
background: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
.glimpses-section {
    padding: 80px 0;
}

.glimpses-subtitle {
    font-size: 2rem;
}

.panel-title {
    font-size: 1.3rem;
}

.zoom-link-banner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.zoom-icon {
    margin-right: 0;
    margin-bottom: 15px;
}

.zoom-info {
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

.zoom-link-banner .btn {
    margin-left: 0;
    width: 100%;
}
}

@media (max-width: 767.98px) {
.glimpses-section {
    padding: 60px 0;
}

.glimpses-subtitle {
    font-size: 1.8rem;
}

.panel-title {
    font-size: 1.2rem;
}

.speaker-image {
    width: 120px;
    height: 120px;
}
.glimpses-section .section-header {
	margin-bottom: 29px;
	position: relative;
	z-index: 1;
	}
}



/* Contact Section */
.contact-section {
position: relative;
padding: 60px 0;
background-color: #2c3e50;
overflow: hidden;
}

.contact-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
    linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%),
    url('https://via.placeholder.com/1920x1080');
background-size: cover;
background-position: center;
z-index: 0;
}

.contact-container {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
}

.contact-header {
text-align: center;
margin-bottom: 50px;
}

.contact-title {
font-size: 2.5rem;
font-weight: 700;
color: white;
margin-bottom: 10px;
position: relative;
display: inline-block;
padding-bottom: 15px;
}

.contact-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 70px;
height: 3px;
background: var(--primary);
border-radius: 3px;
}

.contact-subtitle {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.7);
}

.contact-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
transition: all 0.3s ease;
}

.contact-card:hover {
transform: translateY(-10px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.contact-image-container {
flex-basis: 40%;
position: relative;
padding: 30px;
background: linear-gradient(135deg, #CC3634 0%, #a12a28 100%);
display: flex;
align-items: center;
justify-content: center;
}

.contact-image-wrapper {
width: 180px;
height: 180px;
border-radius: 50%;
overflow: hidden;
border: 5px solid rgba(255, 255, 255, 0.2);
position: relative;
}

.contact-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.contact-badge {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: white;
color: var(--primary);
font-weight: 600;
font-size: 0.9rem;
padding: 8px 20px;
border-radius: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-align: center;
}

.contact-details {
flex-basis: 60%;
padding: 40px;
}

.contact-name {
font-size: 2rem;
font-weight: 700;
color: var(--secondary-dark);
margin-bottom: 5px;
}

.contact-role {
font-size: 1.1rem;
color: var(--primary);
margin-bottom: 30px;
font-weight: 500;
}

.contact-info-list {
display: flex;
flex-direction: column;
gap: 1px;
}

.contact-info-item {
	display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-icon {
width: 44px;
height: 44px;
border-radius: 12px;
background: rgba(204, 54, 52, 0.1);
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
}

.info-icon i {
color: var(--primary);
font-size: 18px;
}

.info-content {
display: flex;
flex-direction: column;
gap: 5px;
}

.info-content a {
color: var(--secondary);
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.05rem;
}

.info-content a:hover {
color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
.showcase-section,
.contact-section {
    padding: 80px 0;
}

.showcase-title,
.contact-title {
    font-size: 2.2rem;
}

.showcase-content {
    padding: 40px;
}

.contact-card {
    flex-direction: column;
}

.contact-image-container {
    width: 100%;
    padding: 40px;
}

.contact-details {
    width: 100%;
}
}

@media (max-width: 767.98px) {
.showcase-section,
.contact-section {
    padding: 60px 0;
}

.showcase-title,
.contact-title {
    font-size: 2rem;
}

.showcase-content {
    padding: 30px;
}

.sponsor-card,
.media-card {
    width: 100%;
    /*max-width: 250px;*/
    height: auto;
}

.contact-name {
    font-size: 1.7rem;
}

.contact-role {
    font-size: 1rem;
}

.info-content a {
    font-size: 1rem;
}
}


/* Updated button styles */
.sponsors-cta .btn-primary {
background: var(--primary);
color: var(--white);
border: 2px solid var(--primary);
padding: 12px 30px;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
}

.sponsors-cta .btn-primary:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
}
/* Responsive Styles */
@media (max-width: 991.98px) {
.contact-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
}

.contact-method {
    flex-direction: column;
}

.contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
}

.social-links {
    justify-content: center;
}
}

@media (max-width: 767.98px) {
.sponsors-section,
.media-partners-section,
.contact-section {
    padding: 60px 0;
}

.contact-name {
    font-size: 1.5rem;
}

.contact-title {
    font-size: 2rem;
}

.sponsor-item,
.media-partner-item {
    min-height: 120px;
    padding: 20px;
}
.contact-details {
    flex-basis: 60%;
    padding: 20px 1px 0px 0px;
}
}


/* Why Africa Matters Section */
.africa-matters-section {
    position: relative;
    padding: 60px 0!Important;
    background-color: #e1e1e1;
    overflow: hidden;
    z-index: 1; /* Add this to ensure proper stacking context */
}

.africa-matters-section .bg-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.03;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1; /* Change to negative z-index */
}

.africa-matters-section .bg-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    opacity: 0.03;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1; /* Change to negative z-index */
}

/* Make sure navbar has a higher z-index */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050; /* Increase this value */
}

.navbar-collapse {
    z-index: 1050; /* Add this to ensure the menu appears above all content */
}

/* The rest of your CSS remains the same */
.africa-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.africa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    opacity: 0.8;
}

.africa-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom, rgba(204, 54, 52, 0.05) 0%, transparent 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.africa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.africa-card:hover::after {
    height: 100%;
}

.africa-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(204, 54, 52, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.africa-card:hover .africa-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.africa-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.africa-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.africa-card-list li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.africa-card-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.africa-card-list li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.africa-card-list li span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.africa-card-list li strong {
    font-weight: 700;
    color: var(--primary);
}