@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
}

body {
    background: #fff;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

.my-center {
 display: flex;
 justify-content: center;
 align-items: center;
}

.top-header {
    background: #F7F6EF;
}

.logo {
    height: 50px;
}

.afaqs-logo {
    height: 40px;
}

.my-header-aligment {
    display: flex;
    justify-content: center;
	padding: 0 40px;
	margin-top: 0px;
}

 #BG-header {
    position: relative;
    perspective: 750px;
    min-height: 580px;
    overflow: hidden;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("https://events.afaqs.com/assets/glu/images/Header-BG.webp");
    transition: background-image 0.4s ease;
}


#BG-discussion {
    perspective: 750px;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6)),
        url("https://events.afaqs.com/assets/glu/images/BG-Discussion.webp") top center / cover no-repeat;
    /* background-attachment: fixed; */
}

.hero-title {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 111%;
    /* text-shadow: 1px 0px 1px rgba(255, 255, 255, 1);
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2)); */
    ;
}

.hero-title-2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #000;
    width: 100%;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 20px;
    color: #007CFF;
    font-weight: 700;
    margin: 20px 0;
    width: 100%;
    max-width: 400px;
}

.hero-subtitle-2 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 20px 0;
}


/*==========================
    Event Info
===========================*/

.event-info {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    flex-direction: column;
}

.event-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(150deg, rgba(0, 112, 197, 1) 0%, rgba(105, 190, 194, 1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-icon img {
    width: 32px;
    height: 32px;
    color: #000;
}

.event-content span {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}

.event-content strong {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 1.3;
}

/* Tablet */

@media (max-width:991px) {

    .event-info {
        gap: 25px;
    }

    .event-content span {
        font-size: 16px;
    }

    .event-content strong {
        font-size: 18px;
    }
}

/* Mobile */

@media (max-width:576px) { 

	.my-header-aligment {
		padding: 0 15px;
	}

    .event-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .event-icon {
        width: 50px;
        height: 50px;
    }

    .event-icon i {
        font-size: 24px;
    }

    .event-content span {
        font-size: 15px;
    }

    .event-content strong {
        font-size: 17px;
    }
}

.hero-section {
    padding:0px 0 40px;
}

.discussion-section,
.speaker-section {
    padding: 40px 0;
}

.registration-card {
    background: rgba(2, 15, 31, 0.8);
    padding: 20px 30px;
    border-radius: 25px;
    color: #fff;
    border: 2px #D4AF37 solid;
    width: 100%;
    max-width: 500px;
}

.registration-card h3 {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
}

.registration-card span {
    color: red;
    margin-left: 2px;
}

.form-control {
    font-size: 14px;
    background: rgba(152, 219, 255, 0.8);
}


/* .form-control option {
	font-size: 14px;
	color: #fff !important;
} */


input::placeholder {
    color: #fff !important;
    font-size: 14px;
}

.registration-card .form-control {
    height: 34px;
    border-radius: 4px;
}

.register-btn {
    background: linear-gradient(150deg, rgba(0, 112, 197, 1) 0%, rgba(105, 190, 194, 1) 100%);
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid rgba(75, 175, 181, 1);
    transition: all 0.3s ease-in-out;
}

.btn:hover,
register-btn:hover {
    background: linear-gradient(150deg, rgba(105, 190, 194, 1) 0%, rgba(0, 112, 197, 1) 100%);
    ;
    color: #fff;
    border: 1px solid rgba(9, 43, 192, 1);
}

@media (max-width:576px) {

    /* #BG-header {
        perspective: 750px;
        min-height: 500px;
    } */


	 #BG-header {
    position: relative;
    perspective: 750px;
    min-height: 580px;
    overflow: hidden;
    background-position: bottom center;
    background-size: contain;
    background-repeat: repeat-y;
}

    .logo {
        height: 40px;
    }

    .afaqs-logo {
        height: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title-2 {
        font-size: 24px;
    }
}


/*=====================================
    ABOUT SECTION
======================================*/

.about-section {
    background: #fff;
}

.about-img {
    overflow: hidden;
    border-radius: 20px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
	text-align: center;
}

@media (max-width:991px) {

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        text-align: center;
    }
}

@media (max-width:576px) {

    .section-title {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}




/* =========================================
   DISCUSSION + WHY ATTEND SECTION
========================================= */


.discussion-section {
    width: 100%;
    padding: 22px 0px 10px;
    background: #fff;
}

.discussion-wrapper {
    position: relative;
    width: 100%;
    min-height: 432px;
    background: #087df5;
    border-radius: 12px;
    padding: 169px 55px 0px;
    /* overflow: hidden; */
}

.discussion-wrapper::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 145px;
    background: #fff;
    border-radius: 0 0 180px 180px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}


.discussion-top-icon {
    position: absolute;

    z-index: 5;

    top: 0;
    left: 50%;

    width: 120px;
    height: 120px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
}


.discussion-top-icon img {
    width: 120px;
    height: 120px;

    object-fit: contain;
}


/* =========================================
   MAIN ROW
========================================= */

.discussion-attend-row {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns:
        1fr
        2px
        1fr;

    column-gap: 30px;

    align-items: center;
}


/* =========================================
   SECTION TITLES
========================================= */

.discussion-block-title {
    margin: 0 0 26px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 29px;
    line-height: 1.1;

    font-weight: 700;

    text-align: center;
}


/* =========================================
   DISCUSSION CARDS
========================================= */

.discussion-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;
}


.discussion-card {
    min-width: 0;

    height: 143px;

    padding: 13px 10px;

    display: flex;
    flex-direction: column;

    align-items: center;
        justify-content: space-around;

    text-align: center;

    background: #ffffff;

    border-radius: 5px;

    color: #061d38;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   DISCUSSION CARD ICON
========================================= */

.discussion-card-icon {
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 4px;

    color: #111111;

    font-size: 32px;
}


.discussion-card-icon img {
    width: 40px;
    height: 40px;
	margin-bottom: 10px;
}


.discussion-card p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 15px;
    line-height: 1.18;

    font-weight: 600;
}


/* =========================================
   DISCUSSION CARD HOVER
========================================= */

.discussion-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================
   DIVIDER
========================================= */

.discussion-divider {
    width: 2px;

    height: 180px;

    background: rgba(255, 255, 255, 0.9);

    align-self: center;
}


/* =========================================
   WHY ATTEND CARDS
========================================= */

.attend-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;
}


.attend-new-card {
    min-width: 0;

    height: 143px;

    padding: 15px 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #031b36;

    border-radius: 5px;

    color: #ffffff;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.attend-new-card p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 15px;
    line-height: 1.15;

    font-weight: 700;
}


/* =========================================
   WHY ATTEND HOVER
========================================= */

.attend-new-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.25);

    background: #06294d;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .discussion-attend-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    .discussion-attend-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }


    .discussion-attend-row {
        column-gap: 20px;
    }


    .discussion-block-title {
        font-size: 25px;
    }


    .discussion-card,
    .attend-new-card {
        height: 140px;
    }


    .discussion-card p,
    .attend-new-card p {
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .discussion-attend-section {
        padding: 15px 12px 25px;
    }


    .discussion-attend-wrapper {
        padding: 105px 15px 30px;

        border-radius: 10px;
    }


    /* Smaller top cutout */

    .discussion-attend-wrapper::before {
        width: 270px;
        height: 125px;

        border-radius:
            0 0 140px 140px;
    }


    .discussion-top-icon {
        width: 95px;
        height: 95px;
    }


    /* Stack sections */

    .discussion-attend-row {
        display: flex;

        flex-direction: column;

        gap: 28px;
    }


    /* Divider becomes horizontal */

    .discussion-divider {
        width: 80%;
        height: 1px;

        margin: 0 auto;
    }


    .discussion-block,
    .attend-block {
        width: 100%;
    }


    .discussion-block-title {
        font-size: 27px;

        margin-bottom: 18px;
    }


    /* Cards */

    .discussion-cards,
    .attend-cards {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;
    }


    .discussion-card,
    .attend-new-card {
        height: 170px;

        padding: 10px 6px;
    }


    .discussion-card-icon {
        font-size: 27px;

        height: 38px;
    }


    .discussion-card p,
    .attend-new-card p {
        font-size: 14px;
    }

	.discussion-wrapper {
   	 padding: 169px 0px 30px;
}


}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .discussion-attend-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }


    .discussion-attend-wrapper::before {
        width: 230px;
        height: 110px;
    }


    .discussion-block-title {
        font-size: 23px;
    }


    .discussion-cards,
    .attend-cards {
        gap: 6px;
    }


    .discussion-card,
    .attend-new-card {
        height: 150px;

        padding: 8px 4px;
    }


    .discussion-card p,
    .attend-new-card p {
        font-size: 13px;
    }


    .discussion-card-icon {
        font-size: 24px;
        height: 32px;
    }

}


/* =========================================
   SPEAKERS SECTION
========================================= */

.speakers-section {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 80px 20px 40px;
    overflow: visible;
}

/* .speakers-padding {
	width: 100%;
	max-width: 1360px;
	background: linear-gradient(180deg,  #FFFFFF 36%, #000000 100%);
	padding: 0px 10px;
	border-radius: 40px;
	overflow: visible;
} */

.speakers-container {
    /* display: flex;
	justify-content: center;
	align-items: center; */
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    border-radius: 40px 80px 40px 40px;
    padding: 20px 20px 50px;
    margin-left: 10px !important;

    background: linear-gradient(270deg,
            transparent 0,
            transparent 10px,
            #FFFFFF 10px,
            #FFFFFF 100%);

    border: 5px solid transparent;
    background-image:
        linear-gradient(270deg,
            #FFFFFF 10px,
            #FFFFFF 10px,
            #FFFFFF 10px,
            #FFFFFF 100%),
        linear-gradient(180deg,
            #FFFFFF 36%,
            #000000 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}


.speakers-title {
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    margin: 0;
    text-align: center;
    color: #061d38;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    z-index: 5;
    padding-bottom: 30px;
}

.announcement-location {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.announced {
    display: block;
    width: 100%;
    max-width: 280px;
    text-align: center;
    color: #000;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
}

/* =========================================
   CITY TABS
========================================= */

.speaker-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    /* margin-top: 50px; */
}

.margin-top-nagative {
	 margin-top: -70px;
}


/* TAB */

.speaker-tab {
    border: 0;
    padding: 5px 15px 6px;
    min-width: 80px;
    border-radius: 15px;
    background: #fff;
    color: #087df5;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    filter: blur(0px);
	/* border: 1px Solid #ccc; */
	transition: transform 0.2s, box-shadow 0.2s;
  	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);

}

.speaker-tab.active {
    background: #087df5;
    color: #ffffff;
    filter: blur(0px);
    font-size: 17px;
    padding: 7px 20px;
}

.speaker-tab:hover {
    background: #087df5;
    color: #ffffff;
    transform: translateY(-2px);
	box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    filter: blur(0px);
}


.speakers-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* display: grid;
	grid-template-columns: repeat(5, 1fr); */
    gap: 10px;
}



.speaker-card {
    min-width: 0;
    text-align: center;
}


.speaker-image {
    width: 100%;
    /* aspect-ratio: 1 / 1.18; */
    overflow: hidden;
    border-radius: 7px;
    background: #061d38;
}

.speaker-image img {
    width: 275px;
    height: 275px;
    /* width: 100%;
	height: 100%;
	display: block;
	object-fit: cover; */
    transition: transform 0.5s ease;
}


.speaker-card:hover .speaker-image img {
    transform: scale(1.04);
}


.speaker-name {
    margin-top: 9px;
    color: #061d38;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.speaker-designation {
    display: none !important;
    margin-top: 3px;
    color: #061d38;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
    white-space: nowrap;
}


.speaker-company {
    /* height: 42px; */
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    display: flex;
    line-height: 1.15;
    justify-content: center;
    align-items: center;
}

.speaker-company img {
    max-width: 105px;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
}


@media (max-width: 1199px) {

    .speakers-section {
        padding-left: 25px;
        padding-right: 25px;
    }

    .speakers-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .speakers-list {
        gap: 10px;
    }

    .speaker-name {
        font-size: 18px;
    }

    .speaker-designation {
        font-size: 14px;
    }
}


@media (max-width: 991px) {

    .speakers-title {
        font-size: 36px;
    }

    .speakers-container {
        border-radius: 35px;
    }

    .speakers-list {
        /* grid-template-columns: repeat(3, 1fr); */
        row-gap: 30px;
    }


    .speaker-designation {
        font-size: 15px;
    }
}


@media (max-width: 767px) {

    .speakers-section {
        padding: 25px 12px 35px;
    }

    .speakers-container {
        border-radius: 25px;
        padding: 65px 18px 30px;
        box-shadow: 0 6px 0 #001d3d;
    }


    .speakers-title {
        top: -33px;
        font-size: 36px;
    }


    .speaker-tabs {
        gap: 15px;
        margin-bottom: 25px;
    }

    .speaker-tab {
        min-width: 70px;
        font-size: 11px;
    }


    .speakers-list {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 25px 12px;
    }


    .speaker-designation {
        font-size: 13px;
        white-space: normal;
    }

    .speaker-company {
        margin-top: 8px;
    }
}


@media (max-width: 480px) {

	.hero-section {
		padding: 0px;
}

	.margin-top-nagative {
	 margin-top: 20px;
}

    .speakers-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .speakers-container {
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 22px;
    }

    .speakers-title {
        font-size: 32px;
    }

    .speaker-tabs {
        gap: 10px;
    }

    .speaker-tab {
        padding: 5px 15px;
        min-width: 65px;
        font-size: 13px;
    }

    .speaker-name {
        font-size: 16px;
    }

    .speaker-designation {
        font-size: 14px;
    }

    .speaker-company img {
        max-width: 90px;
    }
}



/* =========================================
   AGENDA SECTION
========================================= */

.agenda-section {
    padding: 50px 0;
    position: relative;
    width: 100%;
    background-color: rgb(3, 19, 51, 0.9);
    background-image: url("https://events.afaqs.com/assets/glu/images/bg-agenda.webp");
    background-repeat: repeat;
    background-position: center center;
    background-size: 100px 83px;
}

.agenda-section .container {
    position: relative;
    z-index: 2;
    max-width: 987px;
}


.agenda-heading {
    text-align: center;
    margin-bottom: 30px;
}

.agenda-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 600;
}

.agenda-heading span {
    display: block;
    width: 116px;
    height: 4px;
    margin: 16px auto 0;
    background: #ffffff;
    border-radius: 5px;
}


.agenda-list {
    width: 100%;
}

.agenda-item {
    display: grid;
    grid-template-columns: 280px 45px 1fr;
    min-height: 68px;
    position: relative;
}


.agenda-time {
    color: #ffffff;
    font-family: "DM Serif Display", serif;
    font-size: 28px;
    line-height: 1.2;
    text-align: right;
    padding-right: 18px;
    padding-top: 8px;
    white-space: nowrap;
}


.agenda-timeline {
    position: relative;
    width: 45px;
    display: flex;
    justify-content: center;
}


.agenda-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.20);
}


.agenda-dot {
    position: relative;
    z-index: 2;
    width: 11px;
    height: 11px;
    margin-top: 17px;
    border-radius: 50%;
    background: #315cff;
    box-shadow: 0 0 0 2px rgba(49, 92, 255, 0.10);
}


.agenda-content {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 400;
    padding-left: 15px;
    padding-top: 8px;
}


.agenda-item:last-child {
    min-height: 45px;
}

.agenda-item:last-child .agenda-timeline::before {
    bottom: 50%;
}


@media (max-width: 991.98px) {

    .agenda-section {
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .agenda-heading h2 {
        font-size: 32px;
    }

    .agenda-item {
        grid-template-columns: 230px 40px 1fr;
    }

    .agenda-time {
        font-size: 24px;
    }

    .agenda-content {
        font-size: 17px;
    }
}


@media (max-width: 767.98px) {

    .agenda-section {
        padding: 35px 15px 45px;
    }

    .agenda-section .container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .agenda-heading {
        margin-bottom: 25px;
    }

    .agenda-heading h2 {
        font-size: 30px;
    }

    .agenda-heading span {
        width: 90px;
        height: 3px;
        margin-top: 12px;
    }

    .agenda-item {
        grid-template-columns: 120px 30px 1fr;
        min-height: 80px;
    }

    .agenda-time {
        font-size: 17px;
        line-height: 1.25;
        padding-right: 8px;
        padding-top: 7px;
        white-space: normal;
    }


    .agenda-timeline {
        width: 30px;
    }

    .agenda-dot {
        width: 9px;
        height: 9px;
        margin-top: 12px;
    }


    .agenda-content {
        font-size: 14px;
        line-height: 1.4;
        padding-left: 10px;
        padding-top: 5px;
    }
}


@media (max-width: 480px) {

    .agenda-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .agenda-heading h2 {
        font-size: 32px;
    }

    .agenda-item {
        grid-template-columns: 105px 25px 1fr;
        min-height: 82px;
    }

    .agenda-time {
        font-size: 15px;
        padding-right: 5px;
    }

    .agenda-timeline {
        width: 25px;
    }

    .agenda-content {
        font-size: 14px;
        padding-left: 8px;
    }
}


.contact-section {
    background: linear-gradient(135deg, #000, #000);
}