* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.gslide-image img {
    max-height: 60vh !important;
}

.luminaries-main-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 1;

    background-image: url('images/luminaries_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /* Optional */
    width: 100%;
}

.about-convocation-section {
    position: relative;
    overflow: hidden;
    z-index: 1;

    background-image: url('images/about_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /* Optional */
    width: 100%;
}

.past-events-section {
    position: relative;
    overflow: hidden;
    z-index: 1;

    background-image: url('images/6th Convocation.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /* Optional */
    width: 100%;
}

.event-schedule-section {
    position: relative;
    overflow: hidden;
    z-index: 1;

    background-image: url('images/schedule_bg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;

    /* Optional */
    width: 100%;
}

/* =========================================
           NAVBAR
        ========================================== */

.navbar {
    background: #ffffff;
    padding: 7px 0;
    transition: 0.4s;
    z-index: 999;
}

.navbar .container {
    max-width: 1300px;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111 !important;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin-left: 30px;
}

.navbar-nav .nav-link {
    color: #111 !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px !important;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:not(.register-btn):hover {
    color: #cc0000 !important;
}

/* UNDERLINE EFFECT */

/* Underline Effect */
.navbar-nav .nav-link::before{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#b8860b;
    transition:.35s ease;
}

.navbar-nav .nav-link:hover::before{
    width:100%;
}

/* REGISTER BUTTON */

.register-btn {
    border: 1px solid #111;
    background: transparent;
    color: #111 !important;

    padding: 20px 24px !important;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: 0.4s;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.register-btn:hover {
    background: #cc0000;
    color: #fff !important;
}

/* MOBILE MENU */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler i {
    font-size: 24px;
    color: #111;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* =========================================
           HERO SECTION
        ========================================== */

.hero-section {
    width: 100%;
    height: 100vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),

        /* url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1920'); */
        url('images/hero_bg_four.png');

    background-size: cover;
    background-position: center;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-content {
    max-width: 1100px;
    padding: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 25px;
    color: #f2f2f2;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 95px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-location {
    font-size: 22px;
    color: #ddd;
    margin-bottom: 10px;
}

.hero-date {
    font-size: 24px;
    color: #fff;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    /* background: #ff007a; */
    background: #df0000f7;
    color: #fff;
    padding: 16px 42px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.4s;
}

.hero-btn:hover {
    background: #4465ff;
    transform: translateY(-3px);
    color: #fff;
}

/* =========================================
           SCROLL ICON
        ========================================== */

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    animation: bounce 2s infinite;
}

/* =========================================
   CONVOCATION NOTICE BAR
========================================== */

.convocation-notice-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    z-index: 998;
}

.convocation-notice-wrapper {

    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 95px;

    position: relative;

    flex-wrap: wrap;

    padding: 12px 0;
}

.convocation-notice-text {
    font-size: 13px;
    color: #777;
    font-weight: 400;
}

.convocation-notice-title {
    font-size: 16px;
    font-weight: 700;
    color: #a30000;
    text-align: center;
    position: relative;
    display: inline-block;
    animation: glowPulse 2s infinite ease-in-out;
}

/* GLOW + SCALE EFFECT */
@keyframes glowPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
            0 0 10px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 215, 0, 0.9),
            0 0 35px rgba(255, 215, 0, 0.7);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
            0 0 10px rgba(255, 215, 0, 0.4);
    }
}

.convocation-notice-btn {

    background: #df0000f7;
    color: #fff;

    padding: 10px 28px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.4s;
}

.convocation-notice-btn:hover {

    background: #4465ff;
    color: #fff;
}

.convocation-notice-close {

    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    background: none;
    border: none;

    color: #999;

    font-size: 15px;

    cursor: pointer;

    transition: 0.3s;
}

.convocation-notice-close:hover {
    color: #111;
}

/* =========================================
       FEATURED SPEAKER SECTION
    ========================================== */

.featured-speaker-section {

    /* background: #f7f7f7; */

    padding: 110px 0;
}

/* CONTAINER */

.featured-speaker-section .container {

    max-width: 1150px;

    margin: auto;

    padding: 0 15px;
}

/* MAIN GRID */

.featured-speaker-wrapper {

    display: grid;

    grid-template-columns: 360px 340px 1fr;

    gap: 0;
    position:relative;
}

.speaker-image-area,
.speaker-info-area {

    margin-top: 95px;
}

/* =========================================
       LEFT SIDE
    ========================================== */

.speaker-left-area {

    padding-right: 30px;

    min-height: 470px;

    display: flex;

    flex-direction: column;
}

/* TITLE */

.speaker-section-title {

    font-family: 'Oswald', sans-serif;

    font-size: 62px;
    font-weight: 700;

    line-height: 0.95;

    color: #a30000;

    margin: 0;
}

/* LOWER CONTENT */

.speaker-left-content {

    margin-top: 30px;

    display: flex;

    flex-direction: column;

    height: 100%;
}

/* PARAGRAPHS */

.speaker-left-content p {

    font-size: 15px;

    line-height: 2;

    color: #666;

    margin-bottom: 24px;
}

/* BUTTON */

.speaker-action-btn {

    display: inline-block;

    margin-top: auto;

    background: #df0000f7;

    color: #fff;

    padding: 15px 42px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: 0.4s;
}

.speaker-action-btn:hover {

    background: #4465ff;

    color: #fff;
}

/* =========================================
       IMAGE AREA
    ========================================== */

.speaker-image-area {

    width: 100%;
}

.speaker-image-area img {

    width: 100%;

    height: 470px;

    object-fit: cover;

    display: block;
}

/* =========================================
       RIGHT SIDE
    ========================================== */

.speaker-info-area {

    padding-left: 42px;

    padding-top: 4px;
}

/* NAME */

.speaker-info-area h3 {

    font-family: 'Oswald', sans-serif;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.1;

    color: #cc0000;

    margin-bottom: 8px;

    text-transform: uppercase;
}

/* DESIGNATION */

.speaker-info-area span {

    display: block;

    font-size: 12px;

    color: #999;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 14px;
}

/* SOCIAL ICONS */

.speaker-socials {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 24px;
}

.speaker-socials i {

    font-size: 13px;

    color: #b5b5b5;

    transition: 0.3s;
}

.speaker-socials i:hover {

    color: #5d7cff;
}

/* TEXT */

.speaker-info-area p {

    font-size: 14px;

    line-height: 2;

    color: #666;

    margin-bottom: 18px;

    font-style: italic;
}

.speaker-badge{

    position:absolute;

    top:20px;

    left:710px;

    z-index:20;
}

.speaker-badge img{
    width:230px;
    margin-bottom: 20px;
}

/* =========================================
       SPEAKERS GRID SECTION
    ========================================== */

.speakers-grid-section {

    /* background: #f7f7f7; */

    padding: 0 0 110px;
}

/* CONTAINER */

.speakers-grid-section .container {

    max-width: 1320px;

    margin: auto;

    padding: 0 15px;
}

/* MAIN GRID */

.speakers-grid-wrapper{

    display:grid;

    grid-template-columns:repeat(auto-fit, minmax(600px, 1fr));

    justify-content:center;

    align-items:start;

    gap:50px 60px;
}

/* =========================================
       CARD
    ========================================== */

.speaker-grid-card{

    display:flex;

    align-items:flex-start;

    gap:28px;

    padding:24px;

    height:100%;

    border-radius:18px;

    background:#ffe5e54f;

    transition:.35s ease;
}

.speaker-grid-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.speaker-item{

    width:100%;

    max-width:620px;

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:center;
}

.speaker-role-badge{

    margin-bottom: 5px;
}

.speaker-role-badge img{

    width:210px;

    display:block;
}

/* IMAGE */

.speaker-grid-image{

    width:230px;

    border: 2px solid goldenrod;

    flex-shrink:0;
}

.speaker-grid-image img{

    width: 230px;
    height: 300px;

    object-fit:cover;

    display:block;
}

/* CONTENT */

.speaker-grid-content {

    padding-top: 2px;

    display:flex;

    flex-direction:column;
}

.speaker-more-content{

    display:none;

    margin-top:10px;
}

.speaker-read-more{

    display:inline-block;

    margin-top:12px;

    color:#cc0000;

    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    transition:.3s;
}

.speaker-read-more:hover{

    color:#9b0000;
}

/* NAME */

.speaker-grid-content h3 {

    font-family: 'Oswald', sans-serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.1;

    color: #cc0000;

    margin-bottom: 6px;

    text-transform: uppercase;
}

/* DESIGNATION */

.speaker-grid-content span {

    display: block;

    font-size: 11px;

    color: #999;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

/* SOCIALS */

.speaker-grid-socials {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}

.speaker-grid-socials i {

    font-size: 12px;

    color: #b7b7b7;

    transition: 0.3s;
}

.speaker-grid-socials i:hover {

    color: #5d7cff;
}

/* TEXT */

.speaker-grid-content p {

    font-size: 12px;

    line-height: 2;

    color: #666;

    margin: 0;

    font-style: italic;
}

.committee-section {

    background:
        linear-gradient(rgba(77, 13, 13, 0.93),
            rgba(78, 13, 28, 0.93)),

        /* url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1920'); */
        url('images/comittee_bg.jpg');

    background-size: cover;
    background-position: center;

    padding: 60px 0;
}

/* CONTAINER */

.committee-section .container {

    max-width: 1250px;

    margin: auto;

    padding: 0 15px;
}

/* TITLE */

.committee-title {

    font-family: 'Oswald', sans-serif;

    font-size: 58px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 60px;
}

/* =========================================
       GRID
    ========================================== */

.committee-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

/* =========================================
       CARD
    ========================================== */

.committee-card {

    background: rgba(255, 255, 255, 0.03);

    overflow: hidden;

    transition: 0.4s;
}

.committee-card:hover {

    transform: translateY(-5px);
}

/* IMAGE */

.committee-image {

    width: 100%;
    background: #89898978;
}

.committee-image img {

    width: 100%;

    height: 340px;

    object-fit: cover;

    display: block;
}

/* CONTENT */

.committee-content {

    padding: 28px;
}

/* NAME */

.committee-content h3 {

    font-family: 'Oswald', sans-serif;

    font-size: 22px;
    font-weight: 700;

    color: #fff;

    line-height: 1.1;

    margin-bottom: 10px;

    text-transform: uppercase;
}

/* DESIGNATION */

.committee-content span {

    display: block;

    font-size: 12px;

    color: #d7d7d7;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

/* PARAGRAPH */

.committee-content p {

    font-size: 15px;

    line-height: 2;

    color: #f1f1f1;

    margin: 0;
}

/* =========================================
       PAST EVENTS SECTION
    ========================================== */

.past-events-section {

    /* background: #f7f7f7; */

    padding: 110px 0;
}

/* CONTAINER */

.past-events-section .container {

    max-width: 1150px;

    margin: auto;

    padding: 0 15px;
}

/* TITLE */

.past-events-title {

    font-family: 'Oswald', sans-serif;

    font-size: 58px;
    font-weight: 700;

    color: #a30000;

    margin-bottom: 55px;
}

/* =========================================
       GRID
    ========================================== */

.past-events-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

/* LARGE ITEM */

.large-item {

    grid-column: span 2;

    grid-row: span 2;
}

/* ITEM */

.past-event-item {

    overflow: hidden;

    position: relative;

    border-radius: 4px;
}

/* IMAGE */

.past-event-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

/* HEIGHTS */

.large-item img {

    height: 420px;
}

.past-event-item:not(.large-item) img {

    height: 203px;
}

/* HOVER EFFECT */

.past-event-item:hover img {

    transform: scale(1.06);
}

/* DARK OVERLAY */

.past-event-item::before {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.12);

    z-index: 1;

    transition: 0.4s;
}

.past-event-item:hover::before {

    background: rgba(0, 0, 0, 0.28);
}

/* =========================================
   GALLERY OVERLAY
========================================== */

.past-event-item {

    position: relative;

    overflow: hidden;
}

.gallery-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: 0.4s;

    z-index: 2;
}

/* SHOW OVERLAY */

.past-event-item:hover .gallery-overlay {

    opacity: 1;
}

/* ZOOM BUTTON */

.gallery-zoom-btn {

    width: 65px;
    height: 65px;

    border: 2px solid rgba(255, 255, 255, 0.95);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 22px;

    transform: scale(0.8);

    transition: 0.4s;
}

/* BUTTON ANIMATION */

.past-event-item:hover .gallery-zoom-btn {

    transform: scale(1);
}

/* BUTTON HOVER */

.gallery-zoom-btn:hover {

    background: #fff;

    color: #111;
}

/* =========================================
       EVENT SCHEDULE SECTION
    ========================================== */

.event-schedule-section {

    /* background: #f7f7f7; */

    padding: 110px 0;
}

/* CONTAINER */

.event-schedule-section .container {

    max-width: 1150px;

    margin: auto;

    padding: 0 15px;
}

/* TITLE */

.event-schedule-title {

    font-family: 'Oswald', sans-serif;

    font-size: 55px;
    font-weight: 700;

    color: #a30000;

    margin-bottom: 65px;
}

/* =========================================
       DAY ITEM
    ========================================== */

.schedule-day-item {

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 40px;

    padding: 45px 0;

    border-top: 1px solid #dcdcdc;
}

.schedule-day-item:first-of-type {

    border-top: none;

    padding-top: 0;
}

/* LEFT SIDE */

.schedule-date-area h3 {

    font-family: 'Oswald', sans-serif;

    font-size: 28px;
    font-weight: 700;

    color: #cc0000;

    line-height: 1.1;

    margin-bottom: 10px;

    text-transform: uppercase;
}

.schedule-date-area span {

    display: block;

    font-size: 13px;

    color: #777;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

/* =========================================
       EVENTS
    ========================================== */

.schedule-event {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 20px;

    margin-bottom: 28px;
}

/* TIME */

.schedule-time {

    font-size: 15px;

    font-weight: 700;

    color: #666;
}

/* DETAILS */

.schedule-details h4 {

    font-size: 20px;
    font-weight: 700;

    color: #333;

    margin-bottom: 10px;
}

.schedule-details p {

    font-size: 15px;

    line-height: 1.9;

    color: #666;

    margin: 0;
}

/* =========================================
       SPEAKERS
    ========================================== */

.schedule-speakers {

    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

    margin-top: 25px;
}

.schedule-speaker {

    display: flex;

    align-items: center;

    gap: 12px;
}

.schedule-speaker img {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;
}

.schedule-speaker span {

    font-size: 13px;

    font-weight: 700;

    color: #777;

    text-transform: uppercase;
}

/* =========================================
       CONVOCATION INFO SECTION
    ========================================== */

.convocation-info-section {

    position: relative;

    /* background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1920'); */
    background: url('images/event-info-bg.jpg');

    background-size: cover;
    background-position: center;

    padding: 110px 0;

    overflow: hidden;
}

/* DARK OVERLAY */

.convocation-info-overlay {

    position: absolute;

    inset: 0;

    background: rgb(15 15 15 / 62%);
}

/* CONTAINER */

.convocation-info-section .container {

    position: relative;

    z-index: 2;

    max-width: 1200px;

    margin: auto;

    padding: 0 15px;
}

/* =========================================
       GRID
    ========================================== */

.convocation-info-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 50px;
}

/* =========================================
       CARD
    ========================================== */

.convocation-info-card {

    text-align: center;

    padding: 0 15px;
}

/* ICON */

.convocation-info-icon {

    margin-bottom: 28px;
}

.convocation-info-icon a {

    color: #ff4f64;
}

.convocation-info-icon i {

    font-size: 46px;

    color: #ff4f64;

    transition: 0.4s;
}

.convocation-info-card:hover i {

    transform: translateY(-5px);

    color: #ff6a7b;
}

/* HEADING */

.convocation-info-card h3 {

    font-size: 28px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 18px;

    line-height: 1.4;
}

/* TEXT */

.convocation-info-card p {

    font-size: 14px;

    line-height: 2;

    color: #ff6a7b;

    margin: 0;
}

/* =========================================
   VIDEO THUMBNAIL
========================================== */

.video-thumbnail-box {

    position: relative;

    overflow: hidden;

    border-radius: 4px;
}

/* IMAGE */

.video-thumbnail-box img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

/* OVERLAY */

.video-thumbnail-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    display: flex;

    align-items: center;
    justify-content: center;
}

/* PLAY BUTTON */

.video-play-btn {

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(4px);

    border: 2px solid rgba(255, 255, 255, 0.85);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;

    text-decoration: none;

    transition: 0.4s;
}

/* HOVER */

.video-thumbnail-box:hover img {

    transform: scale(1.05);
}

.video-play-btn:hover {

    background: #ff004f;

    border-color: #ff004f;

    transform: scale(1.08);
}

/* =========================================
       ABOUT SECTION
    ========================================== */

.about-convocation-section {

    padding: 110px 0;
}

/* CONTAINER */

.about-convocation-section .container {

    max-width: 1150px;

    margin: auto;

    padding: 0 15px;
}

/* =========================================
       GRID
    ========================================== */

.about-convocation-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 90px;
}

/* =========================================
       ITEM
    ========================================== */

.about-convocation-item h3 {

    font-family: 'Oswald', sans-serif;

    font-size: 40px;
    font-weight: 700;

    color: #a30000;

    line-height: 1.1;

    margin-bottom: 30px;
}

/* TEXT */

.about-convocation-item p {

    font-size: 15px;

    line-height: 2.1;

    color: #666;

    margin-bottom: 28px;
}

/* BUTTON */

.about-read-more-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 700;

    color: #cc0000;

    text-decoration: none;

    margin-bottom: 45px;

    transition: 0.3s;
}

.about-read-more-btn:hover {

    color: #2d4eff;
}

/* IMAGE */

.about-convocation-image {

    overflow: hidden;

    border-radius: 4px;
}

.about-convocation-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.about-convocation-image:hover img {

    transform: scale(1.05);
}

.about-video-box {

    position: relative;

    overflow: hidden;

    border-radius: 4px;
}

.about-video-box iframe {

    width: 100%;

    height: 520px;

    display: block;

    border: none;
}

/* =========================================
   AWARDS SECTION
========================================== */

.awards-section {

    background:
        linear-gradient(rgba(77, 13, 13, 0.93),
            rgba(78, 13, 28, 0.93)),

        url('images/convocation-bg.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    padding: 110px 0;

    position: relative;

    overflow: hidden;
}

/* OPTIONAL DARK OVERLAY GLOW */

.awards-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(93, 124, 255, 0.08),
            transparent 40%);

    pointer-events: none;
}

/* CONTAINER */

.awards-section .container {

    max-width: 1250px;

    margin: auto;

    padding: 0 15px;

    position: relative;

    z-index: 2;
}

/* =========================================
   HEADER
========================================== */

.awards-header {

    text-align: center;

    margin-bottom: 70px;
}

.awards-header h3 {

    font-family: 'Oswald', sans-serif;

    font-size: 40px;

    font-weight: 700;

    color: #ffffff;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 22px;
}

.awards-header p {

    max-width: 900px;

    margin: auto;

    font-size: 15px;

    line-height: 2;

    color: rgba(255, 255, 255, 0.72);
}

/* =========================================
   SLIDER
========================================== */

.awards-slider {

    padding-bottom: 70px;
}

/* IMPORTANT FIX */

.awards-slider .swiper-wrapper {

    align-items: stretch;
}

.awards-slider .swiper-slide {

    height: auto;

    display: flex;
}

/* =========================================
   CARD
========================================== */

.award-card {

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.06);

    overflow: hidden;

    text-align: center;

    transition: 0.4s;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;
}

.award-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 93, 93, 0.35);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* IMAGE */

.award-image {

    overflow: hidden;
}

.award-image img {

    width: 100%;

    height: 340px;

    object-fit: cover;

    display: block;

    transition: 0.6s;
}

.award-card:hover .award-image img {

    transform: scale(1.05);
}

/* =========================================
   CONTENT
========================================== */

.award-content {

    padding: 28px 22px 35px;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;
}

/* NAME */

.award-content h4 {

    font-size: 20px;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 20px;

    line-height: 1.4;

    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* MEDAL */

.award-medal {

    margin-bottom: 20px;
}

.award-medal img {

    width: 72px;

    height: 72px;

    object-fit: contain;
}

/* TITLE */

.award-content h5 {

    font-size: 15px;

    font-weight: 700;

    color: #ff5f73;

    line-height: 1.6;

    margin-bottom: 14px;

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* DEPARTMENT */

.award-content span {

    display: block;

    font-size: 14px;

    color: rgba(255, 255, 255, 0.65);

    line-height: 1.8;

    margin-top: auto;
}

/* =========================================
   SWIPER DOTS
========================================== */

.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.822);
    border: 2px solid #c62828;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active{
    background: #c62828;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(198,40,40,0.6);
}

/* =========================================
       FOOTER
    ========================================== */

.convocation-footer {

    background:
        linear-gradient(rgba(18, 18, 22, 0.94),
            rgba(35, 8, 12, 0.95)),

        url('assets/images/footer-bg.jpg');

    background-size: cover;

    background-position: center;

    padding: 90px 0;

    text-align: center;

    position: relative;

    overflow: hidden;
}

/* OPTIONAL OVERLAY */

.convocation-footer::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(93, 124, 255, 0.08),
            transparent 35%);

    pointer-events: none;
}

/* CONTAINER */

.convocation-footer .container {

    position: relative;

    z-index: 2;
}

/* COPYRIGHT */

.footer-copy {

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    margin-bottom: 28px;

    letter-spacing: 0.3px;
}

/* =========================================
       SOCIAL ICONS
    ========================================== */

.footer-socials {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;
}

.footer-socials a {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    text-decoration: none;

    transition: 0.4s;
}

.footer-socials a:hover {

    background: #ff4f64;

    border-color: #ff4f64;

    color: #fff;

    transform: translateY(-4px);
}

/* =========================================
       GO TOP BUTTON
    ========================================== */

.go-top-btn {

    position: fixed;

    right: 28px;

    bottom: 28px;

    width: 58px;
    height: 58px;

    background: #1d1d22;

    color: #fff;

    border-radius: 4px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 18px;

    z-index: 9999;

    transition: 0.4s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.go-top-btn:hover {

    background: #ff4f64;

    transform: translateY(-5px);
}











/* =========================================
           RESPONSIVE
        ========================================== */

@media(max-width:1200px) {

    .hero-title {
        font-size: 80px;
    }

    .featured-speaker-wrapper {

        grid-template-columns: 250px 320px 1fr;
    }

    .speaker-section-title {

        font-size: 56px;
    }

    .convocation-info-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 70px 40px;
    }
}

@media(max-width:991px) {

    .navbar {
        padding: 16px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 25px;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }


    .navbar-nav .nav-item {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .register-btn {
        display: inline-block;
        margin-top: 5px;
    }

    .navbar-brand {
        font-size: 34px;
    }

    .hero-title {
        font-size: 65px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-location {
        font-size: 18px;
    }

    .hero-date {
        font-size: 20px;
    }

    .convocation-notice-wrapper {

        gap: 18px;

        text-align: center;

        padding: 20px 40px;
    }

    .convocation-notice-close {

        top: 15px;
        right: 10px;
    }

    .featured-speaker-section {

        padding: 90px 0;
    }

    .featured-speaker-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .speaker-left-area {

        padding-right: 0;
    }

    .speaker-left-content {

        margin-top: 40px;
    }

    .speaker-info-area {

        padding-left: 0;
    }

    .speaker-image-area img {

        height: auto;
    }

    .speaker-section-title {

        font-size: 48px;
    }

    .speakers-grid-wrapper {

        grid-template-columns: 1fr;
    }

    .committee-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .committee-title {

        font-size: 46px;
    }

    .past-events-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .large-item {

        grid-column: span 2;
    }

    .past-events-title {

        font-size: 46px;
    }

    .schedule-day-item {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .event-schedule-title {

        font-size: 40px;
    }

    .about-convocation-grid {

        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-convocation-item h2 {

        font-size: 44px;
    }

    .awards-header h3 {

        font-size: 46px;
    }
}

@media(max-width:768px) {

    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-location {
        font-size: 16px;
    }

    .hero-date {
        font-size: 18px;
    }

    .hero-btn {
        padding: 14px 30px;
    }

    .navbar-brand {
        font-size: 28px;
    }

    .featured-speaker-section {

        padding: 80px 0;
    }

    .speaker-section-title {

        font-size: 40px;
    }

    .speaker-left-content {

        margin-top: 30px;
    }

    .speaker-info-area h3 {

        font-size: 28px;
    }

    .speaker-left-content p,
    .speaker-info-area p {

        font-size: 14px;
    }

    .speaker-action-btn {

        width: 100%;

        text-align: center;
    }

    .speakers-grid-section {

        padding: 0 0 80px;
    }

    .speaker-grid-card {

        gap: 18px;
    }

    .speaker-grid-image {

        width: 140px;
    }

    .speaker-grid-image img {

        width: 140px;
        height: 140px;
    }

    .speaker-grid-content h3 {

        font-size: 22px;
    }

    .committee-section {

        padding: 80px 0;
    }

    .committee-grid {

        grid-template-columns: 1fr;
    }

    .committee-image img {

        height: auto;
    }

    .committee-title {

        font-size: 38px;
    }

    .past-events-section {

        padding: 80px 0;
    }

    .past-events-grid {

        gap: 10px;
    }

    .large-item img {

        height: 320px;
    }

    .past-event-item:not(.large-item) img {

        height: 160px;
    }

    .past-events-title {

        font-size: 38px;
    }

    .event-schedule-section {

        padding: 80px 0;
    }

    .schedule-event {

        grid-template-columns: 1fr;

        gap: 8px;
    }

    .event-schedule-title {

        font-size: 38px;
    }

    .schedule-details h4 {

        font-size: 18px;
    }

    .convocation-info-section {

        padding: 80px 0;
    }

    .convocation-info-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .convocation-info-icon i {

        font-size: 40px;
    }

    .convocation-info-card h3 {

        font-size: 24px;
    }

    .convocation-info-card p {

        font-size: 14px;
    }

    .about-convocation-section {

        padding: 80px 0;
    }

    .about-convocation-item h2 {

        font-size: 36px;
    }

    .about-convocation-item p {

        font-size: 14px;
    }

    .about-convocation-image img {

        height: 420px;
    }

    .awards-section {

        padding: 80px 0;
    }

    .awards-header {

        margin-bottom: 50px;
    }

    .awards-header h3 {

        font-size: 38px;
    }

    .awards-header p {

        font-size: 14px;
    }

    .award-image img {

        height: 300px;
    }

    .award-content h4 {

        font-size: 17px;

        min-height: auto;
    }

    .award-content h5 {

        min-height: auto;
    }

    .convocation-footer {

        padding: 70px 0;
    }

    .footer-copy {

        font-size: 14px;
    }

    .footer-socials {

        gap: 14px;
    }

    .footer-socials a {

        width: 40px;
        height: 40px;
    }

    .go-top-btn {

        width: 52px;
        height: 52px;

        right: 20px;

        bottom: 20px;
    }
}

@media(max-width:576px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-location {
        font-size: 15px;
    }

    .hero-date {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .navbar {
        padding: 14px 0;
    }

    .convocation-notice-title {
        font-size: 18px;
    }

    .convocation-notice-text {
        font-size: 14px;
    }

    .convocation-notice-btn {

        width: 100%;

        text-align: center;
    }

    .featured-speaker-section {

        padding: 70px 0;
    }

    .speaker-section-title {

        font-size: 34px;
    }

    .speaker-info-area h3 {

        font-size: 24px;
    }

    .speaker-left-content {

        margin-top: 24px;
    }

    .speaker-action-btn {

        padding: 14px 24px;
    }

    .speaker-grid-card {

        flex-direction: column;
    }

    .speaker-grid-image {

        width: 100%;
    }

    .speaker-grid-image img {

        width: 100%;

        height: auto;
    }

    .speaker-grid-content h3 {

        font-size: 20px;
    }

    .committee-content {

        padding: 22px;
    }

    .committee-content h3 {

        font-size: 24px;
    }

    .committee-content p {

        font-size: 14px;
    }

    .past-events-grid {

        grid-template-columns: 1fr;
    }

    .large-item {

        grid-column: span 1;

        grid-row: span 1;
    }

    .large-item img,
    .past-event-item:not(.large-item) img {

        height: 240px;
    }

    .past-events-title {

        font-size: 34px;
    }

    .event-schedule-title {

        font-size: 34px;
    }

    .schedule-date-area h3 {

        font-size: 22px;
    }

    .schedule-speakers {

        gap: 18px;
    }

    .convocation-info-card h3 {

        font-size: 28px;
    }

    .convocation-info-card p {

        font-size: 16px;

        line-height: 1.8;
    }

    .about-convocation-item h2 {

        font-size: 30px;
    }

    .about-convocation-grid {

        gap: 55px;
    }

    .about-convocation-image img {

        height: 320px;
    }

    .awards-header h3 {

        font-size: 32px;
    }

    .award-image img {

        height: 260px;
    }
}