Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 57 additions & 39 deletions css/leadership.css
Original file line number Diff line number Diff line change
Expand Up @@ -403,55 +403,73 @@ main{
width: 0;
}
}
/* ===============================
Leadership / Featured Slide Styles
=============================== */
/* Leadership 2025 Card Section */
.leadership-card {
background: #f9f9ff;
border-radius: 20px;
padding: 40px 20px;
margin: 40px auto;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.featured-slide {
text-align: center;
padding: 2.2rem 1rem 3rem 1rem;
background: transparent;
.leadership-card:hover {
transform: translateY(-8px);
}

/* Title */
.featured-slide .fs-title {
font-size: 2.6rem;
font-weight: 700;
color: #1d3557;
margin: 0 0 0.6rem 0;
.fs-title {
font-size: 2rem;
font-weight: bold;
color: #2c2c54;
}

/* Divider (the horizontal line under title) */
.featured-slide .fs-divider {
width: 60%; /* change width as needed */
height: 6px; /* thickness */
margin: 0.3rem auto 0.9rem auto;
background: #1d4b66; /* line color */
border-radius: 4px;
box-shadow: 0 2px 0 rgba(0,0,0,0.05) inset;
.fs-divider {
width: auto;
height: 8px;
background: #2c2c54 ;
margin: 10px auto 20px;
border-radius: 5px;
}

/* Subtitle */
.featured-slide .fs-sub {
font-size: 1.25rem;
.fs-sub {
color: #555;
margin: 0 0 1.4rem 0;
font-weight: 500;
margin-bottom: 30px;
font-style: italic;
}

.speaker-card {
display: flex;
flex-direction: column;
align-items: center;
}

.speaker-photo {
width: 280px;
height: 340px;
object-fit: cover;
border-radius: 0;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
margin-bottom: 20px;
}

.speaker-name {
font-size: 1.4rem;
font-weight: 600;
margin: 10px 0 5px;
}

.speaker-role {
font-size: 1.02rem;
color: #777;
margin-bottom: 10px;
}

/* Speaker card */
.featured-slide .fs-speaker { max-width: 360px; margin: 0 auto; }
.featured-slide .speaker-img {
width: 280px; height: 340px; object-fit: cover; border-radius: 6px;
display: block; margin: 0 auto 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.08);
.speaker-link i {
font-size: 1.5rem;
color: #0077b5;
transition: color 0.3s;
}
.featured-slide .speaker-name { font-size: 1.45rem; font-weight: 600; margin-bottom: .2rem; }
.featured-slide .speaker-role { color: #555; margin: 0; }

/* responsive */
@media (max-width: 767px) {
.featured-slide { padding: 1.2rem 0.6rem 2rem 0.6rem; }
.featured-slide .fs-title { font-size: 1.92rem; }
.featured-slide .fs-divider { width: 80%; height: 5px; margin-bottom: 1rem; }
.featured-slide .speaker-img { width: 200px; height: 200px; }
.speaker-link i:hover {
color: #004471;
}
48 changes: 23 additions & 25 deletions leadershipsummit.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,34 +69,32 @@
</div>
</div>
</section>

<section class="section-2">
<div class="container leadership-card text-center">
<h1 class="fs-title">Leadership Summit 2025</h1>
<div class="fs-divider"></div>
<h4 class="fs-sub"><i>Speaker of Leadership Summit 2025</i></h4>

<div class="speaker-card">
<img src="img/leadership_speakers/sundararamanramamurthy.webp"
alt="Sundararaman Ramamurthy"
class="speaker-photo">
<h3 class="speaker-name">Sundararaman Ramamurthy</h3>
<p class="speaker-role">CEO, Bombay Stock Exchange</p>
<a href="https://www.linkedin.com/in/sundararaman-r-152b7011?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"
target="_blank"
class="speaker-link">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</section>

<div id="carouselExampleControls" class="carousel slide" data-ride="carousel" data-pause="hover">
<div class="carousel-inner">
<!--ikkada add cheyu -->
<div class="carousel-item active"> <!-- make this active if you want it first -->
<section class="section-2">
<div class="container leadership-slide featured-slide text-center">
<h1 class="fs-title">Leadership Summit</h1>

<!-- Divider line under title -->
<div class="fs-divider"></div>

<h4 class="fs-sub"><i>Speaker of 2025 Leadership Summit</i></h4>

<div class="fs-speaker">
<img src="img/leadership_speakers/sundararamanramamurthy.webp"
alt="Sundararaman Ramamurthy"
class="speaker-img">
<p class="speaker-name">Sundararaman Ramamurthy</p>
<p class="speaker-role">CEO, Bombay Stock Exchange</p>
<a href="https://www.linkedin.com/in/sundararaman-r-152b7011?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">
<i class="icon1 fab fa-linkedin" aria-hidden="true" id="l-icon"></i>
</a>
</div>
</div>
</section>
</div>
<div class="carousel-item">

<div class="carousel-item active">
<section class="section-2">
<div class="container text-center">
<div class="row">
Expand Down