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


:root {
  --primary-color: #2f548d;
  /* --primary-color:#1a7b23; */
  --text-color: #fff;
  --text-heading: #00428c;
  /* --text-heading:#1a7b23; */
  --header-bg: #f0f6f5;
  --text-dark-color: #000;
  --text-grey-color: #383838;
  --text-grey-light-color: #d9d6d6;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ghse-reg-gradient: linear-gradient(135deg, #f0f4f8 0%, #d7e1ec 100%);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

/* header section */
.dda-navbar {
  background: #fff;
}

.dda-navbar-logo img {
  height: 60px;
}

.dda-nav-link {
  color: var(--text-heading) !important;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}

.dda-nav-link:hover {
  color: var(--primary-color) !important;
}

.dda-navbar-register-btn {
  background: #019934;
  color: #fff;
  padding: 4px 12px;
  border: 1px solid #019934;
  border-radius: 0px !important;
  font-size: 12px;
  margin-left: 6px;
  font-weight: 600;
}

.dda-navbar-register-btn:hover {
  background: #019934;
  color: #fff;
}

.dda-navbar-btn {
  /* border: 1px solid var(--primary-color); */
  border: 1px solid #019934;
  background: #fff;
  color: #019934;
  padding: 4px 12px;
  border-radius: 0px !important;
  font-size: 12px;
  font-weight: 600;
}

.dda-navbar-btn:hover {
  border: 1px solid #019934;
  color: #019934;
  background: #fff;
  padding: 4px 12px;
  border-radius: 0px !important;
  font-size: 12px;
  font-weight: 600;
}

/* 
/* .dda-navbar-btn:hover {
  background: #1e3b66;
  color: #fff;
} */
*/ .dda-navbar-toggle {
  border: 2px solid #838486;
  border-radius: 4px;
}

.navbar-toggler-icon {
  filter: invert(30%);
}

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

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-top: 1px solid #eee;
  }

  .dda-navbar-btn {
    width: 100%;
    text-align: center;
  }

  .dda-navbar-register-btn {
    width: 100%;
    text-align: center;
    margin-left: 0px;
  }

  .dda-nav-link {
    text-align: center;
  }
}

/* hero section */
.dda-hero-section {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.dda-hero-image img {
  object-fit: cover;
  background-size: cover center;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .dda-hero-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .dda-hero-section {
    height: auto;
  }
}

/* about section */
.dda-section-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--primary-color) !important;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dda-about-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark-color);
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .dda-section-title {
    font-size: 26px;
  }
}

/* schedule section */
.day-tab {
  background: transparent;
  border: none;
  padding: 10px 30px;
  border-bottom: 3px solid transparent;
}

.day-tab.active {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}

.hall-btn {
  border: 2px solid #019934;
  background: #fff;
  padding: 4px 12px;
  color: #019934;
  font-weight: 600;
  font-size: 12px;
  /* border-radius: 5px; */
}

.hall-btn.active {
  background: #019934;
  color: #fff;
}

.dda-session-card {
  /* border-radius: 8px; */
  overflow: hidden;
}

.dda-session-card:hover {
  cursor: pointer;
}


.session-time-box {
  background: #f8f9fa;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 3px solid var(--primary-color);
}

.session-time-box .time {
  font-size: 16px;
  font-weight: normal;
  color: #333;
}

.session-time-box .ampm {
  font-size: 0.8rem;
  color: #888;
}

.session-content {
  background: #fff;
}

.session-bullets {
  padding-left: 20px;
}

/* speakers section */
.speaker-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.speaker-img-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  position: relative;
  padding: 8px;
  border: 2px dashed #ddd;
  border-radius: 50%;
  transition: 0.4s;
}

.speaker-card:hover .speaker-img-wrapper {
  border-color: var(--primary-color);
  border-style: solid;
}

.speaker-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(20%);
}

.speaker-card:hover img {
  filter: grayscale(0%);
}

.speaker-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}

.speaker-designation {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.speaker-org {
  font-size: 0.85rem;
  color: #777;
}

.panel-btn {
  border: 2px solid #019934;
  background: #fff;
  color: #019934;
  padding: 4px 12px;
  /* border-radius: 50px; */
  font-size: 12px;
  transition: 0.3s;
}

.panel-btn.active {
  background: #019934;
  color: #fff;
  border-color: #019934;
}

@media (max-width: 768px) {
  .panel-btn {
    padding: 4px 10px;
  }

  .panel-heading {
    margin-bottom: 0px;
  }
}

/* sponsor section */
.tier-header {
  text-align: left;
  position: relative;
}

.tier-name {
  display: inline-block;
  padding: 4px 12px;
  /* border-radius: 50px; */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diamond {
  background: #e3f2fd;
  color: #1976d2;
  border: 1px solid #1976d2;
}

.platinum {
  background: #f5f5f5;
  color: #616161;
  border: 1px solid #616161;
}

.gold {
  background: #fffdf2;
  color: #b8860b;
  border: 1px solid #b8860b;
}

.silver {
  background: #fafafa;
  color: #595656;
  border: 1px solid #595656;
}

.sponsor-card {
  background: #fff;
  /* border-radius: 15px; */
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.sponsor-logo img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.sponsor-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.sponsor-name-small {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .sponsor-card {
    padding: 15px;
  }

  .sponsor-logo img {
    height: 60px;
  }
}

/* footer section */
footer section .bg-dark {
  background-color: var(--text-heading) !important;
}

.tracking-wider {
  letter-spacing: 1px;
}

.tracking-widest {
  letter-spacing: 2px;
}

.social-btn-dark {
  width: 35px;
  height: 35px;
  background: var(--header-bg);
  color: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn-dark:hover {
  background: var(--text-heading);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-dark li {
  /* margin-bottom: 2px; */
}

.footer-links-dark a {
  color: #000;
  opacity: 0.8;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s;
}

.footer-links-dark a:hover {
  opacity: 1;
  padding-left: 5px;
  color: var(--primary-color);
}

.contact-item i {
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid grey;
}

.bottom-links a:hover {
  opacity: 1;
  text-decoration: underline !important;
}

.dda-footer h6,
.dda-footer p,
.dda-footer span,
.dda-footer a {
  font-family: "Poppins", sans-serif !important;
}

.contact-item {
  font-size: 12px !important;
}

/* @media (max-width: 768px) {
  .footer-logo-section {
    text-align: center;
  }
  .brand-text{
text-align: center;
  }
} */

/* about page */
.about-text {
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}

.about-points-wrapper {
  border-left: 3px solid var(--primary-color);
}

.about-points-wrapper li {
  font-weight: 500;
  color: #333;
}

.impact-card {
  transition: all 0.3s ease;
  background: #fff;
}

.impact-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(0, 142, 179, 0.02);
  transform: translateY(-5px);
}

.custom-bullet-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #444;
}

.custom-bullet-list i {
  font-size: 1.5rem;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .about-text {
    font-size: 1rem;
  }
}

/* call for paper section */
.call-for-paper-section {
  position: relative;
}

.paper-invitation-card {
  line-height: 1.7;
  font-family: "Poppins", sans-serif !important;
}

.invitation-body p {
  font-size: 14px;
  color: #444 !important;
  font-family: "Poppins", sans-serif;
}

.google-link-box {
  background-color: #fcfcfc;
  border: 2px dashed #dee2e6;
  transition: 0.3s;
}

.google-link-box:hover {
  border-color: var(--primary-color);
  background-color: #f8fbff;
}

.border-dashed {
  border-style: dashed !important;
}

.btn-primary {
  background-color: #fff;
  /* Google Blue color */
  border: 1px solid #019934;
  padding: 4px 12px !important;
  font-size: 12px !important;
  color: #019934;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--text-heading);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.invitation-header h6 {
  color: #222;
  font-size: 14px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .paper-invitation-card {
    padding: 25px !important;
  }
}

.modal-content h4,
.modal-content p,
.modal-content span {
  font-family: "Poppins", sans-serif !important;
}

/* top banner */
.dda-page-banner {
  height: 40vh;
  min-height: 150px;
  background-image: url("./assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(24, 24, 24, 0.119); */
  background: rgba(30, 60, 114, 0.75);
}

.banner-title {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  font-size: calc(1.5rem + 1vw);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/* registration section */
.ghse-reg-header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.ghse-reg-navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  height: 70px;
}

.ghse-reg-logo-img {
  height: 50px;
}

.ghse-reg-form-card {
  background: #fff;
  /* border-radius: 8px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
  border: none;
  position: relative;
  z-index: 2;
}

.ghse-reg-hero-section {
  background-color: var(--primary-color);
  background-size: cover;
  padding: 80px 0 80px 0;
  margin-bottom: -100px;
  position: relative;
}

.ghse-reg-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ghse-reg-hero-content {
  position: relative;
  z-index: 1;
}

h3.ghse-reg-main-heading {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ghse-reg-section-title {
  color: var(--ghse-reg-text);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.ghse-reg-label {
  font-weight: 500;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif !important;
  color: #444;
  margin-bottom: 6px;
}

.ghse-reg-required {
  color: #dc3545;
}

.ghse-reg-input,
.ghse-reg-select {
  border-radius: 4px;
  border: 1px solid #ced4da;
  padding: 8px 12px;
  font-size: 0.95rem;
}

.ghse-reg-input:focus,
.ghse-reg-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
  outline: none;
}

.ghse-reg-upload-wrapper {
  position: relative;
  width: 100%;
}

.ghse-reg-upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 6px;
  background-color: #f8f9fa;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: border 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.ghse-reg-upload-zone:hover {
  border-color: var(--primary-color);
  background-color: #f1f7ff;
}

.ghse-reg-upload-zone i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.ghse-reg-upload-zone p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
}

.ghse-reg-upload-zone span {
  display: block;
  font-size: 0.75rem;
  color: #adb5bd;
  margin-top: 4px;
}

.ghse-reg-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.ghse-reg-btn {
  background: #019934;
  border: 1px solid #019934;
  padding: 8px 16px;
  font-size: 14px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  border-radius: 0px !important;
  transition: background 0.3s;
  width: 100%;
  margin-top: 10px;
  color: #fff;
}

.ghse-reg-btn:hover {
  background: #019934;
  color: #fff;
}

.ghse-reg-footer {
  background: var(--text-dark-color);
  color: #fff;
  padding: 40px 0;
  margin-top: 60px;
}

input,
select,
textarea,
button {
  font-family: "Poppins", sans-serif !important;
}

.ghse-pricing-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.ghse-pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-table thead {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.pricing-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #495057;
}

.pricing-table td {
  padding: 15px !important;
  font-size: 0.95rem;
  color: #2c3e50;
}

.fee-amount {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .pricing-table td {
    padding: 10px !important;
    font-size: 0.85rem;
  }
}

tr {
  font-size: 14px;
}

.dda-call-action-image {
  position: sticky;
  align-self: flex-start;
  top: 100px;
}

.dda-call-img {
  width: 100%;
  height: auto;
}

.view-btn {
  border: 1px solid #019934;
  color: #019934;
  padding: 4px 12px;
  font-size: 12px;
  background-color: #fff;
  font-weight: 600;
}

.view-btn:hover {
  color: #fff;
  background-color: #019934;
  padding: 4px 12px;
}

.download-btn {
  background-color: #019934;
  color: #fff;
  border: 1px solid #019934;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.download-btn:hover {
  background-color: #019934;
  color: #fff;
  padding: 4px 12px;
}

.submission-title {
  font-family: "Poppins", sans-serif !important;
}

/* Flex Sections */
.dda-about-flex-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

.dda-about-text {
  flex: 1.2;
  padding: 20px 80px 20px 20px;
}

.dda-about-text h2 {
  color: var(--text-grey-color);
  font-size: 2.2rem;
}

.dda-about-image-box {
  flex: 1;
  max-width: 600px;
}

.dda-about-image-box img {
  width: 100%;
  /* border-radius: 20px; */
}

/* Stats Bar */
.dda-about-stats-container {
  display: flex;
  justify-content: space-around;
  /* background: var(--header-bg); */
  background-color: #2f548d17;
  padding: 40px 20px;
  /* border-radius: 20px; */
  color: #00428c;
  margin-bottom: 0px;
  text-align: center;
}

.dda-about-stat-item h3 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--text-grey-color);
}

/* Cards Grid */
.dda-about-highlights {
  margin-bottom: 100px;
}

.dda-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.dda-about-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.dda-about-card:hover {
  transform: translateY(-10px);
  border-color: var(--header-bg);
}

.dda-about-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* List Points */
.dda-about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.dda-about-list li {
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.dda-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
}

.dda-green-lead-list {
  position: relative;
  padding-left: 28px;
}

.dda-green-lead-list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 3px;
  height: 100%;
  background: #019934;
  border-radius: 10px;
}


.dda-green-lead-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.dda-green-bullet {
  width: 22px;
  height: 22px;
  background: #e8f7ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.dda-green-bullet i {
  color: #019934;
  font-size: 12px;
}


.dda-about-container {
  background-color: var(--bg-dark-green);
  padding: 0 !important;
  margin: 0 !important;
}

/* 1. Text Alignment & Justification */
.dda-about-text-content {
  padding: 20px 30px;
  /* padding-left: 18%;  */
  /* padding-right: 20px; */
  /* padding-top: 80px; */
  /* padding-bottom: 80px; */
}

.text-justify {
  text-align: justify;
  /* Text dono sides se barabar dikhega */
  text-justify: inter-word;
  color: var(--text-off-white);
  font-size: 14px;
  /* line-height: 1.8; */
  margin-bottom: 10px;
}

/* 2. Image Space Fix */
.dda-about-image-box {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.about-img-full {
  width: 100%;
  max-height: 550px;
  /* Column ki poori height lega */
  object-fit: cover !important;
  /* Image kategi nahi, fill karegi */
  display: block;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dda-about-image-box1 {
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.about-img-full1 {
  width: 100%;
  /* height: 100%;  */

  object-fit: contain !important;
  display: block;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Extra: Responsive height fix */
@media (max-width: 991px) {
  .about-img-full {
    height: 400px;
    /* Mobile par height fixed */
  }

  .dda-about-text {
    padding: 20px 20px 20px 20px;
  }

  .dda-about-text-content {
    padding: 14px;
  }
}

/* @media (min-width: 1025px) {
  .dda-about-image-box {
  width: 100%;
  height: 70vh;
  margin: 0 !important;
  padding: 0 !important;
}
}

@media (max-width: 1024px) {
  .dda-about-image-box {
  width: 100%;
  height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
}} */

/* 1. Row se stretch hatao aur alignment center karo */
.dda-about-section-row {
  display: flex;
  align-items: center;
  /* Content ke hisab se height lega, stretch nahi karega */
  justify-content: center;
}

/* 2. Text Content ki padding fix karo */
.dda-about-text-content {
  padding: 40px;
  /* Top/Bottom space ab control mein rahegi */
  font-family: "Poppins", sans-serif;
  height: auto;
  /* Force height mat dena */
}

/* 3. Image Box ki height control karo */
.dda-about-image-box1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-img-full1 {
  width: 100%;
  /* Badi screen par image bahut badi na ho, isliye max-height */
  max-height: 550px;
  object-fit: contain;
  display: block;
}

/* 4. Responsive (Mobile ke liye) */
@media (max-width: 991px) {
  .dda-about-text-content {
    padding: 30px 20px;
  }

  .about-img-full1 {
    max-height: 350px;
  }
}

/* Values Section */
.dda-about-values-flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.dda-about-value-box {
  flex: 1;
  min-width: 250px;
  background: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.dda-about-value-box h4 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .dda-about-hero h1 {
    font-size: 2.2rem;
  }

  .dda-about-flex-section {
    flex-direction: column !important;
    text-align: left;
    gap: 20px;
  }

  .dda-about-stats-container {
    flex-direction: column;
    gap: 30px;
  }
}

.dda-about-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 0px;
}

.dda-about-stat-item {
  text-align: center;
}

.dda-about-stat-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.dda-about-stat-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--elite-blue);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .dda-about-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* footer section */
.dda-footer {
  font-family: "Poppins", sans-serif !important;
  background-color: var(--primary-color) !important;
  /* Aapki root variable */
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--text-heading);
  /* Aapki root variable */
  position: relative;
}

/* Accent line under headings */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.contact-item {
  font-size: 13px;
  color: var(--text-grey-color);
  transition: var(--transition);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 15px;
}

.footer-links-dark a {
  color: var(--text-grey-color);
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.footer-links-dark a:hover {
  color: var(--primary-color);
  padding-left: 8px;
  /* Smooth slide effect */
}

.social-btn-dark {
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  color: var(--text-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn-dark:hover {
  background: var(--text-heading);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tracking-wider {
  letter-spacing: 1px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .footer-branding img {
    height: 80px;
    margin-bottom: 0px !important;
  }

  .footer-brand-text h6 {
    margin-top: 10px;
  }
}

/* Desktop alignment */
@media (min-width: 768px) {
  .footer-brand-text {
    border-left: 2px solid rgb(255 255 255 / 60%);
    padding-left: 14px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
    width: 145px;
  }
}

/* venue section */
.dda-venue-section {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  /* Poppins added */
}

.dda-venue-card {
  background: #fff;
  /* border-radius: var(--border-radius); */
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  transition: var(--transition);
  border: 2px solid #01993483;
}

.dda-venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dda-venue-icon {
  /* background: #01993440; */
  color: #019934;
  width: 50px;
  /* Size thoda kam kiya */
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* Icon size chhota kiya */
  border: 1px solid #019934;
}

.dda-venue-heading {
  color: #019934;
  font-size: 16px;
  /* Font size kam kiya */
  font-weight: 700;
  /* margin-bottom: 10px; */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dda-venue-details {
  color: var(--text-grey-color);
  font-size: 14px;
  /* Font size kam kiya */
  line-height: 1.5;
  margin-bottom: 10px;
}

.dda-venue-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  /* Font size kam kiya */
  transition: var(--transition);
}

.dda-venue-link:hover {
  color: var(--text-heading);
  padding-left: 5px;
}

.dda-time-row {
  /* margin-bottom: 8px; */
  display: flex;
  gap: 8px;
  font-size: 14px;
  /* Font size kam kiya */
}

.dda-label {
  color: #019934;
  font-weight: 700;
}

.dda-value {
  color: var(--text-grey-color);
}

.dda-venue-note {
  font-size: 0.75rem;
  /* Font size kam kiya */
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  .dda-venue-card {
    flex-direction: column;
    padding: 10px;
    text-align: center;
    gap: 4px;
    align-items: center;
  }

  .dda-venue-icon {
    margin-bottom: 2px;
    height: 30px;
    width: 30px;
    min-width: 30px;
    font-size: 18px;
  }

  .dda-venue-heading {
    margin-bottom: 2px !important;
    font-size: 14px;

  }

  .dda-venue-details {
    font-size: 12px;
  }

  .dda-time-row {
    font-size: 12px;
  }
}


/* location section */
.dda-location-section {
  font-family: "Poppins", sans-serif !important;
}

.location-wrapper {
  background: var(--text-color);
  border-radius: 0px;
  overflow: hidden;
  /* box-shadow: 0px 5px 20px rgba(0,0,0,0.08); */
  border: 1px solid #ddd;
  display: flex;
}

.location-info {
  flex: 0 0 350px;
  padding: 25px !important;
  background: #fff;
}

.location-img-container img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.btn-directions-link {
  background-color: #fff;
  color: #019934 !important;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #019934;
  /* border-radius: 4px; */
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-directions-link:hover {
  background-color: var(--text-heading);
  transform: translateY(-2px);
}

.location-map {
  min-height: 350px;
  width: 100%;
}

@media (max-width: 767px) {
  .location-wrapper {
    flex-direction: column;
  }

  .location-info {
    flex: 1 1 auto;
    width: 100%;
    padding: 20px !important;
  }

  .location-map {
    height: 300px;
    min-height: 300px;
  }

  .location-info h4 {
    font-size: 20px;
  }
}


.modal-content {
  border-radius: 0px !important;
}

.social-icon-only {
  height: 34px;
  width: 34px;
  /* background-color: var(--primary-color); */
  background-color: var(--text-grey-light-color);
  color: var(--text-dark-color);
  /* border: 0.2px solid  var(--text-dark-color); */
  display: flex;
  /* Icon ko center karne ke liye */
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon {
  font-size: 16px;
  line-height: 0;
  /* Bootstrap icons ka default margin hatane ke liye */
}

/* Hover Effect - Jo aapke variables ke saath chale */
.social-icon-only:hover {
  background-color: var(--text-heading);
  /* Darker blue on hover */
  transform: translateY(-3px);
  color: #ffffff;
}

/* Footer Container adjustment agar blue background chahiye */
.footer-section-blue {
  background-color: var(--header-bg);
  /* light background as per your root */
  padding: 40px 20px;
}

/* data section */
.dda-stats-section {
  background-color: #fbfbfbb0;
  /* Pure black as per screenshot */
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
  border-top: 2px solid rgba(56, 56, 56, 0.126);
}

.stat-box {
  padding: 15px;
  transition: var(--transition);
}

.stat-count {
  font-weight: 600;
  font-size: 28px;
  /* Bold and Big numbers */
  color: #019934;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-text {
  font-weight: 400;
  font-size: 14px;
  color: #019934;
  opacity: 0.9;
  margin: 0;
  text-transform: capitalize;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
  .stat-count {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }

  .dda-stats-section {
    padding: 60px 0;
  }
}

/* instagram section */
.insta-preview-section {
  background-color: var(--bg-dark-green);
  font-family: "Poppins", sans-serif;
}

.insta-sub {
  color: black;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.insta-title {
  color: black;
  font-weight: 600;
  font-size: 24px;
}

/* Grid Image Style */
.insta-item {
  position: relative;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect */
.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark tint */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-overlay i {
  color: #fff;
  font-size: 2rem;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .insta-title {
    font-size: 1.5rem;
  }
}

.dda-insta-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color) !important;
  text-transform: lowercase;
}

.top-bar {
  background-color: var(--primary-color);
}

/* dropdown styling */
/* Dropdown specific styling to match your theme */
.dropdown-menu {
  border-radius: 0px;
  /* Matching your button style */
  padding: 10px 0;
}

.dropdown-item:hover {
  background-color: var(--header-bg);
  color: var(--primary-color) !important;
}

/* Arrow remove karna ho ya color set karna ho */
.dropdown-toggle::after {
  vertical-align: middle;
  color: var(--text-heading);
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Alignment fix */
    animation: fadeIn 0.3s;
    /* Smooth entry */
  }
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: #fff;
  border-top: 3px solid var(--primary-color) !important;
  /* Top border for looks */
  border-radius: 0px;
}

.dropdown-item {
  padding: 8px 20px;
  color: var(--text-heading) !important;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--header-bg);
  color: var(--primary-color) !important;
  padding-left: 25px;
  /* Chhota sa move effect */
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* date-venue section */
.event-details-section {
  background-color: #fff;
}

.info-wrapper .shadow-sm {
  transition: var(--transition);
}

.info-wrapper .shadow-sm:hover {
  transform: translateX(10px);
  background: #fff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.venue-image-container img {
  border-radius: 0px;
}

.event-details-section,
.map-section {
  font-family: "Poppins", sans-serif !important;
}

/* how to reach section */
.event-details-section {
  background-color: #fff;
}

.info-wrapper .shadow-sm {
  transition: var(--transition);
  cursor: default;
}

.info-wrapper .shadow-sm:hover {
  transform: translateX(10px);
  background: #fff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}


.instruction-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 5px;
}

@media (min-width: 992px) {
  .sticky-column {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}

.event-details-section .row {
  display: flex;
  flex-wrap: wrap;
}

.right-sticky-content {
  width: 100%;
}


/* what dda expo  */
.dda-expo-what-section {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

.dda-expo-what-img-container {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; 
  padding: 40px;
}

.dda-expo-what-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain; /* FULL image visible */
  display: block;
}


.dda-expo-what-content-wrapper {
  padding: 80px 60px;
}

.dda-expo-what-desc {
  font-size: 14px;
  color: var(--text-grey-color);
  margin-bottom: 14px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.dda-expo-what-aim {
  font-size: 14px;
  color: var(--text-grey-color);
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.dda-expo-what-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.dda-know-more-btn {
  background-color: #fff;
  border: none;
  color: #019934 !important;
  border: 2px solid #019934 !important;
  font-size: 14px;
  padding: 4px 12px;
  transition: var(--transition);
}

.dda-know-more-btn a {
  background-color: #fff;
  border: none;
  color: #019934 !important;
  font-size: 14px;
  padding: 4px 12px;
  transition: var(--transition);
}

.dda-know-more-btn:hover {
  transform: translateY(-3px);
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .dda-expo-what-img-container {
    min-height: 350px;
    max-height: 450px;
  }

  .dda-expo-what-content-wrapper {
    padding: 40px 20px;
  }
}


/* stepwise section */
.dda-stepwise-section {
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.dda-stepwise-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 44px 0;
}

.dda-stepwise-item {
  flex: 1;
  position: relative;
  text-align: center;
  z-index: 2;
}

.dda-stepwise-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #019934;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.dda-stepwise-circle i {
  font-size: 1.8rem;
  color: #019934;
}

.dda-stepwise-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  padding: 0 5px;
  margin-top: 10px;
}

.dda-stepwise-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 100%;
  height: 50px;
  border: 2px solid #019934;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 50% 50% 0 0;
  z-index: -1;
  opacity: 0.5;
}

.dda-stepwise-item:nth-child(even):not(:last-child)::after {
  top: 35px;
  border-radius: 0 0 50% 50%;
  border-top: none;
  border-bottom: 2px solid #019934;
}

.dda-color-1 {
  color: #007bff;
}

.dda-color-2 {
  color: #ff8c00;
}

.dda-color-3 {
  color: #28a745;
}

.dda-color-4 {
  color: #6f42c1;
}

.dda-color-5 {
  color: #e83e8c;
}

.dda-color-6 {
  color: #198754;
}

.dda-stepwise-aim-container {
  background: var(--header-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  border-top: 4px solid var(--primary-color);
}

.dda-stepwise-aim-text {
  text-align: justify;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  color: var(--text-grey-color);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .dda-stepwise-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .dda-stepwise-item::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .dda-stepwise-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 20px 0 20px 40px;
    position: relative;
    align-items: flex-start;
  }

  .dda-stepwise-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
        var(--primary-color) 0,
        var(--primary-color) 5px,
        transparent 5px,
        transparent 10px);
    z-index: 1;
  }

  .dda-stepwise-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    width: 100%;
  }

  .dda-stepwise-circle {
    margin: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #fff;
    z-index: 2;
    border-width: 3px;
  }

  .dda-stepwise-circle i {
    font-size: 1.4rem;
  }

  .dda-stepwise-label {
    margin-top: 0;
    font-size: 14px;
    padding: 0;
  }

  .dda-stepwise-item::after {
    display: none !important;
  }

}

/* what to expect section */
.dda-expect-section {
  font-family: 'Poppins', sans-serif;
}

.dda-expect-section-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color) !important;
  margin-bottom: 10px;
  text-transform: uppercase;
}


.dda-expect-card {
  background: rgb(0 0 0 / 6%);
  backdrop-filter: blur(5px);
  padding: 30px 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.dda-expect-card:hover {
  background: rgb(0 0 0 / 6%);
  transform: translateY(-10px);
}

.dda-expect-icon-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 0px;
  border: 2px solid #019934;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dda-expect-icon-box i {
  font-size: 1.8rem;
  color: #019934;
}

.dda-expect-card-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dda-expect-text {
  color: rgb(238, 236, 236);
  font-size: 14px;
  line-height: 1.6;
  /* text-align: justify;  */
  margin-bottom: 4px;
}

.dda-expect-subtext {
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .dda-expect-card {
    text-align: center;
    align-items: center;
  }

  .dda-expect-text {
    text-align: center;
  }
}


/* footer new  */
.dda-footer {
  background-color: #2f548d !important;
  /* Blue background */
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Poppins", sans-serif !important;
}

.footer-brand-title {
  color: #ffffff;
  line-height: 1.4;
  font-size: 14px;
}

.footer-brand-subtitle {
  color: var(--text-color);
  font-size: 13px;
  opacity: 0.9;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.social-btn-dark {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn-dark:hover {
  background: #ffffff;
  color: #2f548d;
  transform: translateY(-3px);
}

.footer-links-dark a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 4px;
}

.footer-links-dark a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.contact-item {
  font-size: 12px !important;
  color: var(--text-color);
}

.contact-item i {
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: var(--header-bg);
  opacity: 0.8;
  font-size: 10px !important;
}

.tracking-wider {
  letter-spacing: 1px;
}

.category-switcher {
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 0 !important;
  margin-bottom: 30px !important;
  display: flex;
  gap: 20px;
}

.cat-btn {
  border: none;
  background: none;
  padding: 12px 5px;
  font-weight: 600;
  font-size: 1rem;
  color: #888;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cat-btn:hover {
  color: var(--text-heading);
}

.cat-btn.active {
  color: var(--primary-color);
}

.cat-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 10px 10px 0 0;
}

.cat-btn.active::after {
  width: 100%;
}

@media (max-width: 576px) {
  .cat-btn {
    font-size: 0.85rem;
    padding: 10px 2px;
  }
}

.dda-expo-what-icon i {
  color: #019934;
  font-size: 14px;
  line-height: 1;
}



.dda-expo-what-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.dda-expo-what-item p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4;
  color: #333;
  font-size: 14px
}

/* Themes Section Styling */
.theme-card {
  background: #ffffff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  text-align: center;
}

.theme-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.theme-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: start;
  /* margin: 0 auto; */
}

.theme-icon-circle img {
  width: 80px;
  object-fit: cover;
  height: 80px;
}

.theme-title {
  color: #019934;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  margin-top: 12px;
}

.theme-desc {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: left;
}

.theme-bullets {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 12px;
  color: #444;
}

.theme-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.theme-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #019934;
  font-weight: bold;
}

.summary-box {
  border-left-color: #019934 !important;
}

/* exhibition section */
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

.exh-content-box p {
  line-height: 1.7;
  color: #444;
}

.exh-who-box li span {
  font-size: 0.95rem;
  color: #333;
}

.exh-matter-card {
  position: sticky;
  top: 20px;
  background-color: var(--primary-color);
}

.exh-matter-card .opacity-90 {
  font-style: italic;
  font-size: 0.9rem;
}

.badge.bg-light {
  font-weight: 500;
  color: #019934 !important;
  padding: 8px 12px;
}

/* conference section */
.conf-card {
  transition: all 0.3s ease;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.conf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.conf-icon-box {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #019934;
  border: 1px solid #019934;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.extra-small {
  font-size: 0.8rem;
  line-height: 1.4;
}

.text-justify {
  text-align: justify;
}

.italic {
  font-style: italic;
}


/* .conf-icon-box {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #019934;
  border: 1px solid #019934;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.conf-list {
  list-style: none;
  padding: 0;
}

.conf-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.conf-list li::before {
  content: '\f1bb'; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #019934;
}

.track-tag {
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s;
  cursor: default;
}

.track-tag:hover {
  background: #e9f7ef;
  border-color: #019934 !important;
  color: #019934;
}

.attendee-benefits-bar span {
  display: flex;
  align-items: center;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
} */

/* live demostration section */
.demo-img-wrapper {
  position: relative;
  overflow: hidden;
}

.demo-img-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* .demo-img-wrapper:hover img {
  transform: scale(1.1);
} */

.bg-success {
  background: linear-gradient(135deg, #019934 0%, #016e26 100%) !important;
}

.extra-small {
  font-size: 0.85rem;
  line-height: 1.5;
}

.italic {
  font-style: italic;
}

.col-lg-7 img {
  transition: filter 0.3s ease;
  filter: grayscale(20%);
}

.col-lg-7:hover img {
  filter: grayscale(0%);
}


.bg-light {
  background-color: #f8fdf9 !important;
}

.dda-full-img {
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .dda-full-img {
    height: 190px;
  }
}

/* breadcrumb section */
.dda-breadcrumb-grey {
  padding: 15px 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #fff;
  font-weight: 300;
  padding: 0 10px;
}

.breadcrumb-item a {
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--header-bg) !important;
}

@media (max-width: 576px) {
  .dda-breadcrumb-grey .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.dda-breadcrumb-grey .breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #fff;
  font-weight: 300;
  padding: 0 10px;
  line-height: 1;
}


/* insta swiper */
.insta-item {
  overflow: hidden;
  position: relative;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: 0.3s;
  font-size: 1.5rem;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.swiper-slide img {
  aspect-ratio: 1/1;
  object-fit: cover;
}


.dda-starting-soon-premium {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.dda-starting-soon-back {
  position: absolute;
  top: 40px;
  left: 50px;
  color: #888;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.dda-starting-soon-back:hover {
  color: var(--primary-color);
  /* Subtle Blue */
  transform: translateX(-3px);
}

.dda-starting-soon-tag {
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #019934;
  font-weight: 600;
  margin-bottom: 15px;
}

.dda-starting-soon-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.dda-starting-soon-line {
  width: 40px;
  height: 2px;
  background: #019934;
  margin: 25px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .dda-starting-soon-back {
    top: 25px;
    left: 25px;
    font-size: 0.8rem;
  }

  .dda-starting-soon-title {
    font-size: 2.2rem;
  }
}


.text-primary {
  color: var(--primary-color) !important;
}


.btn-success {
  border: 1px solid #019934;
  background-color: #fff;
  color: #019934;
  padding: 4px 12px !important;
  font-size: 12px !important;
  font-weight: 600;
}

.btn-success:hover {
  border-color: #019934;
  color: #fff;
  background-color: #019934;
}

/* Masterclass radio section */
.dda-masterclass-radio {
  padding: 2px 6px;
  background: #fff;
}

.dda-masterclass-radio .form-check {
  margin-bottom: 0;
}

.dda-masterclass-radio .form-check-input {
  cursor: pointer;
}

.dda-masterclass-radio .form-check-label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

/* Better spacing on mobile */
@media (max-width: 576px) {
  .dda-masterclass-radio {
    padding: 12px;
  }

  .dda-masterclass-radio .form-check-label {
    font-size: 14px;
  }
}


/* governer section */

.dda-leadership-section {
  font-family: 'Poppins', sans-serif;
}

.leadership-card {
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
}

.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(1, 153, 52, 0.1) !important;
}

.leader-img-wrapper {
  width: 100%;
  height: 100%;
  max-height: 300px;
  overflow: hidden;
  background: #f0f0f0;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.leadership-card:hover .leader-img {
  transform: scale(1.05);
}

.leader-content {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.role-badge {
  font-size: 10px;
  font-weight: 700;
  color: #019934;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: inline-block;
}

.leader-name {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.content-divider {
  width: 40px;
  height: 4px;
  background: #019934;
  margin-bottom: 15px;
  border-radius: 2px;
}

.leader-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.key-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.focus-tag {
  background: #fff;
  color: #019934;
  border: 1px solid #019934;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(1, 153, 52, 0.1);
}

.focus-tag i {
  font-size: 12px;
}

@media (max-width: 991px) {
  .leader-content {
    padding: 20px;
  }

  .leader-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .leadership-card .row {
    flex-direction: column;
  }

  .leadership-card .col-5,
  .leadership-card .col-7 {
    width: 100%;
  }

  .leader-img-wrapper {
    min-height: 250px;
  }

  .leader-content {
    text-align: left;
    align-items: center;
  }
}

/* Zoom buttons */
.dda-zoom-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
}

.dda-zoom-controls button {
  width: 42px;
  height: 42px;
  border: none;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dda-zoom-controls button:hover {
  background: #f1f1f1;
}


/* contact page */

.dda-event-dark {
  background-color: #019934;
  /* Aapka primary green */
  color: #fff;
}

.event-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mrv-stall-box {
  background: #016b24;
  /* Darker shade of your green */
  padding: 20px;
  border-left: 4px solid #fff;
}

.expo-info-card i {
  font-size: 2rem;
  color: #019934;
  /* Updated icon color to match theme */
  margin-bottom: 15px;
  display: block;
}

.btn-dda-action {
  background-color: #019934;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  border: 2px solid #019934;
}

.btn-dda-action:hover {
  background-color: transparent;
  color: #019934;
}

.text-maroon {
  color: #019934 !important;
}

/* Overriding old maroon with new green */


/* homepage modal */

.dda-expression-input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.modal-content {
  animation: fadeScale 0.4s ease;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* expression of interest modal */

.modal-dialog {
  max-width: 500px;
}

.dda-compact-btn {
  background-color: #019934;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(1, 153, 52, 0.2);
}

.dda-compact-btn:hover {
  background-color: #016b24;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(1, 153, 52, 0.3);
}

.modal-content {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Equal height speakers */
.speaker-card.h-100 {
  height: 100%;
}

/* Moderator fit content */
.moderator-card {
  height: fit-content !important;
}




.dda-exhibitor-section {
  background: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

/* Card */
.dda-exhibitor-card {
  background: #ffffff;
  border: 3px solid #eee;
  padding: 45px 25px;
  transition: 0.3s;
}

/* Hover effect */
.dda-exhibitor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Title */
.dda-exhibitor-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

/* Button */
.dda-exhibitor-btn {
  display: inline-block;
  padding: 11px 28px;
  border: 2px solid #019934;
  color: #019934;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover */
.dda-exhibitor-btn:hover {
  border: 2px solid #019934;
  color: #019934;
}





/* ===== Parent Card ===== */

.parent-session {
  border: 1px solid #d9e2ec;
  background: #f4f8ff;
}

.parent-content {
  border-left: 4px solid var(--primary-color);
}

/* ===== Sub Sessions ===== */

.sub-session-wrapper {
  margin-left: 100px;
  padding: 10px 0 10px 25px;
  border-left: 2px solid #cfd8dc;
  background: #fff;
}

.sub-session {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px dashed #e0e0e0;
  position: relative;
}

/* Timeline Dot */

.sub-session::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -31px;
  top: 18px;
}

/* Time */

.sub-time {
  min-width: 150px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

/* Content */

.sub-content {
  font-size: 14px;
  color: #222;
}

.sub-duration {
  font-size: 12px;
  color: #888;
  margin-left: 6px;
}


/* .dda-register-btn{
background-color:#019934;
color: #fff;
}


.dda-register-btn:hover{
background-color:#019934;
color: #fff;
} */