:root {
    --primary-blue: #0b3c5d;
    --teal-accent: #0085D1;
    --light-bg: #f4f9fc;
    --dark-text: #2e2e2e;
    --cta-coral: #e76f51; 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Catamaran", serif
}
body {
  color: var(--dark-text);
  background-color: #fff;
}
.bg-primary-blue {
  background-color: var(--primary-blue);
}
.bg-light-soft {
  background-color: var(--light-bg);
}
.text-primary-blue {
  color: var(--primary-blue);
}
.text-teal {
  color: var(--teal-accent);
}
.btn-teal {
  background-color: var(--teal-accent);
  border-color: var(--teal-accent);
  color: #fff;
}
.btn-teal:hover {
  background-color: #148b99;
  border-color: #148b99;
  color: #fff;
}
.btn-coral {
  background-color: var(--cta-coral);
  border-color: var(--cta-coral);
  color: #fff;
}
.btn-coral:hover {
  background-color: #d86045;
  border-color: #d86045;
  color: #fff;
}
.navbar {
    background: #fff0;
    transition: background-color 0.3s ease
}
.grecaptcha-badge {
    display: none
}
.error {
            color: red;
        }
a {
    text-decoration: none !important
}
.text-justify {
    text-align: justify
}
.section h2 {
    font-size: 40px;
    font-weight: 600
}
.navbar-toggler {
    background-color: white !important
}
.navbar-nav {
    justify-content: end
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 700;
    font-size: 20px;
    margin-right: 10px
}
.navbar.scrolled {
    background: black !important
}
button.button-86 {
    font-size: 18px
}
.btn-menu {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: #fff0;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation
}
.animated::before {
    animation: blink 1s infinite
}
.btn-menu::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #0B3C5D;
    border-radius: 10px
}
.btn-menu::after,
.btn-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all 0.4s
}
@keyframes blink {
    0% {
        background-color: #FF9500;
    }
    30% {
        background-color: #00A79D;
    }
    100% {
        background-color: #FF9500;
    }
}
.btn-menu::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px
}
.btn-menu:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%
}
.btn-menu:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%
}
.header-section {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #060c72;
    padding: 100px 0;
    position: relative;
    overflow: hidden
}
.agenda-company {
    color: #E76F51;
}
@keyframes moveBefore {
    0% {
        clip-path: circle(15% at 95% 5%);
        transform: translateX(0)
    }
    50% {
        clip-path: circle(15% at 97% 5%);
        transform: translateX(3px)
    }
    100% {
        clip-path: circle(15% at 95% 5%);
        transform: translateX(0)
    }
}
.header-img1 {
    position: absolute;
    width: 200px;
    height: 197px;
    right: 0;
    bottom: -2px;
    z-index: 97
}
.header-img2 {
    position: absolute;
    width: 150px;
    height: 150px;
    right: 8px;
    top: 12px;
    z-index: 97;
    transform: rotate(180deg)
}
.event-type {
    color: #36c576
}
.event-name {
    font-size: 3.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}
.section-pad {
  padding: 50px 0 50px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      120deg,
      #0085d1e8,
      #00a79d9e
    ),
    url("../images/background/switzerland.webp")
      center/cover no-repeat;
  color: #fff;
  padding: 100px 0 80px;
}
#testimonial h2 {
    color: #00A79D !important;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(26, 166, 183, 0.25),
    transparent 45%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section .pill {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  /*border-color: rgba(255, 255, 255, 0.3);*/
  border-color: #00FFF0;
}

.hero-section .hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--dark-text);
  border: 1px solid rgba(11, 60, 93, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-section .hero-card::before {
  /*content: "";*/
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*height: 4px;*/
  /*background: linear-gradient(90deg, var(--teal-accent), var(--cta-coral));*/
}

.hero-section .icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-section .text-muted {
  color: #1C1F22 !important;
}

.hero-section .hero-card .text-muted {
  color: #1C1F22 !important;
}

.hero-title {
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: #fff;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #00FFF0, transparent);
  border-radius: 999px;
}

.hero-section h1 {
  font-size: clamp(2.4rem, 2.1rem + 1.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-section .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.lead-stats{
    color: #00A79D;
}
.hero-section p {
  font-size: 1rem;
  line-height: 1.7;
}

.hero-section .pill {
  font-size: 0.95rem;
  padding: 8px 18px;
  gap: 10px;
}

.hero-section .icon-circle {
  width: 42px;
  height: 42px;
}

.hero-section .btn {
  font-size: 1rem;
}

.hero-section .hero-card h5 {
  font-size: 1.35rem;
}

.hero-section .stat-card {
  padding: 16px;
}

.hero-section .stat-card .fw-semibold {
  font-size: 0.95rem;
}

.hero-section .stat-card .fs-4 {
  font-size: 1.35rem !important;
}

.hero-cta{
  width: max-content;
  display: inline-block;
  font-size: 18px;
}
.section-btn {
  width: max-content;
  display: inline-block;
  font-size: 20px;
}

.hero-badge {
  background: rgba(26, 166, 183, 0.15);
  color: var(--primary-blue);
  border: 1px solid rgba(26, 166, 183, 0.3);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.95rem;
}

.hero-highlights .highlight-item i {
  color: #fff;
}

.hero-card .stat-card {
  background: #f8fbfd;
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.hero-card .card-divider {
  height: 1px;
  background: rgba(11, 60, 93, 0.12);
}

.hero-meta {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 18px;
  border: 1px solid #00FFF0;
  background: rgb(255 255 255 / 25%);
  backdrop-filter: blur(6px);
}

.hero-meta .icon-circle {
  width: 38px;
  height: 38px;
}

.hero-meta .fw-semibold {
  color: #fff;
}

.hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(11, 60, 93, 0.12);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 166, 183, 0.12);
  color: var(--teal-accent);
}

.pill {
  border: 1px solid rgba(11, 60, 93, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-teal,
.btn-coral {
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(26, 166, 183, 0.25);
}

.btn-coral {
  box-shadow: 0 10px 20px rgba(231, 111, 81, 0.3);
}
.btn-coral {
    background-color: #FF9500;
    color: rgb(255, 255, 255);
    border-color: #FF9500;
}
.section-title {
  letter-spacing: -0.5px;
}
.stat-card {
  border: 1px solid rgba(11, 60, 93, 0.12);
  border-radius: 16px;
  padding: 20px;
  /*background: #fff;*/
  background: linear-gradient(135deg, #00A79D 0%, #0085D1 100%);
}
.intro-wrapper {
    position: relative;
    background: linear-gradient(135deg, #00A79D 0%, #0085D1 100%);
    padding: 50px 0px;
    overflow: hidden;
}
.intro-content {
    position: relative;
    z-index: 2;
}
.event-badge {
    display: inline-block;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.3);
    border-image: initial;
}
.slogan {
    font-family: "Great Vibes", cursive;
    font-size: 2.2rem;
    color: #ffce00;
    margin-bottom: 20px
}
.event-detail p {
    font-size: 1.6rem;
    margin: 5px 0;
    color: #fff
}
.agenda-btn {
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background-color: #00A79D;
    margin: 5px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(11 60 93 / .2)
}

.agenda-btn:hover {
    border: 2px solid #0B3C5D;
    color: #0B3C5D;
    background: #fff0;
    box-shadow: 0 4px 10px rgb(11 60 93 / .4)
}

.event-detail i {
    margin-right: 5px;
    font-size: 1.5rem;
    color: #fff
}
.main-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}
.intro-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    margin: 0px auto 25px;
}
.topics-wrapper {
            padding: 50px 0;
            background: #f8fafc;
            position: relative;
        }

        .topics-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .topics-label {
            color: #1AA6B7;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .topics-heading {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .topics-subheading {
            font-size: 1.2rem;
            color: #64748b;
            margin: 0 auto;
        }

        /* Topic Cards */
        .topic-card {
            background: #6dbfca38;
            border-radius: 20px;
            padding: 35px;
            height: 100%;
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid teal;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #0b3c5d 0%, #1aa6b7 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .topic-card:hover::before {
            transform: scaleX(1);
        }

        .topic-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .topic-icon-box {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, #0085D1 0%, #00A79D 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
        }

        .topic-card:nth-child(2) .topic-icon-box {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .topic-card:nth-child(3) .topic-icon-box {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .topic-card:nth-child(4) .topic-icon-box {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .topic-card:nth-child(5) .topic-icon-box {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .topic-card:nth-child(6) .topic-icon-box {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .topic-card:nth-child(7) .topic-icon-box {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .topic-icon-box i {
            font-size: 1.8rem;
            color: white;
        }

        .topic-heading {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .topic-text {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.2rem;
        }
.path-0 {
    animation: pathAnim-0 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}
@keyframes pathAnim-0 {
    0% {
        d: path("M 0,400 L 0,150 C 165.2,113.33333333333334 330.4,76.66666666666667 474,75 C 617.6,73.33333333333333 739.5999999999999,106.66666666666666 897,125 C 1054.4,143.33333333333334 1247.2,146.66666666666669 1440,150 L 1440,400 L 0,400 Z")
    }
    25% {
        d: path("M 0,400 L 0,150 C 200.93333333333334,133.6 401.8666666666667,117.2 536,104 C 670.1333333333333,90.8 737.4666666666667,80.8 877,89 C 1016.5333333333333,97.2 1228.2666666666667,123.6 1440,150 L 1440,400 L 0,400 Z")
    }
    50% {
        d: path("M 0,400 L 0,150 C 140.13333333333333,130.53333333333333 280.26666666666665,111.06666666666668 463,119 C 645.7333333333333,126.93333333333332 871.0666666666668,162.26666666666668 1041,172 C 1210.9333333333332,181.73333333333332 1325.4666666666667,165.86666666666667 1440,150 L 1440,400 L 0,400 Z")
    }
    75% {
        d: path("M 0,400 L 0,150 C 134.40000000000003,187.46666666666667 268.80000000000007,224.93333333333334 443,210 C 617.1999999999999,195.06666666666666 831.2,127.73333333333333 1004,109 C 1176.8,90.26666666666667 1308.4,120.13333333333333 1440,150 L 1440,400 L 0,400 Z")
    }
    100% {
        d: path("M 0,400 L 0,150 C 165.2,113.33333333333334 330.4,76.66666666666667 474,75 C 617.6,73.33333333333333 739.5999999999999,106.66666666666666 897,125 C 1054.4,143.33333333333334 1247.2,146.66666666666669 1440,150 L 1440,400 L 0,400 Z")
    }
}
.about-points {
    margin: 20px 0
}
.about-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px
}
.about-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #e2dfffba;
    border-radius: 50px;
    margin-right: 15px;
    color: #36c576;
    font-size: 25px;
    flex-shrink: 0
}
.about-keys p {
    margin: 5px 0 0
}
.about-content {
    margin: 40px 20px
}
.about-img {
    margin: 40px 20px
}

.about-img img {
    width: 400px
}

.about-card2 {
    padding: 0 20px
}

.about-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000
}

.about-content p,
.about-keys p {
    font-size: 18px;
    color: #000
}
.speakers {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px
}
.speakers .img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all 1s ease-out;
}
.speakers .speaker-img img {
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.speakers .speaker-social {
    position: absolute;
    z-index: 9;
    top: 91%;
    left: 43%;
    background: #007ab7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease-out;
    padding-top: 5px;
}
.speakers .speaker-social a {
    color: #fff;
    font-size: 25px;
}
.speaker-info {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: #000;
}

.speaker-info h4 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
}

.speaker-info h5 {
    color: #000
}
.speakers:hover .speaker-social {
    opacity: 1;
    animation: icons 1.5s linear infinite;
}
@keyframes icons{
    100% {
        transform: scale(1);
    }
    0% {
        transform: scale(1.1);
    }
}
.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}
#agenda {
    padding: 60px 0 60px 0;
    background-color: #f6f7fd
}

.section-header {
    position: relative;
    padding-bottom: 20px;
    text-align: center
}
.agenda-header h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #0B3C5D;
}
#agenda .agenda-card {
    box-shadow: rgba(11, 60, 93, 0.08) 0px 12px 24px;
    border-left: 7px solid var(--teal-accent);
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}
#agenda .agenda-time {
    font-size: 22px;
}
#agenda .agenda-title{
    color: #000;
    font-size: 25px;
    margin: 10px 0 0;
}
#agenda .agenda-des {
    font-size: 17px;
}
.speaker-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 12px;
    }
    
    .speaker-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(26, 166, 183, 0.3);
      box-shadow: 0 8px 16px rgba(11, 60, 93, 0.12);
      flex-shrink: 0;
    }
    
    .spk-name{
        font-size: 20px;
    }
    
    .spk-detail{
        font-size: 17px;
    }
    
    .spk-title{
        font-size: 22px;
    }
.pill {
      border: 1px solid rgba(11, 60, 93, 0.2);
      border-radius: 999px;
      padding: 6px 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .agenda-card .pill {
      border: none;
      color: #fff;
      box-shadow: 0 10px 18px rgba(11, 60, 93, 0.15);
    }
    
    .agenda-card .pill i {
      color: #fff;
    }
    
    .agenda-card .pill-session {
      background: linear-gradient(135deg, #1aa6b7, #2ec4b6);
    }
    
    .agenda-card .pill-time {
      background: linear-gradient(135deg, #FF9500, #F4A261);
    }
.text-teal {
    color: var(--teal-accent);
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: rgba(11, 60, 93, 0.16) 0px 18px 35px;
}
.attendee-pass {
    padding: 50px 0;
}
.who-section {
  background: linear-gradient(116deg, rgba(26, 166, 183, 0.08), #00A79D);
}
.who-section .who-des{
    font-size: 1.2rem;
} 
/*.who-section h2{*/
/*    color:  #E76F51;*/
/*}*/
.who-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11, 60, 93, 0.1);
  box-shadow: 0 10px 20px rgba(11, 60, 93, 0.06);
  height: 100%;
  font-weight: 600;
  color: var(--primary-blue);
}

.who-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 166, 183, 0.15);
  color: var(--teal-accent);
  flex-shrink: 0;
}

.about-section {
  background: var(--light-bg);
}

.about-section .section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: var(--teal-accent);
  border-radius: 999px;
}

.about-grid-title {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 14px;
}

.about-section .stat-card {
  background: #fff;
  border: 1px solid rgba(11, 60, 93, 0.1);
  box-shadow: 0 10px 24px rgba(11, 60, 93, 0.06);
}

.about-section .stat-card p {
  color: #4a4a4a;
}
.booking-section {
    padding: 0 50px 30px;
    margin: 0 0 10px 0
}

.secure-spot {
    position: relative;
    background: #493fb9;
    color: #fff;
    padding: 30px 50px;
    box-shadow: 0 8px 16px rgb(0 0 0 / .2);
    border-radius: 15px
}

.secure-spot img.bottom-right {
    position: absolute;
    bottom: -5px;
    right: -14px;
    width: 320px;
    height: auto;
    z-index: 1;
    transition: all 2s ease-out
}

.secure-spot:hover img.bottom-right {
    right: -110px
}

.header-section .agenda-btn:hover {
    color: #fff
}

.secure-spot .agenda-btn {
    border: 3px solid #36c576
}

.countdown-container {
    padding: 20px 0
}

.countdown-timer {
    display: flex;
    gap: 20px
}

.countdown-item {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 10px;
    width: 130px;
    text-align: center;
    box-shadow: 0 4px 8px rgb(255 255 255 / .2);
    border: 1px solid rgb(255 255 255 / .2);
    transition: transform 0.3s ease, background 0.3s ease
}

.countdown-item:hover {
    transform: scale(1.1);
    background: rgb(255 255 255 / .15)
}

.count-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px
}

.unit {
    font-size: 1rem
}

.booking-section p {
    font-size: 18px
}

.booking-section .agenda-btn:hover {
    color: #fff
}

.question-section {
    color: #fff;
    background: #1e8ad3;
    padding: 20px
}

.contact-form {
    margin: 20px auto
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #FFFFFF;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #fff0;
    transition: border-color 0.3s ease;
    background-color: #fff0;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0B3C5D;
    outline: none
}

.submit-btn {
    width: 100%;
    padding: 15px 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background-color: #2f5f02;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease
}

.submit-btn:hover {
    background-color: #3d7c01;
    transform: scale(1.05)
}

.ticket-section {
    background-color: #fff0;
    background-image: linear-gradient(360deg, #ffffff80 0%, #9de6be 80%), url(../images/background/pattern_line.png);
    background-attachment: fixed;
    opacity: 1;
    padding: 50px 25px
}

.ticket-cards {
    position: relative;
    padding: 30px 35px;
    margin: 0 15px
}

.contact-card {
    box-shadow: rgb(0 0 0 / .45) 0 25px 20px -20px;
    border-radius: 15px
}

.contact-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px
}

.gif-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: auto;
    z-index: 10;
    padding: 10px;
    transform: rotate(15deg);
    border-radius: 50%;
    animation: zoomInOut 2s infinite
}

@keyframes zoomInOut {
    0%,
    100% {
        transform: scale(1) rotate(15deg)
    }
    50% {
        transform: scale(1.1) rotate(15deg)
    }
}

.register-card {
    color: #000
}

.register-card h3 {
    font-size: 1.6rem;
    font-weight: 700
}

.price-details {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #36c576;
    margin: 0
}

.benefits {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    font-size: 1.1rem
}

.benefits li {
    margin: 5px 0
}

.discount-heading {
    color: red
}

.group-discounts li {
    color: red;
    font-size: 18px
}

.benefits li::before {
    content: "✔";
    color: #00A79D;
    margin-right: 10px;
    font-size: 1rem
}

.footer {
    padding: 30px 0;
    background: #000
}

.our-moto {
    color: #00A79D;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 0
}

.footer ul {
    list-style: none;
    padding-left: 0
}

.footer ul li a {
    text-decoration: none;
    font-size: 22px;
    line-height: 24px;
    display: inline-block;
    color: #fff;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}

.footer a:hover {
    text-decoration: underline;
    color: #00A79D;
    transition: text-decoration 0.5s cubic-bezier(.645, .045, .355, 1)
}

.footer .footer-widget-social {
    gap: 10px;
    margin: 18px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 0;
    text-align: center;
    width: 73%
}

.footer .footer-widget-social a {
    height: auto;
    width: 43px;
    line-height: 46px;
    border-radius: 50%;
    font-size: 22px;
    color: #00A79D;
    transition: all 1s ease-out
}

.footer-heading {
    font-size: 32px;
    font-weight: 500;
    color: #00A79D;
}

.footer-menu {
    line-height: 35px;
    color: #fff
}

.footer-menu ul li {
    font-size: 19px
}

.footer .footer-copyright p {
    color: #919191
}

.footer .footer-widget-social a:hover {
    transform: scale(1.3)
}

.tree-section {
    background: #efeeff;
    position: relative
}

.tree-section .bottom-right-image {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 350px;
    height: auto;
    z-index: 1
}

.tree-img {
    max-width: 80%
}

.sec-details {
    color: #000;
    font-size: 18px
}

.sec-details h3 {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 15px
}

.sec-details p {
    font-size: 20px;
    line-height: 1.5
}

.meetup-section {
    padding: 60px 0;
    background: #fff
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.6rem;
    color: #36C576;
    font-weight: 600;
    margin-bottom: 1.5rem
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #F2F4F5;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgb(99 102 241 / .15)
}

.features-icon {
    width: 40px;
    height: 40px;
    background: #6366f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0
}

.cta-section {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgb(255 255 255 / .1);
    border-radius: 50%;
    transform: translate(50%, -50%)
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: .9;
    position: relative;
    z-index: 2
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem
}

.countdown-item {
    background: rgb(255 255 255 / .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease
}

.countdown-item:hover {
    background: rgb(255 255 255 / .25);
    transform: translateY(-2px)
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #fff
}

.countdown-label {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 3rem 0
}

.attendee-section {
    background: #f8f9fa;
    padding: 2rem 2rem
}

.attendee-card {
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .08);
    transition: all 0.3s ease;
    border-left: 4px solid #493fb9
}

.attendee-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / .12)
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: .5rem
}

.regional-section {
    background: linear-gradient(135deg, #493fb9 0%, #36c576 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.regional-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="regional-grain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="25" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23regional-grain)"/></svg>')
}

.regional-content {
    position: relative;
    z-index: 2;
    text-align: center
}

.regional-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgb(0 0 0 / .1)
}

.regional-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: .95
}

.regional-description p {
    margin-bottom: 20px
}

.highlight-text {
    font-size: 1.15rem;
    font-weight: 600;
    background: rgb(255 255 255 / .1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid rgb(255 255 255 / .3);
    backdrop-filter: blur(10px)
}

.regional-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.feature-badge {
    background: rgb(255 255 255 / .15);
    border-radius: 25px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .2);
    transition: all 0.3s ease
}

.feature-badge:hover {
    background: rgb(255 255 255 / .25);
    transform: translateY(-2px)
}

.feature-badge i {
    font-size: 1.2rem;
    opacity: .9
}

.feature-badge span {
    font-weight: 600;
    font-size: .95rem
}

.meetup-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.meetup-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.3"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.3"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: .1
}

.section-content {
    position: relative;
    z-index: 2
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.why-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden
}
.why-section .section-title {
    font-size: 30px;
}

/*.why-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white ;opacity="0.3"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.3"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.3"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>);opacity:.1}}*/
    .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stats-badge {
    background: rgb(255 255 255 / .9);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgb(0 0 0 / .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .2)
}

.stats-badge i {
    background: linear-gradient(135deg, #0B3C5D 0%, #1AA6B7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-right: 8px
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / .2)
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgb(0 0 0 / .12)
}

.feature-card.breakfast::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%)
}

.feature-card.global::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)
}

.feature-card.value::before {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)
}

.feature-card.impact::before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%)
}

.feature-card.reach::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
}

.feature-card.breakfast .feature-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%)
}

.feature-card.global .feature-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)
}

.feature-card.value .feature-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)
}

.feature-card.impact .feature-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%)
}

.feature-card.reach .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50
}

.feature-description {
    color: #6c757d;
    text-align: center;
    line-height: 1.6
}

.price-highlight {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3em
}

.btn-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(0 0 0 / .15);
    text-decoration: none;
    display: inline-block
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgb(0 0 0 / .25);
    color: #fff
}

.btn-outline-custom {
    border: 2px solid;
    background: #fff0;
    color: #667eea;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block
}

.btn-outline-custom:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px)
}

::placeholder {
    color: #fff;
    opacity: 1
}

#attendees h2 {
    color: #0B3C5D;
}

#attendees logo-slider {
    --image-size: 100px;
    padding: 10px;
    overflow: hidden;
    max-width: auto;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex
}

#attendees logo-slider div {
    display: flex;
    position: relative;
    animation: marquees 70s linear infinite;
    justify-content: space-around
}

@keyframes marquees {
    0% {
        transform: translateX(0%)
    }
    100% {
        transform: translateX(-80%)
    }
}

#attendees logo-slider img {
    display: block;
    min-width: var(--image-size);
    height: var(--image-size);
    margin: 0 .5vw
}

#attendees {
    /*background: #f8f9fa;*/
    padding: 25px 0 30px;
}

#sponsor h2,
#sponsor h3 {
    color: #493fb9
}

#sponsor .supporters-wrap {
    margin-bottom: 10px
}

#sponsor .supporter-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100px
}

.supporter {
    padding: 10px;
    margin: 0;
    background: #fff0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgb(0 0 0 / .3);
    box-shadow: rgb(2 10 68 / .073) 0 -50px 36px -28px inset
}

#sponsor img {
    transition: all 0.4s ease-in-out;
    width: 200px
}

.counter-section {
    color: #000;
    text-align: center;
    margin-top: -50px;
    z-index: 9;
    position: relative
}

.enquire-btn {
    clear: both;
    position: fixed;
    display: block;
    list-style-type: none;
    left: -50px;
    top: 45%;
    z-index: 9;
    transform: rotate(90deg)
}

.enquire-btn a {
    background-color: #36c576;
    border-radius: 0;
    font-size: 18px;
    -webkit-transition: width 0.5s, background-color 0.1s;
    transition: width 0.5s, background-color 0.1s;
    color: #fff;
    padding: 10px 18px
}

.enquire-btn a:hover {
    border-color: #36c576;
    background-color: #fff0;
    color: #36c576
}

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999
}

.snowflake {
    position: absolute;
    color: #CCC;
    font-size: 20px;
    line-height: 1;
    animation: fall linear infinite
}

@keyframes fall {
    0% {
        transform: translateY(-100vh)
    }
    100% {
        transform: translateY(100vh)
    }
}

.price-card {
    background: #493FB9;
    box-shadow: 0 30px 60px 0 rgb(0 0 0 / .1);
    border-radius: 15px;
    position: relative
}

.top-right-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px
}

.price-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.discount {
    color: gold;
    font-size: 18px;
    animation: blink2 1.5s infinite
}

@keyframes blink2 {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
}

#popups.popup-overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999
}

#popups .popups {
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

#popups .popups img {
    width: 55%;
    cursor: pointer;
    border-radius: 5px;
    margin: auto;
    display: none
}

.close-btnss {
    width: 56%;
    margin-bottom: -31px;
    position: relative
}

#popups #close-btns {
    background: #36c576;
    color: #fff;
    border: 1px solid #36c576;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 26px
}

.testimonial {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
    overflow: hidden;
    padding: 30px 0
}

.testimonial p.h2 {
    font-size: 125px;
    font-weight: 700;
    color: #493fb9;
    -webkit-text-fill-color: #493fb9;
    line-height: 1
}

.testimonial-heading {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px
}

.sub-heading {
    font-size: 18px
}


.event-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem
}

.detail-item {
    display: flex;
    align-items: center;
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgb(3 255 164 / 97%);
    transition: all 0.3s ease
}

.detail-item:hover {
    background: rgb(255 255 255 / .2);
    transform: translateY(-2px)
}

.detail-icon {
    font-size: 1.2rem;
    margin-right: .8rem;
    color: #36c576
}

.detail-text {
    font-size: 1.1rem;
    font-weight: 500
}

.impact-section {
    background: rgb(255 255 255 / .05);
    backdrop-filter: blur(15px);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.impact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #36c576
}

.impact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgb(255 255 255 / .8);
    margin-bottom: 1.5rem
}

.impact-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fbbf24;
    text-align: left;
    padding: 1rem;
    margin-bottom: 25px;
    background: rgb(251 191 36 / .1);
    border-radius: 12px;
    border-left: 4px solid #fbbf24
}

.speakers .speaker-title {
    color: #000;
    margin-bottom: 0;
    font-size: 18px
}

.speakers .speaker-company {
    color: #00A79D;
    margin-bottom: 0;
    font-size: 22px;
}

@keyframes moveSmallBefore {
    0% {
        clip-path: circle(20% at 95% 5%);
        transform: translateX(0)
    }
    50% {
        clip-path: circle(18% at 97% 5%);
        transform: translateX(3px)
    }
    100% {
        clip-path: circle(19% at 95% 5%);
        transform: translateX(0)
    }
}

@keyframes waveBackground {
    0% {
        background-position: 0% 40%
    }
    100% {
        background-position: 100% 40%
    }
}

.speakers-modal .modal-body p {
    text-align: justify
}
.accent-wrapper {
    /*width: 35%;*/
    margin: auto;
    overflow: hidden;
}
.accent-line {
    width: 60%;
    height: 4px;
    border-radius: 2px;
    /*background: linear-gradient(90deg, #00A79D, #FF9500);*/
    background: #FF9500;
    margin: 20px auto;
    border-radius: 2px;
    animation: moveBar 6s linear infinite;
}
@keyframes moveBar {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
@media (max-width:1399px) {
    .hero-section h1{
        font-size: 42px;
    }
    .countdown-grid {
        display: flex
    }
    .header-img2 {
        width: 170px;
        height: 170px
    }
    .header-img1 {
        width: 215px;
        height: 215px
    }
    .navbar-nav .nav-link {
        font-size: 18px;
        margin-right: 5px
    }
    .br-tree {
        display: none
    }
    .tree-section .bottom-right-image {
        right: 0;
        width: 270px
    }
}

@media (max-width:1199px) {
    .hero-section h1 {
        font-size: 40px;
    }
    .hero-section .lead {
        font-size: 16px;
    }
    .why-section .section-title {
        font-size: 23px;
    }
    .stats-badge {
        font-size: 13px;
        padding: 12px 15px;
    }
    .hero-content {
        padding-top: 5rem
    }
    .countdown-grid {
        display: grid
    }
    .speakers .speaker-title {
        font-size: 15px
    }
    .speakers .speaker-company {
        font-size: 18px
    }
    .footer .footer-widget-social {
        flex-wrap: wrap;
        justify-content: start
    }
    .header-img2 {
        width: 155px;
        height: 155px
    }
    .header-img1 {
        width: 200px;
        height: 200px;
        bottom: 0
    }
    .secure-spot img.bottom-right {
        width: 200px
    }
}

@media (max-width:991px) {
    .schedule-item .speakers {
        height: 63px !important
    }
    .hero-content {
        padding-top: 105px;
        padding-bottom: 50px
    }
    .about-wrap:nth-child(1) {
        order: 2
    }
    .about-wrap:nth-child(2) {
        order: 1;
        margin-top: 40px
    }
    .about-wrap:nth-child(3) {
        order: 3
    }
    .about-wrap:nth-child(4) {
        order: 5
    }
    .about-wrap:nth-child(5) {
        order: 6
    }
    .about-wrap:nth-child(6) {
        order: 5
    }
    .about-img {
        margin: 0 20px 10px 20px
    }
    .navbar {
        background: #000
    }
    .header-img2 {
        width: 135px;
        height: 135px
    }
    .secure-spot img.bottom-right {
        display: none
    }
    .header-img2 {
        width: 160px;
        height: 160px
    }
}

@media (max-width:768px) {
    .section-title {
        font-size: 2rem
    }
    .cta-section {
        padding: 2rem
    }
    .cta-title {
        font-size: 1.5rem
    }
    .countdown-number {
        font-size: 2rem
    }
    .regional-section {
        padding: 40px 0
    }
    .regional-title {
        font-size: 2.2rem
    }
    .regional-description {
        font-size: 1rem
    }
    .regional-features {
        flex-direction: column;
        align-items: center
    }
    .feature-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center
    }
    .meetup-section {
        padding: 40px 0
    }
    .section-title {
        font-size: 2rem
    }
    .feature-card {
        padding: 25px 20px
    }
    .button-group {
        flex-direction: column
    }
    .stats-container {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width:767px) {
    .feature-badge {
        max-width: 100%
    }
    .event-name {
        width: 100%;
        font-size: 2.3rem
    }
    .about-description {
        margin-top: -60px
    }
    .header-img2,
    .header-section::after {
        display: none
    }
    .audiences {
        margin-top: 16px
    }
    .countdown-container,
    .countdown-timer {
        justify-content: start;
        flex-wrap: wrap
    }
}

@media (max-width:600px) {
    .register-card {
        padding: 20px 0 0;
        margin: 0
    }
    .contact-card {
        margin: 0
    }
    .booking-section {
        padding: 20px
    }
    .header-content,
    .ticket-section {
        padding: inherit
    }
}

@media (max-width:576px) {
    .header-section {
        height: 100vh !important
    }
    .countdown-timer {
        gap: 10px
    }
    .booking-section {
        padding: 20px 0
    }
    .gif-icon {
        display: none
    }
    .header-content .event-name {
        font-size: 30px
    }
    .event-detail p {
        font-size: 19px
    }
    .event-detail .calendar-icon i {
        font-size: 16px
    }
    .about-content h2,
    .secure-spot h2 {
        font-size: 36px
    }
}

@media(max-width:500px) {
    .footer ul {
        justify-content: center;
        padding-left: 0;
        flex-wrap: wrap
    }
    .footer ul li {
        margin-right: 12px
    }
    .footer ul li a {
        line-height: 35px
    }
    .footer-logo a img {
        width: 80%
    }
}

@media (max-width:443px) {
    .header-section {
        height: 80vh !important
    }
    .about-content {
        margin: 40px 5px
    }
    .contact-card h3 {
        font-size: 16px
    }
    .header-content .event-name {
        font-size: 35px;
        line-height: inherit
    }
    .slogan {
        font-size: 2rem
    }
    .countdown-item {
        width: 110px;
        padding: 10px
    }
    .secure-spot {
        padding: 10px 15px
    }
    .ticket-section {
        padding: 15px 0
    }
    .social-icon {
        flex-wrap: wrap
    }
}

@media only screen and (min-width:200px) and (max-width:991px) {
    .bottom-right-image {
        display: none
    }
}

@media (max-width:767px) {
    .why-section .stats-container{
        flex-direction: row;
    }
    .why-section .stats-badge{
        font-size: 15px;
        padding: 12px;
    }
    .why-section .section-title{
        font-size: 25px;
    }
    #popups .popups img {
        width: 80%
    }
    .close-btnss {
        width: 81%
    }
    .ticket-cards {
        margin: 0
    }
    .ticket-cards {
        padding: 30px 10px
    }
}

@media (max-width:575px) {
    .main-title{
        font-size: 30px;
        margin-bottom: 15px;
    }
    .hero-section h1 {
        font-size: 27px;
    }
    .intro-description {
        font-size: 14px;
    }
    .venue-wrap.row>* {
        width: 50%
    }
    #popups .popups img {
        width: 99%
    }
    .close-btnss {
        width: 100%
    }
}

@media (max-width:486px) {
    .enquire-btn {
        top: inherit;
        bottom: 10%
    }
    .why-section .section-title {
        font-size: 20px;
    }
    .why-section .section-subtitle {
        font-size: 1rem
    }
}

@media (max-width: 445px){
    .topics-heading {
        font-size: 35px;
        margin-bottom: 10px;
    }
}

@media (max-width:436px) {
    .section h2 {
        font-size: 30px
    }
}

@media (max-width:420px) {
    .main-title {
        font-size: 2.5rem
    }
    .impact-title {
        font-size: 1.5rem
    }
}