:root {
    /* Colors */
    /* --color-primary-maroon: #800000;
    --color-secondary-light: #f0e6e6;
    --color-accent-gold: #ffd700;
    --color-neutral-dark: #333333;
    --color-neutral-light: #f5f5f5; */

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;

    /* Font Sizes */
    --font-size-base: 16px;
}

/* Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    font-weight: 700;
}

a {
   font-family: var(--font-primary);
    text-decoration: none;
}

p {
    font-size: var(--font-size-base);
    /* font-family: var(--font-primary); */
    font-weight: 400;
}

/* =========================
   NAVBAR BASE
========================= */
/* Normal Navbar */
.navbar {
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  z-index: 999;
}



/* Sticky Active */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff; /* ya apna color */
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  animation: slideDown 0.3s ease;
}

/* Smooth slide animation */
/* @keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */

.top-navs .nav-cont {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* =========================
   LOGO
========================= */
.logo img {
  max-height: 50px;
}

/* =========================
   RIGHT SIDE ALIGNMENT
========================= */
/* .nav-links {
  margin: auto;
} */

.menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.menu li a {
  text-decoration: none;
  color: #0D0D0D;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s;
}

.menu li a:hover {
  color: #28a745;
}

/* =========================
   BUTTON
========================= */
.btn-ticket {
 background: #02A845;
border: 1px dashed #000000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-left: 20px;
  transition: 0.3s;
}

.btn-ticket:hover {
  background: #218838;
}

/* Hide mobile-only by default */
.mobile-only {
  display: none;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  display: block;
}

/* ================= ABOUT SECTION ================= */

.about-sec {
    background-repeat: no-repeat;
    position: relative;
    background-image: url(../images/ab.png);
    background-size: contain;
    background-position: top;
    padding: 140px 0 30px;
    margin-top: -100px;
    border-radius: 40px 40px 0 0;
    z-index: 2;
}

/* ================= FLOATING COUNTER ================= */

.counter-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.counter-box {
  background: linear-gradient(268.68deg, #001609 0.98%, #02A846 112.09%);
  border: 1px solid #000000;
  color: #fff;
  padding: 25px 40px;
  margin-top: 140px;
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.content-area {
    margin-top: 84px;
    background-image: url(../images/abt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    
}

.counter-box h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 5px;
}

.counter-box p {
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
}

.counter-box {
  background: linear-gradient(90deg, #02A846 0%, #001606 100%);
  padding: 30px 20px;
  border-radius: 12px;
  color: #fff;
}

.counter-item {
  position: relative;
}

/* DOUBLE DOT */
.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 35%;
  width: 6px;
  height: 20px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 2px, transparent 2px);
  background-size: 6px 10px;
  background-repeat: repeat-y;
}

/* Number Style */
.counter-item h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.counter-item p {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 5px 0 0;
  opacity: 0.8;
}

/* ================= TEXT ================= */

.title {
  font-size: 42px;
  font-weight: 700;
}

.title span {
  color: #0a8f3e;
}

.desc {
  color: #555;
  margin-top: 15px;
}

.desc-box {
  background: #EFEFF0;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 15px;
  color: #2E2E2E;
}

.about-dot{
    font-weight: 500;
}

.about-dot span{
  color: #0a8f3e;
  font-weight: 500;

}

/* ================= BUTTONS ================= */

.btn-green {
 background: linear-gradient(0deg, #02A846, #02A846) !important;
border: 1px solid #000000 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
}

.btn-green:hover {
  background: #000000 !important;
  color: #fff;
}

.ab-right-img img{
    border-radius: 38px;
}



/* ================= STATS SECTION ================= */

.stats-section {
  padding: 10px 0 30px;
}

.stats-top-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  font-weight: 500;
}

.stats-top-text .dot {
  height: 6px;
  width: 6px;
  background: #0a8f3e;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

.stats-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}

.highlight {
  background: linear-gradient(266.79deg, #01431C 0%, #03A947 103.68%);
  border: 1px solid #000000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ================= STAT BOX ================= */

.stat-box {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 25px 15px;
  border-radius: 10px;
  transition: 0.3s ease;
  height: 100%;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(180deg, #02A846 0%, #01421C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mini-line {
  width: 40px;
  height: 3px;
  background: #f4a261;
  margin: 10px auto;
}

.stat-box p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* ================= BRAND FOCUS SECTION ================= */

.brand-focus-sec {
  padding: 60px 0;
  background: url('../images/brand-bg.png') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #fff;
}

/* Optional dark overlay */
.brand-focus-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 30, 0.15);
}

.brand-focus-sec .container {
  position: relative;
  z-index: 2;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-title span {
  background: #02933D;
  padding: 4px 10px;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
}

/* ================= CARD ================= */

.focus-card {
  background: rgba(255,255,255,0.05);
  /* border: 1px solid rgba(255,255,255,0.3); */
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: 0.3s ease;
  height: 100%;
}

.row > div:nth-child(odd) .focus-card {
  border: 1px solid #02933D;
}

.row > div:nth-child(even) .focus-card {
  border: 1px solid rgba(255,255,255,0.3);
}
.focus-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.focus-card p {
  margin-top: 15px;
  font-size: 16px;
  color: #fff;
}

/* ================= ICON ================= */

.icon {
  width: 50px;
  height: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
}

.green-bg {
  background: #02933D;
  color: #fff;
}

.white-bg {
  background: #ffffff;
  color: #02933D;
}

.terms{
    font-weight: 500;
    text-decoration: underline;
    font-style: italic;
    font-size: 18px;
    cursor: pointer;
}

/* ================= SECTION ================= */

.know-section {
 background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);

  padding: 60px 0;
}

/* Small top text */
.top-small-text {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.top-small-text .dot {
  height: 6px;
  width: 6px;
  background: #02933D;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-title span {
  background: linear-gradient(266.79deg, #01431C 0%, #03A947 103.68%);
border: 1px solid #000000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ================= CARD ================= */

.know-cards {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: left;
}

.know-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.know-cards img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.card-content {
  padding: 18px;
}

.card-content h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.card-content p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #64748B;
}

/* ================= BUTTON ================= */

.view-btn {
  background: #02933D;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
}

.view-btn:hover {
  background: #016a2c;
  color: #fff;
}


/* ================= SECTION BACKGROUND ================= */

.joining-sec {
  background: url('../images/brand-bg.png') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #fff;
}

/* Dark overlay */
.joining-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 25, 0.05);
}

.joining-sec .container {
  position: relative;
  z-index: 2;
}

/* ================= TITLE ================= */

.joining-title {
  font-size: 32px;
  font-weight: 700;
}

.joining-title span {
    background: linear-gradient(266.79deg, #01431C 0%, #03A947 103.68%);
    border: 1px solid #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
}

/* ================= DIAMOND GRID ================= */

.diamond-wrapper {
  margin-top: 60px;
}

.diamond-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.second-row {
  margin-top: -40px;
}

/* ================= DIAMOND CARD ================= */

.diamond-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 90px; 
}

.diamond-card {
  width: 180px;
  height: 180px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #02933D;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.diamond-card:hover {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.diamond-content {
  transform: rotate(-45deg);
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  padding: 10px;
}

body.menu-open {
  overflow: hidden;
}

/* ================= PRICE SECTION ================= */

.price-card {
  background: url('../images/Tocket-bg.png') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #222;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
}

.price-card .container {
  position: relative;
  z-index: 2;
}

/* Title */
.price-title {
  font-size: 28px;
  font-weight: 700;
}

.price-title span {
  background: linear-gradient(266.79deg, #01431C 0%, #03A947 103.68%);
  color: #fff;
  border: 1px solid #000000;
  padding: 4px 10px;
  border-radius: 6px;
}

.small-text {
  font-size: 14px;
  font-weight: 500;
}

.pricing-box p{
    color: #9B97A3;
}
.price-ist p{
    color: #fff;
}

.dot {
  height: 6px;
  width: 6px;
  background: #02933D;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

/* ================= PRICING BOX ================= */


.pricing-box {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: left;
    overflow: hidden;
    height: 100%;
}

.pricing-box:hover {
  transform: translateY(-6px);
}

.btn:focus{
    box-shadow: none !important;
}

.pricing-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
}

.pricing-box ul {
  padding-left: 8px;
  font-size: 14px;
  margin-bottom: 90px;
}

.pricing-box ul li {
  color: #9B97A3;
  margin-bottom: 6px;
  list-style-type: none;
}


/* ================= TICKET CUT CIRCLE (ALL CARDS) ================= */

.pricing-box::before,
.pricing-box::after {
  content: "";
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #f7f7f7; /* section bg color */
  border-radius: 50%;
  z-index: 2;
}

.pricing-box::before {
  left: -18px;
}

.pricing-box::after {
  right: -18px;
}

/* ================= SPECIAL FIRST CARD ================= */

.pricing-box:hover {
  background: linear-gradient(133.03deg, #02A846 0%, #001606 100%),
              url('../images/card.png');
  background-size: cover;
  background-blend-mode: overlay;
  color: #fff;
}
.pricing-box:hover p{
    color: #FFFFFF !important;
}
.pricing-box:hover ul li {
  color: #ffffff;
  list-style-type: none !important;
}

/* ================= DASHED DIVIDER ================= */

.divider-dash {
    border-top: 1px dashed rgba(0,0,0,0.15);
    margin: 36px 0 20px;
}

.pricing-box:hover .divider-dash {
  border-top: 1px dashed rgba(255,255,255,0.6);
}

.pricing-box:hover .tax-text {
    font-size: 12px;
    color: #ffffff;
}

.pricing-box:hover .btn-green{
  background: #ffffff !important;
  color: #02933D !important;
}

.pricing-box:hover .badge-discount.yellow {
    background: #000000;
    coolor: #fff;
}


.pricing-box .btn-green {
    bottom: 26px;
    position: absolute;
    width: 88%;
    margin: auto;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

/* ================= BADGE ================= */

.badge-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.mt-31{
    margin-top: 42px;
}

.group-box .badge-discount {
    position: relative;
   
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    max-width: 80px !important;
    text-align: center;
}

.group-item h5 {
    margin: 31px 0px 20px;
    font-size: 18px;
}

.badge-discount.yellow {
  background: #FFFA3C;
}

.badge-discount.pink {
  background: #BE185D;
  color: #fff;
}

/* ================= TAX TEXT ================= */

.tax-text {
  font-size: 12px;
  color: #777;
}

.special-card .tax-text {
  color: #d9ffe9;
}

/* ================= BUTTONS ================= */

.btn-dashed {
  border: 1px dashed #000000 !important;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.btn-green {
  background: #02933D;
  color: #fff;
}

.white-btn {
    background: #ffffff !important;
        padding: 10px 20px !important;
    color: #02A846 !important;
    border: 1px dashed #02A846 !important;
}

.white-btn:hover {
  background: transparent;
  color: #ffffff;
  border: 2px dashed #ffffff;
}

.btn-green:hover {
  background: #017a30;
}

/* ================= GROUP BOX ================= */

.group-box {
  text-align: left;
}

/* Title center */
.grp-text {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Two column layout */
.group-flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Each half 50% */
.group-item {
  width: 50%;
}

/* Price row (₹ + tax same line) */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 5px;
}

/* Price */
.group-item h4 {
  font-weight: 700;
  margin: 0;
}

/* Tax text */
.group-item .tax-text {
  font-size: 12px;
  color: #777;
}

/* Delegate badge */
.delegate-badge {
  display: inline-block;
  background: #d8f3e4;
  color: #02933D;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  margin: 18px 0px;
}

/* Description */
.group-box p {
  margin-top: 20px;
  color: #9B97A3;
  font-size: 14px;
}

/* Button full width */
.group-box .btn {
  width: 90%;left: 5%;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .group-flex {
    flex-direction: column;
  }

  .group-item {
    width: 100%;
  }
}

/* ================= SECTION ================= */

.testimonial-sec {
  background: url('../images/slide-bg.png') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #fff;
}

.testimonial-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 25, 0.75);
}

.testimonial-sec .container {
  position: relative;
  z-index: 2;
}

/* Title */
.testi-title {
  font-size: 32px;
  font-weight: 700;
}

.testi-title span {
   background: linear-gradient(266.79deg, #01431C 0%, #03A947 103.68%);
  padding: 4px 12px;
  border: 1px solid #ffffff;
  border-radius: 6px;
}

/* Card */
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #02933D;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  min-height: 400px;
  height: 100%;
}

.testi-card p {
  font-size: 14px;
  margin: 15px 0;
}

.testi-card h6 {
  margin: 10px 0 0;
  font-weight: 600;
}

.testi-card span {
  font-size: 12px;
  color: #ccc;
}

.quote-icon {
  background: #02A846;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 18px;
}

/* Custom Nav */
.custom-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.custom-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  transition: 0.3s;
}

.custom-nav button:hover {
  background: #02A846;
  border-color: #02A846;
}


/* ================= FAQ SECTION ================= */

.faq-sec {
  padding: 60px 0;
  background: #f7f7f7;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
}

.faq-title span {
background: linear-gradient(266.79deg, #01431C 0%, #03A947 103.68%);
  color: #fff;
  border: 1px solid #000000;
  padding: 4px 10px;
  border-radius: 6px;
}

.small-top {
  font-size: 14px;
  font-weight: 500;
}

.dot {
  height: 6px;
  width: 6px;
  background: #02933D;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

/* ================= FAQ ITEM ================= */

.faq-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}

.faq-item.active {
  border: 1px solid #02933D;
  color: #02A846;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  
}

.faq-answer {
  margin-top: 10px;
  font-size: 16px;
  display: none;
  color: #9EA0AB;
}

.faq-item.active .faq-answer {
  display: block;
  
}

/* Arrow */
.arrow i {
  transition: 0.3s;
}

.faq-item.active .arrow i {
  transform: rotate(90deg);
}

/* Hover */
.faq-item:hover {
  transform: translateY(-3px);
}

/* ================= FOOTER ================= */

.footer-sec {
  background: url('../images/slide-bg.png') no-repeat center center;
  background-size: cover;
  padding: 40px 0 16px;
  position: relative;
  color: #fff;
}

.footer-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 25, 0.72);
}

.footer-sec .container {
  position: relative;
  z-index: 2;
  max-width: 1260px;
}

/* LEFT SIDE */
.footer-logo {
  max-width: 180px;
}

.footer-left p {
  font-size: 13px;
  color: #cde7da;
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  border: 1px solid #02A846;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 6px;
  color: #02A846;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #02A846;
  color: #fff;
}

.dsci-logo {
  max-width: 150px;
}

/* CONTACT CARD */
.contact-card {
  background: linear-gradient(283.75deg, #007C22 3.82%, #005618 97.4%);
height:100%;
  padding: 20px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.profile-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
}

.contact-content h6 {
  font-size: 10px;
  margin: 0;
}

.contact-content a:hover{
    color: #ffffff;
}

.contact-content h5 {
  margin: 5px 0;
  font-weight: 600;
  font-size: 1rem;
}

.contact-content p {
  margin: 0;
  font-size: 13px;
}

.contact-content a {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}

/* MAP */
.map-box iframe {
  border-radius: 12px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #007921;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #cde7da;
}


/* ---------float-------- */

/* .floating-banner {
    height: 12%;
    width: 42%;
    margin-left: 30%;
    border-radius: 50px 50px 0 0;
    padding: 10px 130px;
} */

.floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
background: linear-gradient(90deg, #02A846 0%, #01421C 100%);
/* height: 12%; */
    padding: 10px 32px 10px;
    z-index: 1000;
    display: block;
    margin-left: 25%;
    border-radius: 60px 60px 0 0;

}


.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 0 10px;
    color: #ffffff;
}

.icons-dsci {
    font-size: 42px;
}

.date-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.date, .location {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0px;
    white-space: nowrap;
}

.hashtags {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.hashtags p{
    margin-bottom: 8px;
}

.location-text{
    font-size: 24px;
    font-weight: 700;
}

.date-text{
    font-size: 24px;
    font-weight: 700;
}


.more-content {
  display: none;
}

.more-content.active {
  display: block;
}

.speaker-modal{
  border-radius:20px;
  padding:20px;
  position:relative;
}

.custom-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:10;
}

.profile-modal img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid #0d6efd;
}

.modal-info h6{
  font-weight:600;
  margin-bottom:4px;
}

.modal-info p{
  font-size:13px;
  line-height:1.4;
  margin-bottom:8px;
}

.btn-ticket:hover{
    color: #ffffff;
}

/* Slider wrapper */

/* -------------------new speaker css----------- */

#Speakers{
    overflow: hidden;
     background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}
 .speakers-slider {
      padding: 20px 60px;
      margin: 0 -15px;
      opacity: 0;
      transition: opacity 0.3s ease;
     
    }


      .speaker-image img {
    width: 100%;
    height: 230px;
    object-fit: contain;
}


    .speakers-slider.slick-initialized {
      opacity: 1;
    }
    .slick-slide {
      padding: 0 15px;
    }
    .slick-dots {
      bottom: -30px;
    }
    .slick-dots li button:before {
      font-size: 12px;
      color: #01B380;
      opacity: 0.3;
    }
    .slick-dots li.slick-active button:before {
      opacity: 1;
      color: #01B380;
    }
    .slick-prev,
    .slick-next {
      width: 40px;
      height: 40px;
     
    } 
    .slick-prev:before,
    .slick-next:before {
      font-size: 20px;
    }
  
    
    .speakers-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .speaker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.05);
      padding: 10px;
      border-radius: 8px;
    }
    .speaker-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    .speaker-info h4 {
      font-family: var(--font-family-base);
      color: #ffffff;
      font-size: 16px;
      margin: 0;
    }
    .speaker-info .role {
      font-family: var(--font-family-base);
      color: #01B380;
      font-size: 12px;
      display: block;
    }
    .speaker-info p {
      font-family: var(--font-family-base);
      color: #999 !important;
      font-size: 14px;
      margin: 0;
    }

.speaker-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px !important;
    margin: 0px 15px;
}

/* Hover */
.speaker-card:hover {
    transform: translateY(-6px);
}
.speaker-info {
    margin-top: 20px;
}

.speaker-info h5 {
   font-size: 18px;
}

.custom-prev,
.custom-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:45px;
  height:45px;
  background:#007C22;
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:24px;
  z-index:99;
  cursor:pointer;
}

.custom-prev{ left:10px; }
.custom-next{ right:10px; }

.custom-prev:hover,
.custom-next:hover{
  background:#03A947;
}


    