﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

main {
    padding-bottom: 80px;
}

header {
    /* border-bottom: 1px solid #dddddd; */
    padding: 5px 15px;
    height: 90px;
    display: flex;
    align-items: center;
}
.logo{

}
.logo img{
    height:65px;
}
    .logo2 img {
        height: 65px;
    }

    nav.mainnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height:80px;
    z-index:11;
}
    nav.mainnav ul {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        list-style: none;
    }
        nav.mainnav ul li {
            width: 20%;
            text-align: center;
        }

            nav.mainnav ul li a {
                display: block;
                text-decoration: none;
                padding: 4% 0;
                font-size: 18px;
                text-transform: uppercase;
                background: #eeeeff;
                color: #123456;
                font-weight: 600;
                border-right: 2px solid #ffffff;
                white-space:nowrap;
                outline:none;
                height:80px;
            }
                nav.mainnav ul li a i {
                    display: block;
                    font-size: 22px;
                    line-height: 26px;
                }

            nav.mainnav ul li:last-child a{
                border-right: none;
            }
            nav.mainnav ul li.active a, nav.mainnav ul li.active a:hover {
                background: #f2b80f;
                color: #ffffff;
            }

            nav.mainnav ul li a:hover {
                background: #fff9c2;
            }




.hero {
  position: relative;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero{
    position: relative;
}

.hero-img-wrap{
    position: relative;
}

.hero-img-wrap img{
    width: 100%;
    display: block;
}


.hero-cta{
    position: absolute;
    right: 90px;      
    bottom: 45px;     
    display: flex;
    gap: 18px;
}


.btn-member{
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 180px;
    height: 52px;

    background: #fff;
    color: #05080c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    border: 2px solid #0d3b72;
    border-radius: 12px;

    transition: .3s ease;
}

.btn-member:hover{
    background: #0d3b72;
    color: #fff;
}

@media (max-width: 768px) {

    .hero-cta{
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .btn-member{
        width: 170px;
        height: 42px;
        font-size: 14px;
        border-radius: 8px;
    }

}

@media (max-width: 480px) {

    .hero-cta{
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .btn-member{
        width: 140px;
        height: 36px;
        font-size: 12px;
    }

}


/* ===== MOBILE TIGHTENING (NO POSITION CHANGE) ===== */
@media (max-width: 767px) {

   .hero-img-wrap img {
    position: relative;
    width: 100%;
    height: 180px;
    display: block;
    } 

  /* 🔹 CTA positioning */
  .hero-cta {
    position: absolute;
    top: 62%;
    left: 25%;
    transform: translateX(-50%);
    flex-direction: column;   /* 👈 2 row */
    align-items: center;
    gap: 7px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 165px;
    padding: 1px 0px;
    font-size: 13px;
    border-radius: 8px;
    text-align: center;
  }
}





.herotitle {
    width: 70%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align:center;
}
.herotitle img{
    width: 100%;
}

    .herotitle .title1 {
        color: #ffffff;
        line-height: 1;
        font-size: 1.9vw;
        font-weight: 500;
        display: block;
        background: #0c0c0c;
        text-align: center;
        padding: 15px 5px;
        border-radius: 10px;
    }
    .herotitle .title2 {
        color: #ffffff;
        line-height: 1;
        font-size: 1.5vw;
        font-weight: 400;
        display: inline-block;
        background: #0c0c0c;
        text-align: center;
        padding: 15px 25px;
        border-radius: 10px;
        margin-top: 10px;
    }


/* ABOUT PAGE CARD */
.about-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 50px;
    margin: 30px 0 60px;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.10),
        0 10px 25px rgba(0,0,0,0.05);
}

/* Paragraphs */
.about-card p {
    font-family: "Inter", "Open Sans", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #2f2f2f;
    font-weight: 400;
    margin-bottom: 22px;
}

/* First paragraph highlight */
.about-card p:first-child {
    font-size: 17px;
    font-weight: 500;
    color: #1f3b63;
}

/* Ordered list */
.about-card ol {
    padding-left: 22px;
    margin: 20px 0 30px;
}

.about-card ol li {
    font-family: "Inter", "Open Sans", sans-serif;
    font-size: 15.5px;
    line-height: 28px;
    color: #333;
    margin-bottom: 14px;
}

/* Bold heading inside list */
.about-card ol li span {
    font-weight: 600;
    color: #0b3c6d;
}

/* Mobile optimization */
@media (max-width: 767px) {
    .about-card {
        padding: 28px 22px;
    }

    .about-card p {
        font-size: 14px;
        line-height: 24px;
    }

    .about-card ol li {
        font-size: 14px;
        line-height: 24px;
    }
}


.inner{

}
    .inner p {
        font-size: 16px;
        color: #333333;
        font-weight: 400;
        text-align: justify;
        line-height: 28px;
    }
.inner .pageheader{
    background:url("../images/website-banner-07.jpg") center center no-repeat;
    background-size:cover;
    min-height:260px;
}

/* Desktop */
.inner .pageheader{
    background: url("../images/website-banner-07.jpg") no-repeat center;
    background-size: cover;
    min-height: 220px;
}

/* Mobile */
@media (max-width:768px){

    .inner .pageheader{
        background: url("../images/website-banner-mobile-07.jpg") no-repeat center;
        background-size: cover;
        min-height: 180px;
    }

}



/* SINGLE background box */
.pageheader-text{
    max-width:900px;
    margin:30px auto;
    padding:30px 40px;
    background:rgb(123, 138, 123);
    border-radius:10px;
    text-align:center;
}

/* H1 */
.pageheader-text h1 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.45);
}

/* H2 – SPEAKERS */
.pageheader-text h2 {
    font-size: 16px;
    font-weight: 600;
    color: #e6f1ff;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.45);
}

/* Tablet */
@media (max-width: 991px){

    .inner .pageheader{
        min-height: 180px;
        background-position: left center;
    }

    .pageheader-text{
        margin-top: 60px;
        padding: 15px 25px;
        width: 90%;
    }

    .pageheader-text h1{
        font-size: 20px;
    }

    .pageheader-text h2{
        font-size: 15px;
        letter-spacing: 2px;
    }
}

/* Mobile */
@media (max-width: 767px){

    .inner .pageheader{
        min-height: 150px;
        background-position: left center;
        background-size: cover;
    }

    .pageheader-text{
        margin-top: 30px;
        padding: 12px 18px;
        width: 92%;
    }

    .pageheader-text h1{
        font-size: 12px;
        line-height: 1.3;
    }

    .pageheader-text h2{
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Small Mobile */
@media (max-width: 480px){

    .inner .pageheader{
        min-height: 130px;
    }

    .pageheader-text{
        margin-top: 20px;
        padding: 10px 12px;
    }

    .pageheader-text h1{
        font-size: 12px;
    }

    .pageheader-text h2{
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}


/* SPEAKERS CARD */
.speakers-card {
    background: #fff;
    border-radius: 28px;
   padding: 40px 30px 45px;

    /* 🔥 BIGGER & SOFTER SHADOW */
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

/* outer section thoda soft background */
.slider_speaker {
    /* background: #f5f8fc; */
     background: #bab9b9;
    padding: 60px 0;
}

.slider_speaker {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}
.slider_speaker .title {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b3c6d;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.15),
        0 4px 10px rgba(11,60,109,0.25);
}
.slider_speaker .subtitle {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #5f6b7a;

    /* soft shadow */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.slider_speaker .title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #0b3c6d;
    margin: 10px auto 0;
    border-radius: 2px;
}
.slider-speakers {
    padding-bottom: 30px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}
.slider-speakers {
    position: relative;
}

.slick-prev,
.slick-next {
    width: 44px;
    height: 44px;
    z-index: 10;
}

.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
    color: #0b3c6d;
}

.slider-speakers .slick-list{
    margin:0 -20px;
}

.slider-speakers .slick-slide{
    padding:0 20px;
}


/* ================================
   REFERENCE SPEAKER CARD (FINAL)
================================ */

.speaker-ref{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border-radius:0px;
    overflow:hidden;
    border:none;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .45s ease;
}

.speaker-ref::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #0b3c6d,
        #3ea3ff,
        #0b3c6d
    );
    transition:.6s;
    z-index:10;
}

.speaker-ref:hover::before{
    left:0;
}

.speaker-ref:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(11,60,109,.18);
}

/* IMAGE */

.speaker-ref-img{
    position:relative;
    height:300px;
    overflow:hidden;
}

.speaker-ref-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    transition:.6s ease;
}

/* HOVER LINK */

.speaker-ref-hover{
    position:absolute;
    inset:0;

    background:rgba(28, 63, 45, 0.75);

    color:#fff;
    text-decoration:none;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;
    font-weight:700;
    letter-spacing:2px;

    opacity:0;

    transition:.4s ease;
}

.speaker-ref-hover::before,
.speaker-ref-hover::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid rgba(255,255,255,.4);

    transform:scale(0);
    transition:.4s ease;
}

.speaker-ref:hover .speaker-ref-hover{
    opacity:1;
}

.speaker-ref:hover .speaker-ref-hover::before,
.speaker-ref:hover .speaker-ref-hover::after{
    transform:scale(.9);
}

/* CONTENT */

.speaker-ref-content{
    background:rgba(70, 76, 135, 0.75);
    padding:18px;
    flex:1;
    min-height:110px;
    
}

.speaker-ref-content h3{
    font-size:18px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
    transition:.3s;
}

.speaker-ref-content p,
.speaker-ref-content span{
    font-size:14px;
    color:#fff;
    line-height:1.5;
    margin:0;
}

.speaker-ref:hover .speaker-ref-content h3{
    transform:translateX(6px);
}
@media (max-width: 767px) {
    .speaker-about-card ul {
        padding-left: 18px;
    }

    .speaker-about-card ul li {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    .speaker-ref-img {
        height: 220px;
    }
    .speaker-img-wrap {
        width: 200px;
        height: 200px;
        margin: 20px auto 10px auto;
    }

     /* pure card ko center align */
    .speaker-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* name & designation center */
    .speaker-name,
    .speaker-designation {
        text-align: center;
    }
}

.speaker-ref-hover{
    color:#ffffff !important;
    transition:all .3s ease;
}



@media (max-width: 768px) {

    .speaker-card {
        text-align: center;
    }

    .speaker-name,
    .speaker-designation {
        text-align: center;
    }

    .speaker-img-wrap {
        margin-top: 20px;
    }

     .speaker-ref-img {
        height: 240px;
    }

    .slider-speakers {
        padding: 0 20px;
    }

    .slick-prev {
        left: -35px;
    }

    .slick-next {
        right: -35px;
    }
}
@media (max-width:991px){

    .speaker-ref-img{
        height:260px;
    }

    .speaker-ref-content h3{
        font-size:16px;
    }
}

@media (max-width:768px){

    .speakers-card{
        padding:25px 15px;
    }

    .speaker-ref-img{
        height:240px;
    }

    .slider_speaker .title{
        font-size:22px;
    }

    .slider_speaker .subtitle{
        font-size:14px;
    }

    .speaker-ref-content{
        min-height:auto;
        padding:15px;
    }

    .speaker-ref-content h3{
        font-size:15px;
    }

    .speaker-ref-content p,
    .speaker-ref-content span{
        font-size:13px;
    }
}

@media (max-width:480px){

    .speaker-ref-img{
        height:220px;
    }

    .speaker-ref-hover span{
        padding:10px 18px;
        font-size:12px;
    }

    .slider_speaker .title{
        font-size:20px;
    }
}

.speaker-img-wrap{
    width:340px;
    height:360px;
    margin:auto;
    overflow:hidden;
    border-radius:0px;
    background:#fff;
}

.speaker-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

@media (max-width:768px){

    .speaker-card .row{
        flex-direction:column-reverse;
    }

    .speaker-img-wrap{
        width:220px;
        height:220px;
        margin:0 auto 20px;
    }

    .speaker-name,
    .speaker-designation{
        text-align:center;
    }
}

.speaker-about-card{
    background:#fff;
    border:none;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.speaker-about-card::before{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#0b3c6d;
    border-radius:10px;
    margin-bottom:25px;
}



.speaker-card{
    background:#fff;
    border:none;
    box-shadow:none;
    padding:20px 0 40px;
    margin-bottom:20px;
}

.speaker-card .row{
    align-items:center;
}

.speaker-name{
    font-size:30px;
    font-weight:700;
    color:#0b3c6d;
    margin-bottom:12px;
    line-height:1.1;
}

.speaker-designation{
    font-size:20px;
    font-weight:400;
    color:#5f6b7a;
    line-height:1.4;
}

.speaker-profile{
    padding-top:20px;
}









.btn_viewall {
    border: 1px solid #666666;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 14px;
    color: #666666;
    display: table;
    margin: 20px auto;
}


    .btn_viewall:hover {
        border-color:#092a6d;
        color: #ffffff;
        background: #092a6d;
    }


.listing {
    grid-gap: .25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    margin-bottom: 20px;
    margin-top: 1rem;
}
@media (max-width: 991px){
    .listing{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px){
    .listing{
        grid-template-columns: 1fr;
    }
}


.sponsors {
  padding: 50px 0;
}

.sponsor-section-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Main heading */
.sponsors-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0b3c6d;
  text-transform: uppercase;
}
.sponsors .title {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b3c6d;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.15),
        0 4px 10px rgba(11,60,109,0.25);
}

.sponsors-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0b3c6d;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Sub headings */
.sponsor-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0b3c6d;
  text-transform: uppercase;
}

/* LEFT sponsor row */
.sponsor-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Card */
.sponsor-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  min-width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Logos */
.sponsor-card img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
}

/* Media partner card slightly wider */
.media-card {
  min-width: 240px;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

  .sponsor-section-card {
    padding: 30px 20px;
  }

  .sponsor-row {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
  }

  .sponsor-card {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ===============================
   DOWNLOAD PROGRAM SCHEDULE BUTTON
   =============================== */

.download-schedule-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;   
    /* margin-bottom: 30px; */
    z-index: 5;
    position: relative;
}

.btn-download-schedule {
    background: #0b3c6d;      
    color: #ffffff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;       
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(11, 60, 109, 0.25);
    transition: all 0.3s ease;
}

.btn-download-schedule i {
    font-size: 18px;
}

.btn-download-schedule:hover {
    background: #082f52;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11, 60, 109, 0.35);
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

    .download-schedule-wrap {
        margin-top: 5px;
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .btn-download-schedule {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }
}







@media screen and (min-width:320px) and (max-width:767.9px){
    main {
        padding-bottom: 60px;
    }
    header {
        padding: 5px 0px;
        height: 70px;
    }
    .logo img {
        height: 45px;
    }
    .logo2 img {
        height: 35px;
    }
    .hero {
        /* min-height: calc(70vh - 170px); */
    }
    .herotitle {
        width: 85%;
    }
        .herotitle .title1 {
            font-size: 2.4vw;
            padding: 8px 5px;
        }
        .herotitle .title2 {
            font-size: 2.6vw;
            padding: 8px 15px;
        }
    nav.mainnav {
        height: 55px;
    }
    nav.mainnav ul li a {
        font-size: 10px;
        height: 55px;
    }
        nav.mainnav ul li a i {
            font-size: 14px;
        }
    .slider_speaker .subtitle {
        font-size: 10px;
        letter-spacing: 0;
    }
    .slider_speaker .title {
        font-size: 18px;
    }
    .our-team .title {
        font-size: 14px;
    }


    .our-team .post {
        font-size: 10px;
    }
    .btn_viewall {
        font-size: 11px;
    }
    .inner .pageheader h1 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .inner .pageheader h2 {
        font-size: 15px;
        margin-bottom: 0;
    }
    .inner p {
        font-size: 12px;
        line-height: 20px;
    }
    ol {
        font-size: 12px;
        line-height: 24px;
    }
    table td{
        font-size:12px;
    }
    table td:first-child {
        width:50px;
    }
    table td h5{
        font-size: 14px;
    }
    .abt_title {
        font-size: 18px;
        text-align: center;
    }

    .abt_subtitle {
        font-size: 14px;
        margin: 5px 0;
        font-weight: 400;
        text-align: center;
    }

}


.gallery-frame {
    border: 6px solid #fff;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    border:1px solid #f00;
}


