/* Regular */
@font-face {
  font-family: 'IndeedSans';
  src: url('../fonts/IndeedSans_Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'IndeedSans';
  src: url('../fonts/IndeedSans_Md.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../fonts/IndeedSans_It.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Light Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../fonts/IndeedSans_LtIt.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../fonts/IndeedSans_BdIt.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Extra Bold Italic */
@font-face {
  font-family: 'IndeedSans';
  src: url('../fonts/IndeedSans_XBdIt.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}


      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box
      }
      body {
        font-family: 'IndeedSans', sans-serif;
        line-height: 1.6;
        color: #003A9B;
        overflow-x: hidden
      }

        /* Sticky Navigation */
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(254, 248, 244, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 58, 155, 0.1);
        }

        .sticky-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .sticky-nav .nav-logo img {
            height: 40px;
            width: auto;
        }

        .sticky-nav .nav-logo {
            text-decoration: none !important;
            border: none !important;
        }

        .sticky-nav .nav-logo:hover {
            text-decoration: none !important;
            border: none !important;
        }

        .sticky-nav .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .sticky-nav .nav-links a {
            color: #001c40;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
            line-height: 22px;
            font-weight: 400;
        }

        .sticky-nav .nav-links a:hover,
        .sticky-nav .nav-links a.active {
            color: #E867AB;
        }

        .sticky-nav .nav-cta {
            background: #E867AB;
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            letter-spacing: 0.18px;
        }

        .sticky-nav .nav-cta:hover {
            background: #d655a0;
            color: white;
            transform: translateY(-2px);
        }
        .dropdown {
        position: relative
      }

      /* FIXED: Higher z-index for dropdown */
      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        /* transform: translateX(-50%); */
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(0, 58, 155, 0.2);
        border-radius: 12px;
        padding: 15px 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px);
        transition: all 0.3s ease;
        z-index: 10000;
        margin-top: 15px;
        padding: 0 !important;
        text-align: center;
      }

      .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0)
      }

      .dropdown-menu a {
        display: block;
        padding: 5px 20px;
        color: #003A9B;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        border-bottom: none;
        position: relative;
        margin-top:5px;
      }

      .dropdown-menu a:hover {
        background: none;
        color: #E867AB
      }

      .dropdown-menu a::after {
        display: none
      }
        /* Mobile Menu Button */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            color: #003A9B;
            cursor: pointer;
            padding: 5px;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Container */
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -350px;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, #003A9B 0%, #002a73 100%);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-menu-container.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .mobile-menu-nav {
            padding: 10px 0;
        }

        .mobile-menu-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-menu-nav li {
            opacity: 1;
            transform: none;
        }

        .mobile-menu-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-menu-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #E867AB;
            transform: none;
            padding-left: 25px;
        }

        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-toggle::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.active .mobile-dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 200px;
        }

        .mobile-dropdown-menu a {
            padding: 12px 20px 12px 40px;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* About Banner Section */
        img {
            width: 100%;
        }

        .abtBanner {
            position: relative;
            width: 100%;
            margin-top: 75px;
        }

        .abtCap {
            position: absolute;
            bottom: 140px;
            left: 20px;
        }

        .abtCap h1 {
            color: #fff;
            font-size: 50px;
            line-height: 60px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: capitalize;
        }
        .abtCap p{
             color:#fff; font-size:27px;
        }

        /* Speaker Details Section */
        .indeedSpkDetails {
            padding: 100px 20px;
            background: #fef8f4;
        }

        .spkDetailsBox {
            border: 2px solid #001c40;
            margin-top: 20px;
        }

        .spkDetailsBox img {
            border-right: 2px solid #001c40;
        }

        .spkDetailsBox h3 {
            color: #001c40;
            font-size: 26px;
            letter-spacing: -0.5px;
            font-weight: 700;
            margin: 0;
        }

        .spkDetailsBox h5 {
            color: #001c40;
            font-size: 20px;
            letter-spacing: -0.5px;
            font-weight: 400;
        }

        .spkDetailsBox p {
            color: #001c40;
            font-size: 16px;
            line-height: 24px;
            font-weight: normal;
            margin: 20px 0 0 0;
        }

        .backtoSpk {
            text-decoration: none;
            color: #001c40;
            font-size: 20px;
        }

        .icon img {
            width: 24px;
        }

        .btnIcon {
            overflow: hidden;
            height: 30px;
        }

        .arrow-top {
            transform: translateY(0);
            transition: transform 0.4s ease;
        }

        .backtoSpk:hover .arrow-top {
            transform: translateY(-30px);
        }

        .backtoSpk:hover .arrow-bottom {
            transform: translateY(-32px);
            transition: transform 0.4s ease;
        }

        /* new spk */
        .outerBox{
            background: #e9f3fc;
            border-right: 2px solid #001c41;
            padding: 20px;
        }
        .innerBox{
            background: #001c41;
            border-radius: 50%;
            padding: 10px 0 -1px 0;
        }
        .innerBox img{
            border-radius:50%;
        }
        .hov:hover .innerBox{
            background: #E867AB;
        }
        .hov:hover .speaker__arrow {
            transform: translateY(-26px);
        }
        .lightBlue{
            background: #003a9b;
        }

        /* Footer */
        .footer {
        background: #003A9B;
        color: white;
        padding: 60px 0 30px
      }
      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px
      }
      .footer-bottom {
        padding-top: 0px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px
      }
      .footer-copyright {
        color: #E8F3FC;
        font-size: 14px
      }
      .footer-legal {
        display: flex;
        gap: 30px
      }
      .footer-legal a {
        color: #E8F3FC;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s 
    ease;
        font-weight: 500;
        letter-spacing: 1px;
      }
      .footer-legal a:hover {
        color: #E867AB
      }
      .mobile-menu-nav li .active{
        color: #E867AB;
      }

        /* Responsive Design */
        @media (max-width:992px) {
            .abtCap {
                position: absolute;
                bottom: 75px;
            }

            .abtCap h1 {
                font-size: 40px;
                line-height: 50px;
            }
            .abtCap p{
             font-size:13px;
            }
        }
        @media (max-width: 768px) {
            .sticky-nav .nav-links {
                display: none;
            }

            .sticky-nav .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .indeedSpkDetails {
                padding: 50px 15px;
            }

            .spkDetailsBox img {
                border-right: none;
                border-bottom: 2px solid #001c40;
            }

            .spkDetailsBox h3 {
                font-size: 22px;
            }

            .spkDetailsBox h5 {
                font-size: 18px;
            }

            .spkDetailsBox p {
                font-size: 14px;
                line-height: 20px;
            }

            .backtoSpk {
                font-size: 18px;
            }
            .abtCap {
                position: absolute;
                bottom: 50px;
            }

            .abtCap h1 {
                font-size: 30px;
                line-height: 35px;
            }
        }

        @media (max-width: 480px) {
            .abtCap {
                position: absolute;
                bottom: 0px;
            }
            .abtCap h1 {
                font-size: 20px;
                line-height: 24px;
            }
            .footer-content {
                  padding: 0 10px
                }
                .footer-legal {
                  display: block
                }
                .footer-legal a {
                  float: left;
                  width: 100%;
                  margin-bottom: 10px
                }
                .footer-bottom {
                  gap: 10px
                }

            .indeedSpkDetails {
                padding: 30px 10px;
            }

            .spkDetailsBox h3 {
                font-size: 20px;
            }

            .spkDetailsBox h5 {
                font-size: 16px;
            }

            .backtoSpk {
                font-size: 16px;
            }
        }


/* Main Agenda Section */
        .agenda-section {
            background: #FEF8F4;
            padding: 60px 0 80px;
            min-height: 70vh;
        }

        .agenda-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Agenda Cards */
        .agenda-card {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .agenda-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .agenda-card-content {
            display: flex;
            align-items: stretch;
        }

        .time-slot {
            background: #003A9B;
            color: white;
            padding: 30px 25px;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .time-slot::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #003A9B;
        }

        .time-text {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .time-duration {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .session-details {
            flex: 1;
            padding: 30px 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .session-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #003A9B;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .session-description {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .session-speaker {
            color: #E867AB;
            font-weight: 600;
            font-size: 1rem;
        }

        .session-type {
            display: inline-block;
            background: #E867AB;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        /* Special card types */
        .agenda-card.keynote .time-slot {
            background: #E867AB;
        }

        .agenda-card.keynote .time-slot::after {
            border-left-color: #E867AB;
        }

        .agenda-card.break .time-slot {
            background: #666;
        }

        .agenda-card.break .time-slot::after {
            border-left-color: #666;
        }

        /* Day Section Headers */
        .day-header {
            text-align: center;
            margin: 40px 0;
        }

        .day-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #003A9B;
            margin-bottom: 10px;
        }

        .day-subtitle {
            color: #666;
            font-size: 1.1rem;
        }
        .spkDetails{
            display: none;
            margin-top: 20px;
        }
        .spkDetails h4{
            font-size: 20px;
            margin: 0;
            line-height: 20px;
        }
        .spkDetails p{
            font-size: 16px;
            line-height: 18px;
            margin-top: 10px;
            color: #000;
        }
        .modal .spkDetails{
            display: block;
        }
        

        @media (max-width: 768px) {

            .agenda-card-content {
                flex-direction: column;
            }

            .time-slot {
                min-width: auto;
                text-align: center;
            }


            .time-slot::after {
                display: none;
            }

            .agenda-container {
                padding: 0 20px;
            }

            .spkSec {
                padding: 50px 15px;
            }
        }

/* FAQ Section */
        .faq-section {
            background: #FEF8F4;
            padding: 80px 0;
            position: relative;
        }

        .faq-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .faq-section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #003A9B;
            margin-bottom: 3rem;
        }

        .faq-group {
            margin-bottom: 4rem;
        }

        .faq-group-title {
            font-size: 2.3rem;
            font-weight: 600;
            color: #001c40;
            margin-bottom: 2rem;
            position: relative;
        }

        .faq-container {
            counter-reset: section;
        }

        .faq-item {
            border-bottom: 2px solid rgba(0, 28, 64, 0.5);
        }
        .faq-item:hover {
            background-color: transparent;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 500;
            color: #001c40;
            transition: all 0.3s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            letter-spacing: -0.3px;
        }

        .faq-question:hover {
            color: #001c40;
        }

        .faq-arrow {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
            color: #001c40;
            transform: rotate(90deg);
        }

        .faq-item.active .faq-arrow {
            transform: rotate(270deg);
            color: #E867AB;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0;
        }

        .faq-answer-content {
            padding: 0 0 1.5rem 0;
            color: #001c40;
            font-size: 20px;
            line-height: 26px;
/*            background-color: #ebe5e1*/
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        @media (max-width: 768px) {

            .faq-container {
                padding: 0 20px;
            }

            .faq-section-title {
                font-size: 2rem;
            }

            .faq-group-title {
                font-size: 1.5rem;
            }
            .faq-arrow img{
                width:20px;
            }
        }

   /* Speaker Section */
        .spkSec {
            padding: 100px 20px;
            background: #fef8f4;
        }

        .speaker-details {
            width: 100%;
            text-decoration: none;
            position: relative;
        }

        .speaker-details h3 {
            font-size: 26px;
            font-style: normal;
            font-weight: 700;
            color: #001c40;
            position: relative;
            line-height: 26px;
            margin-top: 10px;
            letter-spacing: -0.5px;
        }

        .speaker-details p {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            color: #001c40;
            letter-spacing: -0.5px;
        }

        .speaker__arrow-container {
            position: absolute;
            right: 20px;
            top: 8px;
            overflow: hidden;
            width: 24px;
            height: 24px;
        }

        .speaker__arrow {
            position: absolute;
            bottom: -26px;
            width: 26px;
            height: 26px;
            transition: transform 150ms cubic-bezier(0.1, 0.2, 0.3, 0.4);
        }

        .spkBox:hover .speaker__arrow {
            transform: translateY(-26px);
        }

        .spkimgtwo {
            display: none;
        }

        .spkBox:hover .spkimgtwo {
            display: block;
        }

        .spkBox:hover .spkimgone {
            display: none;
        }
        @media (max-width: 768px) {
            .spkSec {
                padding: 50px 15px;
            }

            .speaker-details h3 {
                font-size: 22px;
                line-height: 24px;
            }

            .speaker-details p {
                font-size: 14px;
                line-height: 18px;
            }
        }

        @media (max-width: 480px) {
            .spkSec {
                padding: 30px 10px;
            }

            .speaker-details h3 {
                font-size: 20px;
            }

            .speaker-details p {
                font-size: 13px;
            }
        }