/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: url("../uploads/Pages/home/home_hero.jpg") no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Slightly darker for better readability */
    top: 0;
    left: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin-left: 80px;
    color: #fff;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px; /* Increased size to match screenshot */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
}

.hero-organized {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* 🔥 FIX: STACK INFO AND BUTTON */
.hero-bottom {
    display: flex;
    flex-direction: column; /* Stacked: Info Top, Button Bottom */
    align-items: flex-start; /* Align to the left */
    gap: 25px;
}

/* INFO BOX */
.hero-info {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-divider {
    opacity: 0.5;
    margin: 0 10px;
}

/* 🔥 BUTTON FIX (MATCHING SCREENSHOT) */
.hero-btn {
    background: #2c3e73 !important; /* Deep blue from screenshot */
    color: #fff !important;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #124484;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content {
        margin-left: 20px;
    }
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    .hero-bottom {
        align-items: center;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-info {
        flex-direction: column;
        gap: 5px;
    }
    .info-divider {
        display: none;
    }
}




/* ABOUT SECTION */
.about-section {
    background: #f5f5f5;
    padding: 90px 0;
}

/* CONTAINER */
.about-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 🔥 CENTER BLOCK */
.about-content {
    max-width: 1200px;
    margin: 0 auto;   /* ⭐ main alignment fix */
}

/* TITLE */
.about-title {
    font-size: 42px;
    font-weight: 600;
    color: #2c3e73;
    margin-bottom: 25px;
    text-align: left;
}

/* TEXT */
.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    text-align: justify;   /* only text justify */
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 30px;
    background: #264478;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
}










/* FACULTY SECTION */
.faculty-section {
    background: #eeeeee;
    padding: 90px 0;
}

/* CONTAINER WIDTH */
.faculty-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TEXT BLOCK */
.faculty-content {
    max-width: 550px;
}

/* TITLE */
.faculty-title {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e73 !important;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* TEXT */
.faculty-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 30px;
}

/* BUTTON */
.faculty-btn {
    display: inline-block;
    background: #2c3e73;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
}

/* IMAGE */
.faculty-img img {
    width: 100%;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .faculty-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .faculty-title {
        font-size: 28px;
    }
}

/* FORCE SIDE BY SIDE */
.faculty-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.faculty-section .col-lg-6 {
    width: 50%;
}

/* MOBILE FIX */
@media (max-width: 992px) {
    .faculty-section .col-lg-6 {
        width: 100%;
    }
}




/* AIM SECTION */
.aim-section {
    background: #dedede;
    padding: 90px 0;
}

/* ⭐ WIDTH CONTROL */
.aim-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* IMAGE */
.aim-img img {
    width: 90%;
    border-radius: 6px;
}

/* CONTENT */
.aim-content {
    max-width: 520px;
}

/* TITLE */
.aim-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e73;
    margin-bottom: 20px;
}

/* TEXT */
.aim-text {
   font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 30px;
}

/* BUTTON */
.aim-btn {
    display: inline-block;
    background: #1f3d71;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .aim-content {
        max-width: 100%;
        margin-top: 30px;
    }

    .aim-title {
        font-size: 28px;
    }
}

/* FORCE ROW */
.aim-section .row {
    display: flex !important;
    align-items: center;
}

/* FORCE 2 COLUMN */
.aim-section .col-lg-6 {
    width: 50%;
}

/* MOBILE */
@media (max-width: 992px) {
    .aim-section .col-lg-6 {
        width: 100%;
    }
}



/* BELOW SECTIONS */

:root {
    --primary-blue: #1F346C;
    --secondary-blue: #155AA6;
}

.conference-patrons {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Libre Franklin', sans-serif;
}

.main-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Mic Divider */
.mic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.mic-divider .line {
    height: 1px;
    width: 80px;
    background-color: #155AA6;
}
.mic-divider i {
    color: var(--secondary-blue);
    margin: 0 10px;
}

/* Tight Grid Control */
.tight-grid {
    max-width: 1100px; /* Adjust this value to bring them even closer */
    margin: 0 auto !important; /* Centers the row */
}

.profile-card {
    padding: 10px; /* Small internal padding */
}

.profile-card img {
    width: 100%;
    /* Ensures all images are the exact same height/aspect ratio */
    aspect-ratio: 4 / 5; 
    object-fit: cover;
    display: block;
}

.profile-card .name {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
}

.profile-card .designation {
    color: var(--secondary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
    padding: 0 15px;
}

.profile-card .role {
    color: var(--secondary-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
}

/* Section Background */
.distinguished-speakers {
    background-color: #1F346C; /* Dark blue from your image */
    padding: 80px 0;
    font-family: 'Libre Franklin', sans-serif;
}

.speakers-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* White Mic Divider */
.mic-divider-light {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.mic-divider-light .line {
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}
.mic-divider-light i {
    color: #ffffff;
    margin: 0 15px;
    font-size: 1.2rem;
}

/* Card Styling */
.speaker-card {
    background-color: #155AA6; /* Lighter blue for card */
    padding: 40px 20px;
    height: 100%;
    border-radius: 4px; /* Slight rounding on cards */
    transition: transform 0.3s ease;
}

.speaker-img {
    width: 150px; /* Precise sizing for circular/rounded images */
    height: 200px;
    object-fit: cover;
    border-radius: 8px; /* Based on your mention of border-radius */
    margin-bottom: 25px;
}

.speaker-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.speaker-designation {
    color: #ffffff;
    font-weight: 600; /* Bold as requested */
    font-size: 0.75rem;
    text-transform: uppercase;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.9;
}

.speaker-university {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Responsive side spacing (Left/Right screen margins) */
@media (min-width: 992px) {
    .px-lg-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

:root {
    --theme-color: #1F346C;
}

.conference-themes {
    background-color: #ffffff;
    font-family: 'Libre Franklin', sans-serif;
}

.theme-main-title {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 2.5rem;
}

/* Card Styling */
.theme-card {
    padding: 40px 20px;
    border-radius: 10px;
    background-color: transparent; /* Invisible by default */
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hover Effect: Appears as a card with shadow */
.theme-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #f0f0f0;
    transform: translateY(-5px);
}

/* Icon Styling */
.theme-icon {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
}

/* Theme Text */
.theme-text {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-card {
        padding: 20px;
    }
    .theme-main-title {
        font-size: 2rem;
    }
}